@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --yellow: #e9e94c;
  --navy: #022849;
  --navy-light: #0a3a60;
  --white: #ffffff;
  --gray: #f4f4f0;
  --text: #1a1a2e;
  --font-display: "Poppins", sans-serif;
  --font-body: "Poppins", sans-serif;
  --header-h: 200px;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 4px;
  --radius-lg: 12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

html { scroll-snap-type: y mandatory; }
html.nosnap {
  scroll-snap-type: initial;
}

.snap-section {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 40px;
}
.container--narrow { max-width: 1100px; margin: 0 auto; padding: 0 40px; }

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
}
.site-header.bg-navy {
  background: var(--navy);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  transition: opacity 0.2s;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFF;
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.nav-link:hover { color: var(--yellow); }
.nav-cta {
  background: var(--yellow);
  color: var(--navy) !important;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 6px;
}
.nav-cta:hover { background: #f5f550; transform: translateY(-1px); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--navy);
  padding: 24px 40px 32px;
  border-bottom: 2px solid var(--yellow);
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 99;
}
.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  padding: 10px 0;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--yellow); }

/* BUTTONS */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 6px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
  border: none;
}
.btn:hover { transform: translateY(-2px); }
.btn--yellow { background: var(--yellow); color: var(--navy); }
.btn--yellow:hover { background: #f5f550; box-shadow: 0 8px 24px rgba(233,233,76,0.4); }
.btn--dark { background: var(--navy); color: var(--yellow); }
.btn--dark:hover { background: var(--navy-light); box-shadow: 0 8px 24px rgba(2,40,73,0.4); }
.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn--outline:hover { background: var(--navy); color: var(--white); }
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn--outline-white:hover { border-color: var(--yellow); color: var(--yellow); }

/* ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 0.12s; }
.reveal--delay-2 { transition-delay: 0.24s; }
.reveal--delay-3 { transition-delay: 0.36s; }
.reveal--delay-4 { transition-delay: 0.48s; }

/* SECTION 1 — HERO */
.section--hero {
  background: var(--navy) url('/img/bg-1.jpg');
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--header-h);
  position: relative;
  overflow: hidden;
  background-size: cover;
}
.section--hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  height: 100%;
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(233,233,76,0.7);
  margin-bottom: 16px;
  display: block;
}
.hero-title {
font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--yellow);
  margin-bottom: 24px;
  display: block;
  width: 1045px;
}
.hero-title em {
  font-style: normal;
  color: var(--yellow);
  position: relative;
}
.hero-sub {
  font-size: 2.40rem;
  line-height: 1.7;
  color: #FFF;
  max-width: 720px;
}
hr {
  color: transparent;
  position: relative;
  border: 0;
}
hr::before {
  content: '------------------------------------------------------------------------------';
  display: block;
  position: relative;
  color: #FFF;
  margin-bottom: 55px;
}
.hero-text {
  color: #FFF;
  max-width: 680px;
  margin-bottom: 40px;
}
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
  color: #FFF;
  max-width: 720px;
}
.badge {
  display: inline-block;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  padding: 8px 9px;
  background: var(--yellow);
  color: var(--navy);
  transition: background 0.2s, border-color 0.2s;
  text-transform: uppercase;
  margin-top: -6px;
  font-size: 14px;
  margin-right: 16px;
  margin-bottom: 10px;
}
.badge:hover {}
.badge:nth-child(6) {
  margin-left: 117px;
}
.hero-cols {
  display: grid;
  grid-template-columns: repeat(4, 0fr);
  gap: 70px;
}
.hero-col { display: flex; flex-direction: column; align-items: flex-start; }
.hero-icon { width: 102px; height: 102px; margin: 0 auto; }
.hero-col-text {
  line-height: 1.5;
  color: #FFF;
  font-weight: 400;
  width: 142px;
  text-align: center;
  font-size: .8em;
}

