:root{
    --primaryColor:#082A99;
    --middleColor:#325c9b;
    --helperColor:#00d084;
    --lightHelper:#EBF4F6;
    --hrColor:rgb(222, 184, 135);
    --transparentColor:#00d0848f;
    --shadow:rgba(189, 188, 188, 0.514);
   /* --------------------------------- */
    --whatsappColor:#25D366;
    --white:#ffff;
    --blue: #1877F2;
    --green: #25D366;
    --gray:  #f8f8f8;
}

.slider {
    box-shadow: inset 5px 5px 10px rgba(222, 184, 135, 0.274);
    border: 1px solid burlywood;
    padding: 15px 10px;
    border-radius: 50px 0px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 90%;
    margin: auto;
}

#sliderContainer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 87%;
    text-align: center;
    align-items: center;
   
}


.image-container {
    border-bottom: 3px solid burlywood;
    width: 300px;
    margin: auto;
    transition: all 0.05 ease-in-out;
    border-radius: 20px;
    transition: transform 0.3s ease-in, box-shadow 0.3s ease-in;
}

.image-container:hover {
    transform: translateY(-10px);
    box-shadow: 10px 10px 10px var(--shadow);

}

.image-container img {
    border-bottom: 4px solid burlywood;
    width: 300px;
    min-height: 300px;
    max-height: 300px;
    border-radius: 20px;
}

/* ======================================================== */

.slider-buttons {
    display: inline-block;
    width: 5%;
    height: 50px;
    border: 1px solid burlywood;
    background-color: white;
    border-radius: 20px;
    font-size: larger;
    font-weight: bolder;
    cursor: pointer;
    color: burlywood;
}

.slider-buttons:hover {
    border: none;
    background-color: rgba(222, 184, 135, 0.151);
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */

@media (max-width: 800px) {
    .slider {
        padding: 25px 10px;
    }

    #sliderContainer {
        border-bottom: 4px solid burlywood;
        padding-bottom: 8px;
        border-radius: 0px 0px 20px 20px;
        width: 75%;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .image-container {
        width: 98%;
        margin: auto;
    }

    .image-container img {   
        width: 100%;
    }

    .slider-buttons {
        width: 10%;
        height: 55px;
        text-align: center;
        border: 1px solid burlywood;
        background-color: rgba(222, 184, 135, 0.151);
        border-radius: 20px;
        font-size: large;
        font-weight: bold;
        cursor: pointer;
        color: burlywood;
    }
}