/* STYLES FOR ABOVE THE FOLD */
/*-- -------------------------- -*/
/*--        Funderline          -*/
/*-- -------------------------- -*/
/* Mobile - 360px */

@media only screen and (min-width: 0rem) {
    .funderline {
      margin-bottom: -15px;
      padding-bottom: 20px;

      display: inline-block;

      background-image: url(/assets/icons/funderline.svg);
      background-position: 50% 100%;
      background-size: contain;
      background-repeat: no-repeat;
    }
  }
  /*-- -------------------------- -*/
  /*--           Hero             -*/
  /*-- -------------------------- -*/
  /* Mobile - 360px */
  @media only screen and (min-width: 0rem) {
    #hero-1426 {
      /* Centers button */
      text-align: center;
      /* 200px - 300px - leaving extra space for the navigation */
      padding: 12rem 1rem;
      padding-bottom: 3rem;
      /* prevents the topper line from causing an overflow */
      overflow: hidden;
      z-index: 1;
      display: flex;
    }
    #hero-1426 .cs-background {
      width: 100%;
      height: 100%;
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      z-index: -2;
    }
    #hero-1426 .cs-background:before {
      /* Overlay */
      content: "";
      width: 100%;
      height: 100%;
      background: #000;
      opacity: 0.48;
      position: absolute;
      display: block;
      top: 0;
      left: 0;
      z-index: 1;
      /* prevents the cursor from interacting with it */
      pointer-events: none;
    }
    #hero-1426 .cs-background img {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      object-fit: cover;
    }
    #hero-1426 .cs-container {
      width: 100%;
      max-width: calc(1280 / 16 * 1rem);
      margin: auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: calc(48 / 16 * 1rem);
    }
    #hero-1426 .cs-content {
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
    #hero-1426 .cs-topper {
      /* 13px - 16px */
      font-size: clamp(0.8125rem, 1.5vw, 1rem);
      line-height: 1.2em;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-align: center;
      text-transform: uppercase;
      margin-bottom: calc(16 / 16 * 1rem);
      color: var(--secondary);
      display: inline-block;
      position: relative;
    }
    #hero-1426 .cs-title {
      /* 39px - 61px */
      font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
      font-weight: 700;
      line-height: 1.2em;
      text-align: center;
      position: relative;
      margin-bottom: calc(32 / 16 * 1rem);
    }
    #hero-1426 .cs-text {
      /* 16px - 20px */
      font-size: clamp(1rem, 1.95vw, 1.25rem);
      line-height: 1.5em;
      text-align: center;
      width: 100%;
      /* 464px - 622px */
      max-width: clamp(29rem, 60vw, 38.785rem);
      margin: 0 auto 0;
      margin-bottom: calc(32 / 16 * 1rem);
    }
    #hero-1426 .cs-magic {
        width: auto;
        background-color: #E8EEF9;
        border: 1px solid #1E3A8A;
        text-transform: uppercase;
        font-weight: bold;
        border-radius: 0.5rem;
        padding: 0 0.75rem;
    }
    #hero-1426 .blob-box {
      display: flex;
      align-items: center;
    }
    #hero-1426 .blob-box .blob {
        background: var(--primary);
        border-radius: 50%;
        margin: 1rem;
        min-height: 1.25rem;
        min-width: 1.25rem;
        box-shadow: 0 0 0 0 #000000;
        transform: scale(1);
        animation: pulse 2s infinite;
      }
      
      @keyframes pulse {
        0% {
          transform: scale(0.95);
          box-shadow: 0 0 0 0 rgba(30, 58, 138, 0.7);
        }
        70% {
          transform: scale(1);
          box-shadow: 0 0 0 10px rgba(30, 58, 138, 0);
        }
        100% {
          transform: scale(0.95);
          box-shadow: 0 0 0 0 rgba(30, 58, 138, 0);
        }
      }
    #hero-1426 .blob-box .cs-text {
      margin-bottom: 0;
    }
    #hero-1426 .cs-button-group {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 1.5rem;
      margin-bottom: 2rem;
    }
  }
  /* Tablet - 768px */
  @media only screen and (min-width: 48rem) {
    #hero-1426 {
      padding: 12.5rem 1rem;
      padding-bottom: 6rem;
      height: 90svh;
    }
    #hero-1426 .cs-title {
      max-width: 64rem;
    }
    #hero-1426 .cs-text {
      max-width: 56.25rem;
    }
    #hero-1426 .blob-box .cs-text {
      max-width: 100%;
    }
  }
  /* Tablet - 768px and height 800px or less */
  @media only screen and (min-width: 48rem) and (max-height: 50rem) {
    #hero-1426 {
      height: auto;
    }
  }
  @keyframes slide {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
  /* Dark Mode */
  @media only screen and (min-width: 0rem) {
    body.dark-mode #hero-1426 .cs-magic {
      color: var(--bodyTextColor);
    }
    body.dark-mode .cs-button-alt {
        background-color: transparent;
        color: #fff;
        border: 1px solid #fff;
    }
  }
