*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body .swiper {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    color: #011522;
    overflow: hidden;
    margin-bottom: 100px;
}

.swiper {
    width: clamp(550px, 100vw, 1400px);
    height: clamp(350px, 40vw, 450px);
    padding: 200px 200px;
}

.swiper-slide {
    position: relative;
    width: 360px;
    aspect-ratio: 3/4;
    border-radius: 14px;
    border: 1px solid rgba(177, 177, 177, 0.4);
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    user-select: none;
}

.swiper-slide .card {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    user-select: none;
}

.title {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translate(-50%, -20%);
    -ms-transform: translate(-50%, -20%);
    width: max-content;
    max-width: 80%;
    text-align: center;
    padding: 0.1em 0.5em;
    background: rgba(255, 255, 255, 1);
    border-radius: 8px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.5s linear;
}

.title span {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1;
}

.swiper-slide-active .title {
    bottom: 0px;
    box-shadow: 0 20px 30px 2px rgba(255, 255, 255, 0.6);
}

.swiper-pagination {
    --swiper-paginatio-bottom: -6px;
}

.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background-color: white;
    border-radius: -50%;
    transition: all 0.3s ease-in-out;
}

.swiper-pagination-bullet-active {
    width: 32px;
    background-color: rgba(25, 43, 206, 1);
    border-radius: 14px;
}

@media(max-width: 600px) {
    .title span {
        font-size: 1rem;
        padding: 0px;
    }
}