/* ===================================
   RESET & BASE STYLES
   =================================== */
@font-face {
    font-family: "Questrial";
    src: url("/fonts/Questrial-Regular.woff2") format("woff2");
    font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Questrial", sans-serif;
}
a {
  text-decoration: none !important;
  color: inherit;
  cursor: pointer !important;
}
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}
:root {
  --primary-yellow: #f7d151;
  --primary-red: #e03637;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #fff;
}

body.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 998;
}
body.overlay video,
body.overlay iframe {
  opacity: 0.2;
}
body.overlay section.stats-section {
  opacity: 0;
}
body.overlay section.hero {
  background-color: unset;
}
body.overlay::before {
  content: "";
  position: fixed;      /* covers entire viewport */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: 997;      /* stays on top */
  pointer-events: auto; /* blocks clicks underneath */
}

/* ===================================
   NAVIGATION STYLES
   =================================== */
.navbar {
  background-color: var(--primary-red);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.navbar.navbar-hidden {
  transform: translateY(-100%);
  transition: linear 1s ease-in;
}

.nav-container {
  max-width: 100vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 15vw;
  padding-top: 1.2vw;
}

/* Left: logo + text */
.nav-left {
  display: flex;
  flex-direction: row;
  align-items: normal;
  gap: 1.5vw;
}

.nav-logo img {
  width: 9vw; /* bigger logo */
  height: 9vw;
}

.nav-title {
  display: flex;
  flex-direction: column;
  color: var(--primary-yellow);
}

.nav-title h1 {
  font-size: 5.5vw; /* big heading */
  margin: 0;
  font-weight: bold;
  line-height: 1.2;
}

.nav-subtitle {
  font-size: 1.5rem; /* make it readable */
  display: flex;
  gap: 10px;
  justify-content: center;
}
/* Toggle */
.nav-toggle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  padding: 0.8rem 1.5rem;
  display: flex;
  justify-content: end;
  align-items: center;
  transition: all 0.3s ease;
}

.nav-toggle.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--primary-red);
  padding: 0.8rem 1.5rem;
  z-index: 100000;
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hidden state - slides up */
.nav-toggle.sticky.hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.nav-toggle-button {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-toggle span.text {
  margin-left: 10px;
  font-size: 1rem;
}

.nav-toggle .hamburger {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--primary-yellow);
  margin: 5px 0;
}

.nav-toggle.active .hamburger:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active .hamburger:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active .hamburger:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-toggle:hover .nav-toggle-button{
  transform: scale(1.1);
}
/* FULLSCREEN OVERLAY MENU */

.nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  background: var(--primary-red);
  color: white;
  transform: translateX(200%); /* Start hidden off-screen to the right */
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); /* Smooth easing */
  flex-direction: column;
  z-index: 999;
  padding-left: 9vw;
  width: 100%;
}

.nav-menu.active {
  transform: translateX(0);
}
body.nav-menu.active {
  overflow: hidden;
}

.close-menu {
  position: absolute;
  right: 5vw;
  top: 2em;
}

.close-menu svg {
  transition: transform 0.5s ease;
  cursor: pointer;
}

.close-menu svg:hover, .close-menu svg:focus {
  transform: rotate(90deg);
  color: var(--primary-yellow);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
  margin-top: 6rem;
  margin-bottom: 7rem;
}
.menu-column {
  width: max-content;
}

.menu-column h3 {
  color: var(--primary-yellow);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.menu-column ul {
  list-style: none;
  padding: 0;
}

.menu-column ul li {
  margin-bottom: 1rem;
}

.menu-column ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.3rem;
  transition: color 0.2s;
}

.menu-column ul li a:hover {
  color: var(--primary-yellow);
}

/* Footer inside overlay */
.menu-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  z-index: 2;
  margin-right: 15vw;
}
.menu-footer h1 {
  transition: all 0.3s ease;
}
.menu-footer h1:hover{
  color: #fff;
}
.menu-footer .nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--primary-yellow);
  font-weight: 500;
}
.menu-footer .nav-logo img {
  width: 80px;
  height: 80px;
}

.menu-footer .social {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.social-icons {
  display: flex;
  gap: 1rem;
}

.social p {
  font-size: 1.4rem;
  transition: all 0.3s ease;
}
.social p:hover{
  color: var(--primary-yellow);
}

.social-icons a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: var(--primary-red);
  border-radius: 50%;
  text-decoration: none;
  font-size: 0.9rem;
  transition: transform 0.2s;
}

.social-icons a:hover {
  transform: scale(1.1);
}

/* Watermark */
.watermark {
  position: absolute;
  bottom: 0;
  right: 10rem;
  width: 11em;
  opacity: 0.2;
  pointer-events: none;
  z-index: 1;
}
.nav-toggle p {
  color: var(--primary-yellow);
  margin-left: 1rem;
  font-size: 1rem;
}

