.gallery-block {
    padding: 60px 0;
}

.gallery-block .swiper {
    width: 100%;
    max-width: 1920px;
    height: clamp(290px, calc(39.8959236774vw + -16.0017346054px), 750px);
    margin-left: auto;
    margin-right: auto;
}

.gallery-block .swiper-wrapper {
    width: 100% !important;
}

.gallery-block .swiper-slide {
    position: relative;
    height: fit-content !important;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.gallery-block .swiper-slide:after {
    content: '';
    display: block;
    padding-bottom: 100%;
}

.gallery-block .swiper-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1025px) {
    .gallery-block .swiper {
        height: clamp(194px, calc(39.9239543726vw + -5.2205323194px), 404px);
    }
}

@media (max-width: 992px) {
    .gallery-block {
        padding: 40px 0;
    }
}

@media (max-width: 498px) {
    .gallery-block .swiper {
        height: clamp(155px, calc(47.4860335196vw + 3.0446927374px), 240px);
    }

    .gallery-block .swiper-slide {
        height: calc((100% - 10px) / 2) !important;
    }

    .gallery-block .swiper-slide:after {
        display: none;
    }
}