/* Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');


:root{
  --green:  #2ecc71 ;
  --blue:  #2471a3 ;
  --box-shadow:.5rem .5rem 0 rgba(22, 160, 133, .2);
  --border:.2rem solid var(--blue);
}

.slide-container{
  max-width: 1120px;
  width: 100%;
  padding: 40px 0;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide-content{
  margin: 0 40px;
  overflow: hidden;
  border-radius: 25px;
}
.card{
  border-radius: 25px;
  background-color: #FFF;
  
}
.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: #2471a3;
  border-radius: 25px 25px 0 25px;
}
.overlay::before,
.overlay::after{
  content: '';
  position: absolute;
  right: 0;
  bottom: -40px;
  height: 40px;
  width: 40px;
  background-color: #2471a3;
}
.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 #2471a3;
}
.serv{
  font-size: 20px;
  font-weight: bold;
  color: #2ecc71;
}
.description{
  font-size: 14px;
  color: #707070;
  text-align: center;
  text-transform: none;
}
.button{
  border: none;
  font-size: 16px;
  color: #FFF;
  padding: 8px 16px;
  background-color: #4070F4;
  border-radius: 6px;
  margin: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button:hover{
  background: #265DF2;
}

.swiper-navBtn{
  color: #6E93f7;
  transition: color 0.3s ease;
}
.swiper-navBtn:hover{
  color: var(--green)
}
.swiper-navBtn::before,
.swiper-navBtn::after{
  font-size: 35px;
}
.swiper-button-next{
  right: 10px;
}
.swiper-button-prev{
  left: 10px;
}




.swiper-pagination-bullet{
  background-color: #6E93f7;
  opacity: 1;
  
  
  
  
}
.swiper-pagination-bullet-active{
  background-color: #2471a3;
  
}

@media screen and (max-width: 768px) {
  .slide-content{
    margin: 0 10px;
  }
  .swiper-navBtn{
    display: none;
    right: 10px;
    left: 10px;
  }
}

@media screen and (max-width: 450px) {
  .slide-content{
    margin: 0 10px;
  }
  .swiper-navBtn{
    display: none;
    right: 10px;
    left: 10px;
  }
}