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

*{
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body{
  display: flex;
  align-items: center;
  justify-content: center;
}

.aski {
  position: relative;  
  height: 450px;
  width: 100%;
  display: flex;
  align-items: center;
}

.swiper{
  width: 90%;
}

.card{
  position: relative;
  background: #fff;
  border-radius: 20px;
  height: 400px;
  margin: 20px 0;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
/*
.card::before{
  content: "";
  position: absolute;
  height: 40%;
  width: 100%;
  background: white;
  border-radius: 20px 20px 0 0;
}
*/
.card .card-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  position: relative;
  z-index: 100;
}

.swiper-pagination{
  position: absolute;
  top: 450px !important;
}

.swiper-pagination-bullet{
  height: 7px;
  width: 26px;
  border-radius: 25px;
  background: white;
}

.swiper-button-next, .swiper-button-prev{
  opacity: 0.7;
  color: white;
  transition: all 0.3s ease;
}
.swiper-button-next:hover, .swiper-button-prev:hover{
  opacity: 1;
  color: white;
}

@media screen and (max-width: 1050px) {  
  .card{   height: 350px;  }
}

@media screen and (max-width: 900px) {  
  .aski {  height: 350px;}
  .card{   height: 300px;  }
  .swiper-pagination{  top: 340px !important;}
}
@media screen and (max-width: 840px) {  
  .aski {  height: 300px;}
  .card{   height: 250px;  }
  .swiper-pagination{  top: 300px !important;}
}

@media screen and (max-width: 700px) {  
  .aski {  height: 300px;}
  .swiper{  width: 80%;}
  .card{   height: 250px; }
  .swiper-pagination{  top: 300px !important;}
}

@media screen and (max-width: 450px) {  
  .aski {  height: 280px;}
  .swiper{  width: 75%;}
  .card{   height: 250px; }
  .swiper-pagination{  top: 280px !important;}

}

@media screen and (max-width: 400px) {  
  :root{
    --swiper-navigation-size: 30px;
  }
  .card{   height: 230px; }
}

