/* Google Fonts - Poppins */
@import url('/css/font-family-Poppins.css');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
/*body{
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #EFEFEF;
}*/
.slide-container{
  max-width: 1220px;
  width: 100%;
  padding: 20px 0px;
  margin: 0;
}
.slide-content{
  margin: 0 0px;
  overflow: hidden;
  border-radius: 0;
}
.card{
  border-radius: 0;
 padding-bottom: 20px;
 /* width: 170px !important; */
 
}
/*.slide-container.swiper{
  height:352px;
}*/
.swiper-pagination{
  display: none;
}
.card img{
  border-radius: 12px;
  max-width: 100%;
  background-color: #fff;
}
.card .info strong{
  color: #fff;
}
.card .info{
  margin-top:10px;
}
.image-content,
.card-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 14px;
}
.image-content{
  position: relative;
  row-gap: 5px;
  padding: 25px 0;
}
.overlay{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  /* background-color: #4070F4; */
  border-radius: 25px 25px 0 25px;
}
.overlay::before,
.overlay::after{
  content: '';
  position: absolute;
  right: 0;
  bottom: -40px;
  height: 40px;
  width: 40px;
  background-color: #4070F4;
}
.overlay::after{
  border-radius: 0 25px 0 0;
  background-color: #FFF;
}
.card-image{
  position: relative;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  background: #FFF;
  padding: 3px;
}
.card-image .card-img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #4070F4;
}
.name{
  font-size: 18px;
  /* font-weight: 500; */
  color: #fff;
}
.description{
  font-size: 14px;
  color: #707070;
  text-align: center;
}
.button{
  border: none;
  font-size: 16px;
  color: #FFF;
  padding: 8px 16px;
  /* background-color: #4070F4; */
  border-radius: 6px;
  margin: 7px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button:hover{
  background: #265DF2;
  border: none;
}

.swiper-navBtn{
  color: #fff;
  transition: color 0.3s ease;
}
.swiper-navBtn:hover{
  color: #fff;
}
.swiper-navBtn::before,
.swiper-navBtn::after{
  font-size: 17px;
}
.swiper-button-next{
  right: 2;
  background: rgba(0,0,0,0.4);
  border-radius: 35px;
  padding: 0px;
  width: 35px;
  height: 35px;
  top: 45%;
}
.swiper-button-prev{
  left: 2;
  background: rgba(0,0,0,0.4);
  border-radius: 35px;
  padding: 0px;
  width: 35px;
  height: 35px;
  top: 45%;
}
.swiper-pagination-bullet{
  background-color: #6E93f7;
  opacity: 1;
}
.swiper-pagination-bullet-active{
  background-color: #4070F4;
}

@media screen and (max-width: 768px) {
  .slide-content{
    margin: 0 10px;
  }
  .swiper-navBtn{
    display: none;
  }
}

/* Additional styles for horizontal scrolling */
.common-slider {
  overflow: hidden;
}

.common-slider .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.common-slider .swiper-slide {
  width: auto;
  flex-shrink: 0;
}

/* Ensure proper slide boundaries */
.common-slider .swiper-slide:last-child {
  margin-right: 0;
}

/* Desktop specific styles */
@media screen and (min-width: 769px) {
  .common-slider .swiper-slide {
    width: auto;
    max-width: 200px;
  }
  
  .swiper-navBtn {
    display: flex;
  }
  
  /* Ensure container doesn't allow over-scrolling */
  .common-slider {
    position: relative;
  }
}