/* Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

/* * {
  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: #fff;
}

.slide-container {
  max-width: 1120px;
  width: 100%;
  padding: 40px 0;
}

.slide-content {
  margin: 0 40px;
  overflow: hidden;
  border-radius: 25px;
}

.card {
  border-radius: 25px;
  background-color: #FFF;
  margin-top: 20px;
}

.image-content,
.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 15px 15px 15px;
}

.image-content {
  position: relative;
  row-gap: 5px;
  padding: 25px 0;
}

.overlay {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color:#5c90c1;
  border-radius: 25px 25px 0 25px;
}

.overlay::before,
.overlay::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -40px;
  height: 40px;
  width: 40px;
  background-color: #5c90c1;
}

.overlay::after {
  border-radius: 0 25px 0 0;
  background-color: #FFF;
}

.card-image {
  position: relative;
  height: 200px;
  width: 200px;
  border-radius: 50%;
  background: #FFF;
  padding: 3px;
}

.card-image .card-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #59a2db;
}

.name {
    font-size: 18px;
    font-weight: 600;
    color: #72a63d;
    margin-bottom: 10px;
}

.description {
  font-size: 14px;
  color: #7c7c7c;
  text-align: center;
    margin-bottom: 5px;
    line-height: 20px;
}

.button {
    border: none;
    font-size: 13px;
    color: #FFF;
    padding: 8px 16px;
    background-color: #57a6d3;
    border-radius: 30px;
    margin: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button:hover {
  background: #5c90c1;
  color: #fff;
}

.swiper-navBtn {
  color: #59a2db;
  transition: color 0.3s ease;
}

.swiper-navBtn:hover {
  color: #4070F4;
}

.swiper-navBtn::before,
.swiper-navBtn::after {
  font-size: 35px;
}

.swiper-button-next {
  right: 0;
}

.swiper-button-prev {
  left: 0;
}

.swiper-pagination-bullet {
  background-color: #5c90c1;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #5c90c1;
}

@media screen and (max-width: 768px) {
  .slide-content {
    margin: 0 15px;
  }

  .swiper-navBtn {
    display: none;
  }
  .description
  {
   line-height: 20px; 
  }
}

@media (max-width: 767px) {
    #cta-video-home .btn-video {
        /* -webkit-transform: scale(.5) translate(30px, -30px); */
        transform: scale(.5) translate(30px, -30px);
    }
#cta-video-home .col-2:after {
        background: linear-gradient(180deg, #5c90c1 0, #5c90c1 5%, rgba(92, 144, 193, .6) 58%);
        background: -webkit-gradient(linear, left top, left bottom, from(#5c90c1), color-stop(5%, #5c90c1), color-stop(58%, rgba(92, 144, 193,, .6)));
    }
}


@media(max-width:425px)
{
 .slide-content
 {
 margin: 0 -5px; 
 } 
 #cta-video-home, #cta-video-home .col-1, #cta-video-home .col-2
 {
  display: block;
  width: 100%;
 }
 
 /* #cta-video-home .col-1, #cta-video-home .col-2
 {
 background-color: rgba(92, 144, 193, 0.8); 
 } */
  .mt-auto
  {
   margin-top: 0px !important; 
  }
}