.hero-deco { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(233,233,76,0.07);
}
.deco-circle--1 { width: 600px; height: 600px; right: -150px; top: -100px; }
.deco-circle--2 { width: 400px; height: 400px; right: 50px; top: 100px; background: radial-gradient(circle, rgba(233,233,76,0.04) 0%, transparent 70%); }
.deco-line {
  position: absolute;
  right: 15%;
  top: 20%;
  width: 1px;
  height: 60%;
  background: linear-gradient(to bottom, transparent, rgba(233,233,76,0.15), transparent);
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 0.7rem;
  font-family: var(--font-display);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: float 2.5s ease-in-out infinite;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 1.5px solid rgba(233,233,76,0.35);
  border-bottom: 1.5px solid rgba(233,233,76,0.35);
  transform: rotate(45deg);
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* SECTION 2 */
.section--split {
  display: flex;
  align-items: stretch;
  background: var(--navy);
  position: relative;
}
.split-yellow {
  width: 750px;
  background: var(--yellow);
  display: flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  height: 600px;
  top: 50%;
  left: 31%;
  transform: translate(-50%,-50%);
  padding: 30px 40px 26px 40px;
}
.split-yellow h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.split-yellow p {
  line-height: 1.75;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 32px;
}
.split-yellow ul {
  padding-left: 100px;
}
.split-yellow li {
  font-size: 22px;
  font-weight: 600;
  position: relative;
  padding-left: 44px;
}
.split-yellow li::before {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  display: block;
  background-image: url('/img/check.png');
  background-size: 100%;
  background-repeat: no-repeat;
  top: 4px;
  left: 0;
}
.split-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 75%;
  height: 100%;
  overflow: hidden;
}
.split-image img { width: 100%; height: 100%; object-fit: cover; }

/* SECTION 3 */
.section--yellow {
  background: var(--yellow);
  display: grid;
  align-items: center;
  padding-top: var(--header-h);
}
.yellow-left {
  float: left;
  max-width: 500px;
  z-index: 2;
  position: relative;
}
.yellow-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.8vw, 3.0rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 140px;
  width: 700px;
}
.yellow-left p {
  font-size: 37px;
  font-weight: 600;
  color: var(--navy);
  line-height: 40px;
  width: 510px;
}
.yellow-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.yellow-list li {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  padding: 8px 0;
  border-bottom: 1px solid rgba(2,40,73,0.15);
  padding-left: 18px;
  position: relative;
}
.yellow-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--navy);
  border-radius: 50%;
}
.yellow-right {
  height: 100%;
  position: relative;
  z-index: 0;
}
/* SECTION 4 */
.section--fullbg {
  position: relative;
  display: flex;
  align-items: center;
}
.fullbg-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.fullbg-bg img { width: 100%; height: 100%; object-fit: cover; }
.fullbg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2,40,73,0.85) 0%, rgba(2,40,73,0.55) 100%);
}
.fullbg-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1670px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  align-items: center;
}
.fullbg-image {
  max-width: 620px;
  z-index: 2;
  position: relative;
  left: 90px;
}
.fullbg-image img { width: 100%; height: 100%; object-fit: cover; }
.fullbg-bloc {
  background: var(--yellow);
  padding: 35px 39px 35px 80px;
  left: -182px;
  position: relative;
  z-index: 0;
}
.fullbg-bloc h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.5vw, 2.9rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.fullbg-bloc p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
}
.stats {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
}
.stat span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* SECTION TARIFS */
.section--tarifs {
  background: var(--gray);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + 40px) 0 60px;
  height: auto;
  min-height: 100vh;
  scroll-snap-align: start;
}
.section--tarifs h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
  max-width: 500px;
}
.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tarif-card {
  background: var(--white);
  border: 1px solid rgba(2,40,73,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.tarif-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(2,40,73,0.12); }
.tarif-card--featured {
  background: var(--navy);
  border-color: var(--navy);
}
.tarif-card--featured .tarif-card { color: var(--white); }
.tarif-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
}
.tarif-header { margin-bottom: 24px; }
.tarif-header h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.tarif-card--featured .tarif-header h3 { color: var(--white); }
.tarif-price { display: flex; align-items: baseline; gap: 6px; }
.price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
}
.tarif-card--featured .price { color: var(--yellow); }
.period {
  font-size: 0.85rem;
  color: rgba(2,40,73,0.5);
}
.tarif-card--featured .period { color: rgba(255,255,255,0.5); }
.tarif-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.tarif-features li {
  font-size: 0.9rem;
  color: rgba(2,40,73,0.7);
  padding-left: 20px;
  position: relative;
}
.tarif-card--featured .tarif-features li { color: rgba(255,255,255,0.7); }
.tarif-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-size: 0.8rem;
}
.tarif-card--featured .btn--outline {
  border-color: rgba(255,255,255,0.25);
  color: var(--white);
}
.tarif-card--featured .btn--outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.contact-page {
  background: var(--navy);
}
.contact-page .container:after {
  background-image: url('/img/bg-contact.png');
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

#main-content {
  padding-top: 170px;
  padding-bottom: 100px;
  background: var(--navy);
}

