.certificates {
    padding: 64px 0;
    position: relative;
}

.certificates::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 200vw;
    background: #fff;
    height: 100%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: -1;
}

.certificates .block-title {
    color: #333;
}

.certificates .swiper-wrapper {
    align-items: center;
}

.certificates .certificate-single {
    display: flex;
    align-items: center;
    /* background-color: #fff;
    border: 2px solid #fff; */
    height: 100%;
    padding: 16px;
    /* min-height: 156px; */
}

.certificates .certificate-single img {
    max-height: 120px;
    height: 100%;
    width: auto;
    max-width: 100%;
    display: flex;
    margin: 0 auto;
    transition: transform .3s ease;
}

.certificates .certificate-single:hover img {
    transform: scale(1.1);
}

.certificates .swiper-button-prev {
    left: -50px;
    top: calc(50% + 32px);
}

.certificates .swiper-button-next {
    right: -50px;
    top: calc(50% + 32px);
}

@media (max-width:1199px) {
    .certificates {
        padding: 48px 0;
    }
}

@media (max-width:768px) {

    .certificates .swiper {
        max-width: 85%;
    }

    .certificates .swiper-button-prev {
        left: 0;
    }

    .certificates .swiper-button-next {
        right: 0;
    }
}