.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: #ee8da5;
    border-radius: 50%;
    margin-top: 20%;
}

.carousel-control-prev, .carousel-control-next {
    z-index: 1050;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    height: 20px !important;
    font-weight: 900 !important;
}

.carousel-item {
    transition: transform 0.5s ease-in-out;
}

.banner-home {
    position: relative;
    overflow: hidden;
    text-align: center;
    background: #000;
}

.carousel {
    position: relative;
}

.carousel-inner {
    /*display: flex;*/
    transition: transform 0.5s ease-in-out;
}

#bannerCarousel .carousel-item {
    min-width: 100%;
    height: 70vh;
    max-height: 700px;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.progress-bar {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
}

.progress {
    width: 0;
    height: 100%;
    background: #ee8da5;
    transition: width 5s linear;
}

.btn-banner-home {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ee8da5;
    padding: 10px 20px;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 5px;
}

.btn-banner-home:hover {
    background-color: #ad566c;
    color: white !important;
}

@media (max-width: 767px) {
    #bannerCarousel .carousel-item {
        height: 45vh;
        max-height: 350px;
    }

    #bannerCarousel img {
        object-fit: cover;
    }
}






