/* ============================================================
   Ever Wild Drinks — Stylesheet
   Design tokens from Figma: XP-08656 Landing Page v2
   ============================================================ */

/* ---- Design Tokens ---- */
:root {
  --deep-olive:  #3b4a2b;
  --gold:        #d4af37;
  --green-80:    #3f4b30;
  --green-50:    #889575;
  --green-40:    #a3b08e;
  --green-20:    #dbe8c3;
  --off-white:   #faf7f2;
  --peach:       #cc7a61;
  --white:       #ffffff;
  --energy:      #a0200f;
  --focus-color: #0b9444;
  --calm:        #f3765a;
  --rest:        #8b5fa8;

  --font-heading: 'Playfair Display', serif;
  --font-body:    'Lato', sans-serif;

  /* Dynamic side padding: 120px minimum, grows beyond 1440px to keep
     content capped at 1200px wide (1440 - 2×120 = 1200px max content) */
  --pad-lr:    max(120px, calc((100vw - 1200px) / 2));
  --section-y: 80px;
}

@media (max-width: 1200px) {
  :root { --pad-lr: 60px; }
}

@media (max-width: 900px) {
  :root { --pad-lr: 32px; --section-y: 60px; }
}

@media (max-width: 600px) {
  :root { --pad-lr: 20px; --section-y: 48px; }
}

/* ---- Reset ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--deep-olive);
  overflow-x: hidden;
}

img { display: block; }

/* ---- Typography ---- */
.label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--gold);
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--deep-olive);
}

h1 { font-size: 48px; line-height: 56px; }
h2 { font-size: 32px; line-height: 47px; }
h3 { font-size: 28px; line-height: 38px; }

/* FIX: explicit font-family and font-weight on body text classes */
.body-large {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 28.8px;
  color: var(--green-80);
}

.body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 25.6px;
  color: var(--green-80);
}

/* ---- Button ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background: var(--deep-olive);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.btn-primary:hover { background: #4d6438; }

/* ============================================================
   Announcement Bar
   ============================================================ */
.announcement-bar {
  background: var(--peach);
  padding: 8px 16px;
  text-align: center;
}

/* FIX: explicit font-weight */
.announcement-bar p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 25.6px;
  color: var(--white);
}

.announcement-bar strong { font-weight: 700; }

.announcement-bar a {
  color: var(--white);
  font-weight: 400;
  text-decoration: underline;
}

/* ============================================================
   Navigation
   FIX: padding-bottom 0 to match Figma height (24 + 64 = 88px)
   ============================================================ */
.nav {
  background: var(--white);
  padding: 24px var(--pad-lr) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
}

.nav-logo {
  width: 140px;
  height: 64px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.nav-logo img {
  position: absolute;
  height: 168%;
  width: auto;
  top: -34%;
  left: -21%;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  height: 550px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url(images/hero-bottles.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,0.65) 0%, rgba(255,255,255,0) 55%);
}

/* FIX: add max-width safety so content never overflows on intermediate widths */
.hero-content {
  position: absolute;
  left: var(--pad-lr);
  top: 50%;
  transform: translateY(-50%);
  width: 481px;
  max-width: calc(100% - var(--pad-lr) * 2);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-wave-top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 42px;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}

.hero-wave-top img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}

.hero-wave-bottom {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleY(-1);
  width: calc(100% + 648px);
  min-width: 2088px;
  height: 64px;
  overflow: hidden;
  pointer-events: none;
}

.hero-wave-bottom img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}

/* ============================================================
   Our Story
   FIX: use var(--pad-lr) for horizontal padding — the 325px
        fixed value only makes sense at 1440px (120px side pad).
        We override it at ≤1200px in the breakpoints below.
   ============================================================ */
