<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.slider_with_preview {
    padding: 12px;
    display: grid;
    align-items: end;
    grid-template-columns: 100%;
    gap: 3%;
    position: relative;
}

@media screen and (min-width: 768px) {
    .slider_with_preview {
        padding: 63px 0 64px 11%;
        grid-template-columns: 27% 70%;
    }
}

.slider_with_preview-left  {
    aspect-ratio: 460 / 560;
    max-width: 460px;
    width: 100%;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 768px) {
    .slider_with_preview-left {
        display: none;
    }
}

.slider_with_preview-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider_with_preview-right {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 47px;
    overflow: hidden;
}

.slider_with_preview-right .swiper {
    width: 100%;
    /* left: -25%; */
    height: 560px;
    overflow: visible;
}

@media screen and (min-width: 768px) {
    .slider_with_preview-right .swiper {
        height: 189px;
    }
}

.slider_with_preview-right .swiper .swiper-slide-active {
    /* opacity: 0; */
}

.slider_with_preview-right .swiper-pagination {
    bottom: -28px;
}

.slider_with_preview-right .swiper-pagination .swiper-pagination-bullet {
    background-color: rgba(2, 11, 44, 1);
    opacity: 1;
    margin: 0 12px;
    position: relative;
}

.slider_with_preview-right .swiper-pagination .swiper-pagination-bullet::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    left: -5px;
    top: -5px;
    border: 2px solid rgba(2, 11, 44, 1);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.2s ease-in-out;
}
 
.slider_with_preview-right .swiper-pagination .swiper-pagination-bullet-active::after {
    opacity: 1;
}

.slider_with_preview-heading p {
    font-size: 25px;
    font-weight: 700;
    font-family: Archivo;
    max-width: 894px;
    color: rgba(2, 11, 44, 1);
}

@media screen and (min-width: 990px) {
    .slider_with_preview-heading p {
        font-size: 39px;
    }
}

#slider_with_preview-slider img {
    width: 100%;
    height: 100%;
    object-position: bottom left;
    object-fit: cover;
}
</pre></body></html>