

#testimonials{
  display: flex;
  flex-direction: column;
  justify-content: center;
  
}


#test_main {
  display: flex;
  flex-direction: column;
  
}

#test_head_img {
  padding-top: 30px;
  
  width: 700px;
  margin: 50px auto;
}


#test_main_carousel {
  display: flex;
  justify-content: space-around;
  

  width: 100%;
}

.test_main_card {
  position: relative;
  background-color: white;
  border-radius: 50px;
  display: flex;
  flex-direction: column;
  width: 400px;
  height: 300px !important;
  margin: 10px;

  justify-content: center;
  align-items: center;
}

.test_top_left_img {
  position: absolute;
  width: 5%;
  top: 5%;
  left: 5%;
}
.test_bottom_right_img {
  position: absolute;
  width: 5%;
  bottom: 5%;
  right: 5%;
  rotate: 180deg;
}

.test_main_card_content {
  width: 80%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin: auto;
  position: relative;
  height: 100%;
}

.test_main_card_content h2 {
  font-family: poppins-bold;
  font-size: 16px;
  letter-spacing: 1.5px;
  color: #472f8f;
  text-align: center;
}

.test_main_card_content p {
  display: none;
  font-family: poppins-italic;
  font-size: 12px;
  color: #472f8f;
  text-align: center;
}



.test_main_card:hover .test_main_card_content p {
  display: block;
  opacity: 1; 
}
.test_main_card_content p {
  display: none; 
}

.test_main_card {
  transition: transform 0.3s ease; 
}

.test_main_card:hover {
  transform: scale(1.05); 
}

.test_main_card:hover .test_main_card_content p {
  display: block; 
}
.test_main_card_content {
  position: relative; 
}

.test_main_card_content p {
  opacity: 0; 
  transition: opacity 0.3s ease; 
}

.test_main_card:hover .test_main_card_content p {
  opacity: 1; 
  margin: auto;
  margin-bottom: 0;
}

.test_main_card_content h2 {
  bottom: 0; 
  left: 0; 
  transition: opacity 0.5s ease, transform 0.5s ease; 
  margin: auto;
}

.test_main_card:hover .test_main_card_content h2 {
  opacity: 1; 
  transform: translateY(-20px);
}


.image_full{
  display:block;
 }

.image_mobile{
 display:none;
}

/* Mobile devices */
@media (max-width: 1040px) {
  #test_main_card {
    width: 300px;
    height: 400px;
  }
  #test_head_img {
    width: 255px;
  }
  #test_head_img>img {
    margin-top:100px;
  }

  .image_full{
    display:none;
   }
 
   .image_mobile{
    display:block;
   }

  #test_head_img{
    margin-top: 10%;
    margin-bottom: 10%;
    padding-top: 0px;
  }

  .test_main_card_content p{
    display: block;
    opacity: 1;
    margin: auto;
  margin-bottom: 0;
  }

  .test_main_card:hover .test_main_card_content h2{
    transform: none;
  }

}