@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Lora:ital,wght@0,400..700;1,400..700&display=swap");

:root {
  /* -----------COLORS----------- */
  --ocean-deep: #0267c1ff;
  --magenta-bloom: #d8315bff;
  --magenta-bloom-shade: #b42247;
  --deep-sky-blue: #28c2ffff;
  --cyan-glow: #2af5ffff;

  /* -----------WHITES----------- */
  --ghost-white: #fffaffff;
  --smoke-white: #f5f5f5;

  /* -----------CHARCOAL----------- */
  --charcoal: #333333;

  /* -----------EXTENDED PALETTE----------- */
  --navy-ink: oklch(18% 0.07 243);
  --ocean-tint: oklch(97% 0.015 243);
  --amber-signal: oklch(72% 0.17 55);

  /* -----------FONT-SIZE----------- */
  --text-h1: clamp(3.2rem, 5vw, 8rem);
  --text-h2: clamp(2.8rem, 3.5vw, 4.2rem);
  --text-h3: clamp(2.2rem, 2.6vw, 3.2rem);
  --text-h4: clamp(1.8rem, 2vw, 2.2rem);
  --text-p: clamp(1.6rem, 1.6vw, 1.8rem);
  --text-sm: clamp(1.3rem, 1.1vw, 1.4rem);

  /* -----------FONT FAMILY----------- */
  --ff-lora: "Lora", serif;
  --ff-sans: "IBM Plex Sans", sans-serif;

  /* -----------SECTION DIVIDERS----------- */
  --section-divider-lrg: clamp(6rem, 4rem + 3vw, 10rem);
  --section-divider-med: clamp(3rem, 2rem + 2vw, 5rem);
  --section-divider-sml: clamp(1.2rem, 1rem + 1vw, 2rem);

  /* -----------HEADING MARGINS----------- */
  --heading-margin-bottom-lrg: clamp(4rem, 3rem + 2.5vw, 8rem);
  --heading-margin-bottom-med: clamp(2rem, 1.5rem + 1.5vw, 4rem);
  --heading-margin-bottom-reg: clamp(1.2rem, 1rem + 1vw, 2rem);
  --heading-margin-bottom-sml: clamp(0.6rem, 0.5rem + 0.5vw, 1rem);

  /* -----------PADDING----------- */
  --body-padding-sml: clamp(1.2rem, 1rem + 1vw, 2rem);
  --body-padding-med: clamp(2rem, 2.2rem + 2vw, 5rem);

  /* -----------WIDTH----------- */
  --wrapper-max-width: 80%;
}

/* -----------GLOBAL STYLES----------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  overflow-x: hidden;
  position: absolute;
  width: 100%;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  max-width: 2000px;
  margin: 0 auto;
  font-family: var(--ff-sans);
  font-weight: 400;
  font-style: normal;
  font-size: var(--text-p);
  line-height: 1.6;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  color: var(--charcoal);
  font-kerning: normal;
}

h1,
h2,
h3,
h4 {
  font-optical-sizing: auto;
  font-style: normal;
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--ff-lora);
  color: var(--ocean-deep);
}

h4 {
  color: var(--ocean-deep);
}

h1 {
  font-size: var(--text-h1);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2 {
  margin-bottom: var(--heading-margin-bottom-med);
  font-size: var(--text-h2);
  line-height: 1.2;
  letter-spacing: -0.015em;
}

h3 {
  font-size: var(--text-h3);
  line-height: 1.25;
}

h4 {
  font-size: var(--text-h4);
  font-weight: 500;
  line-height: 1.3;
}

li {
  list-style: none;
}

a,
a:visited {
  text-decoration: none;
  font-size: var(--text-p);
  color: var(--ocean-deep);
  white-space: nowrap;
  transition: color 0.3s ease;
}

a:hover,
a:active {
  color: var(--deep-sky-blue);
}

.highlight {
  font-weight: 700;
}

.image picture,
.image img {
  border-radius: 8px;
  object-fit: cover;
}

.pre-pad {
  margin: 0 auto;
  padding: 5rem var(--body-padding-sml);
}

.section-tag {
  color: var(--ocean-deep);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.section-tag::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--ocean-deep);
}

.fade-in-top {
  -webkit-animation: fade-in-top 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-top 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation-play-state: paused;
}

.fade-in-top.is-visible {
  animation-play-state: running;
}

.fade-in-bottom {
  -webkit-animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1)
    both;
  animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation-play-state: paused;
}

.fade-in-bottom.is-visible {
  animation-play-state: running;
}

.fade-in-left {
  -webkit-animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation-play-state: paused;
}

.fade-in-left.is-visible {
  animation-play-state: running;
}

.fade-in-right {
  -webkit-animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation-play-state: paused;
}

.fade-in-right.is-visible {
  animation-play-state: running;
}

/* -----------SKIP LINK----------- */

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  padding: 0.8rem 1.6rem;
  background-color: var(--ocean-deep);
  color: var(--ghost-white);
  font-size: var(--text-p);
  z-index: 100;
  border-radius: 0 0 4px 0;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

