.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    height: 550px;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 10;
}

.carousel-btn:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.carousel-btn-prev {
    left: 20px;
}

.carousel-btn-next {
    right: 20px;
}

.custom-carousel-indicator-container {
    position: absolute;
    background-color: rgba(0,0,0,.5);
    height: 80px;
    bottom: 0px;
    left: 0;
    width: 100%
}

.custom-carousel-indicators {
    position: absolute;
    bottom: 32px;
    display: flex;
    gap:10px;
    justify-content: center;
}

.indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #FCFEFD;
    cursor: pointer;
    transition: all 0.3s ease;
}


.indicator:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}


.indicator.active {
    background-color: rgba(205, 32, 40, 1);
    transform: scale(1.2);
    width: 15px;
    height: 15px;
}

.btnOrderPromo {
  position: absolute;
  left: 12rem;
  top: 14px;
  border-radius: 23px;
  background: #016F9F;
  box-shadow: 0px 3px 10px 0px rgba(75, 160, 191, 0.27);
  color: #FFF;
  padding: 8px 58px;
  font-weight: bold;
  z-index: 16;
  font-size: 24px;
}

@media only screen and (max-width: 992px) {
    .btnOrderPromo {
        left: 6rem;
    }
}

@media (max-width: 768px) {
    .carousel {
        height: 400px;
    }
    
    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    
    .carousel-btn-prev {
        left: 10px;
    }
    
    .carousel-btn-next {
        right: 10px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }


    .custom-carousel-indicators {
        justify-content: end;
    }
}

@media (max-width: 480px) {
    .btnOrderPromo {
        font-size: 18px;
        padding: 4px 26px;
        left: 26px;
        top: 9px;
    }

    .custom-carousel-indicator-container {
        position: relative;
        height: 54px;
    }

    .carousel {
        height: 350px;
    }

    .custom-carousel-indicators {
        bottom: 18px;
        gap: 6px;
    }
}