.cert-slider {
    margin-bottom: 40px;
}

.cert-slider__title {
    margin-bottom: 45px;
}

.cert-slider__swiper {
    padding: 10px 10px 50px 10px;
    margin: -10px -10px 0 -10px;
    position: relative;
}

.cert-slider__swiper .swiper-pagination {
    bottom: 10px !important;
}

.cert-slider__swiper .swiper-pagination-bullet {
    background: var(--primary);
    opacity: 0.3;
}

.cert-slider__swiper .swiper-pagination-bullet-active {
    background: #ebcc00 !important;
    opacity: 1 !important;
    width: 24px !important;
    border-radius: 5px !important;
    transition: all 0.3s ease;
}

.cert-slider__swiper .swiper-button-next,
.cert-slider__swiper .swiper-button-prev {
    width: 36px;
    height: 36px;
    color: var(--primary);
}

.cert-slider__swiper .swiper-button-next:after,
.cert-slider__swiper .swiper-button-prev:after {
    font-size: 16px;
}

.cert-slider__swiper .swiper-slide {
    height: auto;
    display: flex;
}

.cert-slider__item {
    width: 100%;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    cursor: zoom-in;
}

.cert-slider__img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    display: block;
    transition: opacity 0.3s ease;
}

.cert-slider__img.lazy {
    opacity: 0;
}

.cert-slider__img:not(.lazy) {
    opacity: 1;
}

@media (max-width: 768px) {
    .cert-slider__title {
        margin-bottom: 30px;
    }

    .cert-slider__img {
        height: 240px;
    }

}