/* -----------FOCUS & ACCESSIBILITY----------- */

:focus-visible {
  outline: 3px solid var(--ocean-deep);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* -----------COMPONENTS----------- */

.cta,
.cta:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 1.2rem 2rem;
  text-align: center;
  background-color: var(--magenta-bloom);
  color: var(--smoke-white);
  border-radius: 5px;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.2s ease;
}

.cta:hover,
.cta:active {
  background-color: var(--magenta-bloom-shade);
  transform: translateY(-1px);
}

.card {
  padding: 2.5rem;
  background-color: var(--ocean-deep);
  border-radius: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(2, 103, 193, 0.25);
}

/* -----------ANIMATION----------- */

/* ----- SLIDE-IN-TOP ----- */

@-webkit-keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

/* ----- SLIDE-IN-BOTTOM ----- */

@-webkit-keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

/* ----- SLIDE-IN-LEFT ----- */

@-webkit-keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

/* ----- SLIDE-IN-RIGHT ----- */

@-webkit-keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

/* ----- NAVLINK FADE IN ----- */

@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

@keyframes animate {
  0% {
    top: calc(50% - 2px);
    left: -100%;
    height: 4px;
    z-index: 10;
  }
  50% {
    top: calc(50% - 2px);
    left: 0;
    height: 4px;
    z-index: 10;
  }

  100% {
    top: 0;
    left: 0;
    height: 100%;
    z-index: -10;
  }
}

/* -----------NAV SECTION----------- */

.nav-wrapper {
  position: fixed;
  top: 0;
  z-index: 20;
  width: 100%;
  margin-bottom: var(--section-divider-sml);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 10vh;
  background-color: #fff;
}

.logo {
  width: clamp(100px, 30vw, 150px);
  padding-top: 1.5rem;
}

.logo picture,
.logo img {
  width: 100%;
}

.nav-links {
  position: absolute;
  top: 10vh;
  right: 0;
  width: 100%;
  height: calc(100vh - 8vh);
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  background-color: var(--ocean-deep);
  color: var(--smoke-white);
  transform: translateX(100%);
  transition: transform 0.5s ease-in;
}

.nav-active {
  transform: translateX(0);
}

.nav-links li {
  opacity: 0;
}

.nav-links a {
  color: var(--smoke-white);
}

nav .cta {
  display: none;
}

.burger {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: opacity 0.3s ease;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: var(--charcoal);
  margin: 5px;
  transition: all 0.3s ease;
}

.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .line2 {
  opacity: 0;
}
.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

.nav-div {
  height: calc(10vh + var(--section-divider-sml));
}

/* -----------HEADER SECTION----------- */

header {
  margin-bottom: var(--heading-margin-bottom-med);
}

.header-text {
  padding: 0.5rem var(--body-padding-sml);
}

header h1,
.header-p {
  margin-bottom: var(--heading-margin-bottom-reg);
}

header .cta {
  margin-bottom: var(--heading-margin-bottom-reg);
}

.header-img {
  height: 40rem;
}

