.carousel-container {
    width: 1500px;
    position: relative;
    overflow: hidden;
}

.carousel-slide {
    display: flex;
    transition: transform 1s ease-in-out;
}

.carousel-slide img {
    width: 1500px;
    flex-shrink: 0;
}

.carousel-dots {
    text-align: center;
    margin-top: 8px;
}

.carousel-dots .dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.5s ease;
}

.carousel-dots .active {
    background-color: #717171;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 12px;
    margin-top: -22px;
    color: white;
	background-color: rgba(0,22,89,0.5);
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
	z-index: 2;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(255,94,21,0.8);
}
.slide-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the label */
	/*background-color: rgba(0, 0, 0, 0.5);*/ /* Transparent black */
    color: #FFFFFF;
    font-size: 58px; /* Adjust font size as needed */
    font-weight: bold;
    text-align: center;
    width: 100%; /* Full width of the slide */
    z-index: 1; /* Ensure label is on top of the image */
	text-shadow: 2px 2px 4px #000000;
  }