/* 110px se 1200px tak */

/* 1200px se 1300px tak */

/* 1300px se 1400px tak */


/* Custom Arrows */
.custom-prev,
.custom-next {
    background: rgba(0, 0, 0, 0.6);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.custom-prev i,
.custom-next i {
    color: rgb(226, 137, 19);
    font-size: 22px;
}

.custom-prev:hover,
.custom-next:hover {
    background: rgba(255, 255, 255, 0.8);
}

.custom-prev:hover i,
.custom-next:hover i {
    color: black;
}

#container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    position: relative;
}

.swiper {
    width: 100%;

    /* border-radius: 10px; */
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border-radius: 10px; */
}

/* Custom Arrows */
.custom-prev,
.custom-next {
    background: rgb(0 139 30);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    transition: 0.3s;
}

.custom-prev:hover,
.custom-next:hover {
    background: rgb(6, 77, 21);
}



.custom-prev::after,
.custom-next::after {
    font-size: 20px;
    color: #ffa637;
}

/* Pagination Dots */
/* .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: white;
    opacity: 0.8;
    transition: 0.3s;
} */

.swiper-pagination-bullet-active {
    background-color: red;
    transform: scale(1.3);
}

/* Pause/Play Button */
.pause-play {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 8px 12px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.pause-play:hover {
    background: rgba(255, 255, 255, 0.9);
    color: black;
}