#main-content h2 {
  margin-top: 30px;
}

.site-footer {
  background: var(--navy);
  padding: 40px 40px;
  border-top: 1px solid rgba(233,233,76,0.15);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.logo--footer .logo-text { color: rgba(255,255,255,0.7); }
.site-footer nav { display: flex; gap: 24px; flex-wrap: wrap; }
.site-footer nav a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.site-footer nav a:hover { color: var(--yellow); }
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  :root {
    --header-h: 100px;
  }
}

@media (max-width: 1024px) {
  .section--hero .container { grid-template-columns: 1fr; }
  .hero-deco { display: none; }
  .hero-cols { grid-template-columns: repeat(6, 1fr); gap: 16px; }
  .split-yellow { left: 41%; }
  .section--yellow { grid-template-columns: 1fr; height: auto; min-height: 100vh; }
  .yellow-left { padding: 20px 0; max-width: 100%; float: none; }
  .yellow-left h2 { width: 100%;font-size: clamp(2.9rem, 2.8vw, 3.0rem); }
  .yellow-right {}
  .yellow-image-frame { clip-path: none; }
  .yellow-image-frame img { height: 350px; margin: 0 auto }
  .fullbg-bloc { left: 0; }
  .fullbg-inner { grid-template-columns: 1fr; padding-top: calc(var(--header-h) + 20px); }
  .fullbg-image { height: 30vh; margin: 0 auto; max-width: 100%; left: 0; }
  .tarifs-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .contact-page .container:after { display: none; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .header-inner { padding: 0 20px; }
  .main-nav ul { display: none; }
  .burger { display: flex; }
  .mobile-menu { display: block; }
  .container, .container--narrow { padding: 0 20px; }
  .hero-title { font-size: clamp(1.6rem, 6vw, 3.5rem); }
  .hero-cols { grid-template-columns: repeat(6, 1fr); gap: 20px;}
  .section--hero .container {
    display: block;
  }
  .block-mobile {
    display: block;
    width: 100%;
  }
  .section--split { flex-direction: column; }
  .split-yellow { width: 100%; padding: calc(var(--header-h) + 30px) 24px 300px; }
  .split-image { width: 100%; height: 320px; position: relative; }
  .split-image-overlay { background: linear-gradient(to bottom, var(--yellow) 0%, transparent 30%); }
  .section--tarifs { height: auto; padding-bottom: 80px; }
  .stats { gap: 20px; }
  .badge:nth-child(5) {
    margin-right: 140px;
  }
  .badge:nth-child(6) {
    margin-left: 0;
  }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (min-height: 150px) and (max-height: 1048px){
 .site-header {
  height: 80px;
 }


 .hero-title {
  font-size: clamp(2.8rem, 3.5vw, 5.5rem);
 }

 .hero-sub {
  font-size: 1.4rem;
  line-height: 1;
 }

 hr:before {
  margin-bottom: 5px;
 }

 .hero-text {
  margin-bottom: 30px;
  margin-top: 20px;
 }

 .hero-cols {
  gap: 30px;
  }

 .badges {
  margin-bottom: 0;
 }

 .section--hero {
  padding-top: 90px;
 }

 .split-yellow {
  height: 540px;
  left: 40%;
 }

 .split-yellow h2 {
  font-size: clamp(1.8rem, 2.2vw, 2.8rem);
  margin-top: 20px;
 }

 .split-yellow p {
  font-size: 19px;
 }

 .split-yellow ul {
  padding-left: 40px;
 }

 .split-yellow li {
  font-size: 17px;
  margin-bottom: 13px;
 }

 .split-yellow li:before {
  top: 1px;
 }

.yellow-left {
  max-width: 290px;
}

.yellow-image-frame img {
  max-width: 60%;
  right: -130px;
  position: relative;
}

 .section--yellow {
  padding-top: 100px;
 }

 .yellow-left h2 {
  font-size: clamp(1.8rem, 3.8vw, 2.9rem);
 }

 .yellow-left p {
  font-size: 27px;
 }

 .fullbg-bloc {
  left: -60px;
  }

 .fullbg-image{
  max-width: 450px;
 }

 .fullbg-bloc h2 {
  text-align: center;
 }
}

@media (max-width: 480px) {
  html { scroll-snap-type: initial; }
  .site-header.scrolled {
    background: var(--navy);
  }
  .section--hero {

  }
  .hero-title {
    width: 100%;
  }
  .hero-content {
    margin-top: 40px;
  }
  .hero-sub {
    font-size: 1.4rem;
  }
  hr:before {
    content: '--------------------------';
    margin-bottom: 0;
  }
  .hero-cols { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .badges { gap: 6px; }
  .badge {
    display: inline-block;
    font-family: var(--font-display);
    letter-spacing: 0.06em;
    padding: 8px 9px;
    background: var(--yellow);
    color: var(--navy);
    transition: background 0.2s, border-color 0.2s;
    text-transform: uppercase;
    margin-top: 1px;
    font-size: 18px;
    margin-right: 6px;
    margin-bottom: 10px;
    width: 46%;
    text-align: center;
  }
  .badge:nth-child(5) {
    margin-right: 0;
  }
  .badge:nth-child(6) {
    margin-left: 0;
  }
  .split-yellow { padding-bottom: 240px; }
  .section--fullbg {
    dispay: block;
  }
  .fullbg-inner {
    padding: 0;
    display: block;
    max-width: 100%;
  }
  .snap-section {
    height: auto;
    padding-bottom: 40px;
  }
  .section--split {
    padding-bottom: 0;
  }
  .split-yellow {
    display: block;
    height: auto;
    top: 0;
    left: 0;
    transform: initial;
    padding: 20px;
  }
  .split-yellow ul {
    padding-left: 0;
  }
  .split-yellow li {
    margin-bottom: 20px;
  }
  .section--yellow {
    display: block;
    min-height: auto;
  }
  .yellow-right {
    height: auto;
  }
  .yellow-left {
    padding: 0;
    margin-bottom: 40px;
  }
  .yellow-left h2 {
    width: 100%;
    margin-bottom: 50px;
  }
  .yellow-left p {
    font-size: 27px;
    line-height: 30px;
    width: 100%;
  }
  .yellow-image-frame img {
    height: auto;
  }
  .yellow-image-frame img {
    max-width: 100%;
    right: 0;
  }
  .fullbg-image {
    height: 300px;
    max-width: initial;
    left: 0;
  }
  .fullbg-bloc {
    padding: 20px;
    left: 0;
  }
  .contact-wrapper {
    grid-template-columns: 1fr !important;
  }
  .contact-page .container:after {
    display: none;
  }
}
