@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in[data-delay="1"] {
  transition-delay: 0.1s;
}

.fade-in[data-delay="2"] {
  transition-delay: 0.2s;
}

.fade-in[data-delay="3"] {
  transition-delay: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
  .hero__subtitle,
  .hero__heading,
  .hero__btns,
  .single-hero__num,
  .single-hero__title {
    opacity: 1 !important;
    animation: none !important;
  }
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: #213358;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

address {
  font-style: normal;
}

img {
  display: block;
}

.page-block {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 120px;
  background: #213358;
  padding-left: 24px;
  padding-right: 24px;
}
@media (max-width: 991px) {
  .page-block {
    row-gap: 0;
    overflow: visible;
  }
}

.page-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.btn,
.wp-block-button__link.wp-element-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  flex-shrink: 0;
  transition: opacity 0.15s ease, background 0.15s ease;
  width: 250px;
  height: 55px;
  border-radius: 27.5px;
}

.btn--white,
.wp-block-button__link.wp-element-button {
  background: #f8fafc;
  color: #213358;
}
.btn--white:hover,
.wp-block-button__link.wp-element-button:hover {
  opacity: 0.88;
}

.btn--outline {
  background: transparent;
  border: 1px solid #f8fafc;
  color: #f8fafc;
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn--nav {
  width: 137px;
  height: 45px;
  font-size: 14px;
  border-radius: 22.5px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #ffffff;
}
.btn--nav:hover {
  border-color: #ffffff;
}

.nav {
  position: fixed;
  top: 0;
  left: 24px;
  right: 24px;
  z-index: 50;
  padding: 14px 0;
  max-width: none;
}
.nav .btn--nav {
  background: #213358;
  border-color: #213358;
  color: #ffffff;
}
.nav .logo-dark {
  display: none;
}
.nav .page-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  transition: background-color 0.15s;
  border-radius: 35px;
}
@media (max-width: 991px) {
  .nav .page-container {
    padding: 12px 6px;
  }
}
.nav .nav__links > a,
.nav .nav__dropdown-wrap {
  padding: 18px 0;
}
@media (max-width: 991px) {
  .nav {
    padding: 24px 0;
    z-index: 20;
    margin-bottom: 0;
  }
}

.nav__logo img {
  height: 24px;
  width: auto;
}
@media (max-width: 768px) {
  .nav__logo img {
    height: 22px;
  }
}
@media (max-width: 350px) {
  .nav__logo img {
    height: 19px;
  }
}

.nav__links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav__links a {
  font-weight: 600;
  font-size: 14px;
  line-height: 28px;
  color: #ffffff;
  transition: color 0.15s;
}
.nav__links a:hover {
  color: #3B82F6;
}
@media (max-width: 991px) {
  .nav__links {
    display: none;
  }
}

.nav__link-arrow {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__dropdown-wrap {
  position: relative;
}
.nav__dropdown-wrap:hover .nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border: 1px solid #f2f4f6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-radius: 15px;
  padding: 24px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 100;
}
.nav__dropdown a {
  display: block;
  font-weight: 600;
  font-size: 14px;
  line-height: 42px;
  color: #213358 !important;
  opacity: 1 !important;
  transition: color 0.15s;
}
.nav__dropdown a:hover {
  color: #3B82F6 !important;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 991px) {
  .nav__actions {
    display: none;
  }
}

.nav__mobile-right {
  display: none;
}
@media (max-width: 991px) {
  .nav__mobile-right {
    display: flex;
    align-items: center;
    gap: 16px;
  }
}

.nav__lang {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: #ffffff;
  cursor: pointer;
  transition: color 0.15s;
}
.nav__lang:hover {
  color: #3B82F6 !important;
}

.nav__hamburger {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
}

