.carousel-container{
    width: 100%;
    /* height: 350px; */
    background-image: url("../images/carousel-images/slider_background.jpg");
    background-size: cover ;
    background-repeat: no-repeat;
    margin-top: -10px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.carousel-image{
    /* width: 65%; */
    /* height: 350px; */
    /* overflow: hidden; */
    /* max-width: 1000px; */
    margin: auto;
}
.carousel-image img{
    /* height: 350px; */
    width: 100%;
    /* max-width:  1000px; */
    margin: auto;
}
.carousel-container button{
    background: transparent;
    border: none;
    color: black;
}

.slide-btn{
    border: 1px solid #333;
    width: fit-content;
    color: black;
    border-radius: 20px;
    font-weight: 600;
    /* padding: 10px 20px; */
}
.slide-btn:hover{
    scale: 1.1;
    transition: 0.4s;
    background-color: black;
    color: white;
    text-decoration: none;
}
.carousel-next{
    background: transparent; 
    border: none; 
    color: black;  
    font-size: 30px; 
    width: fit-content;
    /* margin-right: -100px; */
}
.carousel-prev{
    background: transparent; 
    width: fit-content;
    border: none; 
    color: black;  
    font-size: 30px; 
    /* margin-left: -20px; */
}

@media (min-width:200px) and (max-width: 768px) {

    .carousel-image{
        width: 90%;
        margin: auto;
        /* height: 200px; */
        overflow: hidden;
    }
    .carousel-container img{
        overflow: hidden;
        /* height: 150px; */
    }
    .slide-btn {
        border: 1px solid #333;
        width: fit-content;
        color: black;
        font-size: small;
        border-radius: 20px;
        font-weight: 400;
        padding: 5px 10px;
    }
    .carousel-btns{
        background: transparent;
        border: none; 
        color: black;  
        font-size: 25px; 
        /* margin-right: -30px; */
        /* padding-top: 200px; */
        /* background-color: rgb(161, 161, 161); */
    
    }
    .carousel-next{
        background: transparent; 
        border: none; 
        color: black;  
        font-size: 10px; 
        /* margin-right: -15px; */
    }
    .carousel-prev{
        background: transparent; 
        border: none; 
        color: black;  
        font-size: 10px; 
        /* margin-left: -15px; */
    }
    
}
@media (min-width: 770px) and (max-width: 1350px){
    .carousel-next{
        background: transparent; 
        border: none; 
        color: black;  
        font-size: 20px; 
        /* margin-right: -25px; */
    }
    .carousel-prev{
        background: transparent; 
        border: none; 
        color: black;  
        font-size: 20px; 
        /* margin-left: -25px; */
    }
}
