:root {
  --primary: #ff4d4d;
  --bg-dark: #000000;
  --bg-gradient: linear-gradient(180deg, #0c1330 0%, #000814 100%);
  --text: #ffffff;
  --muted: #b0b8d1;
  --max-width: 1400px;

  /* NEW */
  --nav-height: 80px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.dark {
  background: var(--bg-gradient);
}

.center {
  text-align: center;
}

.narrow {
  max-width: 800px;
  margin: 0 auto;
}


/* PAIN POINTS */

#pain {
  background: linear-gradient(
    to bottom,
    #000000 0%,
    #0e1533 8%,
    #141c3f 15%,
    #192454 25%,
    #192454 30%,   /* shorter full purple plateau */
    #18224f 45%,
    #10183a 60%,   /* fade begins earlier */
    #060914 75%,
    #000000 100%
  );

  padding-top: 10rem;
}

.pain-section{
  position: relative; 
  overflow: hidden;
  padding-bottom: 12rem;   
}

.pain-section > .container{
  position: relative;
  z-index: 2;
}

.pain-section::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 250px;
  pointer-events: none;
  z-index: 1;

  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0) 55%,   /* pure background longer */
    rgba(0,0,0,0.6) 80%,
    #000 100%
  );
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 2rem;
}

.section-block h2 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 4rem;
}

.col-item {
  max-width: 320px;
  margin: 0 auto;
  position: relative;
    font-size: 1.1rem;
}

.col-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 5%;
  right: -1.5rem; /* half of gap */
  height: 80%;
  width: 2px;
  background: rgba(255, 255, 255, 0.25);
}

.section-block + .section-block {
  padding-top: 6rem;
}

.tight {
  max-width: 700px;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 7rem; 
}

.section-cta .nav-cta{
  border-radius: 8px;
}


/* =========================
   REVIEWS (fresh)
   ========================= */

.reviews-inner {
  text-align: center;
  max-width: 1100px;
}

/* Badge title: match ABOUT style */
.reviews-badge {
  display: inline-block;
  padding: 0rem 1rem;
  border: 2px solid #47e0f2;
  border-radius: 10px;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 4rem;
}

/* viewport / track */
.reviews-viewport {
  overflow: hidden;
  margin-top: 3rem;
}

.reviews-track {
  display: flex;
  transition: transform 600ms ease;
  will-change: transform;
}

/* each “page” holds 3 cards */
.reviews-page {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

/* card styling similar to your dark cards but closer to screenshot */
.review-card {
  background: rgba(15, 22, 41, 0.85);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  padding: 1.4rem;
  text-align: left;
  min-height: 170px;
}

/* header row */
.review-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.review-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-top: 0.35rem;
}

.review-star {
  font-size: 0.85rem;
  line-height: 1;
}

.review-source {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.95;
}

/* body text */
.review-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
}

/* dots */
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
}

.reviews-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(71,224,242,0.7);
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.reviews-dot.active {
  background: rgba(71,224,242,0.9);
}

/* HEADER */

/* hamburger hidden on desktop */
.nav-toggle {
  display: none;
  height: 40px;
  width: 44px;
  margin-left: 1rem;

  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  cursor: pointer;
}

/* dropdown hidden by default */
.nav-menu {
  display: none;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(5,7,13,0.75);
  backdrop-filter: blur(8px);
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--nav-height);
}

.nav-right > a {
  margin-left: 2rem;
  color: white;
  text-decoration: none;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo img {
  height: 50px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  font-family: 'Exo 2', sans-serif;
  color: #ffffff;
}

.logo-title,
.logo-subtitle {
  font-size: 1.1rem;  
  font-weight: 600;   
  color: #ffffff;  
}


.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-cta{
  height: 40px;
  padding: 0 1.25rem;
  
  width: auto;

  border-radius: 0;
  display:flex;
  align-items:center;
  justify-content:center;

  background: var(--primary);
  color:#fff;
  text-decoration:none;
  font-weight:500;

  white-space: nowrap;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-icon {
  width: 20px;
  height: 20px;
}

/* HERO SECTION */

.mobile-title {
  display: none;
}

/* hero CTA base */
.hero-cta {
  height: 40px;
  padding: 0 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  width: max-content;
}

.hero-cta.mobile-only { display: none; }

.hero {
  position: relative;
  height: 80vh;
}

.hero-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero h1 {
  font-size: 1.6rem;       
  font-weight: 600;
  color: #47e0f2;
  text-transform: none;
  margin-bottom: .7rem;
}

.hero h2 {
  font-size: 3.5rem;
    line-height: 1.2;
  margin-bottom: 1.3rem;
}

.desktop-copy {
  font-size: 1.2rem;
  margin-bottom: 2rem;
    color: #ffffff;
}

.hero-copy {
  margin-top: 100px;
}

.mobile-copy {
  display: none;
}


.section-transition {
  height: 150px;      /* HOW MUCH ABOVE THE FOLD */
  background: #000;  /* straight black */
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;     /* shorter fade */

  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.5) 55%,
    #000000 100%
  );

  pointer-events: none;
}