.header-img picture,
.header-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats {
  width: 100%;
  padding: var(--body-padding-sml);
  margin-bottom: var(--heading-margin-bottom-sml);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background-color: var(--smoke-white);
}

.stat-num {
  text-align: center;
  font-weight: 600;
  font-size: var(--text-h2);
  color: var(--ocean-deep);
}

.stat {
  text-align: center;
  padding: 1.6rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--charcoal);
}

.divider {
  display: none;
}

/* -----------ABOUT SECTION----------- */

.values,
.mission {
  display: none;
}

.about-us {
  margin-bottom: var(--heading-margin-bottom-med);
}

.about-img,
.social1-img1 {
  height: 35rem;
  margin-bottom: var(--heading-margin-bottom-reg);
  overflow: hidden;
  border-radius: 8px;
}

.about-img picture,
.about-img img,
.social1-img1 picture,
.social1-img1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about h2,
.about h4 {
  margin-bottom: var(--heading-margin-bottom-sml);
}

.about-text p {
  margin-bottom: var(--heading-margin-bottom-med);
}

.about-point {
  display: flex;
  gap: 1rem;
  margin-bottom: var(--heading-margin-bottom-sml);
}

.about-point-icon {
  color: var(--amber-signal);
}

.about-point-text strong {
  color: var(--ocean-deep);
  display: block;
}

/* -----------PAIN SECTION----------- */
.pain {
  background-color: var(--ocean-tint);
}

.pain h2,
.pain p {
  margin-bottom: var(--heading-margin-bottom-reg);
}

/* -----------SERVICES SECTION----------- */
.services {
  background-color: var(--navy-ink);
}

.services .section-tag {
  color: var(--amber-signal);
}

.services .section-tag::before {
  background-color: var(--amber-signal);
}

.services h2 {
  margin-bottom: var(--heading-margin-bottom-sml);
  color: var(--ghost-white);
}

