.carousel {
      display: flex;
      flex-direction: column;
      overflow-x: clip;
      height: 600px;
      margin: 0;
    }

    .carousel .slides {
      display: flex;
      transition: transform 1s;
      transform: translateX(0);
      height: 100%;
    }

    .carousel .slides .slide {
      width: 100%;
      flex-shrink: 0;
    }

    .carousel .actions-container {
      bottom: 1.5rem;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 0;
      z-index: 1;
      gap: 0.5rem;
      position: relative;
    }

    .carousel .actions-container .hidden {
      display: none;
    }

    .carousel .actions-container .arrow-left,
    .carousel .actions-container .arrow-right {
      display: flex;
      align-items: center;
      /* justify-content: center; */
      background: none;
      border: none;
      cursor: pointer;
      width: 2rem;
      height: 2rem;
      min-width: 24px;
      min-height: 24px;
      padding: 0;
      transition: opacity 0.3s ease;
    }

    .carousel .actions-container .arrow-left:hover,
    .carousel .actions-container .arrow-right:hover {
      opacity: 0.7;
    }

    .carousel .actions-container .arrow-left svg,
    .carousel .actions-container .arrow-right svg {
      fill: #003865;
      width: .9375rem;
      height: 1.5625rem;
    }

    .carousel .actions-container .arrow-left {
      transform: scale(-1, 1);
    }

    .carousel .actions-container .pause-button {
      width: 30px;
      height: 30px;
      cursor: pointer;
      min-width: 24px;
      min-height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: none;
      border: 2px solid #008eaa;
      border-radius: 50%;
      padding: 0;
      transition: all 0.3s ease;
    }

    .carousel .actions-container .pause-button:hover {
      background-color: rgba(0, 142, 170, 0.1);
    }

    .carousel .actions-container .pause-button svg {
      width: 12px;
      height: 12px;
      fill: #008eaa;
    }

    .carousel .actions-container .pause-button.playing .play {
      display: none;
    }

    .carousel .actions-container .pause-button:not(.playing) .pause {
      display: none;
    }

    .carousel .actions-container .dots {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.3rem;
      margin: 0;
      padding: 0;
    }

    .carousel .dots .dot {
      min-width: 24px;
      min-height: 24px;
      width: 1.75rem;
      height: 1.75rem;
      border-radius: 50%;
      background-color: transparent;
      border: 2px solid #003865;
      margin: 0;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .carousel .dots .dot:not(.active):hover {
      background-color: #003865;
      border-color: #003865;
    }

    .carousel .dots .dot.active {
      background-color: #003865;
      border-color: #003865;
    }

    .carousel .slide {
      display: flex;
      height: 600px;
      padding: 4rem;
      max-width: 1250px;
      margin: 0 auto;
      position: relative;
    }

    .carousel .slide .slide-gradient-overlay {
      height: 100%;
      width: 100%;
      position: absolute;
      top: 0;
      left: 0;
      background: linear-gradient(180deg, rgba(255,255,255,0) 62.24%, #fff 100%);
      z-index: -1;
    }

    .carousel .slide.left .slide-content,
    .carousel .slide.right .slide-content {
      max-width: 434px;
      padding: 2.25rem 2.25rem;
    }

    .carousel .slide.center {
      text-align: center;
      justify-content: center;
      align-items: end;
    }

    .carousel .slide.center .slide-content {
      max-width: 80%;
      align-items: center;
      padding: .9375rem 1.0625rem;
    }

    .carousel .slide.left {
      text-align: left;
      justify-content: flex-start;
      align-items: center;
    }

    .carousel .slide.right {
      text-align: left;
      justify-content: flex-end;
      align-items: center;
    }

    .carousel .slide-bg {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      z-index: -1;
      height: 100%;
    }

    .carousel .slide-content {
      display: flex;
      flex-direction: column;
      gap: 24px;
      border-radius: 8px;
      background-color: rgba(255,255,255,.8);
    }

    .carousel .slide-content .slide-title {
      font-size: 3rem;
      font-weight: 700;
      line-height: 100%;
      font-family: Calibri, Trebuchet MS, Arial, sans-serif;
    }

    .carousel .slide-content .slide-cta {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: .625rem;
      font-size: 1.1875rem;
      padding: .625rem .9375rem;
      line-height: 23px;
      max-width: max-content;
      color: #fff;
      background-color: #007d96;
      text-decoration: none;
    }

    .carousel .slide-content .slide-cta:hover {
      background-color: #003865;
    }

    @media screen and (max-width: 767px) {
      .carousel {
        height: 682px;
      }

      .carousel .slide {
        height: 682px;
        text-align: center !important;
        justify-content: center !important;
        align-items: flex-end !important;
      }

      .carousel .slide .slide-content {
        align-items: center;
      }
    }

    @media screen and (max-width: 479px) {
      .carousel .slide {
        padding: 22px;
        height: 380px;
        margin-bottom: 30%;
      }

      .carousel .slide .slide-content {
        transform: translateY(50%);
      }
    }