.our-story {
  background: var(--green-20);
  padding: var(--section-y) max(325px, calc((100vw - 790px) / 2));
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

/* ============================================================
   Wave Divider
   ============================================================ */
.wave-divider {
  position: relative;
  height: 84px;
  overflow: hidden;
  background: var(--off-white);
  line-height: 0;
}

.wave-divider img {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: max(154%, 2208px);
  height: 100%;
  object-fit: fill;
  display: block;
}

/* ============================================================
   The Range
   ============================================================ */
.range {
  position: relative;
  padding: var(--section-y) var(--pad-lr);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  background: var(--off-white);
}

.range-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.range-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.range-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    #faf7f2 3.58%,
    rgba(255,255,255,0) 14.33%,
    rgba(255,255,255,0) 68.48%,
    #ffffff 95%
  );
}

.range-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  text-align: center;
}

.product-cards {
  position: relative;
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}

/* FIX: flex: 1 so cards distribute evenly — removes overflow at <1440px */
.product-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  flex: 1;
  min-width: 0;
}

/* FIX: fluid image sizing — maintains correct aspect ratio */
.product-card > img {
  width: 100%;
  max-width: 276px;
  height: auto;
  aspect-ratio: 276 / 218;
  object-fit: contain;
}

/* FIX: fluid heading container */
.product-card-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 178px;
}

.product-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  line-height: 38px;
}

.product-name.energy  { color: var(--energy); }
.product-name.focus   { color: var(--focus-color); }
.product-name.calm    { color: var(--calm); }
.product-name.rest    { color: var(--rest); }

.product-flavour {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 25.6px;
  color: var(--deep-olive);
}

.product-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 25.6px;
  color: var(--deep-olive);
  text-align: center;
}

/* ============================================================
   Why Ever Wild
   ============================================================ */
.why-ever-wild {
  padding: var(--section-y) var(--pad-lr);
  background: var(--white);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.section-header.centered {
  align-items: center;
  text-align: center;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.benefit-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  max-width: 375px;
}

.benefit-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center center;
  background-repeat: no-repeat;
}

.icon-bg-orange {
  background-image: url('images/icon-bg-orange.png');
}

.icon-bg-lgreen {
  background-image: url('images/icon-bg-lgreen.png');
}

.icon-bg-pink {
  background-image: url('images/icon-bg-pink.png');
}

.icon-bg-lblue {
  background-image: url('images/icon-bg-lblue.png');
}

.icon-bg-red {
  background-image: url('images/icon-bg-red.png');
}

.icon-bg-dgreen {
  background-image: url('images/icon-bg-dgreen.png');
}

.benefit-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--deep-olive);
}

/* Benefit titles use Body/Default/Bold (Lato 700 16px) not Heading H3 */
.benefit-text h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  color: var(--deep-olive);
  margin-bottom: 6px;
}

.benefit-text p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 25.6px;
  color: var(--green-80);
}

/* ============================================================
   How It Works
   ============================================================ */
.how-it-works {
  background: var(--off-white);
  padding: var(--section-y) var(--pad-lr);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.steps {
  display: flex;
  gap: 67px;
  align-items: flex-start;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}

.step-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
  color: var(--gold);
}

.step-body h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  line-height: 38px;
  color: var(--deep-olive);
  margin-bottom: 8px;
}

.step-body p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 25.6px;
  color: var(--deep-olive);
}

/* ============================================================
   Wave Banner
   ============================================================ */
.wave-banner {
  position: relative;
  height: 56px;
  overflow: hidden;
  background: var(--white);
  line-height: 0;
}

.wave-banner img {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: max(131%, 1884px);
  height: 100%;
  object-fit: fill;
  display: block;
}

/* ============================================================
   Promise
   ============================================================ */
.promise {
  background: var(--white);
  padding: var(--section-y) var(--pad-lr);
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.promise-cards {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}

.promise-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.promise-icon {
  width: 63px;
  height: 63px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.promise-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--deep-olive);
}

.promise-card p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 25.6px;
  color: var(--deep-olive);
}

.quote-block {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.12);
  padding: 32px 40px;
  max-width: 817px;
  width: 100%;
  text-align: center;
}

.quote-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: italic;
  font-size: 28px;
  line-height: 38px;
  color: var(--deep-olive);
  margin-bottom: 30px;
}

.quote-author {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 25.6px;
  color: var(--deep-olive);
}

