.carousel {
    width: 100%;
    margin: 0 auto;
    position: relative;
}
#banner {
    position: relative;
    width: 75%;
    overflow: hidden;
    margin: 0 auto;
}

.slideshow-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.mySlides {
    flex: 0 0 auto;
    width: 100%;
}

.slideFade {
    animation: fade 1.5s ease-in-out infinite;
}

.panel {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.promotionBox {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-right: 0!important;
}

.promotionImage img {
    width: 100%;
    height: auto;
}

#indicators {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #bbb;
    margin: 0 5px;
    cursor: pointer;
}

.indicator.active {
    background-color: #00276C;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    font-size: 24px;
    cursor: pointer;
    color: #bbb;
    background: none;
    border: none;
    transform: translateY(-50%);
    transition: color 0.3s ease-in-out;
    z-index: 1;
    width: 60px;
    height: 60px;
}

#prev {
    left: 8%;
    background-image: url('../images/chevron-left.svg');
    background-repeat: no-repeat;
    background-size: cover;
  }

#next {
    right: 8%;
    background-image: url('../images/chevron-right.svg');
    background-repeat: no-repeat;
    background-size: cover;
}

#prev:hover {
    background-image: url('../images/chevron-left-hovered.svg');
}

#next:hover {
    background-image: url('../images/chevron-right-hovered.svg');
}

.promotion-wrapper .col-12 {
    display: flex;
}
.promotion-wrapper .col-12 {
    padding: 0;
    gap: 6px;
}

.promotion-wrapper .col-12 .col-md-6 {
    padding: 0;
}
@media (max-width: 480px) {
    .promotion-wrapper #banner {
        display: block;
        width: 100%;
    }
    .carousel-arrow {
        top: 57%;
        width: 30px;
        height: 30px;
    }
    #prev {
        left: 0;
    }

    #next {
        right: 0;
    }
}

  /* @keyframes fade {
    0%, 100% {
      opacity: 0.4;
    }
    50% {
      opacity: 1;
    }
  } */