.nav.white-bg .page-container {
  border: 1px solid #F2F4F6;
  border-radius: 35px;
  background-color: var(--white-text, #FFF);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.04);
}
.nav.white-bg .page-container .nav__links a {
  color: #213358 !important;
}
.nav.white-bg .page-container .nav__lang {
  color: #213358 !important;
}
.nav.white-bg .page-container .nav__lang svg path {
  fill: #213358;
}
.nav.white-bg .page-container .nav__link-arrow svg path {
  fill: #213358;
}
.nav.white-bg .page-container .logo-light {
  display: none;
}
.nav.white-bg .page-container .logo-dark {
  display: block;
}
.nav.white-bg .page-container .nav__hamburger span {
  background: #213358;
}

@media (max-width: 991px) {
  .hero {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 852px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    z-index: 0;
  }
}

.hero-bg {
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  position: relative;
  height: 100vh;
  padding: 0 15px;
  border-radius: 0 0 50px 50px;
  overflow: hidden;
  background: #000;
}
.hero-bg .hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-bg .hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.5;
  z-index: 1;
  border-radius: 0 0 50px 50px;
}
.hero-bg .page-container {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 991px) {
  .hero-bg {
    padding: 0;
  }
}

.hero__content {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 2;
}
.hero__content .btn--outline {
  background: #213358;
  border-color: #213358;
}
@media (max-width: 991px) {
  .hero__content {
    width: 100%;
    padding: 100px 24px 40px;
    z-index: 10;
    gap: 24px;
  }
}

.hero__subtitle {
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.2s forwards;
}
.hero__subtitle p {
  line-height: 28px;
}
@media (max-width: 991px) {
  .hero__subtitle {
    font-size: 16px;
  }
}

.hero__body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero__heading {
  font-weight: 700;
  font-size: 72px;
  line-height: normal;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.5s forwards;
}
.hero__heading span {
  display: block;
}
@media (max-width: 991px) {
  .hero__heading {
    font-size: 36px;
    line-height: 1.2;
  }
}

.hero__btns {
  display: flex;
  gap: 20px;
  align-items: center;
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.8s forwards;
}
@media (max-width: 991px) {
  .hero__btns {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero__btns .btn {
    height: 48px;
  }
  .hero__btns .btn--outline {
    background: #213358;
    border-color: #213358;
  }
}

.whatsapp-btn {
  position: fixed;
  right: 120px;
  bottom: 120px;
  z-index: 10;
  transition: transform 0.15s;
}
.whatsapp-btn:hover {
  transform: scale(1.07);
}
.whatsapp-btn img {
  width: 64px;
  height: 64px;
}
@media (max-width: 991px) {
  .whatsapp-btn img {
    width: 48px;
    height: 48px;
  }
}
@media (max-width: 991px) {
  .whatsapp-btn {
    right: 20px;
    bottom: 20px;
  }
}

.arrows-deco {
  position: absolute;
  right: 0;
  top: 0;
  width: 855px;
  height: 100%;
  pointer-events: none;
  overflow: visible;
  background-image: url(assets/ARROWS.svg);
  background-size: 100% auto;
  background-position: top;
  background-repeat: no-repeat;
}
@media (max-width: 991px) {
  .arrows-deco {
    display: none;
  }
}

.about-section {
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
  width: 100%;
  position: relative;
  padding-top: 120px;
}
@media (max-width: 991px) {
  .about-section {
    order: 5;
    gap: 64px;
    padding-bottom: 64px;
    padding-top: 0;
  }
}

.about__row {
  display: flex;
  gap: 120px;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 991px) {
  .about__row {
    flex-direction: column;
    gap: 24px;
  }
}

.about__label {
  display: flex;
  flex: 1 0 0;
  align-items: center;
  min-width: 0;
}
.about__label span {
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  white-space: nowrap;
}
@media (max-width: 991px) {
  .about__label {
    display: none;
  }
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .about__content {
    width: 100%;
    align-items: center;
  }
  .about__content .btn {
    height: 50px;
  }
}

.about__text {
  font-weight: 700;
  font-size: 32px;
  line-height: normal;
  width: 741px;
}
@media (max-width: 991px) {
  .about__text {
    font-size: 24px;
    width: 100%;
    text-align: center;
  }
}

.stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 64px 120px;
  background: #f8fafc;
  border-radius: 15px;
  width: 100%;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .stats {
    flex-direction: column;
    gap: 32px;
    padding: 32px 24px;
  }
}

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 187px;
  color: #213358;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}

