:root {
    --color-black: #232323;
    --color-white: #f7f7f7;
    --color-light-grey: #ebebeb;
    --color-grey: #b7b7b7;

    --color-green: #dbe71b;
    --color-orange: #ff7f11;
    --color-red: #dc291e;

    --color-dark-green: #828b08;
}

h3 {
    font-weight: 600;
    font-size: 22px;
    line-height: 18px;
    letter-spacing: 1px;
}

li {
    letter-spacing: 1px;
}

ul.custom-ul li {
    list-style: none;
    background: url("../assets/t-green.svg") no-repeat left 6px;
    padding-left: 30px;
    /* Adjust for the image width */
    background-size: 16px 16px;
    /* Scale the image */
}

#discover {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../assets/about/2.webp");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0;
}

#discover h3 {
    margin-bottom: 0;
    color: var(--color-white);
    font-weight: 700;
    font-size: 40px;
    line-height: 120%;
    text-transform: uppercase;
}

#discover .theme-btn {
    margin-left: auto;
    display: block;
    width: fit-content;
}

#featured {
    padding: 60px 0 120px;
}

@media (max-width: 992px) {
    .about-1 {
        height: 450px;
        object-fit: cover;
    }

    #discover h3 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    #discover .theme-btn {
        margin-left: 0;
        margin-top: 30px;
    }
}