.slider-overflow {
    overflow-x: clip;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.monitoring-card-container {
    border: 1px solid #519C60;
    border-radius: 10px;
    padding: 60px 10px 10px 10px;
    position: relative;
    cursor: pointer;
    font-family: 'Montserrat';
}

.monitoring-card-container a {
    opacity: 0;
}

.monitoring-card-container::before {
    content: "";
    background: #519C60;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    border-radius: 10px;
    transition: all linear 0.3s;
}

.monitoring-card-container::after {
    content: "";
    background: url('../assets/img/icon-more-carousel.png');
    background-repeat: no-repeat;
    background-size: cover;
    width: 65px;
    height: 65px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    opacity: 0;
}

.monitoring-card-container:hover::before {
    opacity: 0.6;
}

.monitoring-card-container:hover::after {
    opacity: 1;
}

/* Changement de couleur des card */
.monitoring-card-container.orange {
    border: 1px solid #F97A31;
}

.monitoring-card-container.orange .monitoring-card-title {
    color: #F97A31;
}

.monitoring-card-container.orange::before {
    content: "";
    background: #F97A31;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    border-radius: 10px;
    transition: all linear 0.3s;  
}

.monitoring-card-container.orange::after {
    content: "";
    background: url('../assets/img/carousel-plus-orange.png');
    background-repeat: no-repeat;
    background-size: cover;
    width: 65px;
    height: 65px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    opacity: 0;
}

.monitoring-card-container.orange:hover::before {
    opacity: 0.6;
}

.monitoring-card-container.orange:hover::after {
    opacity: 1;
}


.monitoring-card-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.monitoring-card-title {
    font-size: 20px;
    text-transform: uppercase;
    color: #519C60;
    font-weight: bold;
}

.monitoring-card-text {
    font-size: 15px;
    text-align: left;
    padding-left: 10px;
    color: black;
    font-weight: 400;
    height: 100px;
}

.monitoring-card-container .monitoring-card-img img {
    height: 180px;
    border-radius: 10px;
    object-fit: cover;
}

.swiper-control {
    position: relative;
    height: 65px;
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.swiper-control .swiper-pagination {
    top: 50% !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(-50%);
}

.swiper-control .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    background: transparent;
    border: 1px solid #519C60;
}

.swiper-control .swiper-pagination-bullet-active {
    background: #519C60;
}

.custom-navigation {
    display: flex;
    gap: 15px;
    z-index: 10;
}

.custom-navigation button {
    width: 65px;
    height: 65px;
    border: 1px solid #697E93;
    border-radius: 50%;
}

.custom-navigation button:hover {
    border: 1px solid #F97A31;
}

.custom-navigation .custom-prev {
    background: url('../assets/img/arrow-left-green.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 25px;
}

.custom-navigation .custom-next {
    background: url('../assets/img/arrow-right-green.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 25px;
}

@media screen and (max-width: 767px) {
    .custom-navigation {
        display: none;
    }
    .swiper-control .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
}