html {
    scrollbar-width: thin;
    scrollbar-color: #9F8342 #ffffff;
    scroll-behavior: smooth;
}

.bg-theme {
    background: #f1faff8c;
}
.bg-ribbon {
    background-color: #bf4d28;
}
.bg-antiquewhite {
    background-color: antiquewhite;
}
.upper {
    text-transform: uppercase;
}
.text-align-justify {
    text-align: justify;
}

.font-systemui {
    font-family: system-ui;
}

#lg-counter-current-1,
.lg-counter,
#lg-counter-all-1 {
    color: white !important;
}

/* Force image to fully fit inside viewport */
.lg-outer .lg-img-wrap img {
    object-fit: contain !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100%;
    max-height: 90vh;
}


.blink-element {
    animation-name: blink;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    10% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

.text-theme--match {
    background: linear-gradient(90deg, #9F8342 0%, rgb(179, 93, 53) 50%, #9F8342 67%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-size: 33px;
    font-weight: 700;
}

.btn--theme {
    background-color: #9F8342 !important;
    color: #ffffff !important;
    padding: 8px 10px;
    border-radius: 6px;
}

.tick-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tick-list li {
    position: relative;
    padding-left: 50px;
    margin: 8px 0;
    text-align: justify;
    font-size: 15px;
}

.tick-list li::before {
    content: "✓";
    color: #bb7307;
    margin-left: 25px;
    font-weight: 800;
    position: absolute;
    left: 0;
    top: 0;
}

.core-value {
    padding: 10px 200px;
    text-align: center;
    margin-top: 18px;
}

.text-align-center {
    text-align: center !important;
}

@media (max-width: 575.99px) {
    .text-theme--match {
        font-size: 24px;
    }
}

@media screen and (275px <=width <=676px) {
    .reverse-responsv {
        display: flex;
        flex-direction: column-reverse;
        gap: 20px;
    }

    .find_state_text a {
        font-size: small;
        padding: 8px 22px;
    }

    .core-value {
        padding: 0;
    }
}