<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.section-first {
    padding-top: 0;
}
.slr {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    margin: 0;
}
.slr ul {
    list-style:none;
    margin-left:0;
    padding-left:0;
}
#sls .sl {
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
}
#sls .sl .sl-text {
    position: absolute;
    margin-left: 1rem;
    margin-bottom: 1rem;
    bottom: 0;
    z-index: 2;
    padding: 20px;
    background:rgba(0,0,0,0.4);
    transform: translateY(200%);
    transition: all 250ms ease-in-out;
}
#sls .sl.sl-active .sl-text {
    transform: translateY(0);
    transition-delay: 250ms;
}
#sls .sl .sl-text .sl-title {
    font-size: 30px;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 1rem;
}
#sls .sl .sl-text .sl-data {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 20px;    
}
#sls .sl .sl-text .sl-read {
    color: #000;
    display: block;
    background-color: #fedc54;
    border-radius: 2rem;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    width: fit-content;
    cursor: pointer; 
}
#sls .sl .sl-text .sl-read:hover,
#sls .sl .sl-text .sl-read:active,
#sls .sl .sl-text .sl-read:focus {
    background-color: rgba(255,255,255,0.5);
}
#sls .sl .sl-text .sl-read:after,
#sls .sl .sl-text .sl-read:before {
    position: absolute;
    height: 4px;
    left: 50%;
    background: #4a8eff;
    bottom: -8px;
    content: "";
    transition: all 250ms ease-in-out;
    width: 0;
}
#sls .sl .sl-text .sl-read:before {
    top: -8px;
}
#sls .sl .sl-text .sl-read:hover:after,
#sls .sl .sl-text .sl-read:hover:before,
#sls .sl .sl-text .sl-read:active:after,
#sls .sl .sl-text .sl-read:active:before,
#sls .sl .sl-text .sl-read:focus:after,
#sls .sl .sl-text .sl-read:focus:before {
    width: 100%;
    left: 0;
}
#sls .sl .sl-partial {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: transform 250ms ease-in-out;
}
#sls .sl .sl-partial .canvas {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 250ms ease-in-out;
    background-size: cover;    
    background-repeat: no-repeat;
    background-position: center;
}
#sls .sl .sl-partial .canvas-d {
    display: block;
}
#sls .sl .sl-partial .canvas-m {
    display: none;
}
#sls .sl .sl-partial img {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 250ms ease-in-out;
}
#sls .sl .sl-left {
    top: 0;
    left: 0;
    transform: translateX(-100%);
    clip-path: polygon(0 0, 2% 0, 100% 98%, 100% 100%, 0 100%);
}
#sls .sl .sl-left img {
    top: 0;
    right: 0;
}
#sls .sl .sl-right {
    top: 0;
    right: 0;
    transform: translateX(100%);
    clip-path: polygon(0 2%, 0 0, 100% 0, 100% 100%, 98% 100%);
}
#sls .sl .sl-right img {
    top: 0;
    left: 0;
}
#sls .sl.sl-active .sl-partial, 
#sls .sl.sl-active .sl-partial img {
    transform: translateX(0);
}
.slr .sl-btn {
    position: absolute;
    top: 40px;
    right: 140px;
    z-index: 20;
    height: 50px;
    width: 50px;
    cursor: pointer;
    overflow: visible;
}
.slr .sl-btn.sl-next {
    right: 50px;    
}
.slr .sl-btn polygon, 
.slr .sl-btn path {
    transition: all 250ms cubic-bezier(0.2, 1, 0.3, 1);
    fill: #FFF;
}
.slr .sl-btn:hover polygon, 
.slr .sl-btn:hover path {
    transition: all 250ms cubic-bezier(0.2, 1, 0.3, 1);
    fill: #FFF;
}
.slr .sl-btn:hover .sl-btn-pl {
    animation: sl-btn-anim 250ms cubic-bezier(0.2, 1, 0.3, 1) infinite;
}
.slr .sl-btn:hover .sl-btn-pl-fixed {
    animation: sl-btn-fixed-anim 250ms cubic-bezier(0.2, 1, 0.3, 1) infinite;
}
.sl-select {
    position: absolute;
    bottom: 20px;
    right: 40px;
    z-index: 20;
    display: flex;
}
.sl-select li {
    position: relative;
    cursor: pointer;
    margin: 0 8px;
}
.sl-select .selector {
    height: 24px;
    width: 24px;
    border: 2px solid white;
    background-color: transparent;
    transition: background-color 250ms ease-in-out;
}
.sl-select .selector.sl-current {
    background-color: #4a8eff;
}
@keyframes sl-btn-anim {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    5% {
        transform: translateX(-0.1rem);
    }
    100% {
        transform: translateX(1rem);
        opacity: 0;
    }
}
@keyframes sl-btn-fixed-anim {
    5% {
        opacity: 0;
    }
    20% {
        opacity: 0.4;
    }
    100% {
        opacity: 1;
    }
}    
@media screen and (max-width:767px) {
    #sls .sl .sl-text {
        z-index: 2;
        max-width: 90%;
    }
    #sls .sl .sl-text .sl-title {
        font-size: 22px;
        line-height: 26px;
        margin-bottom: 10px;
    }
    #sls .sl .sl-text .sl-data {
        font-size: 13px;
        line-height: 18px;
        margin-bottom: 10px;    
    }
}
@media (max-width: 1399.98px) {
    .slr {
        height: 550px;
    }
}
@media (max-width: 1199.98px) {
    .slr {
        height: 500px;
    }    
}
@media (max-width: 991.98px) {
    .slr {
        height: 450px;
    }
}
@media (max-width: 767.98px) {
    .slr {
        height: 400px;
    }
    .sl-select {
        right: 1rem;
        bottom: 1rem;
        margin-bottom: 0;
    }
    .sl-select .selector {
        width: .75rem;
        height: .75rem;
        margin-left: .25rem;
        margin-right: .25rem;
        border: 1px solid #fff;
    }
    #sls .sl .sl-partial .canvas-d {
        display: none;
    }
    #sls .sl .sl-partial .canvas-m {
        display: block;
    } 
}
@media (max-width: 575.98px) {
    .slr {
        height: 300px;
    }
    .slr .sl-btn {
        top: 1rem;
        right: 6rem;
    }
    .slr .sl-btn.sl-next {
        right: 1rem;
    }
    .slr .sl-btn:hover .sl-btn-pl {
        animation: none;
    }
    .slr .sl-btn:hover .sl-btn-pl-fixed {
        animation: none;
    }
    #sls .sl .sl-text .sl-read {
        display: none;
    }
    #sls .sl .sl-text .sl-data {
        margin-bottom: 0;
    }
}
@media (max-width: 399.98px) {
    #sls .sl .sl-text .sl-title {
        font-size: 1.125rem;
    }
}
@supports (aspect-ratio: 2) {
    .slr {
        aspect-ratio: 2; 
        height: auto;
    }
    @media (max-width: 767.98px) {
        .slr {
            aspect-ratio: 1;
        }
    }
}    </pre></body></html>