/*-- -------------------------- -->
<---          Hero INDEX        -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
  #hero-index {
    padding: clamp(11.25rem, 23.82vw, 18.75rem) 1rem clamp(3.75rem, 7.82vw, 6.25rem);
    background-color: var(--secondary);
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #hero-index .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: clamp(4rem, 10vw, 7rem);
    position: relative;
    z-index: 2;
  }
  #hero-index .cs-content {
    text-align: center;
    max-width: 39.375rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 10;
  }
  #hero-index .cs-topper {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: inherit;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--headerColor);
    margin-bottom: 0.25rem;
    display: block;
    max-width: 25ch;
  }
  #hero-index .cs-title {
    font-size: clamp(2rem, 2.5vw, 2.65rem);
    font-weight: 700;
    line-height: 1.2em;
    text-align: center;
    max-width: 15ch;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
    position: relative;
    display: flex;
    flex-direction: column;
  }
  #hero-index .cs-text {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.5em;
    text-align: center;
    width: 100%;
    max-width: 33.1875rem;
    margin: 0 0 clamp(1.75rem, 3.92vw, 2.5rem) 0;
    color: var(--headerColor);
    opacity: 0.9;
  }
  #hero-index .cs-button-box {
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: center;
  }
  #hero-index .cs-picture {
    width: 100%;
    max-width: 37.5rem;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
  }
  #hero-index .cs-picture img {
    width: 100%;
    height: auto;
  }
  #hero-index .scrolling-words-container {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(2rem, 2.5vw, 2.65rem);
    font-weight: 700;
    text-align: center;
    line-height: 1.2em;
    max-width: 15ch;
    margin-left: 15%;
  }
  #hero-index .scrolling-words-container-2 {
    margin-left: 0%;
  }
  #hero-index .scrolling-words-box {
    height: 3rem;
    margin: 0.5rem;
    overflow: hidden;
    font-weight: 700;
  }
  #hero-index .scrolling-words-box ul {
    margin: 0 0.625rem;
    padding: 0;
    animation: scrollUp 6s infinite;
  }
  #hero-index .scrolling-words-box ul li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 3rem;
    list-style: none;
    font-size: clamp(2rem, 2.5vw, 2.65rem);
    color: var(--primary);
  }
  #hero-index .scrolling-words-box-2 {
    margin-left: 0;
  }
  #hero-index .scrolling-words-box-2 ul {
    margin: 0;
  }
  #hero-index .scrolling-words-box-2 ul li {
    justify-content: center;
  }
  @keyframes scrollUp {
    0%, 15% {
      /* Hold the first element for 15% of the animation duration */
      transform: translateY(0);
    }
    30%, 35% {
      transform: translateY(-20%);
    }
    50%, 55% {
      transform: translateY(-40%);
    }
    70%, 75% {
      transform: translateY(-60%);
    }
    90%, 95% {
      transform: translateY(-80%);
    }
    100% {
      transform: translateY(-400%); /* Ensures the 5th element (last) is shown */
    }
  }
  #hero-index .cs-wave {
    width: 100%;
    height: auto;
    display: block;
    position: absolute;
    left: 0;
    bottom: -1px;
    z-index: 1;
  }
  #hero-index .cs-wave path {
    width: 100%;
    height: auto;
  }
  #hero-index .mobile {
    bottom: -0.4375rem;
  }
  #hero-index .desktop {
    display: none;
  }
  body.dark-mode #hero-index {
    background-color: var(--dark);
  }
  body.dark-mode #hero-index:before {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--medium);
    opacity: 1;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: -1;
  }
  body.dark-mode #hero-index .cs-title,
  body.dark-mode #hero-index .cs-topper,
  body.dark-mode #hero-index .cs-text,
  body.dark-mode #hero-index .cs-number,
  body.dark-mode #hero-index .cs-desc {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #hero-index .cs-wave path {
    fill: var(--dark);
  }
  body.dark-mode #hero-index .cs-dark.mobile {
    visibility: visible;
    opacity: 1;
    bottom: -1px;
  }
}
@media only screen and (min-width: 64rem) {
  #hero-index {
    text-align: left;
    padding-bottom: 20vh;
  }
  #hero-index .cs-container {
    flex-direction: row;
    justify-content: space-between;
    overflow: visible;
    gap: clamp(1rem, 5vw, 2rem);
  }
  #hero-index .cs-content {
    width: 40vw;
    flex: none;
    align-items: flex-start;
  }
  #hero-index .cs-topper {
    text-align: left;
  }
  #hero-index .cs-title {
    text-align: left;
  }
  #hero-index .cs-text {
    text-align: left;
  }
  #hero-index .scrolling-words-container {
    display: flex;
    justify-content: left;
    align-items: left;
    text-align: center;
    margin-left: 0;
  }
  #hero-index .scrolling-words-box-2 ul li {
    justify-content: left;
  }
  #hero-index .desktop {
    display: block;
  }
  #hero-index .mobile {
    display: none;
  }
  #hero-index .cs-picture {
    width: 70vw;
    max-width: 58.5rem;
    position: absolute;
    top: auto;
    bottom: -9.25rem;
    right: -6.25rem;
  }
  body.dark-mode #hero-index .cs-desktop {
    display: none;
  }
  body.dark-mode #hero-index .mobile {
    display: none;
  }
  body.dark-mode #hero-index .cs-dark.mobile {
    display: none;
  }
  body.dark-mode #hero-index .cs-dark.desktop {
    visibility: visible;
    opacity: 1;
    bottom: -1px;
  }
}

/*# sourceMappingURL=critical.css.map */
