/* All images same height for image carousel*/
selector .swiper-slide {
height: 550px;
}
selector img {
height: 550px;
object-fit: cover!important;
width: 100%;
}
selector .swiper-pagination-bullet {
margin: 0 5px;
transition: all 0.3s ease-in-out;
}
@media (max-width: 1024px) {
selector .swiper-slide {
height: 400px;
}
selector img {
height: 400px;
object-fit: cover;
}
}
@media (max-width: 460px) {
selector .swiper-slide {
height: 280px;
}
selector img {
height: 280px;
object-fit: cover;
}
}