#certificates-block {
    margin-bottom: 80px;
}

#certificates-block .certificates__title {
    max-width: 660px;
    width: 100%;
}

#certificates-block .swiper-slide {
    height: auto;
}

#certificates-block .certificates__item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    max-height: 530px;
    height: 100%;
    width: 100%;
    padding: 25px 38px;
    aspect-ratio: 42 / 53;
    box-sizing: border-box;
    background: var(--background-secondary);
    cursor: pointer;
    overflow: hidden;
}

#certificates-block .certificates__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(246, 254, 246, 0.3);
    background-image: url("./images/cert-hov.svg");
    background-size: 24px;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: 0.3s ease-in;
}

#certificates-block .certificates__item:hover::before {
    opacity: 1;
}

#certificates-block .certificates__item img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    overflow: hidden;
}
@media (max-width: 992px) {
    #certificates-block {
        margin-bottom: 60px;
    }
    #certificates-block .certificates__item {
        padding: 20px;
    }
}
@media (max-width: 768px) {
    #certificates-block {
        margin-bottom: 40px;
    }
}