@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

body {
    font-family: 'Open Sans';
    overflow-x: hidden;
}


.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 8px 6px -6px #ededed;
    z-index: 9999;
}

.sticky+.content {
    padding-top: 102px;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.animate-fadeIn {
    animation: fadeIn 1s ease-in forwards;
}



li {
    position: relative;
}

.styled-checkbox:disabled,
.styled-checkbox:checked+label:before {
    background: #f5b14d !important;
    margin-top: 10px;
    margin-right: 10px;
    border-radius: 5px;
}

[type="checkbox"]:checked+label:after {
    content: '✔';
    position: absolute;
    color: #314572;
    transform: rotate(5deg);
    left: 2px;
    top: 3px;
    font-size: 14px;
}

@media (prefers-reduced-motion: no-preference) {
    .img-scrollers {
        scale: 0.65;
        opacity: 0.8;
        animation: fade-in linear forwards;
        animation-timeline: scroll();
        animation-range-start: 10px;
    }

    @keyframes fade-in {
        to {
            scale: 1;
            opacity: 1;
        }
    }
}



@media (prefers-reduced-motion: no-preference) {
    .banner-scrollers {
        scale: 1;
        opacity: 0.8;
        animation: zoom-in linear forwards;
        animation-timeline: scroll();
        animation-range-start: 10px;
    }

    @keyframes zoom-in {
        to {
            scale: 1.6;
            opacity: 1;
        }
    }
}