<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.custom-top-banner-container .carousel-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
  height: auto;
  background: linear-gradient(154.83deg, #2B7C6C 5.92%, #1B8A69 107.23%);
}

.slide-container {
  overflow: hidden;
}

.slide {
  width: 100%;
  height: 100%;
  display: inline-block;
  overflow: hidden;
}



.slide {
  transition: transform 0.5s;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

/* .slide {
  display: flex;
  transform: translateX(100%);
  transition: transform 0.5s ease;
} */

.slide.active {
  transform: translateX(0);
}

.carousel-slides::-webkit-scrollbar{
    display: none;
}

.carousel-slides {
  display: flex!important;
  overflow-x: scroll;
  scroll-behavior: smooth;
  width: 100%;
  overflow: hidden;
  animation: fade 1;

}

.slide {
  display: none;
  width: 100%;
}

.custom-top-banner-container  .carousel-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  width: 62px;
  height: 62px;
  background: #FFFFFF;
  border-radius: 31px;
}

.arrow_L{
    transform: rotate(180deg);
}

.arrow-img{
    height: auto!important;
}

.prev {
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    margin-left: 70px;
}

.next {
    display: flex;
    justify-content: center;
    align-items: center;
    right: 0;
    margin-right: 70px;
}


.hidden {
  display: none;
}

.dots-container {
  position: absolute;
  bottom: 28px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.dot {
  height: 11px;
  width: 11px;
  margin: 0 8px;
  border-radius: 50%;
  display: inline-block;
  background-color: #bbb;
  transition: background-color 0.6s ease;
}

.aactive, .dot:hover {
  background: linear-gradient(154.83deg, #396D61 5.92%, #4AB39A 75.57%, #40AE95 107.23%);
}

.slide {
  display: none;
  transition: all 0.5s ease-in-out;
}

.active {
  display: flex;
}


@keyframes slide-in-right {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slide-in-left {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slide-in {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
  /* Ipad Pro Portrait   */
@media screen and (orientation:portrait) and (max-width:834px) {
  .carousel-container {
    max-height: 394.99px;
    height: 100%;
  }

  .prev, .next {
    width: 50px;
    height: 50px;
    margin-top: -15px;
    font-size: 14px;
  }

  .prev {
    margin-left: 30px;
  }

  .next {
    margin-right: 30px;
  }


  .dots-container {
    bottom: 41px;
  }
  
}

 /* Ipad Pro 11" Landscape   */
@media screen and (orientation:landscape) and (max-width:1194px) {
    .carousel-container {
        max-height: auto;
        max-width: 1194px;
    }

    .prev, .next {
        margin-top: -15px;
        width: 50px;
        height: 50px;
        font-size: 14px;
        margin-left: 50px;
        margin-right: 50px;
        }

    .dots-container {
        bottom: 41px;
    }

} 

/* Mobile portrait */
@media screen and (orientation: portrait) and (max-width:515px) {
    .carousel-container {
        max-height: 177px;
        max-width: 375px;
    }

    .prev, .next {
        width: 50px;
        height: 50px;
        margin-top: -20px;
        border-radius: 25px;
    }

    .prev {
        display: none!important;
    }

    .next {
        display: none!important;
    }

        .dots-container {
        bottom: 27px;
    }

}

/* Mobile Landscape */
@media screen and (orientation:landscape) and (max-height:428px) and (max-width:926px) {
   
}</pre></body></html>