.custom-slider .swiper-wrapper{
  column-gap: 55px;
  padding: 45px;
}
.custom-slider {
  position: relative;
  z-index: 2;
}
.custom-slider div.text-left.mt-3{
  display: flex;
  justify-content: space-between;
  max-width: 150px;
}
.custom-slider .custom-slider-wrapper {
  border-radius: 20px; 
  transition: all 0.2s ease-in-out;
}

.custom-slider__navigation {
  position: absolute;
  top: 50%;
  left: -5%;
  z-index: 2;
  transform: translateY(-50%);
  width: 110%;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}
@media (max-width: 992px) {
  .custom-slider__navigation {
    left: -7.5%;
    width: 115%;
  }
}

.custom-slider__navigation .swiper-control-prev {
  margin-left: 5px;
  transform: translateX(-40px);
  opacity: 0;
  transition: all .25s ease;
}
.custom-slider__navigation .swiper-control-next {
  margin-right: 5px;
  transform: translateX(40px);
  opacity: 0;
  transition: all .25s ease;
}



.custom-slider .slide__content h4,
.custom-slider .slide__content h3,
.custom-slider .slide__content h2 {
  margin: 0px;
}

.custom-slider .slide__content {
  padding: 20px;
}

.custom-slider .swiper-slide {
  filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.25));
  border-radius: 20px;
  background: #ffffff;
  overflow: hidden;
  max-width: 315px;
}


.custom-slider__navigation svg{
  height: 27px;
  width: 27px;
  fill: #61A4D7;
  transition: all .25s ease;
}
.custom-slider .custom-slider__navigation .swiper-control-prev,
.custom-slider .custom-slider__navigation .swiper-control-next {
  transform: translateX(0);
  opacity: 0.8;
}
.custom-slider .custom-slider__navigation .swiper-control-prev,
.custom-slider .custom-slider__navigation .swiper-control-next {
  opacity: 1;
}

.custom-slider .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -35px;
}

.custom-slider .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  height: 11px;
  width: 11px;
  margin: 0 6px;
  background-color: rgba(0,0,0,0.5);
  opacity: 1;
}

.custom-slider .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet:hover {
  background-color: rgba(0,0,0,0.7);
}

.custom-slider .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: rgba(0,0,0,0.9);
}

{# Custom Styles for Content Slider #}

.custom-slider .slide__container{
  display: flex;
  column-gap: 25px;  
}

.custom-slider .slide__image{
  object-fit: contain;
  object-position: top;
}
@media (max-width: 767px) {
  .custom-slider .slide__container{
    flex-direction: column;
  }
  .custom-slider .slide__image,
  .custom-slider .slide__content{
    width: 100%;  
  }
}


{# Styles for Popup #}
.popup-modal-editor {
  padding: 10px;
  color: #fff;
  background-color: #425b76;
  position: relative;
  z-index: 3;
  text-align: center;
}

.popup-modal form {
  padding: 0;
}

.popup-modal {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  visibility: hidden;
  transition: opacity ease-in-out 0.3s;
  padding: 50px 0;
  overflow-y: auto;
}

.popup-modal.active {
  opacity: 1;
  visibility: visible;
}
.popup-modal .btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 35px;
  cursor: pointer;
}
.popup-modal__content {
  transform: scale(0.6);
  position: relative;
  transition: all ease-in-out 0.4s;
  overflow: auto;
}
.active .popup-modal__content {
  transform: scale(1);
  opacity: 1;
}

@media(max-width: 992px){
  .custom-slider .swiper-slide {
    max-width: 34%;
  }

  .custom-slider .slide__container {
    display: flex;
    column-gap: 0;
  }

  .custom-slider .swiper-wrapper {
    column-gap: 0;
    padding: 0;
  }
  
  .custom-slider .slide__container {
    display: flex;
    column-gap: 0;
    overflow: hidden;
    margin: 20px;
}
}

@media screen and (max-width: 768px) {
  .popup-modal__content {
    padding: 20px;
  }
  .popup-modal .btn-close {
    top: 15px;
    right: 15px;
    width: 28px;
    cursor: pointer;
  }

  .custom-slider .swiper-slide {
    max-width: 45%;
  }

  .custom-slider .swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    padding: 30px;
  }
}

@media screen and (max-width: 767px) {
  
  .custom-slider .swiper-slide {
    max-width: 90%;
  }
  
  .custom-slider .swiper {
     padding: 0 39px 0 0; 
}
}

.custom-slider__navigation a svg{  
  cursor: pointer;
  fill: #61a4d7;
}


