#banner_img {
    background-image: url(../assets/work1.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-blend-mode: overlay;
    width: 100%;
    height: 350px;
}

#container_more {
    display: flex;
    /* position: relative; */
}

#container_more > img {
    display: block;
}

#container_more > div {
    align-self: center;
    max-width: 12ch;
}

#container_slideshow {
    display: flex;
    justify-content: center;
    align-items: center;
}

#nav_options {
    display: flex;
    margin: 0 15px 0 auto;
    gap: 20px;
}

#overlay {
    background-color: rgba(0, 0, 0, .5);
    height: 250px;
    width: 250px;
    position: absolute;
    top: 0;
}

#title {
    display: flex;
    width: 100%;
    justify-content: center;
    font-size: 5rem;
}

@media screen and (max-width: 480px) {
    ul {
        columns: 2;
    }

    #banner_img > div {
    color: black;
    background-color: white;
    font-size: 12pt;
    padding: 10px;
    line-height: 2;
    font-family: sans-serif;
    text-align: center;
    font-weight: bold;
    text-shadow: gainsboro 2px 2px;
    letter-spacing: .1rem;
}

    #container_more {
        margin: 25px 10px;
        display: flex;
        justify-content: space-evenly;
        gap: 10px;   
    }

    #container_services {
        display: flex;
        flex-direction: column;
    }

    .container_title {
        text-align: center;
        font-family: sans-serif;
        font-size: larger;
    }

    #container_reviews {
        margin: 10px;
    }

    #container_review_cards{
        display: flex;
        flex-direction: row;
        gap: 10px;
    }

    .client_name {
        font-family: Arial;
        font-style: oblique;
    }

    #container_btn {
        width: fit-content;
        justify-self: center;
    }

    #container_btn > button {
        font-size: large;
        padding: 10px;
        border-radius: 10px;
        text-shadow: 2px 2px rgba(100, 20, 80, .2);

    }

    #card_review {
        background-color: pink;
        width: 150px;
        height: fit-content;
        padding: 10px;
        border-radius: 5px;
        
    }

    .slide_img {
        width: 100px;
        height: 150px;
    }

    .slide {
        display: none;
        width: 100px;
    }

    .fade {
        animation: fadeEffect 1s ease-in-out;
    }

    .slide img {
        height: auto;
        display: block;
    }

    @keyframes fadeEffect {
        from { opacity: 0.4 }
        to {opacity: 1 }
    }
}
