<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.cbox.slider {
    position: relative;
    overflow: hidden;
    margin: 0px;
}

.slider .slide {
    width: 100%;
    height: 100%;
    background: #fff center center no-repeat;
    background-size: cover;
    position: absolute;
    left: 0px;
    top: 0px;
    opacity: 0;
    -webkit-transition: opacity 1.5s ease;
    transition: opacity 1.5s ease;
}

.slider .slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-pos {
    display: table;
    height: 100%;
    width: 100%;
    position: relative;
}

.slide-pos-mid{
    display: table-cell;
    vertical-align: middle;
    height: 100%;
    width: 100%;
}

.slide .slider-caption {
    margin-bottom: 80px;
    width: 80%;
}

.slide .slider-caption * {
    color: #ffffff;
    text-shadow: 1px 1px 6px rgba(60,55,50,0.4);
}

.slider .pagination {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 5;
}

.slider .pagination a {
    display: block;
    width: 7px;
    height: 7px;
    margin: 5px;
    background-color: transparent;
    border: 1px solid #ffffff;
}

.slider .pagination a.active {
    background-color: #ffffff;
}



@media (max-width: 899px) {

    .cbox.slider {
        min-height: 500px;
    }

    .slide .slider-caption h2 {
        font-size: 30px;
    }

}


@media all and (min-width: 900px) {

    .cbox.slider {
        min-height: 100vh;
    }

    .subpage .cbox.slider {
        min-height: 550px;
    }

    .slide .slider-caption {
        width: 400px;
    }


}



@media all and (min-width: 1200px) {

    .slider .slide {
        background-attachment: fixed;
    }
}




</pre></body></html>