.stats__number {
  font-size: 48px;
  line-height: 28px;
}

.stats__label {
  font-size: 16px;
  line-height: 28px;
  text-align: center;
}

.stats__divider {
  display: flex;
  align-items: center;
  justify-content: center;
}
.stats__divider img {
  transform: rotate(90deg);
  width: 45px;
  height: 1px;
}
@media (max-width: 991px) {
  .stats__divider img {
    transform: none;
  }
}

.about-mobile-heading,
.services-mobile-heading {
  display: none;
}

@media (max-width: 991px) {
  .about-mobile-heading {
    display: block;
    font-weight: 700;
    font-size: 38px;
    line-height: normal;
    color: #ffffff;
    width: 100%;
    margin-bottom: 8px;
    text-align: center;
  }
}

@media (max-width: 991px) {
  .services-mobile-heading {
    order: 3;
    display: block;
    font-weight: 700;
    font-size: 38px;
    line-height: normal;
    color: #ffffff;
    padding: 48px 0 24px;
    width: 100%;
  }
}

.services-head {
  display: flex;
  gap: 120px;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 991px) {
  .services-head {
    display: none;
  }
}

.services-head__label {
  flex: 1 0 0;
  min-width: 0;
}
.services-head__label span {
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  white-space: nowrap;
}

.services-head__text {
  flex-shrink: 0;
}
.services-head__text p {
  font-weight: 700;
  font-size: 32px;
  line-height: normal;
  width: 741px;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 34px;
  width: 100%;
}
@media (max-width: 991px) {
  .services-grid {
    order: 4;
    gap: 32px;
    margin-bottom: 32px;
  }
}

.services-row {
  display: flex;
  gap: 28px;
  align-items: stretch;
  width: 100%;
}
@media (max-width: 991px) {
  .services-row {
    flex-direction: column;
    gap: 32px;
  }
}

.services-row--triple {
  gap: 26px;
}
@media (max-width: 991px) {
  .services-row--triple {
    gap: 32px;
  }
}

.card {
  position: relative;
  height: 399px;
  width: 33%;
  flex-shrink: 0;
  border-radius: 15px;
  overflow: hidden;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  background-size: cover;
  background-position: center;
}
@media (max-width: 991px) {
  .card {
    width: 100%;
  }
  .card .btn {
    width: 100%;
    max-width: 250px;
    height: 48px;
  }
}

.card--wide {
  width: 66%;
}
@media (max-width: 991px) {
  .card--wide {
    width: 100%;
  }
}

.card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(33, 51, 88, 0.5);
  border-radius: 15px;
}

