.celebrities-slider-wrapper {
position: relative;
padding-bottom: 50px;
}
.celebrity-slide {
display: flex;
flex-direction: column;
justify-content: flex-end;
align-items: center;
transition: height 0.7s ease;
position: relative;
overflow: hidden;
}
.celebrity-slide img {
width: 100%;
height: 100%;
object-fit: cover;
}
.celebrity-text-wrapper {
position: absolute;
bottom: 20px;
width: 90%;
text-align: center;
padding: 10px 10px;
backdrop-filter: blur(2px);
border: 1px solid #ffffff4d;
background-color: rgba(0, 0, 0, 0.45);
color: #FFF;
}
.celebrities-slider-arrows {
position: absolute;
top: 5%;
left: 0;
width: 120px;
display: flex;
gap: 1rem;
justify-content: flex-start;
}
.celebrities-slider-arrows button {
pointer-events: all;
background: transparent;
border: none;
cursor: pointer;
}
.celebrities-slider-wrapper .swiper-wrapper {
min-height: 550px;
display: flex;
align-items: flex-end;
}
.swiper-button-prev::after,
.swiper-button-next::after {
display: none !important;
content: none !important;
}
.celebrities-slider-arrows img {
max-width: 40px;
width: 40px;
display: block;
height: 40px;
}
.celebrity-slide{
position: relative;
}              @media (max-width: 768px) {
.celebrities-slider-wrapper .swiper-wrapper {
min-height: auto;
}
.celebrities-slider-arrows{
top: -18%;
left: 50%;
transform: translateX(-50%);
}
.celebrity-slide::after{
height: 30%;
}
.celebrities-slider{
overflow: visible !important;
}
}