* {
    box-sizing: border-box;
}

.container {
    display: flex;
    justify-content: center;
    margin-top: 70px;
    margin-bottom: 20px;
}

.card-list .card-item {
    position: relative;
    overflow-clip: hidden;
    width: auto;
    object-fit: cover;
    border-radius: 10px;
}

.device-iPad {
    aspect-ratio: 3/4;
}

.device-iPhone {
    aspect-ratio: 1/2.1;
}

.card-list .card-item .card-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
    margin-inside: 0;
    border-radius: 10px;
}

.user-description {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    color: #e3e3e3;
    font-weight: 500;
    bottom: 10px;
    backdrop-filter: blur(3px);
    font-size: 18px;
    margin: 15px 15px;
    min-height: 50px;
    line-height: 1.5;
    width: -webkit-fill-available;
    padding: 10px;
}

.device-iPad .user-description {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.device-iPhone .user-description {
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.slider-wrapper .swiper-pagination-bullet {
    background: rgba(0, 0, 0, 0);
    opacity: 1;
    height: 25px;
    width: 40px;
    font-size: 14px;
    line-height: 26px;
    border-radius: 12px;
}

.slider-wrapper .swiper-pagination-bullet:hover {
    opacity: 0.25;
}

.slider-wrapper .swiper-pagination-bullet-active {
    opacity: 1.0;
    background: rgb(243, 185, 64);
}

.slider-wrapper .swiper-pagination-bullet-active:hover {
    background: rgba(243, 185, 64, 0.5);
}

.slider-wrapper .swiper-slide-button {
    transition: 0.2s ease;
    border-radius: 8px;
}

.swiper-button-prev, .swiper-button-next {
    margin-top: 0;
    width: 40px;
    height: 65px;
    border-radius: 3px;
    background-color: rgb(243, 185, 64);
    transition: 0.2s ease;
}

.swiper-button-prev:hover, .swiper-button-next:hover {
    background-color: rgba(243, 185, 64, 0.5);
}

.swiper-button-prev::after, .swiper-button-next::after {
    color: black;
    font-size: 20px;
}

.slider-wrapper {
    overflow: hidden;
    max-width: 1200px;
    width: 85vw;
    margin: 0 68px 52px;
}

@media (min-width: 600px) and (max-width: 999px) {
    .slider-wrapper {
        width: 80vw;
    }
}

@media (max-width: 599px) {
    .slider-wrapper {
        min-width: 320px;
        width: 95vw;
        margin: 0 12px 0;
    }
}