.card__content {
  position: relative;
  z-index: 1;
  width: 250px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card__content--wide {
  width: 390px;
}

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

.card__num {
  display: block;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  color: #ffffff;
  opacity: 0.8;
  margin-bottom: 18px;
}

.card__title {
  font-weight: 600;
  font-size: 32px;
  line-height: normal;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 991px) {
  .card__title {
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  .card__title br {
    display: none;
  }
}

.cta {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: rgba(33, 51, 88, 0.5);
  background-image: url("assets/Europe.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  padding: 120px 0 240px;
}
@media (max-width: 991px) {
  .cta {
    order: 6;
    padding: 0 0 32px 0;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    margin-bottom: 0;
  }
}

.cta__map {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 58%;
  opacity: 0.15;
  pointer-events: none;
}
.cta__map img {
  width: 100%;
  height: auto;
}

.cta__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}
@media (max-width: 991px) {
  .cta__body {
    gap: 24px;
  }
}

.cta__text-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cta__heading {
  font-weight: 700;
  font-size: 32px;
  line-height: normal;
  text-align: center;
  color: #ffffff;
}

.cta__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cta__text {
    font-size: 16px;
  }
  .cta__text br {
    display: none;
  }
}

.cta__btns {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media (max-width: 991px) {
  .cta__btns {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }
  .cta__btns .btn {
    width: 100%;
  }
}

.footer {
  width: 100%;
  background: #f8fafc;
  color: #213358;
}
@media (max-width: 991px) {
  .footer {
    order: 7;
  }
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 64px 0;
  min-height: 288px;
}
@media (max-width: 991px) {
  .footer__inner {
    flex-direction: column;
    gap: 24px;
    padding: 24px 24px;
  }
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 213px;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .footer__brand {
    width: 100%;
    align-items: center;
    gap: 4px;
  }
}

.footer__logo img {
  width: 179px;
  height: auto;
}

.footer__copy {
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #213358;
}

.footer__col {
  flex-shrink: 0;
  width: 181px;
}
.footer__col:nth-child(3) {
  width: 219px;
}
.footer__col:nth-child(4) {
  width: 160px;
}
.footer__col:nth-child(5) {
  width: 219px;
}
@media (max-width: 991px) {
  .footer__col {
    width: 100% !important;
  }
}

.footer__col-title,
.wp-block-heading {
  font-weight: 600;
  font-size: 16px;
  line-height: 28px;
  color: #213358;
  margin-bottom: 7px;
}
@media (max-width: 991px) {
  .footer__col-title,
  .wp-block-heading {
    margin-bottom: 0px;
    text-align: center;
  }
}

.widget_media_image figure {
  margin-bottom: 0;
}

.footer__col ul li,
.footer__col address p,
.widget_text {
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
  color: #213358;
}
@media (max-width: 991px) {
  .footer__col ul li,
  .footer__col address p,
  .widget_text {
    text-align: center;
  }
}
.footer__col ul li a,
.footer__col address p a,
.widget_text a {
  color: #213358;
  transition: opacity 0.15s;
}
.footer__col ul li a:hover,
.footer__col address p a:hover,
.widget_text a:hover {
  opacity: 0.65;
}

.inquiry-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.inquiry-modal.is-open {
  display: flex;
}
@media (max-width: 991px) {
  .inquiry-modal {
    padding: 0;
    align-items: flex-end;
  }
}

.inquiry-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  cursor: pointer;
}

.inquiry-modal__panel {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 15px;
  padding: 24px;
  width: 593px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 141px 200px -80px rgba(25, 58, 75, 0.3);
}
@media (max-width: 991px) {
  .inquiry-modal__panel {
    width: 100%;
    max-height: calc(100vh - 24px);
    border-radius: 15px 15px 0 0;
    padding: 20px;
  }
}

.inquiry-modal__close {
  position: absolute;
  right: 24px;
  top: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.inquiry-modal__close:hover {
  background: rgba(33, 51, 88, 0.06);
}

.inquiry-form__title {
  font-weight: 700;
  font-size: 34px;
  line-height: normal;
  color: #213358;
  padding-right: 40px;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .inquiry-form__title {
    font-size: 28px;
    margin-bottom: 24px;
  }
}

.inquiry-form__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.inquiry-form__services-label {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #213358;
  letter-spacing: 0.16px;
  margin-bottom: 20px;
}

.inquiry-form__checkboxes {
  display: flex;
  gap: 24px;
}
@media (max-width: 991px) {
  .inquiry-form__checkboxes {
    flex-direction: column;
    gap: 20px;
  }
}

.inquiry-form__check {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.inquiry-form__check input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.inquiry-form__check input[type=checkbox]:checked ~ .inquiry-form__check-box {
  border-color: #213358;
}
.inquiry-form__check input[type=checkbox]:checked ~ .inquiry-form__check-box::after {
  opacity: 1;
}

.wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 0;
}
.wpcf7-checkbox .wpcf7-list-item {
  min-width: 50%;
  max-width: 50%;
  margin: 0;
}
@media (max-width: 991px) {
  .wpcf7-checkbox .wpcf7-list-item {
    min-width: 100%;
    max-width: 100%;
  }
}

.wpcf7-list-item input[type=checkbox] {
  width: 16px;
  height: 16px;
  border: 1px solid rgba(33, 51, 88, 0.5);
  border-radius: 2px;
  position: relative;
  transition: border-color 0.15s;
}

.wpcf7-response-output {
  color: #000;
}

.wpcf7-list-item-label {
  font-weight: 600;
  font-size: 16px;
  line-height: 28px;
  color: #213358;
  opacity: 0.8;
}

.inquiry-form__check-box {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(33, 51, 88, 0.5);
  border-radius: 2px;
  position: relative;
  transition: border-color 0.15s;
}
.inquiry-form__check-box::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 1px;
  width: 12px;
  height: 9px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 11'%3E%3Cpath d='M1 5.5L5 9.5L13 1' stroke='%23213358' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
  transition: opacity 0.15s;
}

.inquiry-form__check-label {
  font-weight: 600;
  font-size: 16px;
  line-height: 28px;
  color: #213358;
  opacity: 0.8;
  white-space: nowrap;
}
@media (max-width: 991px) {
  .inquiry-form__check-label {
    white-space: normal;
  }
}

.inquiry-form__field {
  width: 100%;
  height: 50px;
  border: 1px solid rgba(33, 51, 88, 0.5);
  border-radius: 35px;
  padding: 12px 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #213358;
  background: transparent;
  outline: none;
  transition: border-color 0.15s;
  letter-spacing: 0.16px;
}
.inquiry-form__field::placeholder {
  color: rgba(33, 51, 88, 0.5);
}
.inquiry-form__field:focus {
  border-color: #213358;
}

.wpcf7-form-control-wrap {
  margin-bottom: 20px;
  display: block;
}

.wpcf7-not-valid-tip {
  font-size: 14px;
}

.inquiry-form__field--textarea {
  height: 120px;
  border-radius: 20px;
  resize: vertical;
  padding-top: 12px;
}
@media (max-width: 991px) {
  .inquiry-form__field--textarea {
    height: 160px;
  }
}

.inquiry-form__submit {
  width: 100%;
  height: 55px;
  background: #213358;
  color: #ffffff;
  border: none;
  border-radius: 27.5px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: opacity 0.15s;
}
.inquiry-form__submit:hover {
  opacity: 0.88;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(248, 250, 252, 0.8);
  backdrop-filter: blur(7.5px);
  -webkit-backdrop-filter: blur(7.5px);
  padding: 24px;
  flex-direction: column;
  gap: 10px;
}
.mobile-menu.is-open {
  display: flex;
}

.mobile-menu__header {
  display: flex;
  justify-content: flex-end;
  flex-shrink: 0;
}

.mobile-menu__close {
  background: none;
  border: none;
  padding: 13px 8px;
  cursor: pointer;
  border-radius: 10px;
  width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu__close:hover {
  background: rgba(33, 51, 88, 0.06);
}

.mobile-menu__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 0;
}

.mobile-menu__links {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-end;
}

.mobile-menu__link {
  font-weight: 600;
  font-size: 14px;
  line-height: 28px;
  color: #213358;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.mobile-menu__link:hover {
  opacity: 0.65;
}

.mobile-menu__link--arrow {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-menu__arrow {
  transform: rotate(-90deg);
  width: 6px !important;
  height: 10px !important;
}

.mobile-menu__footer {
  flex-shrink: 0;
}

.mobile-menu__inquiry {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  background: #213358;
  color: #ffffff;
  border-radius: 25px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 28px;
  text-align: center;
  transition: opacity 0.15s;
}
.mobile-menu__inquiry:hover {
  opacity: 0.88;
}

.nav__logo-light {
  display: block;
}

.nav__logo-dark {
  display: none;
}

.nav--page {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transition: top 0.3s ease, left 0.3s ease, right 0.3s ease, width 0.3s ease, background 0.3s ease, border-radius 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
@media (max-width: 991px) {
  .nav--page {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
  }
}

.nav--page.is-scrolled {
  top: 14px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: min(1240px, 100% - 48px);
  height: 65px;
  padding: 0 28px;
  background: #ffffff;
  border: 1px solid #f2f4f6;
  border-radius: 35px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.nav--page.is-scrolled .nav__logo-light {
  display: none;
}
.nav--page.is-scrolled .nav__logo-dark {
  display: block;
}
.nav--page.is-scrolled .nav__links a {
  color: #213358;
}
.nav--page.is-scrolled .nav__link--active {
  color: #3b82f6 !important;
}
.nav--page.is-scrolled .nav__link--active img {
  filter: invert(40%) sepia(85%) saturate(500%) hue-rotate(185deg);
}
.nav--page.is-scrolled .nav__lang {
  color: #213358;
}
.nav--page.is-scrolled .btn--nav {
  background: #213358;
  border-color: #213358;
  color: #ffffff;
}
@media (max-width: 991px) {
  .nav--page.is-scrolled {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    border: none;
    padding: 20px 24px;
    height: auto;
  }
}

.single-hero {
  position: relative;
  width: 100%;
  height: 400px;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
@media (max-width: 991px) {
  .single-hero {
    height: 280px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
  }
}

.single-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(33, 51, 88, 0.5);
}

.single-hero__meta {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  padding: 0 120px;
  z-index: 1;
}
@media (max-width: 991px) {
  .single-hero__meta {
    padding: 0 24px;
    bottom: 28px;
  }
}

.single-hero__num {
  display: block;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  color: #ffffff;
  opacity: 0;
  margin-bottom: 18px;
  animation: fadeInUp 0.6s ease 0.15s forwards;
}
@media (max-width: 991px) {
  .single-hero__num {
    font-size: 18px;
  }
}

.single-hero__title {
  font-weight: 600;
  font-size: 32px;
  line-height: normal;
  color: #ffffff;
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.35s forwards;
}
@media (max-width: 991px) {
  .single-hero__title {
    font-size: 24px;
  }
}

.single-main {
  width: 100%;
  padding: 64px 0;
  position: relative;
}
@media (max-width: 991px) {
  .single-main {
    padding: 40px 0 80px;
  }
}

.single-arrows {
  position: absolute;
  left: calc(25% + 105px);
  top: 0;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 991px) {
  .single-arrows {
    display: none;
  }
}

.single-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 991px) {
  .single-content {
    padding: 0 24px;
    max-width: 100%;
    gap: 32px;
  }
}

.single-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  color: #ffffff;
}
.single-text p {
  margin-bottom: 24px;
}
.single-text ul {
  list-style: disc;
  padding-left: 24px;
  margin: 0;
}
.single-text ul li {
  margin-bottom: 4px;
}
@media (max-width: 991px) {
  .single-text {
    font-size: 15px;
  }
}

.single-content__cta {
  flex-shrink: 0;
  align-self: flex-start;
}
@media (max-width: 991px) {
  .single-content__cta {
    width: 100%;
    text-align: center;
  }
}

.whatsapp-btn--single {
  position: fixed;
  left: auto;
  right: 40px;
  bottom: 40px;
  top: auto;
  z-index: 100;
}
@media (max-width: 991px) {
  .whatsapp-btn--single {
    right: 20px;
    bottom: 20px;
  }
}

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