*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
  font: inherit;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 1.6rem;
  color: #333333;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
  overflow-x: hidden;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
button,
a {
  cursor: pointer;
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}
.hidden {
  display: none !important;
}
.wow-up {
  opacity: 0;
  transform: translateY(3rem);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.wow-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.btn {
  display: inline-block;
  padding: 1.5rem 3rem;
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 0.4rem;
  text-align: center;
  align-self: flex-start;
  width: fit-content;
  position: relative;
  overflow: hidden;
  transition: background-color 0.2s ease;
}
.btn span {
  display: block;
  opacity: 1;
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}
.btn::before {
  content: attr(data-text);
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(50%);
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}
.btn:hover span {
  transform: translateY(-100%);
  opacity: 0;
}
.btn:hover::before {
  transform: translateY(-50%);
  opacity: 1;
}
.btn-primary {
  background-color: #003366;
  color: #ffffff;
}
.btn-primary:hover {
  background-color: #0066cc;
}
.btn-secondary {
  background-color: #ffffff;
  color: #003366;
}
.btn-secondary:hover {
  background-color: #0066cc;
  color: #ffffff;
}
.mobile-mock-nav {
  position: fixed;
  bottom: calc(3rem + env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  pointer-events: none;
  width: max-content;
  max-width: calc(100% - 1.6rem);
  display: none;
}
.mobile-mock-nav .mock-btn {
  pointer-events: auto;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background-color: rgba(245, 245, 245, 0.4);
  color: #121111;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  flex-shrink: 0;
  border: 1px solid white;
}
.mobile-mock-nav .mock-url {
  pointer-events: auto;
  height: 4.5rem;
  background-color: rgba(245, 245, 245, 0.4);
  border: 1px solid white;
  border-radius: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  color: #333;
  font-size: 1.8rem;
  font-weight: 500;
  width: auto;
  flex: 0 1 auto;
}
.mobile-mock-nav .mock-url span {
  margin: 0 1rem;
  text-align: center;
  white-space: nowrap;
}
.mobile-mock-nav .mock-url i {
  font-size: 1.4rem;
  opacity: 0.7;
}
.mobile-mock-nav.mobile-mock-nav-hero {
  opacity: 1;
  transition: opacity 0.3s ease;
  display: none;
}
.mobile-mock-nav.mobile-mock-nav-hero .mock-btn {
  width: 4rem;
  height: 4rem;
  font-size: 1.8rem;
}
.mobile-mock-nav.mobile-mock-nav-hero .mock-url {
  height: 4rem;
  font-size: 1.6rem;
  padding: 0 1.2rem;
}
.mobile-mock-nav.mobile-mock-nav-hero.is-visible {
  display: flex;
}
.mobile-mock-nav.mobile-mock-nav-seo {
  pointer-events: none;
  justify-content: center;
  transition: opacity 0.3s ease;
  width: max-content;
}
.mobile-mock-nav.mobile-mock-nav-seo .mock-url {
  justify-content: center;
  height: 3.4rem;
  font-size: 1.4rem;
}
.mobile-mock-nav.mobile-mock-nav-seo .mock-url span {
  margin: 0;
}
.mobile-mock-nav.mobile-mock-nav-seo.is-visible {
  display: flex;
}
@media (min-width: 768px) {
  .mobile-mock-nav {
    display: none;
  }
}
.mdl-herodesktop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  min-height: 50rem;
  background-color: #f5f5f5;
  z-index: 10;
  will-change: transform, border-radius;
  transform-origin: center top;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  contain: content;
}
.mdl-herodesktop .swiper {
  width: 100%;
  height: 100%;
}
.mdl-herodesktop .swiper-slide {
  position: relative;
  display: flex;
  overflow: hidden;
}
.mdl-herodesktop .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 100%);
}
.mdl-herodesktop .swiper-slide .bg-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
  display: block;
}
.mdl-herodesktop .hero-content {
  position: relative;
  z-index: 3;
  max-width: 95vw;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem 14vh 2rem;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding-bottom: calc(12rem + 2rem + env(safe-area-inset-bottom));
}
.mdl-herodesktop .hero-content .heading {
  font-size: 4rem;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 2rem;
  text-align: left;
  max-width: 50rem;
}
.mdl-herodesktop .hero-content .heading strong {
  font-weight: 700;
}
.mdl-herodesktop .hero-content .hero-box {
  width: 100%;
  max-width: 100%;
  align-self: flex-start;
  padding: 0;
}
.mdl-herodesktop .hero-content .hero-box .hero-txt {
  font-size: 1.6rem;
  margin-bottom: 2.5rem;
  line-height: 1.4;
  text-align: left;
  max-width: 90%;
}
.mdl-herodesktop .swiper-navigation {
  display: none;
}
@media (min-width: 768px) {
  .mdl-herodesktop .swiper-slide {
    padding: 0 8rem;
  }
  .mdl-herodesktop .swiper-slide::after {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
  }
  .mdl-herodesktop .hero-content {
    max-width: 85vw;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
    padding: 0 2rem;
    height: calc(100% - 10rem);
    padding-bottom: 0;
  }
  .mdl-herodesktop .hero-content .heading {
    font-size: 6.4rem;
    text-align: left;
    margin-bottom: 0;
    margin-top: 30vh;
  }
  .mdl-herodesktop .hero-content .hero-box {
    align-self: flex-end;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    max-width: 50rem;
    width: calc(100% - 4rem);
  }
  .mdl-herodesktop .hero-content .hero-box .hero-txt {
    text-align: left;
    font-size: 2.2rem;
    margin-bottom: 4rem;
  }
  .mdl-herodesktop .swiper-navigation {
    display: flex;
    position: absolute;
    bottom: 8rem;
    left: 8rem;
    z-index: 10;
    gap: 1rem;
  }
  .mdl-herodesktop .swiper-navigation .swiper-button-prev,
  .mdl-herodesktop .swiper-navigation .swiper-button-next {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    margin: 0;
    width: 4.5rem;
    height: 4.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(0.5rem);
    border-radius: 0.8rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  .mdl-herodesktop .swiper-navigation .swiper-button-prev::after,
  .mdl-herodesktop .swiper-navigation .swiper-button-next::after {
    display: none;
  }
  .mdl-herodesktop .swiper-navigation .swiper-button-prev i,
  .mdl-herodesktop .swiper-navigation .swiper-button-next i {
    font-size: 1.6rem;
  }
  .mdl-herodesktop .swiper-navigation .swiper-button-prev:hover,
  .mdl-herodesktop .swiper-navigation .swiper-button-next:hover {
    background: rgba(255, 255, 255, 0.4);
  }
}
.mdl-seodesktop {
  height: 300vh;
  position: relative;
  z-index: 1;
  background-color: #f5f5f5;
}
.mdl-seodesktop .seo-sticky-container {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: #003366;
}
.mdl-seodesktop .seo-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: saturate(1.8) contrast(1.1) brightness(1.05);
}
.mdl-seodesktop .seo-overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 15, 40, 0.25);
  z-index: 2;
}
.mdl-seodesktop .seo-mask-white {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  background-color: transparent;
  background-image: url('../media/seo-background.png'), linear-gradient(to bottom, transparent 0%, transparent 62%, #ffffff 60%, #ffffff 100%);
  background-size: 260% auto;
  background-position: 70% -10%;
  background-repeat: no-repeat;
  will-change: transform;
}
.mdl-seodesktop .seo-initial-text {
  position: absolute;
  bottom: 14vh;
  left: 0;
  width: 100%;
  padding: 0 2rem;
  z-index: 5;
  text-align: left;
  will-change: transform, opacity;
}
.mdl-seodesktop .seo-initial-text .initial-text-inner {
  width: 100%;
}
.mdl-seodesktop .seo-initial-text .heading {
  color: #003366;
  font-size: 2.8rem;
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.3;
}
.mdl-seodesktop .seo-initial-text .seo-txt strong {
  color: #003366;
  font-size: 2.4rem;
  font-weight: 700;
}
.mdl-seodesktop .seo-content-final {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 6;
  display: flex;
  align-items: flex-start;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(5rem);
  will-change: opacity, transform;
  padding-bottom: calc(12rem + env(safe-area-inset-bottom));
  padding-top: 5rem;
}
.mdl-seodesktop .seo-content-final .seo-final-text {
  max-width: 95%;
  width: 100%;
  padding: 0 2rem;
  color: #ffffff;
  text-align: left;
}
.mdl-seodesktop .seo-content-final .seo-final-text .heading {
  font-size: 3.6rem;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.mdl-seodesktop .seo-content-final .seo-final-text .heading strong {
  font-weight: 700;
}
.mdl-seodesktop .seo-content-final .seo-final-text .heading span {
  display: block;
  margin-bottom: 3rem;
}
.mdl-seodesktop .seo-content-final .seo-final-text .seo-txt {
  font-size: 2.1rem;
  line-height: 1.5;
  margin-bottom: 4rem;
  max-width: 100%;
}
.mdl-seodesktop .seo-content-final .seo-final-text.desktop-version {
  display: none;
}
.mdl-seodesktop .seo-content-final .seo-final-text.mobile-version {
  display: block;
  text-align: center;
  color: #ffffff;
}
.mdl-seodesktop .seo-content-final .seo-final-text.mobile-version .mobile-fixed-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #ffffff;
}
.mdl-seodesktop .seo-content-final .seo-final-text.mobile-version .mobile-rotating-container {
  position: relative;
  min-height: 10rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mdl-seodesktop .seo-content-final .seo-final-text.mobile-version .mobile-rotating-text {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1.2;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.mdl-seodesktop .seo-content-final .seo-final-text.mobile-version .mobile-rotating-text.active {
  opacity: 1;
}
.mdl-seodesktop .seo-content-final .seo-final-text.mobile-version .mobile-progress-container {
  width: 70%;
  height: 0.2rem;
  border-radius: 0.2rem;
  margin-bottom: 1rem;
  cursor: pointer;
  padding: 1rem 0;
  margin: 2rem auto 6rem ;
}
.mdl-seodesktop .seo-content-final .seo-final-text.mobile-version .mobile-progress-bar {
  height: 0.2rem;
  background-color: #ffffff;
  border-radius: 0.2rem;
  width: 5%;
  transition: width 0.3s ease;
}
.mdl-seodesktop .seo-content-final .seo-final-text.mobile-version .mobile-description {
  font-size: 1.7rem;
  line-height: 1.4;
  margin-bottom: 3rem;
  color: #ffffff;
}
@media (min-width: 768px) {
  .mdl-seodesktop .seo-mask-white {
    background-image: linear-gradient(#ffffff, #ffffff), url('../media/seo-background.png');
    background-repeat: no-repeat;
    background-size: 20% 100%, cover;
    background-position: left center, calc(70% + 15rem) center;
  }
  .mdl-seodesktop .seo-initial-text {
    bottom: 0;
    top: auto;
    transform: translateY(-50%);
    padding: 0 8rem;
  }
  .mdl-seodesktop .seo-initial-text .initial-text-inner {
    max-width: 120rem;
    margin: 0 auto;
  }
  .mdl-seodesktop .seo-initial-text .heading {
    font-size: 5.2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  .mdl-seodesktop .seo-initial-text .seo-txt strong {
    font-size: 4.2rem;
  }
  .mdl-seodesktop .seo-content-final {
    align-items: center;
    margin-top: 0;
  }
  .mdl-seodesktop .seo-content-final .seo-final-text {
    max-width: 110rem;
    display: grid;
    grid-template-columns: max-content 1fr;
    column-gap: 4rem;
    align-items: start;
    padding: 0 4rem;
  }
  .mdl-seodesktop .seo-content-final .seo-final-text.desktop-version {
    display: grid;
  }
  .mdl-seodesktop .seo-content-final .seo-final-text.mobile-version {
    display: none;
  }
  .mdl-seodesktop .seo-content-final .seo-final-text .heading {
    display: contents;
    line-height: 7.8rem;
  }
  .mdl-seodesktop .seo-content-final .seo-final-text .heading strong {
    grid-column: 1;
    font-size: 4.8rem;
  }
  .mdl-seodesktop .seo-content-final .seo-final-text .heading span {
    grid-column: 2;
    font-size: 4.8rem;
    display: inline;
  }
  .mdl-seodesktop .seo-content-final .seo-final-text .seo-txt,
  .mdl-seodesktop .seo-content-final .seo-final-text .btn-secondary {
    grid-column: 2;
  }
}
