:root {
  --text-100: #000000;
  --background: #F7F7F7;
  --border: rgba(0, 0, 0, 0.2);
  --text-60: rgba(0, 0, 0, 0.6);
  --text-80: rgba(0, 0, 0, 0.8);
  --primary: #0037A4;
  --primary-contrast: #F7F7F7;
  --primary-contrast-80: rgba(247, 247, 247, 0.8);
}

.blue-theme {
  --text-100: #F7F7F7;
  --border: rgba(247, 247, 247, 0.2);
  --text-60: rgba(247, 247, 247, 0.6);
  --text-80: rgba(247, 247, 247, 0.8);
  --background: #0037A4;
  --primary: #F7F7F7;
  --primary-contrast: #000000;
  --primary-contrast-80: rgba(0, 0, 0, 0.8);
}

* {
  box-sizing: border-box;
}

.hidden {
  display: none;
}

.flex {
  display: flex;
}

.align-center {
  align-items: center;
}

.rounded-10 {
  border-radius: 40px;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

a {
  text-decoration: none;
  color: var(--text-60);
}
a.active {
  color: var(--text-100);
  font-weight: 700;
}

.btn {
  display: flex;
  align-items: center;
  column-gap: 8px;
  padding: 12px 15px;
  border-radius: 25px;
  cursor: pointer;
  width: fit-content;
  height: fit-content;
}
.btn.btn-ghost {
  border: 2px solid var(--border);
  color: var(--text-100);
}
.btn.btn-primary {
  background: var(--primary);
  color: var(--primary-contrast);
}

h1 {
  font-weight: 600;
  font-size: 67.2px;
  line-height: 70px;
  text-transform: capitalize;
  color: var(--text-100);
  text-align: center;
  width: 100%;
  margin-block: 75px;
}

h2 {
  font-weight: 600;
  font-size: 50.4px;
  line-height: 46.2px;
  text-transform: capitalize;
  color: var(--text-100);
  text-align: center;
  width: 100%;
  margin-block: 75px;
}

.page-subtitle {
  font-weight: 400;
  font-size: 16.8px;
  line-height: 23.8px;
  letter-spacing: 0;
  text-align: center;
}

body {
  padding: 0;
  margin: 0;
  background: var(--background);
  font-family: "Geist", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  padding-inline: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100svh;
}
body.blue-theme .logo-container .regular {
  display: none !important;
}
body.blue-theme .logo-container .blue {
  display: block !important;
}
body.blue-theme .navbar .btn-ghost {
  border: 2px solid rgba(247, 247, 247, 0.2);
  color: white;
}
body.blue-theme .navbar .btn-ghost img {
  filter: invert(100);
}
body.blue-theme .ig-icon {
  filter: invert(100);
}
body.blue-theme .footer {
  color: var(--text-100);
}
body.blue-theme .footer .footer-top {
  color: var(--text-100);
}
body.blue-theme .footer .footer-bottom {
  color: var(--text-100);
}
body.blue-theme .footer .footer-bottom .footer-col {
  color: var(--text-100);
}
body.blue-theme .footer .footer-bottom .footer-col .title {
  color: var(--text-100);
}
body.blue-theme .contact-us .send-img {
  filter: invert(100);
}

.heavy-p {
  font-weight: 600;
  font-size: 40px;
  line-height: 53px;
  letter-spacing: -2%;
  text-align: justify;
  text-transform: capitalize;
}

.main-wrapper {
  max-width: 100%;
  width: 100%;
  min-width: 100%;
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main {
  max-width: 1824px;
  width: 100%;
  overflow: visible;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.logo-container .blue {
  display: none;
}

.navbar {
  padding: 43px 84px 63px 84px;
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 30px;
}
.navbar .nav-btns {
  display: flex;
  align-items: center;
  column-gap: 40px;
}

.info-block {
  display: flex;
  column-gap: 77px;
  color: var(--text-100);
  padding-inline: 84px;
  max-width: 100%;
  overflow: visible;
}
.info-block.inverse {
  flex-direction: row-reverse;
}
.info-block .text-col {
  display: flex;
  flex-direction: column;
  row-gap: 48px;
  flex: 1;
}
.info-block .text-col .title {
  font-weight: 600;
  font-size: 50.4px;
  line-height: 57.4px;
  letter-spacing: 0;
  text-transform: capitalize;
}
.info-block .text-col .p {
  font-weight: 400;
  font-size: 16.8px;
  line-height: 23.8px;
  letter-spacing: 0;
}
.info-block .media-col {
  width: fit-content;
  overflow: visible;
  max-width: 55%;
}
.info-block .media-col.mw-40 {
  max-width: 40%;
}
.info-block .media-col *:not(.background-image):not(.background-block) {
  max-width: 100%;
}
.info-block .media-col .background-image {
  position: absolute;
  left: 90px;
  top: 110px;
  width: 1141px;
  height: 842px;
  border-radius: 25px;
  background: rgba(247, 247, 247, 0.1);
}
.info-block .media-col .background-block {
  position: absolute;
  left: 0;
  top: 0;
  width: 1141px;
  height: 842px;
  border-radius: 25px;
  background: rgba(247, 247, 247, 0.1);
}

.why-section {
  padding-inline: 84px;
}
.why-section .title {
  font-weight: 600;
  font-size: 39.2px;
  line-height: 46.2px;
  letter-spacing: 0;
  text-align: center;
  text-transform: capitalize;
}
.why-section .subtitle {
  font-weight: 400;
  font-size: 16.8px;
  line-height: 23.8px;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 66px;
}
.why-section .users {
  width: 100%;
  display: flex;
  column-gap: 32px;
}
.why-section .users .user-block {
  flex: 1;
  cursor: pointer;
  border-radius: 40px;
  background: #fff;
}
.why-section .users .user-block .title {
  font-weight: 600;
  font-size: 28px;
  line-height: 35px;
  letter-spacing: 0;
  text-transform: capitalize;
  padding: 35px 40px;
  flex: 1;
}
.why-section .users .user-block .img-box {
  height: 24.75svw;
  max-height: 428px;
  width: 100%;
  overflow: hidden;
}
.why-section .users .user-block .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-section .users .user-block .explanation {
  font-weight: 400;
  font-size: 16.8px;
  line-height: 23.8px;
  letter-spacing: 0;
  padding: 35px 40px;
  color: var(--text-80);
}

.contact-us {
  margin-inline: auto;
  border-radius: 40px;
  width: calc(100% - 168px);
  height: fit-content;
  background: var(--primary);
  margin-bottom: 20px;
  overflow: hidden;
}
.contact-us .contact-container {
  display: flex;
  width: 100%;
  align-items: center;
  flex-direction: column;
}
.contact-us .contact-container .title {
  font-weight: 600;
  font-size: 39.2px;
  line-height: 46.2px;
  text-align: center;
  text-transform: capitalize;
  width: 628px;
  margin-top: 103px;
  margin-bottom: 48px;
  color: var(--primary-contrast);
}
.contact-us .contact-container .subtitle {
  font-weight: 400;
  font-size: 16.8px;
  line-height: 23.8px;
  text-align: center;
  width: 628px;
  margin-bottom: 64px;
  color: var(--primary-contrast-80);
}
.contact-us .contact-container .contact-input {
  display: flex;
  align-items: center;
  column-gap: 10px;
  background: var(--primary-contrast);
  border-radius: 100px;
  padding: 22px;
  width: 608px;
  margin-bottom: 32px;
}
.contact-us .contact-container .contact-input input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  height: 34px;
  font-weight: 400;
  font-size: 16.8px;
  line-height: 23.8px;
  text-align: left;
}
.contact-us .contact-container .contact-input input::placeholder {
  color: var(--text-100);
}
.contact-us .contact-container .contact-input img {
  cursor: pointer;
}
.contact-us .contact-container .input-subtext {
  font-weight: 400;
  font-size: 16.8px;
  line-height: 23.8px;
  text-align: center;
  width: 541px;
  margin-bottom: 63px;
  color: var(--primary-contrast-80);
}
.contact-us .contact-bottom {
  width: 100%;
  height: 154px;
  background-image: url("/static/images/contact_us.png");
  background-size: cover;
  background-position: center;
  opacity: 14%;
}

.footer {
  max-width: 1824px;
  width: 100%;
  padding: 110px 104px;
  display: flex;
  flex-direction: column;
  row-gap: 35px;
}
.footer .footer-top {
  display: flex;
  justify-content: space-between;
}
.footer .footer-bottom {
  display: flex;
  column-gap: 75px;
  width: 100%;
}
.footer .footer-bottom .footer-col {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.footer .footer-bottom .footer-col .title {
  font-weight: 600;
  font-size: 16.8px;
  line-height: 23.8px;
  letter-spacing: 0;
  margin-bottom: 10px;
  width: fit-content;
}
.footer .footer-bottom .last-col {
  flex: 1;
  text-align: right;
  align-items: flex-end;
}

.solutions-blocks {
  display: flex;
  column-gap: 35px;
  row-gap: 35px;
  width: 100%;
  flex-wrap: wrap;
  padding-inline: 84px;
}
.solutions-blocks .solutions-block {
  width: 30%;
  height: fit-content;
  min-height: 322px;
  background: var(--white-10);
  border-radius: 25px;
  padding: 30px;
  position: relative;
  color: var(--text-100);
  background: rgba(247, 247, 247, 0.1);
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}
.solutions-blocks .solutions-block .title {
  font-weight: 600;
  font-size: 28px;
  line-height: 28px;
  text-transform: capitalize;
  word-break: break-word;
}
.solutions-blocks .solutions-block .description {
  font-weight: 400;
  font-size: 16.8px;
  line-height: 21px;
  word-break: break-word;
  width: 66%;
}
.solutions-blocks .solutions-block img {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 33%;
}

.qna-info-block {
  display: flex;
  column-gap: 44px;
  width: 100%;
  height: fit-content;
  padding-inline: 84px;
}
.qna-info-block .text-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  row-gap: 23px;
}
.qna-info-block .text-col .qna {
  position: relative;
  background: rgba(255, 255, 255, 0.25);
  padding: 36px 159px 36px 33px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  row-gap: 0;
}
.qna-info-block .text-col .qna.open .plus {
  opacity: 0;
  transform: rotate(90deg);
}
.qna-info-block .text-col .qna.open .minus {
  opacity: 100;
}
.qna-info-block .text-col .qna.open .a {
  height: 50px;
}
.qna-info-block .text-col .qna:not(.open) .plus {
  opacity: 100;
}
.qna-info-block .text-col .qna:not(.open) .minus {
  opacity: 0;
  transform: rotate(-90deg);
}
.qna-info-block .text-col .qna:not(.open) .a {
  height: 0;
}
.qna-info-block .text-col .qna .q {
  font-weight: 600;
  font-size: 21px;
  line-height: 15.4px;
  letter-spacing: 0;
  word-break: break-word;
}
.qna-info-block .text-col .qna .a {
  padding-top: 23px;
  font-weight: 500;
  font-size: 16.8px;
  line-height: 21.7px;
  letter-spacing: -2%;
  word-break: break-word;
  transition: 0.5s;
  overflow: hidden;
}
.qna-info-block .text-col .qna .plus, .qna-info-block .text-col .qna .minus {
  position: absolute;
  width: 28px;
  right: 76px;
  top: 38px;
  transition: 0.5s;
}
.qna-info-block .text-col .qna .minus {
  top: 50px;
}
.qna-info-block .media-col {
  width: 577px;
  min-height: fit-content;
  flex: 1;
  max-width: 40%;
}
.qna-info-block .media-col .send-q {
  background: rgba(255, 255, 255, 0.25);
  width: 100%;
  height: 100%;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  padding-block: 93px 53px;
  padding-inline: 10px;
  align-items: center;
  row-gap: 20px;
}
.qna-info-block .media-col .send-q img {
  width: 96.443359375px;
  height: 86.1328125px;
}
.qna-info-block .media-col .send-q .title {
  font-weight: 700;
  font-size: 28px;
  line-height: 21px;
  text-align: center;
  width: 264px;
}
.qna-info-block .media-col .send-q .p {
  font-weight: 500;
  font-size: 16.8px;
  line-height: 21.7px;
  letter-spacing: -2%;
  text-align: center;
  flex: 1;
  width: 380px;
  word-break: break-word;
  max-width: 100%;
}
.qna-info-block .media-col .send-q .btn {
  padding: 22px;
  font-weight: 800;
  font-size: 16.8px;
  line-height: 23.8px;
  text-align: center;
}

.fof-container {
  padding-inline: 84px;
  width: 100%;
  height: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  column-gap: 20px;
  align-items: center;
  justify-content: center;
}
.fof-container .page-subtitle {
  font-weight: 400;
  font-size: 16.8px;
  line-height: 19.6px;
  text-align: center;
  width: 480px;
  color: var(--text-60);
}

.backdrop {
  position: absolute;
  z-index: -5;
  filter: blur(900px);
  opacity: 0.9;
}

pre {
  font-family: inherit; /* same font as surrounding text */
  font-size: inherit; /* same size */
  color: inherit; /* same color */
  background: none; /* remove gray background (if any) */
  border: none; /* remove borders */
  margin: 0; /* reset spacing */
  white-space: pre-line; /* keep line breaks, but not extra spaces */
}

@media (max-width: 1200px) {
  .info-block .media-col {
    max-width: 45%;
  }
}
@media (max-width: 924px) {
  .solutions-block {
    width: 45% !important;
  }
}

/*# sourceMappingURL=styles.css.map */