/* ============================================================
   Subscribe
   FIX: add background so off-white shows before bg image loads;
        use var(--pad-lr) via override below at ≤1200px
   ============================================================ */
.subscribe {
  position: relative;
  padding: var(--section-y) max(325px, calc((100vw - 790px) / 2));
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  text-align: center;
  background: var(--off-white);
}

.subscribe-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.subscribe-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subscribe-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(250,247,242,0) 68.57%, #faf7f2 100%);
}

.subscribe-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.subscribe-form {
  position: relative;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.subscribe-input {
  background: var(--white);
  border: 1px solid var(--green-50);
  border-radius: 32px;
  padding: 11px 24px;
  width: 370px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 25.6px;
  color: var(--deep-olive);
  outline: none;
  transition: border-color 0.2s;
}

.subscribe-input::placeholder {
  color: #b5b3ad;
  opacity: 1;
  transition: .3s ease opacity;
}

.subscribe-input:focus {
  border-color: var(--deep-olive);
}

.subscribe-input:focus::placeholder {
  opacity: 0;
}

.subscribe-note {
  position: relative;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 25.6px;
  color: var(--green-80);
}

/* ============================================================
   Footer Wave
   ============================================================ */
.footer-wave {
  position: relative;
  height: 100px;
  overflow: hidden;
  background: var(--deep-olive);
  line-height: 0;
}

.footer-wave img {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: max(161%, 2322px);
  height: 100%;
  object-fit: fill;
  display: block;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--deep-olive);
  padding: var(--section-y) var(--pad-lr);
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  text-align: center;
}

.footer-logo-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.footer-logo {
  width: 316px;
  height: 142px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.footer-logo img {
  position: absolute;
  height: 170%;
  width: auto;
  top: -35%;
  left: -21%;
}

.footer-tagline {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-btn {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  background: var(--green-40);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: background 0.2s;
  flex-shrink: 0;
}

.social-btn:hover { background: var(--green-50); }

.social-btn svg {
  width: 19px;
  height: 19px;
  fill: var(--white);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.footer-nav {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-nav a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 22.4px;
  color: var(--white);
  text-decoration: none;
}

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

.footer-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.4);
  flex-shrink: 0;
}

.footer-copy {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 22.4px;
  color: rgba(255,255,255,0.7);
}

/* ============================================================
   Responsive — ≤ 1200px
   FIX: override fixed 325px padding on our-story / subscribe
        here so it works for the full 1025–1200px range
   ============================================================ */
@media (max-width: 1200px) {
  .our-story { padding-left: var(--pad-lr); padding-right: var(--pad-lr); }
  .subscribe  { padding-left: var(--pad-lr); padding-right: var(--pad-lr); }
}

@media (max-width: 1100px) {
  .hero-bg {
    background-size: auto 100%;
    background-position: right -85px center;
  }

  .hero-content {
    width: 300px;
  }
}

/* ============================================================
   Responsive — Tablet landscape (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  h1 { font-size: 40px; line-height: 48px; }

  /* Product cards: 2 columns */
  .product-cards { flex-wrap: wrap; }
  .product-card  { flex: 0 1 calc(50% - 16px); }

  /* Why Ever Wild: 2 columns */
  .benefit-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  /* Promise cards: allow wrap */
  .promise-cards { flex-wrap: wrap; gap: 24px; }
  /* FIX: larger min-width so labels aren't clipped */
  .promise-card  { flex: 0 1 calc(20% - 20px); min-width: 140px; }

  /* Steps: reduce gap */
  .steps { gap: 40px; }
}

