@keyframes bubble {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(100);
  }
}
@keyframes slide-right {
  0% {
    transform: translate(-100%, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(2rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes swiper-progress {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes fadeUp {
  0% {
    transform: translateY(5rem);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes marqueeLeft {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(calc(var(--marquee-distance, 0px) * -1), 0, 0);
  }
}
@keyframes marqueeRight {
  0% {
    transform: translate3d(calc(var(--marquee-distance, 0px) * -1), 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
.main-page.is-opened {
  overflow: hidden;
}

.main-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: #ffffff;
  padding: 1.5rem 0;
  transition: all 0.3s ease-in-out;
}
.main-header .sub-menu {
  display: none;
}
.main-header .btn__warning {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
}
.main-header__branding img {
  max-width: 52px;
  height: auto;
}
.main-header__navigation {
  margin-left: auto;
  margin-right: 3rem;
}
.main-header__navigation .sub-menu {
  position: absolute;
  list-style: none;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: #ffffff;
  padding: 2rem 1.5rem 2rem;
  min-width: 32rem;
}
.main-header__navigation .arrow-toggle {
  background-color: transparent;
  border: 0;
  padding: 0;
  color: #003767;
}
.main-header__navigation .menu-item:hover .arrow, .main-header__navigation .menu-item:focus .arrow {
  border-right: 2px solid #bf5427;
  border-bottom: 2px solid #bf5427;
  transform: translate(0, 0) rotate(-135deg);
}
.main-header__navigation .menu-item:hover a, .main-header__navigation .menu-item:focus a {
  color: #bf5427;
}
.main-header__navigation .menu-item:hover a::after, .main-header__navigation .menu-item:focus a::after {
  width: 100%;
}
.main-header__navigation .menu-item:hover .sub-menu, .main-header__navigation .menu-item:focus .sub-menu {
  display: block;
}
.main-header__quick-buttons .gptranslate_wrapper {
  line-height: 100%;
}
.main-header__quick-buttons .gptranslate_wrapper .gpt_float_switcher {
  font-family: "Inter", sans-serif;
}
.main-header__quick-buttons .gptranslate_wrapper .gpt_float_switcher .gpt_options {
  transition: ease-in-out;
}
.main-header__quick-buttons .gptranslate_wrapper .gpt_float_switcher .gpt_options.gt-open {
  top: 140%;
  transform: translate(-100%, 0);
  left: 100%;
  min-width: 15rem;
  background-color: #ffffff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.main-header__quick-buttons .gptranslate_wrapper .gpt_float_switcher .gpt_options a:hover {
  background-color: #eb5830;
  color: #ffffff;
}
.main-header__quick-buttons .gptranslate_wrapper .gpt_float_switcher .gt-selected .gpt-current-lang {
  padding: 1rem 0;
}
.main-header__quick-buttons .gptranslate_wrapper .gpt_float_switcher .gt-selected .gpt-current-lang .gpt_float_switcher-arrow {
  transform: rotate(0) !important;
}
.main-header__quick-buttons .gptranslate_wrapper .gpt_float_switcher .gt-selected .gpt-current-lang .gpt_float_switcher-arrow.gpt_arrow_rotate {
  transform: rotate(-180deg) !important;
}
.main-header__search {
  position: relative;
}
.main-header__search--btn {
  background: transparent;
  border: none;
  padding: 0.8rem;
  cursor: pointer;
  font-size: 0;
  transition: background 0.3s ease;
  width: 4.2rem;
  height: 4.2rem;
}
.main-header__search--btn.is-active svg path, .main-header__search--btn:hover svg path, .main-header__search--btn:focus svg path, .main-header__search--btn:active svg path {
  fill: #bf5427;
}
.main-header__search--content {
  display: none;
  position: absolute;
  top: 140%;
  left: 50%;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  min-width: 40rem;
  transition: all 0.5s ease-in-out;
}
.main-header__search--content.is-opened {
  display: block;
  transform: translate(-50%, 0);
}
.main-header__search--content .input-search {
  width: calc(100% - 12.6rem);
  padding: 1.2rem 0.5rem;
  border-radius: 0;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid #003767;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.4;
  color: #003767;
  background-color: #ffffff;
}
.main-header__search--content .input-search::-moz-placeholder {
  color: #003767;
}
.main-header__search--content .input-search::placeholder {
  color: #003767;
}
.main-header__search--content .input-search:hover, .main-header__search--content .input-search:focus, .main-header__search--content .input-search:active {
  outline: none;
}
.main-header__search--content .btn {
  height: 100%;
  border: 0;
  box-shadow: none;
  padding: 1.2rem 1.8rem;
}

.menu-item a {
  color: #003767;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
  padding: 1rem 0;
  text-transform: uppercase;
  position: relative;
}
.menu-item a::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #bf5427;
  transition: width 0.3s ease;
}
.menu-item .sub-menu a {
  color: #003767;
}
.menu-item .sub-menu a:after {
  width: 0;
}
.menu-item .arrow-up {
  margin-left: 0.5rem;
}
.menu-item .arrow-up:before {
  transform: translate(0, 0);
}

.main-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-mobile__toggle.is-active .line {
  width: 3.2rem;
}
.menu-mobile__toggle.is-active .line:nth-child(2) {
  opacity: 0;
}
.menu-mobile__toggle.is-active .line:first-child {
  transform-origin: left top;
  transform: translate(50%, -50%) rotate(45deg);
}
.menu-mobile__toggle.is-active .line:last-child {
  transform-origin: left bottom;
  transform: translate(50%, 50%) rotate(-45deg);
}
.menu-mobile__toggle {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  background-color: transparent;
  width: 7rem;
  border: none;
  cursor: pointer;
}
.menu-mobile__toggle .line {
  display: block;
  width: 100%;
  height: 0.2rem;
  background-color: #000000;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}
.menu-mobile__navigation {
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 15vh;
  padding-bottom: 5vh;
  align-items: start;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  background-color: transparent;
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
}
.menu-mobile__navigation.is-opened {
  display: flex;
}
.menu-mobile__navigation.is-opened:before {
  content: "";
  position: fixed;
  top: 2rem;
  right: 2rem;
  width: 4rem;
  height: 4rem;
  background-color: #ffffff;
  animation: bubble 0.6s ease-out forwards;
  border-radius: 50%;
  z-index: -1;
}
.menu-mobile__navigation.is-opened .menu-item {
  opacity: 0;
  animation: fadeUp 0.4s ease-out forwards;
}
.menu-mobile__navigation.is-opened .btn {
  opacity: 0;
  animation: fadeUp 0.4s ease-out forwards;
  animation-delay: 0.6s;
}
.menu-mobile__navigation.is-opened .menu-item:nth-child(1) {
  animation-delay: 0.2s;
}
.menu-mobile__navigation.is-opened .menu-item:nth-child(2) {
  animation-delay: 0.3s;
}
.menu-mobile__navigation.is-opened .menu-item:nth-child(3) {
  animation-delay: 0.4s;
}
.menu-mobile__navigation.is-opened .menu-item:nth-child(4) {
  animation-delay: 0.5s;
}
.menu-mobile__navigation.is-opened .menu-item:nth-child(5) {
  animation-delay: 0.6s;
}
.menu-mobile__navigation.is-opened .menu-item:nth-child(6) {
  animation-delay: 0.7s;
}
.menu-mobile__navigation.is-opened .menu-item:nth-child(7) {
  animation-delay: 0.8s;
}
.menu-mobile__navigation.is-opened .menu-item:nth-child(8) {
  animation-delay: 0.9s;
}
.menu-mobile__navigation.is-opened .menu-item:nth-child(9) {
  animation-delay: 1s;
}
.menu-mobile__navigation.is-opened .menu-item:nth-child(10) {
  animation-delay: 1.1s;
}
.menu-mobile__navigation.is-opened.is-closing:before {
  animation: bubble 0.6s ease-in reverse forwards;
}
.menu-mobile__navigation.is-opened.is-closing .menu-item,
.menu-mobile__navigation.is-opened.is-closing .btn {
  animation: fadeUp 0.3s ease-in reverse forwards;
  animation-delay: 0s !important;
}
.menu-mobile__navigation .menu-item {
  position: relative;
}
.menu-mobile__navigation .sub-menu {
  list-style: none;
  padding-left: 1.5rem;
  margin: 0;
  display: none;
}
.menu-mobile__navigation .arrow-toggle {
  width: 3.6rem;
  height: 3.6rem;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(0, 0);
  background-color: transparent;
  border: 0;
  padding: 0;
  color: #003767;
}

.main-header__branding, .main-header__search,
.main-header .gptranslate_wrapper,
.main-header .menu-mobile__toggle {
  position: relative;
  z-index: 9999;
}

@media (min-width: 1024px) {
  .main-header.sticky {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }
  .main-header__branding img {
    max-width: 72px;
  }
  .main-header__branding a {
    display: inline-block;
  }
  .main-header__branding a img {
    transition: transform 0.3s ease;
  }
  .main-header__branding a:hover img {
    transform: scale(1.05);
  }
  .main-header__navigation .main-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
  }
  .main-header__search--content {
    left: 100%;
    top: 150%;
  }
  .main-header__search--content.is-opened {
    transform: translate(-100%, 0);
  }
  .main-header .menu-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .main-header .menu-item .sub-menu a {
    color: #003767;
  }
  .main-header .menu-item .sub-menu a .arrow-up:before {
    transform: translate(0, 100%);
  }
  .main-header .menu-item .sub-menu a:after {
    width: 0;
  }
  .main-header .menu-item .sub-menu a:hover, .main-header .menu-item .sub-menu a:focus {
    color: #bf5427;
  }
  .main-header .menu-item .sub-menu a:hover::after, .main-header .menu-item .sub-menu a:focus::after {
    width: 100%;
    background-color: #bf5427;
  }
  .main-header .menu-item .sub-menu a:hover .arrow-up:before, .main-header .menu-item .sub-menu a:focus .arrow-up:before {
    transform: translate(0, 0);
  }
  .main-header .menu-item.current_page_item a::after {
    width: 100%;
  }
  .main-header .menu-item.current_page_item a .sub-menu a::after {
    background-color: #ffffff;
    width: 0;
  }
  .main-header .menu-item.current_page_item a .sub-menu a:hover {
    color: #bf5427;
  }
  .main-header .menu-item.current_page_item a .sub-menu a:hover::after {
    width: 100%;
    background-color: #bf5427;
  }
  .main-header .menu-item.current_page_item .arrow {
    border-right: 2px solid #bf5427;
    border-bottom: 2px solid #bf5427;
  }
}
.main-footer {
  display: block;
  color: #ffffff;
  background-color: #003767;
  background-image: url("../assets/images/pattern.svg");
  background-repeat: no-repeat;
  background-position: right bottom 12%;
  background-size: 50% auto;
}
.main-footer ul {
  padding-left: 0;
  list-style: none;
}
.main-footer a {
  color: #ffffff;
  text-decoration: none;
}
.main-footer a:hover, .main-footer a:focus {
  color: #d1d1d1;
}
.main-footer__copyright a,
.main-footer__copyright span {
  display: block;
  font-size: 1.2rem;
  text-transform: capitalize;
}
.main-footer__branding img {
  max-width: 10rem;
  height: auto;
}
.main-footer__title {
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: capitalize;
  color: #d1d1d1;
}
.main-footer .footer-menu li a {
  display: block;
  text-transform: uppercase;
  padding: 0.2rem 0;
  font-weight: 500;
}

@media (min-width: 1024px) {
  .main-footer {
    background-position: right top;
    background-size: 23.6% auto;
  }
  .main-footer__branding img {
    max-width: 17rem;
    height: auto;
  }
}
/**
 * Slider Block Styles
 */
.slider-block {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.slider-block .swiper-slide {
  position: relative;
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-block .swiper-slide .slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.slider-block .swiper-slide .slide-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider-block .swiper-slide .slide-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.slider-block .swiper-slide .slide-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: 60px 0;
}
.slider-block .swiper-slide .slide-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}
.slider-block .swiper-slide .slide-content p {
  font-size: 1.25rem;
}
.slider-block .swiper-button-prev,
.slider-block .swiper-button-next {
  color: #fff;
}
.slider-block .swiper-button-prev::after,
.slider-block .swiper-button-next::after {
  font-size: 24px;
}
.slider-block .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
}
.slider-block .swiper-pagination-bullet-active {
  opacity: 1;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 2rem;
}

.swiper-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 12rem;
  height: 7px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  border-radius: 2rem;
  margin: 0 !important;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.swiper-pagination .swiper-pagination-bullet span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}
.swiper-pagination .swiper-pagination-bullet-active span {
  animation: swiper-progress 4s linear forwards;
}

@media (min-width: 1024px) {
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 6rem;
  }
}
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 2.2rem;
  height: 5rem;
  color: #ffffff;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.4;
  text-decoration: none;
  cursor: pointer;
  text-transform: uppercase;
  border: none;
  background: transparent;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
}
.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 0;
  aspect-ratio: 1;
  border-radius: 50%;
  z-index: -1;
  background-color: #bf5427;
  transition: width 0.4s ease-in-out;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-color: #003767;
  transition: all 0.3s ease;
}
.btn:hover, .btn:focus {
  color: #ffffff;
}
.btn:hover::after, .btn:focus::after {
  width: 300%;
}
.btn .icon-arrow {
  position: absolute;
  right: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #ffffff;
  border-radius: 50%;
  margin-left: 0.5rem;
}
.btn .icon-arrow svg {
  width: 16px;
  height: 16px;
}
.btn--with-icon {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding-right: 3.5rem;
}
.btn--with-icon .btn-text {
  transition: transform 0.3s ease;
}
.btn--with-icon .btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}
.btn--with-icon .btn-icon svg {
  width: 100%;
  height: auto;
}
.btn--with-icon .btn-icon svg path {
  transition: fill 0.3s ease;
}
.btn--with-icon:hover .btn-text {
  transform: translateX(-5px);
}
.btn--with-icon:hover .btn-icon {
  transform: translateX(5px);
}
.btn__primary::before {
  background-color: #003767;
}
.btn__primary::after {
  background-color: #bf5427;
}
.btn__primary:hover, .btn__primary:focus {
  color: #ffffff;
}
.btn__gardient::before {
  background: linear-gradient(90deg, #eb5830 0%, #f4963d 100%);
}
.btn__gardient::after {
  background-color: #003767;
}
.btn__gardient:hover, .btn__gardient:focus {
  color: #ffffff;
}
.btn__gardient:hover svg path, .btn__gardient:focus svg path {
  fill: #ffffff;
}
.btn__gardient--light::before {
  background: linear-gradient(90deg, #eb5830 0%, #f4963d 100%);
}
.btn__gardient--light:hover,
.btn__gardient--light shade:focus {
  color: #bf5427;
}
.btn__gardient--light:hover::after,
.btn__gardient--light shade:focus::after {
  background-color: #ffffff;
}
.btn__gardient--light:hover svg path,
.btn__gardient--light shade:focus svg path {
  fill: #bf5427;
  animation: slide-right 0.5s ease;
  transition: animation 1s ease;
}

.form-group {
  margin-bottom: 1.5rem;
  width: 100%;
}

.form-control {
  display: block;
  width: 100%;
  padding: 1.2rem 1.5rem;
  border-radius: 1rem !important;
  border: 1px solid #f1f1f1;
  transition: all 0.3s ease-in-out;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.4;
  color: #000000;
  background-color: #ffffff;
}
.form-control::-moz-placeholder {
  color: #000000;
}
.form-control::placeholder {
  color: #000000;
}
.form-control:hover, .form-control:focus, .form-control:active {
  box-shadow: none;
  outline: none;
}

.arrow-up {
  display: inline-block;
  position: relative;
  overflow: hidden;
  width: 1.2rem;
  height: 1.2rem;
  transition: transform 0.3s ease;
}
.arrow-up::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("../assets/images/arrow-up_1.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.arrow {
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translate(0, -20%) rotate(45deg);
  transition: transform 0.3s ease;
  pointer-events: none;
}

.modal-dialog {
  max-width: 80rem;
}
.modal-dialog.modal-dialog-centered {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100% - 60px);
}

.fixed-body {
  overflow: hidden;
}

.img-fluid {
  display: block;
  max-width: 100%;
  height: auto;
}

.w-150 {
  width: 15rem;
}

.w-65 {
  width: 65%;
}

.heading-2 {
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  color: #003767;
}

.quote-large p {
  font-size: clamp(2.4rem, 4vw, 3.1rem);
}

@media (min-width: 1024px) {
  .arrow-up::before {
    background-image: url("../assets/images/arrow-up.svg");
  }
}
.section-slider {
  padding-top: 0;
  padding-bottom: 0;
}
.section-slider .swiper-wrapper {
  height: 90vh;
}
.section-slider .swiper-slide {
  height: 100%;
  position: relative;
  overflow: hidden;
}
.section-slider .slide-image img {
  height: 90vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.section-slider .slide-content {
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-slider .slide-cta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10%;
}

.section-services .item {
  position: relative;
  overflow: hidden;
  flex: 0 0 100%;
  max-width: 100%;
  transition: flex 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.section-services .item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 55, 103, 0.5);
  z-index: 1;
  transition: background-color 0.5s ease;
}
.section-services .item:hover::before, .section-services .item.is-active::before {
  background-color: rgba(0, 55, 103, 0.7);
}
.section-services .item__image img {
  width: 100%;
  height: 55rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.section-services .item__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 0;
  width: 80%;
  color: #ffffff;
  z-index: 2;
  transition: transform 0.5s ease;
}
.section-services .item__content h1,
.section-services .item__content h2,
.section-services .item__content h3,
.section-services .item__content .h1,
.section-services .item__content .h2,
.section-services .item__content .h3 {
  margin-bottom: 1.5rem;
  transition: transform 0.5s ease;
}
.section-services .item__content .custom-button-block,
.section-services .item__content p {
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  margin-top: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, max-height 0.5s ease, margin 0.5s ease, visibility 0.5s;
  overflow: hidden;
}
.section-services .item.is-active .item__image img {
  transform: scale(1.1);
}
.section-services .item.is-active .item__content .custom-button-block,
.section-services .item.is-active .item__content p {
  opacity: 1;
  visibility: visible;
  max-height: 20rem; /* Adjust based on content */
  margin-top: 1rem;
  transform: translateY(0);
}

.section-why_us .quote-large {
  max-width: 55rem;
}
.section-why_us .text-highlight {
  background-image: linear-gradient(90deg, #ffffff 0%, #f1f1f1 50%, rgba(252, 246, 232, 0.2) 50.1%);
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}
.section-why_us .metric-items {
  position: relative;
  overflow: hidden;
  padding: 3rem 4rem;
  border-radius: 1rem !important;
  border: 1px solid rgba(255, 255, 255, 0.95);
  background-color: rgba(82, 82, 82, 0.33);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.section-why_us .metric-items .metric-item {
  position: relative;
  z-index: 2;
  padding: 2.5rem 0;
  margin-top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.95);
}
.section-why_us .metric-items .metric-item:last-child {
  border-bottom: 0;
}
.section-why_us .metric-items .metric-item .metric-number {
  font-size: 4.5rem;
  font-weight: 700;
  color: #ffffff;
  display: block;
  line-height: 1;
}
.section-why_us .metric-items .metric-item .metric-label {
  font-size: 1.6rem;
  color: #434343;
  font-weight: 500;
}

.section-invest .group-cover {
  margin: 3rem auto;
  max-width: 37rem;
  height: 40rem;
  border-radius: 2rem;
  overflow: hidden;
}
.section-invest .group-cover .wp-block-cover,
.section-invest .group-cover .wp-block-cover-image {
  min-height: 40rem;
}
.section-invest__wrap {
  transform: translate(0, -20%);
}
.section-invest h2 {
  text-transform: uppercase;
  max-width: 33rem;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -1px;
  margin-bottom: 2.5rem;
}

.section-partner {
  padding: 6rem 0;
  background-color: #eff7fd;
  overflow: hidden;
  --partner-columns: 4;
  --partner-gap: 1.5rem;
}
.section-partner .marquee-left,
.section-partner .marquee-right {
  margin: 3rem 0;
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
}
.section-partner .partner-gallery {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  flex-shrink: 0;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  animation-duration: var(--marquee-duration, 24s);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.section-partner .partner-gallery > * {
  flex: 0 0 calc((100vw - var(--partner-gap) * (var(--partner-columns) - 1)) / var(--partner-columns));
  width: calc((100vw - var(--partner-gap) * (var(--partner-columns) - 1)) / var(--partner-columns)) !important;
  padding: 0 calc(var(--partner-gap) / 2);
}
.section-partner .partner-gallery.wp-block-gallery.has-nested-images .wp-block-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-partner .partner-gallery.wp-block-gallery.has-nested-images .wp-block-image img {
  aspect-ratio: 16/8;
  width: min(100%, 16rem);
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.4s ease;
}
.section-partner .partner-gallery.wp-block-gallery.has-nested-images .wp-block-image img:hover {
  transform: scale(1.05);
}
.section-partner .partner-gallery:hover, .section-partner .partner-gallery:focus-within {
  animation-play-state: paused;
}
.section-partner .marquee-left .partner-gallery {
  animation-name: marqueeLeft;
}
.section-partner .marquee-right .partner-gallery {
  animation-name: marqueeRight;
}

@media (min-width: 768px) {
  .section-partner {
    --partner-columns: 4;
  }
}
@media (min-width: 1024px) {
  .section-slider .swiper-wrapper {
    height: 100vh;
  }
  .section-slider .slide-image img {
    height: 100vh;
  }
  .section-slider .slide-cta {
    bottom: 25%;
  }
  .section-services .intro {
    max-width: 84rem;
    margin: 0 auto;
  }
  .section-services .item {
    height: 80vh;
    flex: 0 0 30%;
    max-width: 30%;
  }
  .section-services .item.is-active {
    flex: 0 0 40%;
    max-width: 40%;
  }
  .section-services .item.is-active .item__image img {
    transform: scale(1.1);
  }
  .section-services .item__image img {
    height: 80vh;
    transform: scale(1);
  }
  .section-services .item__content {
    width: 65%;
  }
  .section-why_us {
    height: 100vh;
  }
  .section-invest .group-cover {
    margin: 5rem auto;
    max-width: 100%;
    height: 65vh;
    overflow: hidden;
  }
  .section-invest .group-cover .wp-block-cover,
  .section-invest .group-cover .wp-block-cover-image {
    min-height: 100%;
  }
  .section-invest__wrap {
    transform: translate(0, -60%);
  }
  .section-invest h2 {
    max-width: 72%;
  }
  .section-partner {
    --partner-columns: 6;
  }
  .section-partner .partner-gallery.wp-block-gallery.has-nested-images .wp-block-image img {
    width: min(70%, 16rem);
  }
}
.subscription {
  background: #ffffff url("../assets/images/subscription-bg.jpg") center/cover no-repeat;
}

.subscription-form-block {
  padding: 6rem 2rem;
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 2rem;
  text-align: center;
  max-width: 80rem;
  margin: 4rem auto;
}
.subscription-form-block__title {
  font-size: 3rem;
  margin-bottom: 3rem;
  color: #ffffff;
}
.subscription-form-block__description {
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 3rem;
}
.subscription-form-block__form {
  position: relative;
  max-width: 50rem;
  margin: 0 auto;
}
.subscription-form-block__input-group {
  display: flex;
  gap: 1rem;
  background: #fff;
  padding: 0.5rem;
  border-radius: 5rem;
  border: 1px solid #ddd;
  transition: border-color 0.3s ease;
}
.subscription-form-block__input-group:focus-within {
  border-color: #007bff;
}
.subscription-form-block__input {
  flex: 1;
  border: none;
  padding: 1.2rem 2.5rem;
  font-size: 1.6rem;
  border-radius: 5rem;
  outline: none;
}
.subscription-form-block__input::-moz-placeholder {
  color: #aaa;
}
.subscription-form-block__input::placeholder {
  color: #aaa;
}
.subscription-form-block__submit {
  color: #fff;
  border: none;
  padding: 1rem 3rem;
  border-radius: 5rem;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 14rem;
}
.subscription-form-block__submit.is-loading {
  pointer-events: none;
}
.subscription-form-block__submit.is-loading span {
  display: none;
}
.subscription-form-block__submit.is-loading .loader {
  display: block;
}
.subscription-form-block__submit .loader {
  display: none;
  width: 2rem;
  height: 2rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 767px) {
  .subscription-form-block__title {
    font-size: 2.4rem;
  }
  .subscription-form-block__input-group {
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 0;
  }
  .subscription-form-block__input {
    border: 1px solid #ddd;
    margin-bottom: 1rem;
    width: 100%;
  }
  .subscription-form-block__submit {
    width: 100%;
  }
}
/*# sourceMappingURL=apps.css.map */