/* ===================================
   CONTENT LAYOUT
   =================================== */
.content {
  max-width: 100vw;
  margin-left: auto;
  margin-right: auto;
}

.section {
  background: white;
  /* padding: 2rem; */
  margin: 2rem 0;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.section h2 {
  color: #333;
  margin-bottom: 1rem;
}

.section p {
  color: #666;
  line-height: 1.8;
}
.hero {
  height: fit-content;
  min-height: 90vh;
}
#home {
  background-color: #c32a2b;
}
.hero-video {
  background-color: #c32a2b;
}
/* ===================================
   STATISTICS SECTION
   =================================== */
.stats-section {
  padding: 4rem 6.5rem;
}

.stats-title {
  color: var(--primary-red);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: left;
  line-height: 1.2;
}

.stats-grid {
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 7em 0;
  gap: 3.8vw 5vw;
}

.stat-item {
  text-align: left;
}

.stat-number {
  color: var(--primary-yellow);
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-description {
  font-size: 1.2rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  font-weight: 400;
}

.stat-underline {
  width: 100%;
  height: 2px;
  background-color: var(--primary-red);
  margin: 1rem 0;
}

/* ===================================
   NEWS SECTION
   =================================== */
.news-section {
  background: white;
  padding: 2rem 0;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 4em;
}

.news-container {
  max-width: 1200px;
  margin: 0 auto;
}

.news-title {
  color: var(--primary-red);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 1em 0 3rem 1.3em;
}

.news-grid {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  gap: 2rem;
  margin: 4em 3.5em;
}

.news-card {
  background: white;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #00000026;
  flex: 1;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.news-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-content {
  padding: 1.5rem;
}

.news-card-title {
  color: var(--primary-red);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.news-description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.news-button-container {
  text-align: center;
}

.news-button {
  display: inline-block;
  background: var(--primary-red);
  color: white;
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(44, 74, 122, 0.1);
}

.news-button:hover {
  color: var(--primary-red);
  background: #fff;
  transform: scale(1.1);
  box-shadow: none
}

/* ===================================
       STICKY SCROLL SECTIONS
       =================================== */
.sticky-scroll-container {
  position: relative;
  padding: 0 3rem;
}

.sticky-section {
  color: #fff;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  position: sticky;
  top: 0;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  height: 57vw;
}

.sticky-section-1 {
  background: var(--primary-red);
  z-index: 10;
}

.sticky-section-2 {
  background: var(--primary-yellow);
  z-index: 20;
}
.sticky-section-3 {
  background: var(--primary-red);
  z-index: 30;
}

.sticky-content {
  display: flex;
  flex-direction: row;
  /* width: 100%; */
  height: 100%;
  padding: 0; /* remove padding for edge-to-edge image */
  margin: -1rem 0;
}

.sticky-text {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* horizontally center */
  padding: 3.8vw;
  text-align: center;
  padding-left: 3.9vw;
}

.sticky-title {
  font-size: 3.8vw;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.sticky-title .highlight {
  color: var(--primary-yellow)
}

.sticky-description {
  font-size: max(18px, 1.6vw);
  opacity: 0.9;
}

.sticky-image {
  flex: 1 1 50%;
  width: 50%;
  /* height: 100%; */
  object-fit: cover;
  margin: 0;
  border-top-right-radius: 50px;
  box-shadow: none;
  /* border-radius: 25px ; */
}
.sticky-section-2 img {
  border-top-left-radius: 50px;
  border-top-right-radius: 0;
}
/* ===================================
   QUOTE SECTION
   =================================== */
.quote-container {
  padding: 4em 0;
  min-height: calc(100vh - clamp(60px, 8vw, 80px));
  position: relative;
  background-color: #ffffff;
  min-height: 65vh;
  z-index: 40;
}

.citation {
  color: var(--primary-red);
  font-size: clamp(24px, 2.5vw, 3em);
  font-weight: 600;
  line-height: 1.2;
}

.quote-wrapper {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
}

.quote-mark-left {
  position: absolute;
  left: clamp(-15px, -2vw, -25px);
  top: clamp(-10px, -1.5vw, -20px);
  font-size: clamp(90px, 8vw, 70px);
  color: var(--primary-red);
  font-family: "Questrial", sans-serif;
  line-height: 1;
  z-index: 1;
}

.quote-mark-right {
  position: absolute;
  right: clamp(-15px, -2vw, -25px);
  bottom: clamp(-20px, -3vw, -40px);
  font-size: clamp(90px, 8vw, 70px);
  color: var(--primary-red);
  font-family: "Questrial", sans-serif;
  line-height: 1;
  z-index: 1;
}

.quote-text {
  color: var(--primary-yellow);
  font-size: clamp(30px, 9vw, 4.2em);
  font-weight: 500;
  line-height: 1.1;
  z-index: 2;
  padding: 0 clamp(15px, 2.5vw, 30px);
  margin-left: 0.7em;
  margin-top: 0.5em;
}

/* ===================================
   PARALLAX SECTION
   =================================== */
.parralax-section {
  position: relative;
  width: 100%;
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  overflow: hidden;

  line-height: 1.6;

  /* background parallax effect */

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* key for parallax */
}

.parralax-section-background {
  width: 100%;
  height: 100%;

  z-index: -2;
}

.parralax-section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.3); */
  z-index: -1;
}

.parralax-section-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

.parralax-section-title {
  font-size: 5rem;
  font-weight: 400;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.1;
}

.parralax-section-subtitle {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  margin-bottom: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.1;
}

.cta-button {
  display: inline-block;
  background: var(--primary-yellow);
  color: #000000;
  padding: 1rem 2.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
  text-shadow: none;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.parralax-section-1 {
  background-image: url("/images/IMG_9570.webp");
}
.parralax-section-2 {
  background-image: url("/images/children_playing.webp");
}
.parralax-section-3 {
  background-image: url("/images/dcf.webp");
}

/* ===================================
   GENERAL SECTION STYLES
   =================================== */
.section {
  background: white;
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.section h2 {
  color: #333;
  margin-bottom: 1rem;
}

.section p {
  color: #666;
  line-height: 1.8;
}

/* 
  EXPLORE SECTION
 */
.explore-section {
  background: white;
  padding: 4rem 2rem;
  margin: 2rem 0;
}

.explore-container {
  max-width: 1100px;
  margin: 0 auto;
}

.explore-title {
  color: var(--primary-red);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;

  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
}

.explore-cards {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
}

.explore-cards > * {
  flex: 1 1 0;
}
.explore-card {
  position: relative;
  display: block;
  border-radius: 40px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 3 / 4
}

.explore-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.explore-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.explore-card:hover .explore-card-image {
  transform: scale(1.05);
}

.explore-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 3rem 2rem 2rem;
  color: white;
}

.explore-card-title {
  margin-top: -6rem;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* map */

#map {
  height: 70vh;
  width: 100%;
}
/* ===================================
   FOOTER SECTION
   =================================== */
footer * {
  font-size: 1.3rem;
  color: var(--primary-red);
}
footer {
  background: #fff;
  padding: 3rem 2rem 1rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #ddd;
}

.footer-container {
  width: 100%;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13rem;
  position: relative;
  z-index: 2;
}

/* Contact */

.footer-contact {
  color: var(--primary-red);
}

.footer-contact div {
  max-width: 40%;
}
.footer-contact p {
  margin: 0.3rem 0;
}

.footer-contact a {
  color: var(--primary-red);
  font-weight: bold;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* Useful Links */
.footer-links h3 {
  color: var(--primary-red);
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.footer-links-grid a {
  color: var(--primary-red);
  text-decoration: none;
}

.footer-links-grid a:hover {
  color: var(--primary-yellow);
}

/* Branding + Social */
.footer-brand a {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-brand a img {
  width: 60px;
}

.footer-brand a span {
  font-weight: 600;
  /* font-size: 1rem; */
}

.footer-social {
  /* margin-top: 1rem; */

  display: flex;
  justify-content: right;
  gap: 1rem;
}

.footer-social a img {
  width: 22px;
  height: 22px;
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  /* border-top: 1px solid #ddd; */
  margin-top: 2rem;
  padding-top: 1rem;

  text-align: right;
  /* font-size: 0.85rem; */
  color: #444;
}

.footer-bottom a {
  color: var(--primary-red);
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Watermark */
.footer-watermark {
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%);
  opacity: 0.4;
  z-index: 1;
  width: 18vw;
}

.footer-watermark img {
  width: 100%;
}

/* ===================================
   MEDIA QUERIES  
=================================== */
@media screen and (max-width: 580px) {
  .stats-title {
    font-size: 6.5vw;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .menu-column ul li a {
    font-size: 2.3vw;
  }
}

@media screen and (max-width: 1000px) {
  .stats-grid {
    display: grid;
    grid-template-columns: 2fr 2fr;
    flex-direction: column;
  }
  .stat-description {
    font-size: 2.3vw;
  }
  .stat-number {
    font-size: 10vw;
  }
  .nav-menu {
    padding-left: 5vw;
  }
}

/* TABLETS */

@media screen and (max-width: 768px) {
  .nav-left {
    align-items: center;
  }
  .hero {
    height: 110vh;
    position: relative;
    overflow: hidden;
  }
  .hero-video {
    height: 100%;
    object-fit: cover;
  }
  .stats-grid {
    margin: unset;
  }
  .sticky-section {
    height: 90vh;
    top: 6em;
  }
  .sticky-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .stats-section {
    padding: 10vw;
  }
  .stat-description {
    font-size: max(16px, 3vw);
  }
  .menu-column ul li a {
    font-size: 3.5vw;
  }
  .menu-column h3 {
    font-size: 4vw;
  }
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .nav-menu {
    width: 100%;
  }
  .menu-footer {
    margin-right: 6vw;
  }

  .nav-subtitle {
    display: none;
  }

  .nav-toggle p {
    display: none;
  }

  .sticky-image {
    width: 100%;
    height: 100%;
    border-top-left-radius: 50px;
  }
  .sticky-section-2 img {
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
  }
  .sticky-text {
    padding: 18vw 4vw;
  }

  .sticky-section-2 .sticky-text {
    padding: 0vw 4vw;
  }

  .sticky-title {
    font-size: 2.5rem;
  }

  .sticky-description {
    font-size: 3.5vw;
  }

  .parent-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .parralax-section-1,
  .parralax-section-2 {
    z-index: 40;
  }

  .explore-cards {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 1.5rem;
    height: 90vh;
    width: 100%;
  }

  .explore-card-title {
    margin-left: 3r;
  }
  .footer-container {
    grid-template-columns: unset;
    gap: 4rem;
  }
  .footer-links {
    order: -1;
  }
  .footer-links h3 {
    font-size: 3vw;
  }
  footer * {
    font-size: 3.8vw;
  }
  .footer-watermark {
    top: 75%;
    left: 80%;
    width: 40vw;
  }
  .footer-bottom {
    display: block;
  }
  .footer-brand a {
    max-width: unset;
    margin-top: unset;
  }
  .footer-brand a img {
    width: 14vw;
  }
  .footer-brand a h1 {
    font-size: 5vw;
  }
  .privacy,
  .rights,
  .footer-bottom a {
    font-size: 2.8vw;
  }
  .news-card:nth-child(3) {
    display: none;
  }
  .parralax-section-title {
    font-size: 9vw;
  }
  .menu-footer {
    position: unset;
  }
  .menu-footer .nav-logo {
    position: absolute;
    top: 0;
    gap: 0;
  }
  .watermark {
    bottom: 10px;
    right: 0;
    width: 12em;
  }
  .menu-footer .nav-logo img {
    width: 13vw;
    height: 13vw;
  }
  .menu-column ul li a {
    font-size: 4.5vw;
  }
  .menu-column h3 {
    font-size: 6vw;
    font-weight: 400;
  }
  .nav-logo h1 {
    font-size: 5.5vw;
  }
  .nav-menu {
    padding-bottom: 12vw;
  }
}

/* MID SIZE */

@media screen and (max-width: 520px) {
  .news-grid {
    flex-direction: column;
  }
  .nav-container {
    padding-left: 2.5vw;
  }
}

/*MOBILE */

@media screen and (max-width: 430px) {
  .navbar {
    padding: 0 1.5rem;
  }
  .nav-menu {
    height:100%
  }
  .menu-grid {
    margin-left: 1em;
    gap: 1rem;
    margin-bottom: 12vw;
  }
  .close-menu {
    top: 1em;
  }
  .sticky-scroll-container {
    padding: 0 1rem;
  }

  .sticky-section {
    max-height: 800px;
    top: 2.5em;
  }
  .sticky-text {
    padding: 15vw 4vw;
  }
  .sticky-section-2 .sticky-text {
    display: block;
  }

  .sticky-title {
    font-size: 2rem;
  }

  .sticky-description {
    font-size: 4.5vw;
  }
  .quote-text {
    font-size: 7vw;
    font-weight: 400;
    line-height: 1.4;
    padding: unset;
    margin-top: 2.5em;
  }
  .quote-mark-left svg,
  .quote-mark-right svg {
    height: 25px;
  }
  .quote-mark-left {
    top: unset;
    left: -0.2em;
    bottom: 50vw;
  }
  .quote-container {
    min-height: unset;
  }
  .parralax-section {
    height: 50vh;
  }
  .parralax-section-title {
    font-size: 2.7rem;
  }
  .news-title {
    font-size: 1.8rem;
  }
  .news-grid {
    margin: 0 1.5em;
  }
  .news-button {
    margin-top: 3em;
  }
  .explore-section {
    margin: unset;
    padding: 2rem;
  }
  .explore-title {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    margin-top: 1rem;
  }
  .footer-container {
    gap: 2rem;
  }
  .social p {
    font-size: 1.2rem;
  }
  footer *,
  .footer-links h3 {
    font-size: 4.8vw;
  }
  .privacy,
  .rights,
  .footer-bottom a {
    font-size: 3.08vw;
  }
}