.services .section-intro {
  margin-bottom: var(--heading-margin-bottom-med);
  color: oklch(82% 0.015 243);
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.service-card {
  color: var(--smoke-white);
}

.service-icon {
  color: var(--ghost-white);
  margin-bottom: var(--heading-margin-bottom-sml);
}

.service-card h3 {
  margin-bottom: var(--heading-margin-bottom-sml);
}

.service-tag {
  display: inline-block;
  padding: 0.4rem;
  margin-top: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}
/* -----------SOCIAL1 SECTION----------- */
.social1 {
  margin-bottom: var(--heading-margin-bottom-med);
}

.social1 h2 {
  margin-bottom: var(--heading-margin-bottom-reg);
}

.social1 > .social1-img1:first-child {
  display: none;
}

.social1-text {
  margin-bottom: var(--heading-margin-bottom-reg);
  color: var(--ghost-white);
}

.social1-text h4 {
  color: var(--ghost-white);
  margin-bottom: var(--heading-margin-bottom-sml);
}

/* -----------PROPOSITION SECTION----------- */

.proposition {
  background-color: var(--ocean-tint);
  margin-bottom: var(--heading-margin-bottom-med);
}

.proposition h2 {
  margin-bottom: var(--heading-margin-bottom-reg);
}

.numbers,
.proposition h4 {
  margin-bottom: var(--heading-margin-bottom-sml);
}

.numbers {
  font-size: var(--text-h4);
  font-weight: 700;
  color: var(--amber-signal);
}

.proposition-p {
  margin-bottom: var(--heading-margin-bottom-med);
}

/* -----------SOCIAL2 SECTION----------- */
.social2 {
  margin-bottom: var(--heading-margin-bottom-med);
}

.social2 h2 {
  margin-bottom: var(--heading-margin-bottom-reg);
}

.social2 p {
  margin-bottom: var(--heading-margin-bottom-reg);
}

/* -----------BENEFITS SECTION----------- */
.benefits {
  position: relative;
}

.benefits picture,
.benefits img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefits-text {
  position: relative;
  z-index: 10;
  color: var(--smoke-white);
}

.benefits h2,
.final h2,
.steps .section-intro,
.gallery h2,
.contact h2 {
  margin-bottom: var(--heading-margin-bottom-med);
}

.benefits h2,
.benefits h4 {
  color: var(--smoke-white);
}

.benefits h4,
.benefits i,
.steps h4,
.final h4,
.contact-li,
footer h4 {
  margin-bottom: var(--heading-margin-bottom-sml);
}

.benefits p,
.steps p,
.final p,
.contact p,
.contact-contacts,
footer address,
.footer-wrapper-socials {
  margin-bottom: var(--heading-margin-bottom-med);
}

.benefits i {
  font-size: var(--text-h3);
  color: var(--cyan-glow);
}

/* -----------STEPS SECTION----------- */
.steps {
  background-color: var(--smoke-white);
  margin-bottom: var(--section-divider-med);
}

.steps h2 {
  margin-bottom: var(--heading-margin-bottom-sml);
}

.steps-img {
  display: none;
}
/* -----------FINAL SECTION----------- */
.final {
  margin-bottom: 0;
  background-color: var(--navy-ink);
}

.final .section-tag {
  color: var(--amber-signal);
}

.final .section-tag::before {
  background-color: var(--amber-signal);
}

.final h2 {
  color: var(--ghost-white);
}

.final h4 {
  color: var(--ghost-white);
}

.final p,
.final li {
  color: oklch(82% 0.015 243);
}

.final-img {
  height: 35rem;
  margin-bottom: var(--heading-margin-bottom-reg);
  overflow: hidden;
  border-radius: 8px;
}

.final-img picture,
.final-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final li::before {
  content: "✓ ";
  margin-right: 5px;
  color: var(--amber-signal);
}

.final .cta {
  margin: 2rem auto;
}

/* -----------GALLERY SECTION----------- */
.gallery {
  background-color: var(--smoke-white);
}
.gallery-img {
  width: 90vw;
  margin: auto;
}

.gallery-img-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.gallery-img-wrapper > div {
  aspect-ratio: 1;
  overflow: hidden;
}

.gallery-img picture,
.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-img-wrapper > div:hover img {
  transform: scale(1.04);
}
/* -----------CONTACT SECTION----------- */
.contact {
  padding: 5rem var(--body-padding-sml);
}


.contact-li i {
  margin-right: 1rem;
  color: var(--ocean-deep);
}

form {
  display: flex;
  flex-direction: column;
}

form label {
  margin-bottom: var(--heading-margin-bottom-sml);
}

form input,
form select,
form textarea {
  padding: 1rem;
  margin-bottom: var(--heading-margin-bottom-reg);
  border: 2px solid transparent;
  border-radius: 4px;
  font-family: var(--ff-sans);
  color: var(--charcoal);
  background-color: var(--smoke-white);
  transition: border-color 0.2s ease;
}

form input:focus,
form select:focus,
form textarea:focus {
  outline: none;
  border-color: var(--ocean-deep);
}

form input[type="submit"] {
  cursor: pointer;
}

/* -----------FOOTER SECTION----------- */

footer {
  background-color: var(--navy-ink);
  border-top: 3px solid var(--amber-signal);
  color: var(--ghost-white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(4rem, 6vh, 8rem) var(--body-padding-sml) clamp(3rem, 4vh, 5rem);
}

.footer-name {
  font-family: var(--ff-lora);
  font-size: clamp(2.4rem, 3.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ghost-white);
  margin-bottom: 1.4rem;
}

.footer-tagline {
  color: oklch(65% 0.015 243);
  font-size: var(--text-p);
  line-height: 1.65;
  max-width: 40ch;
  margin-bottom: 2.5rem;
}

.footer-col-title {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-signal);
  margin-bottom: 1.5rem;
}

.footer-nav {
  display: block;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-nav a,
.footer-nav a:visited {
  color: oklch(65% 0.015 243);
  text-decoration: none;
  font-size: var(--text-p);
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--ghost-white);
}

.footer-contact address {
  font-style: normal;
  color: oklch(65% 0.015 243);
  line-height: 2;
  margin-bottom: 2rem;
}

.footer-contact address a,
.footer-contact address a:visited {
  color: oklch(65% 0.015 243);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact address a:hover {
  color: var(--ghost-white);
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid oklch(32% 0.05 243);
  border-radius: 4px;
  color: oklch(65% 0.015 243);
  font-size: 1.8rem;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.footer-socials a:hover {
  border-color: var(--amber-signal);
  color: var(--amber-signal);
}

.footer-bottom {
  border-top: 1px solid oklch(28% 0.05 243);
  padding: 1.8rem var(--body-padding-sml);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
  text-align: center;
}

.footer-bottom .text-small {
  color: oklch(45% 0.01 243);
  margin: 0;
}

.footer-credit,
.footer-credit:visited {
  color: oklch(45% 0.01 243);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.footer-credit:hover {
  color: var(--ghost-white);
}

@media screen and (min-width: 48em) {
  /* 768px */
  body,
  html {
    position: relative;
  }

  html {
    font-size: 62.5%;
  }

  /* -----------NAV SECTION----------- */

  .nav-wrapper {
    height: 12vh;
  }

  nav {
    height: inherit;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(0.8rem, 1.5vw, 2.5rem);
  }

  nav .cta {
    display: inline-flex;
    flex-shrink: 0;
  }

  .burger {
    display: none;
  }

  .nav-links {
    position: static;
    flex-direction: row;
    justify-content: flex-end;
    min-width: 0;
    gap: clamp(0.2rem, 0.8vw, 0.8rem);
    height: inherit;
    background-color: transparent;
    transform: translateX(0);
  }

  .nav-links li {
    opacity: 1;
  }

  .nav-links a,
  .nav-links a:visited {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 5px 10px;
    color: var(--ocean-deep);
    transition: 0.5s;
    overflow: hidden;
  }

  .nav-links a::before {
    content: "";
    position: absolute;
    top: calc(50% - 2px);
    left: -100%;
    width: 100%;
    height: 4px;
    background: var(--deep-sky-blue);
    transition: 0.5s;
  }

  .nav-links a:hover::before {
    animation: animate 0.5s linear forwards;
  }

  .nav-links a:hover,
  .nav-links a:active {
    color: var(--smoke-white);
  }

  .nav-div {
    height: calc(12vh + var(--section-divider-sml));
  }

  /* -----------HEADER SECTION----------- */

  header {
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: calc(100svh - 12vh - var(--section-divider-sml));
    overflow: hidden;
  }

  .header-text {
    height: 100%;
    padding: clamp(3rem, 5vh, 7rem) var(--body-padding-med);
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(2rem, 3vh, 4rem);
  }

  .header-head,
  .header-text-div {
    width: 100%;
    max-width: none;
  }

  .header-img {
    height: 100%;
    overflow: hidden;
  }

  .stats {
    width: 80%;
    max-width: 1000px;
    margin: -5rem auto 0;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    position: relative;
    z-index: 1;
    border-radius: 5px;
    gap: 0;
  }

  .stat {
    border: none;
  }

  .divider {
    display: block;
    width: 1px;
    height: 7rem;
    background-color: var(--cyan-glow);
    align-self: center;
  }

  .pre-pad {
    padding: var(--body-padding-med);
  }

  /* -----------ABOUT SECTION----------- */

  .about {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
  }

  .about-img {
    height: 45rem;
  }

  .about-img,
  .about-text {
    margin: 0;
    width: clamp(10rem, 50vw, 65rem);
  }

  /* -----------PAIN SECTION----------- */

  .pain-wrapper {
    margin: 0 auto;
    padding: var(--body-padding-med);
    width: clamp(20rem, 70vw, 90rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .pain-wrapper .section-tag,
  .pain-wrapper h2,
  .proposition .section-tag,
  .proposition h2 {
    align-self: flex-start;
  }

  /* -----------SERVICES SECTION----------- */
  .services-grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 1rem;
  }
  .service-card {
    width: calc((100% / 3) - 1rem);
    max-width: 460px;
  }
  /* -----------SOCIAL SECTION----------- */

  .social1-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .social1-img1,
  .social1-text {
    width: calc((100% / 2) - 1rem);
  }

  .social1-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .social1 h2 {
    margin-bottom: var(--heading-margin-bottom-lrg);
  }

  /* -----------PROPOSITION SECTION----------- */

  .proposition {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .proposition h2 {
    margin-bottom: var(--heading-margin-bottom-med);
  }

  .proposition-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
  }

  .proposition-wrapper > div {
    width: calc((100% / 2) - 5rem);
  }

  /* -----------SOCIAL2 SECTION----------- */
  .social2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
  }

  .social2 h2,
  .social2 div {
    width: calc((100% / 2) - 5rem);
    max-width: 622px;
  }

  /* -----------BENEFITS SECTION----------- */

  .benefits {
    height: 85rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }

  .line {
    width: 2px;
    height: 65rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--cyan-glow);
  }

  .benefits-text-wrapper {
    width: 70%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 5rem;
  }

  .benefits-div {
    width: calc((100% / 2) - 5rem);
    max-width: 390px;
  }

  .benefits h2 {
    text-align: center;
  }

  .benefits-text-wrapper .benefits-div:nth-child(even) {
    position: relative;
    top: 15rem;
  }

  /* -----------STEPS SECTION----------- */
  .steps {
    display: flex;
    max-height: 75rem;
  }

  .steps.pre-pad {
    padding: 0;
  }

  .steps > div {
    width: calc(100% / 2);
  }

  .steps-text {
    padding: var(--body-padding-med);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .steps-img {
    display: block;
    overflow: hidden;
  }

  .steps-img picture,
  .steps-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* -----------FINAL SECTION----------- */
  .final {
    display: flex;
    gap: 5rem;
  }

  .final > div {
    width: calc((100% / 2) - 5rem);
  }

  .final-img {
    height: auto;
    max-height: 410px;
    margin: 0;
  }

  .final p.no-oblig {
    margin: 0;
  }

  /* -----------GALLERY SECTION----------- */
  .gallery {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .gallery .section-tag,
  .gallery h2 {
    align-self: flex-start;
  }

  .gallery h2 {
    margin-bottom: var(--heading-margin-bottom-lrg);
  }

  .gallery-img-wrapper {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 24rem;
  }

  .gallery-img-wrapper > div {
    aspect-ratio: unset;
  }

  .div1 {
    grid-column: span 2;
  }

  .div1 .image picture,
  .div1 .image img {
    object-position: 10% 20%;
  }

  .div4 {
    grid-column: span 2;
  }

  .div6 {
    grid-row: span 2;
  }

  .div9 {
    grid-row: span 2;
  }

  /* -----------CONTACT SECTION----------- */
  .contact {
    padding: var(--body-padding-med);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
  }

  .contact .contact-text,
  .contact form {
    width: calc((100% / 2) - 5rem);
    max-width: 500px;
  }

  /* -----------FINAL SECTION (768px+)----------- */
  .final {
    padding: var(--body-padding-med);
  }

  /* -----------FOOTER (768px+)----------- */
  .footer-main {
    grid-template-columns: 1.6fr 1fr 1.2fr;
    align-items: start;
    gap: clamp(3rem, 6vw, 8rem);
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

@media screen and (min-width: 70em) {
  /* 1200px */

  .nav-wrapper {
    padding: 1.5rem 3rem;
    height: 10vh;
  }

  .nav-div {
    height: calc(10vh + var(--section-divider-sml));
  }

  header {
    grid-template-columns: 48fr 52fr;
    height: calc(100svh - 10vh - var(--section-divider-sml));
  }

  .header-text {
    gap: clamp(2rem, 3vh, 4rem);
  }

  .header-head,
  .header-text-div {
    max-width: 680px;
  }

  .social1-img1,
  .social1-text {
    width: calc((100% / 4) - 1rem);
  }

  .proposition-wrapper > div {
    width: calc((100% / 4) - 5rem);
  }

  .gallery-img-wrapper {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 26rem;
  }

  .gallery-img-wrapper > div {
    aspect-ratio: unset;
  }

  .div1 {
    grid-column: span 2;
  }

  .div4 {
    grid-column: span 2;
  }

  .div6 {
    grid-row: span 2;
  }

  .div9 {
    grid-row: span 2;
  }
}