.hero-benefits {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  flex-wrap: wrap; /* helps responsiveness */
  margin-left: -6px;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.benefit img {
  width: 35px;
  height: 35px;
  padding: 6px;
  border-radius: 4px;
}

.benefit span {
  font-size: 1.2rem;
  /* font-weight: 500; */
}

.section-block {
  text-align: center;
}

/* ABOUT SECTION */

#about {
  background: linear-gradient(
    to bottom,
    #000000 0%,
    #0b0f25 20%,
    #192454 60%,
    #192454 100%
  );
}

#about h2{
  display: inline-block;        /* shrink to text width */
  padding: 0rem 1rem;       /* space inside box */
  border: 2px solid #47e0f2;    /* your cyan */
  border-radius: 10px;          /* rounded corners */
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 4rem;
}

#about p{
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255,255,255);
  max-width: 65ch;
  margin: 0 auto;
}


/* SERVICES SECTION */

/* Services section background (keep your gradient if you want) */
#services {
  background: linear-gradient(
    to bottom,
    #192454 0%,
    #141c3f 22%,
    #0c122a 45%,
    #000000 75%,
    #000000 100%
  );


  padding-top: 3rem;
  padding-bottom: 6rem; /* keep bottom spacing */

}


.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.25rem 4.5rem; /* row gap, col gap */
}

.service-icon {
  width: 30px;
  margin-bottom: 1rem;

  /* if your icons are images, remove background */
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-text {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 30ch; /* keeps paragraphs from getting too wide */
}

.services-inner {
  max-width: 800px;  /* try 950–1150 */
  margin: 0 auto;
}

/* GETTING STARTED */
/* SECTION BACKGROUND */
#getting-started {
  background: linear-gradient(
    to bottom,
    #000000 0%,
    #0b0f25 10%,
    #141c3f 18%,
    #192454 25%,   /* full purple peak */
    #18224f 40%,
    #10183a 60%,
    #060914 80%,
    #000000 100%
  );
}

/* LAYOUT */
.getting-started {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

#getting-started .getting-started {
  max-width: 900px;
  gap: 6rem;
  margin-top: 10rem;
}

.gs-left {
  display: flex;
  flex-direction: column;
  align-items: center;   /* centers horizontally */
  text-align: center;    /* centers text */
}

.nav-cta{ border-radius: 8px; }
.header .nav-cta{ border-radius: 0; }  /* keep header square */


/* LEFT SIDE */
.gs-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.gs-description {
  color: rgba(255,255,255);
  margin-bottom: 2rem;
  max-width: 30ch;
    font-size: 1.2rem;
  font-weight: 400;
}

/* RIGHT SIDE */
.gs-steps {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.gs-step {
  display: flex;
  align-items: flex-start; 
  gap: 1.5rem;
}

.gs-number {
  font-size: 4rem;
  font-weight: 700;
  min-width: 40px;
  line-height: 1;
}

.gs-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.gs-content p {
  font-size: 1rem;
  color: rgba(255,255,255);
  line-height: 1.4;
  font-weight: 400;
}

/* =========================
   WHY TRUSTED LINK (REDO)
   ========================= */

#why.why-section {
  /* black -> strong purple ~25% -> slow fade back to black */
  background: linear-gradient(
    to bottom,
    #000000 0%,
    #050814 20%,
    #0b0f25 40%,
    #141c3f 60%,
    #18224f 72%,
    #192454 80%,   /* 👈 purple peak */
    #141c3f 88%,
    #0a0d1a 95%,
    #000000 100%
  );

  position: relative;
  overflow: hidden;
  padding-bottom: 15rem;
}

#why .why-inner {
  text-align: center;
  max-width: 1000px;
  margin-top: 6rem;
}

/* Title badge: match ABOUT section exactly */
#why .why-badge {
  display: inline-block;
  padding: 0rem 1rem;            /* matches #about h2 */
  border: 2px solid #47e0f2;     /* your cyan */
  border-radius: 10px;          /* matches #about h2 */
  font-size: 2.5rem;            /* matches #about h2 desktop */
  font-weight: 700;             /* matches #about h2 */
  margin-bottom: 4rem;          /* matches about spacing vibe */
}

/* Layout similar to your pain/services grid spacing */
#why .why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4.5rem;
  align-items: start;
  margin-top: 3rem;
}

#why .why-item {
  max-width: 320px;
  margin: 0 auto;
}

/* Icon sizing (your icons are transparent so this is clean) */
#why .why-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

#why .why-icon img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  display: block;
}

