body {
	margin:3px 3px 3px 3px !important;
	background-color: black; /* Set background color */
}

.slider-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
	background-color: black; /* Set background color */
}

.slider {
    display: flex;
}

.slide {
    flex: 0 0 100%;
    max-width: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    justify-content: center;
    /*align-items: center; /* Center vertically */
}

.slide img {
    max-width: 96%;
    max-height: 96%;
    width: auto;
    height: auto;
}

.slider-navigation {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.slider-navigation button {
    background-color: transparent;
	color: white; /* Change arrow color to white */
    border: none;
    cursor: pointer;
    font-size: 40px;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.pagination-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #999;
    margin: 0 5px;
    cursor: pointer;
}

.pagination-dot.active {
    background-color: #333;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .slider-container {
        max-width: 100%;
		
    }
}

@media screen and (max-width: 576px) {
    .slider-container {
        max-width: 100%;
    }
    .slider-navigation {
        bottom: 10px;
    }
}