/* ============================================================
   Responsive — Tablet portrait (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  h1 { font-size: 34px; line-height: 42px; }
  h2 { font-size: 26px; line-height: 36px; }
  h3 { font-size: 22px; line-height: 30px; }

  /* Hero: content centred, full-width */
  .hero         { height: auto; min-height: 520px; }
  .hero-content {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    padding: 40px var(--pad-lr) 40px;
    text-align: center;
    align-items: center;
  }

  .hero-bg {
    position: relative;
    width: 100%;
    aspect-ratio: 15 / 8;
    background-image: url(images/hero-bottles-mobile.png);
    background-position: center;
  }

  .hero-bg img      { position: absolute; inset: 0; width: 100%; height: 100%; }
  .hero-wave-bottom { height: 50px; }

  /* Range: single column */
  .product-cards { flex-direction: column; align-items: center; }
  .product-card  { width: 100%; max-width: 320px; flex: none; }

  /* Steps: stack vertically */
  .steps { flex-direction: column; gap: 40px; }
  .step  { flex: none; width: 100%; }

  /* Promise cards: 3 + 2 layout */
  .promise-cards { flex-wrap: wrap; justify-content: center; gap: 24px; }
  .promise-card  { flex: 0 1 calc(33% - 16px); min-width: 130px; }

  /* Quote */
  .quote-block { padding: 24px; }
  .quote-text  { font-size: 22px; line-height: 32px; }

  /* Subscribe: stack form */
  .subscribe-form  { flex-direction: column; width: 100%; }
  .subscribe-input { width: 100%; max-width: 400px; }
  .subscribe-form .btn-primary { width: 100%; max-width: 400px; justify-content: center; }
}

/* ============================================================
   Responsive — Mobile (≤ 560px)
   ============================================================ */
@media (max-width: 560px) {
  h1 { font-size: 28px; line-height: 36px; }
  h2 { font-size: 22px; line-height: 30px; }
  h3 { font-size: 20px; line-height: 28px; }

  .body-large { font-size: 16px; line-height: 25.6px; }

  /* Nav: smaller logo, smaller button */
  .nav-logo    { width: 100px; height: 46px; }
  .btn-primary { padding: 12px 18px; font-size: 14px; }

  /* Hero */
  .hero-content { padding: 64px var(--pad-lr) 96px; }

  /* Announcement bar */
  .announcement-bar p { font-size: 13px; }

  /* Benefit grid: single column */
  .benefit-grid { grid-template-columns: 1fr; gap: 20px; }

  /* Step numbers */
  .step-num { font-size: 36px; line-height: 44px; }

  /* Promise cards: 2 columns */
  .promise-cards { gap: 20px; }
  .promise-card  { flex: 0 1 calc(50% - 10px); min-width: 0; }
  .promise-icon  { width: 64px; height: 64px; }
  .promise-icon svg { width: 26px; height: 26px; }

  /* Footer logo */
  .footer-logo     { width: 200px; height: 90px; }
  .footer-logo img { height: 170%; top: -35%; left: -21%; }
}


/* Modal Styling */
.modal {
  border: none;
  border-radius: 20px;
  padding: 0;
  max-width: 600px;
  width: 90%;
  background: #fdfaf5;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  
  /* Force centering */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0; 
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.modal-content {
  padding: 40px;
  text-align: center;
  position: relative;
}

/* Optional: Add a 'X' close button in the corner */
.close-x {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #434b34;
}

/* Ensure the body area scrolls */
.modal-body {
  text-align: left;
  margin: 20px 0;
  padding-right: 10px; /* Space so text doesn't touch the scrollbar */
  max-height: 60vh;    /* Modal will cover 60% of screen height before scrolling */
  overflow-y: auto;    /* Shows scrollbar only when needed */
  color: #434b34;
  line-height: 1.6;
}

/* Custom Scrollbar Styling (Webkit browsers like Chrome/Safari) */
.modal-body::-webkit-scrollbar {
  width: 6px;
}

.modal-body::-webkit-scrollbar-track {
  background: #f0ede8; 
  border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb {
  background: #434b34; 
  border-radius: 10px;
}

.modal-content {
  padding: 40px 40px 50px 40px; /* More padding at the bottom for a cleaner finish */
  text-align: center;
  position: relative;
}

/* Loading Spinner */
.spinner {
  display: none; /* Hidden by default */
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 0.8s linear infinite;
  margin-left: 10px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* State when button is processing */
.btn-primary.is-loading {
  pointer-events: none;
  opacity: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-primary.is-loading .spinner {
  display: inline-block;
}


@media (max-width: 768px) {
    .hero-bg {
        margin-top:20px;
    }
    .hero-wave-top {
        display:none;
    }
}