/* Headings + body: match GETTING STARTED typography */
#why .why-title {
  font-size: 1.4rem;     /* matches .gs-content h3 */
  margin-bottom: 0.5rem; /* matches .gs-content h3 spacing */
  font-weight: 600;      /* close to GS heading weight feel */
}

#why .why-text {
  font-size: 1rem;              /* matches .gs-content p */
  color: rgba(255,255,255);     /* matches GS */
  line-height: 1.8;             /* matches .gs-content p */
  font-weight: 400;             /* matches .gs-content p */
}

/* Responsive: mirror your 1000px breakpoint behavior */
@media (max-width: 1000px) {
  #why .why-badge {
    font-size: 2rem;      /* matches your mobile about sizing */
    margin-bottom: 2.5rem;
  }

  #why .why-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  #why .why-item {
    max-width: 420px;
  }

  /* Keep the same GS sizing on mobile */
  #why .why-title {
    font-size: 1.2rem; /* matches GS mobile h3 */
  }

  #why .why-text {
    line-height: 1.6; /* matches GS mobile p */
  }
}

/* =========================
   FINAL CTA SECTION
   ========================= */

#final-cta.final-cta-section {
  position: relative;
  overflow: hidden;

  padding: 8rem 0;

  background: linear-gradient(
    to bottom,
    #000000 0%,
    #0b0f25 30%,
    #141c3f 55%,
    #192454 70%,   /* 👈 moved glow lower */
    #0b0f25 88%,
    #000000 100%
  );
}

.final-cta-inner {
  text-align: center;
  max-width: 800px;
  padding-bottom: 9rem;
}

.final-cta-heading {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
  line-height: 1.4;
}

/* Button slightly larger presence */
.final-cta-btn {
  width: auto;
  display: inline-flex;   /* prevents full-width stretching */
  padding: 1.25rem;
  height: 42px;
  border-radius: 8px;
}

/* =========================
   FOOTER
   ========================= */

.site-footer {
  background: #000;          /* no gradient */
   padding: 3rem 0 1.25rem;
}

.footer-inner {
  position: relative;
  min-height: 200px;         /* gives room for centered copyright */
}

/* left block */
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-family: 'Exo 2', sans-serif;
  color: #fff;
  font-weight: 500;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-left: 54px; /* match logo width + gap */
}

.footer-contact a {
  color: rgba(255,255,255);
  text-decoration: none;
  font-size: 1rem;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* centered copyright line */
.footer-bottom {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  color: rgba(255,255,255);
  font-size: 1rem;
  text-align: center;
  width: 100%;
  padding: 0 2rem;
}

/* TRANSITION ARROW */
html { scroll-behavior: smooth; }

.scroll-down-min {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  z-index: 5;

  width: 70px;
  height: 70px;

  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;

  bottom: 250px;
}

.scroll-down-min span {
  width: 34px;
  height: 34px;

  border-right: 5px solid #ffffff;
  border-bottom: 5px solid #ffffff;

  transform: rotate(45deg);
  transform-origin: center;

  animation: arrowIdle 1.8s ease-in-out infinite;
  transition: transform 220ms ease;
}

/* Pause idle + do a stronger move on hover */
.scroll-down-min:hover span {
  animation-play-state: paused;
  transform: translateY(14px) rotate(45deg); /* translate first = pure vertical */
}

/* Pure vertical idle animation */
@keyframes arrowIdle {
  0%, 100% { transform: translateY(0px) rotate(45deg); }
  50%      { transform: translateY(10px) rotate(45deg); }
}

#pain {
  scroll-margin-top: 200px; /* adjust this number */
}


/* BUTTON AFFECT */

.nav-cta,
.hero-cta,
.cta-button {
  transition: 
    transform 200ms ease,
    filter 200ms ease;
}

.nav-cta:hover,
.hero-cta:hover,
.cta-button:hover {
  transform: translateY(-2px) scale(1.03);
  filter: brightness(1.1);
}

/* LOGO TOP NAVIGATION */
.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;          /* keep your gap */
  text-decoration: none;
  color: inherit;
}


/* CLIENT SUPPORT ANIMATION */

/* faded background */
/* .nav-link {
  position: relative;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  transition: background 200ms ease;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.08);
} */

/* color change and pop */
/* .nav-link {
  transition: letter-spacing 200ms ease, color 200ms ease;
}

.nav-link:hover {
  letter-spacing: 0.5px;
  color: #47e0f2;
} */

/* subtle slide left */
.nav-link {
  transition: transform 200ms ease;
}

.nav-link:hover {
  transform: translateX(3px);
}

/* BOLD THE LINKS WITHOUT ICONS */

