 :root {
      --blue: #0876b9;
      --navy: #034981;
      --ink: #1d2430;
      --purple: #8d74b4;
      --white: #fff;
      --border: #e5e9ee;
    }

    /* .topline {
      height: 6px;
      background: var(--blue);
    } */
    

    /* =========================
       CAROUSEL
    ========================== */

    .carousel {
      position: relative;
      overflow: hidden;
      /* background: #908dc5; */
       padding-top: 100px;
    }

      @media (max-width: 992px) {
      .carousel {
          padding-top: 1px;
      }
  }

    .banner {
      min-height: clamp(190px, 40vw, 650px);
      position: relative;
      display: grid;
      place-items: center;
      overflow: hidden;
    }

    .banner-image {
      position: absolute;
      inset: 0;
      background: center / cover no-repeat;
      transition: opacity .45s ease, transform .6s ease;
    }

    .banner:hover .banner-image {
      transform: scale(1.015);
    }

    .shade {
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(34, 30, 86, .15), transparent 60%);
      pointer-events: none;
    }

    .slide-label {
      position: relative;
      z-index: 1;
      align-self: end;
      justify-self: start;
      margin: 0 0 22px clamp(20px, 6vw, 82px);
      padding: 8px 14px;
      color: var(--white);
      background: #064e91e8;
      border-left: 5px solid var(--white);
      text-transform: uppercase;
      letter-spacing: .1em;
      font: 700 13px/1 Roboto;
      opacity: 0;
      transform: translateY(15px);
      transition: .35s;
    }

    .slide-label.show {
      opacity: 1;
      transform: translateY(0);
    }

    .controls {
      position: absolute;
      z-index: 2;
      right: clamp(16px, 4vw, 62px);
      bottom: 20px;
      display: flex;
      align-items: center;
      gap: 9px;
    }

    .arrow {
      width: 39px;
      height: 39px;
      border: 1px solid var(--white);
      color: var(--white);
      background: #063f71bb;
      font-size: 23px;
      transition: .2s;
    }

    .arrow:hover {
      background: var(--blue);
    }

    .dots {
      display: flex;
      gap: 7px;
      margin: 0 8px;
    }

    .dot {
      width: 9px;
      height: 9px;
      padding: 0;
      border: 0;
      border-radius: 50%;
      background: #fff9;
    }

    .dot.active {
      width: 26px;
      border-radius: 9px;
      background: var(--white);
    }

    /* =========================
       DETAILS
    ========================== */

    .details {
      min-height: 196px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 30px;
      align-items: center;
      padding: 10px 20px 10px 20px;
      /* border-bottom: 6px solid var(--blue); */
    }

    .details p {
      margin-bottom: 12px;
      font: 700 clamp(14px, 2vw, 24px)/1.35 "Barlow Condensed";
      text-transform: uppercase;
      letter-spacing: .025em;
    }

    .details h2 {
      color: var(--purple);
      text-transform: uppercase;
      font: 700 clamp(22px, 3.2vw, 45px)/1.05 "Barlow Condensed";
      letter-spacing: .055em;
    }

    .badge {
      min-width: 155px;
      padding: 17px;
      text-align: center;
      color: var(--white);
      background: var(--navy);
      box-shadow: 8px 8px 0 var(--purple);
    }

    .badge span {
      display: block;
      margin-bottom: 3px;
      font-size: 11px;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .badge strong {
      font: 700 44px/.95 "Barlow Condensed";
    }


@media (max-width: 720px) {

  .controls {
    position: relative;
    z-index: 2;
    right: clamp(16px, 4vw, 62px);
    bottom: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    background: #00000000;
  }


  .dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #06060699;
  }

}