.cardslide{
  
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #EFEFEF;
}
.cardslide .slide-container{
  max-width: 1120px;
  width: 100%;
  padding: 40px 0;
}
.cardslide .slide-content{
  margin: 0 40px;
  overflow: hidden;
  border-radius: 25px;
}
.cardslide .card{
  border-radius: 25px;
  background-color: #FFF;
}
.cardslide .image-content,
.cardslide .card-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 14px;
}
.cardslide .image-content{
  position: relative;
  row-gap: 5px;
  padding: 25px 0;
  overflow: hidden;
}
.cardslide .overlay{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #169b81;
  border-radius: 25px 25px 0 25px;
}
.cardslide .overlay::before,
.cardslide .overlay::after{
  content: '';
  position: absolute;
  right: 0;
  bottom: -40px;
  height: 40px;
  width: 40px;
  background-color: #169b81;
}
.cardslide .overlay::after{
  border-radius: 0 25px 0 0;
  background-color: #FFF;
}
.cardslide .card-image{
  position: relative;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  background: #FFF;
  padding: 3px;
}
.cardslide .card-image .card-img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #169b81;
}
.cardslide .name{
  font-size: 18px;
  font-weight:bold;
  color: #000;
}
.cardslide .description{
  font-size: 16px;
  color: #000;
  text-align: center;
}
.cardslide .button{
  border: none;
  font-size: 16px;
  color: #FFF;
  padding: 8px 16px;
  background-color: #169b81;
  border-radius: 6px;
  margin: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cardslide .button:hover{
  background: #169b81;
}

.cardslide .swiper-navBtn{
  color: #169b81;
  transition: color 0.3s ease;
}
.cardslide .swiper-navBtn:hover{
  color: #169b81;
}
.cardslide .swiper-navBtn::before,
.cardslide .swiper-navBtn::after{
  font-size: 35px;
}
.cardslide .swiper-button-next{
  right: 0;
}
.cardslide .swiper-button-prev{
  left: 0;
}
.cardslide .swiper-pagination-bullet{
  background-color: #6E93f7;
  opacity: 1;
}
.cardslide .swiper-pagination-bullet-active{
  background-color: #169b81;
}

@media screen and (max-width: 768px) {
  .cardslide .slide-content{
    margin: 0 10px;
  }
  .cardslide .swiper-navBtn{
    display: none;
  }
}



/* Slideshow container */
#autherslide .slideshow-container {
  position: relative;
  background: #ffffff;
}

/* Slides */
#autherslide .mySlides {
  display: none;
  padding: 40px;
  text-align: center;
  overflow: hidden;
}
.authorimg{
  padding: 20px;
  height: 220px;
  width: 220px;
}
#autherslide .mySlides img{
  height: 200px;
  width: 200px;
  border: 3px solid white;
  border-radius: 50%;
  box-shadow: rgb(92, 89, 89) 0px 3px 8px;
}
/* Next & previous buttons */
#autherslide .prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -30px;
  padding: 16px;
  color: #888;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
#autherslide .next {
  position: absolute;
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
#autherslide .prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
  color: white;
}

/* The dot/bullet/indicator container */
#autherslide .dot-container {
  text-align: center;
  padding: 20px;
  background: #ddd;
}

/* The dots/bullets/indicators */
#autherslide .dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

/* Add a background color to the active dot/circle */
#autherslide .active, .dot:hover {
  background-color: #717171;
}

/* Add an italic font style to all quotes */
#autherslide q {font-style: italic;}

/* Add a blue color to the author */
#autherslide .author {color: cornflowerblue;}

.studentsay{
  padding: 10px;
  background-image: linear-gradient(45deg, #169b81 70%, white 30%);
  color: white;
  border-radius: 20px 0px 0px 0px;
}
@media screen and (max-width: 600px){
  .studentsay{
  background-image: linear-gradient(45deg, #169b81 70%, #169b81 30%);
  border-radius: 20px 20px 0px 0px;
  }
}