.nav-menu a { color:#fff; text-decoration:none; }
.nav-menu .nav-link { transform:none; transition:none; }

.nav-right .nav-link:not(.phone):not(.small-btn) {
  opacity: 0.9;
  font-weight: 500;
}

.nav-right .nav-link:not(.phone):not(.small-btn):hover {
  opacity: 1;
}


@media (max-width: 1000px) {
  /* HEADER */
  .desktop-only { display: none !important; }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav { position: relative; }

  .nav-menu {
    position: absolute;
    top: var(--nav-height);
    right: 2rem;
    min-width: 260px;
    padding: 0.9rem 1rem;
    background: rgba(5,7,13,0.95);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    display: none;
  }

  .nav-menu.open { display: block; }

  .nav-menu .nav-link{
    margin: 0;
    padding: 0.75rem 0;
    display: flex;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
  }

  .nav-cta-menu { margin-top: 1rem; width: 100%; }

  /* HERO */


  .hero-cta.mobile-only { display: flex !important; }

  .hero .nav-cta.hero-cta {
    width: 220px;
    margin: 1.25rem 0 0;
  }


  .hero h2 {
    display: none;
  }


  .desktop-title {
    display: none;
  }

  .mobile-title {
    display: block;
    color: #ffffff;
    font-size: 1.9rem;
    line-height: 1.5;
    font-weight: 600;
  }

  .mobile-title .subline {
    display: block;
    margin-top: 0.25rem;
    color: #ffffff;
    font-size: 1.9rem;
    line-height: 1.5;
    font-weight: 600;
  }

  .desktop-copy { display: none; }

  .mobile-copy { 
    display: block;
    font-size: 1.2rem;   
    line-height: 1.6;     
    color: rgba(255,255,255);          
    margin-bottom: 3rem;
    margin-top: 2rem;
    }

  .hero-benefits{
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 4rem;
    margin-left: 0;
  }

  .section-block h2{
    font-size: 1.7rem;
    line-height: 1.25;
    margin-bottom: 2rem;
  }

  .three-col{
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .col-item:not(:last-child)::after{
    display: none;
  }

  .col-item{
    font-size: 1rem;
    max-width: 100%;
  }

  .section-block + .section-block{
    padding-top: 3rem;
  }

  .section-block + .section-block {
    padding-top: 5.5rem;
  }

  /* ABOUT SECTION */

    #about h2 {
    font-size: 2rem;
  }
  #about .section-title-badge {
    padding: 0.6rem 1.1rem;
  }


    .services-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* GETTING STARTED */

   /* STACK columns */
  #getting-started .getting-started {
    grid-template-columns: 1fr;
    gap: 2.5rem;          /* smaller gap when stacked */
    max-width: 800px;     /* keep your constraint (optional) */
  }

  /* LEFT column spacing */
  .gs-left {
    align-items: flex-start;  /* feels better on mobile than centered */
    text-align: left;
  }

  .gs-heading {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }

  .gs-description {
    font-size: 1.1rem;
    max-width: 40ch;
    margin-bottom: 1.5rem;
  }

  /* Steps: tighter + readable */
  .gs-steps {
    width: 100%;
    max-width: 400px;   /* match services */
    margin: 0;
    margin-top: 3rem;
  }

  .gs-step {
    gap: .8rem;             /* tighter number/content spacing */
  }

  .gs-number {
    font-size: 3rem;       /* smaller so it doesn’t dominate */
    min-width: 32px;
  }

  .gs-content h3 {
    font-size: 1.2rem;
  }

  .gs-content p {
    line-height: 1.6;
  }


  /* WHY SECTION */

    #why .why-grid {
    grid-template-columns: 1fr;
    gap: 2.8rem;
  }

  #why .why-item {
    max-width: 320px;   /* 👈 narrower */
    margin: 0 auto;     /* keeps centered */
  }


  /* REVIEWS SECTION */

    .reviews-badge {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }

  .reviews-page {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .review-card {
    max-width: 420px;
    margin: 0 auto;
  }


  /* FINAL CTA SECTION */
    .final-cta-heading {
    font-size: 1.5rem;
    line-height: 1.5;
  }

  #final-cta {
    padding: 6rem 0;
  }

  /* FOOTER */

    .site-footer {
    padding: 3.5rem 0 3rem;
  }

  .footer-inner {
    min-height: 170px;
  }

  .footer-logo {
    width: 40px;
    height: 40px;
  }

  .footer-bottom {
    font-size: 0.85rem;
      margin-left: 54px;
  text-align: left;
  }

  /* SCROLL CHEVRON */


    .scroll-down-min {
    width: 50px;
    height: 50px;
        /* left: 2rem;
    transform: none;  */
  }

  .scroll-down-min span {
    width: 22px;
    height: 22px;
    border-right: 4px solid #ffffff;
    border-bottom: 4px solid #ffffff;
  }

  
.nav-cta-menu {
  width: 100%;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}
}
