@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Cairo+Play:wght@200..1000&family=Cairo:wght@200..1000&display=swap');

:root {
    --pad-xs: 5px;
    --pad-sm: 10px;
    --pad-md: 15px;
    --pad-lg: 20px;
    --pad-xl: 30px;
    --mar-xs: 5px;
    --mar-sm: 10px;
    --mar-md: 15px;
    --mar-lg: 20px;
    --mar-xl: 30px;
    --gap-sm: 10px;
    --gap-md: 15px;
    --gap-lg: 20px;
    --gap-xl: 30px;
}

body {
    overflow-x: hidden;
    user-select: none;
}

main {
    width: 100vw;
    /* border-top: 2px solid #319c6c; */
    border-bottom: 2px solid #319c6c;
}

.container {
    width: 1200px;
    margin: 0 auto;
    padding: var(--pad-lg);
    box-sizing: border-box;
    box-shadow: -5px 0 5px rgba(0, 0, 0, .1), 5px 0 5px rgba(0, 0, 0, .1);
}

.lists {
    width: 95%;
    padding: var(--pad-sm);
    box-sizing: border-box;
    margin: 0px auto;

}

.lists h3 {
    font-size: clamp(1.5rem, 1vw + 1rem, 2.3rem);
    padding: var(--pad-xs) 0;
    color: #d68c45;
    text-align: center;
    margin: var(--pad-sm) auto;
}

.lists ul {
    width: 90%;
    /* border: 1px solid black; */
    margin: var(--mar-sm) auto;
    box-sizing: border-box;
}

.lists ul li {
    width: 100%;
    list-style: none;
    font-size: clamp(1.1rem, 0.75vw + 0.9rem, 1.8rem);
    color: #1F5B40;
    margin: var(--mar-xs) auto;
    font-family: "playfair display";
    padding: var(--mar-sm) var(--mar-lg);
    box-sizing: border-box;
    cursor: pointer;
    border-radius: 5px;
    opacity: 0;
    transform: translateX(-50px);
    transition: transform .4s ease-in-out, opacity .3s ease;
}

.lists ul li a {
    color: #1F5B40;
}

.lists ul li.listsAnimate {
    opacity: 1;
    transform: translateX(0);
}

.lists ul li:nth-child(even) {
    background-color: #f9f9f9;
    color: #1F5B40;
}

.lists ul li:nth-child(odd) {
    background-color: #e6f0ea;
    color: #1F5B40;
}

.lists ul li:hover {
    transform: scale(1.01);

}

.lists ul:has(li:hover) li:not(:hover) {
    opacity: .8;
    filter: blur(.5);
}

@media screen and (max-width:480px) {
    .container {
        width: 100%;
        padding: var(--pad-sm);
        box-shadow: none;
    }

    .lists {
        width: 100%;
        margin-bottom: var(--mar-sm);
        padding: 0px;
    }

    .lists ul li {
        padding: var(--pad-xs) var(--pad-sm);
        text-align: start;
    }
}

@media screen and (min-width:301px) and (max-width:480px) {
    .container {
        padding: var(--pad-md);
    }

    .lists ul li {
        text-align: start;
    }
}

@media screen and (min-width:481px) and (max-width:1023px) {
    .container {
        width: 100%;
        padding: var(--pad-lg);
    }

    .lists {
        width: 90%;
        padding: 0;

    }
}

@media screen and (min-width:1024px) and (max-width:1439px) {
    .container {
        width: 1000px;
    }

    .lists {
        width: 95%;
        margin-bottom: var(--mar-sm);
    }
}

@media screen and (min-width:1920px) {
    .container {
        width: 1500px;
    }

    .lists h3 {
        margin: var(--mar-lg);
    }

    .lists ul li {
        padding: var(--pad-md) var(--pad-xl);
        margin: var(--mar-sm) auto;
    }

}