.gallery-thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 30px;
}
.gallery-thumbs .item {
    max-width: 277px;
    max-height: 185px;
    cursor:pointer;
    transition: all ease .5s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}
.gallery-thumbs .item img {border-radius: 8px;}
.gallery-thumbs .item:hover {
    -webkit-box-shadow: 0 5px 10px rgb(0 0 0 / 40%);
    box-shadow: 0 5px 10px rgb(0 0 0 / 40%);
}
.gallery-top {
    margin: 50px 0 30px;
}
.gallery-top .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.gallery-top .swiper-slide img {border-radius: 15px; min-height: 530px;}
.gallery-top .swiper-slide.vert img {border-radius: 0;}
.gallery-top .swiper-slide a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;
}
.gallery-top .swiper-slide.vert a {
    background: #ebdec1;
    width: 800px;
}
.gallery-top .swiper-slide .iicon{
    position: absolute;
    width: 30px;
    height: 30px;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
}
.gallery-top .swiper-slide .iicon img { min-height: unset;}
.gallery-top .info-wrap {
    width: 100%;
    max-width: 800px;
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
}
.gallery-top .info-wrap .left {
    max-width: 45%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.gallery-top .info-wrap .load, .gallery-top .swiper-slide.vert a.load {
    font-size: 16px;
    width: initial;
    background: none;
}
.gallery-top .info-wrap .left p {
    font-size: 14px;
    color: #988558;
}
.gallery-top .info-wrap .left .author {
    color: #988558;
    font-weight: 600;
    font-size: 24px;
}
.gallery-top .info-wrap .right {
    max-width: calc(55% - 10px);
}
.gallery-top .info-wrap .right .name {
    font-size: 14px;
    color: #988558;
    font-weight: 600;
}
.gallery-top .info-wrap .right .descr {
    font-size: 14px;
}
.swiper-button-next, .swiper-button-prev {color: #a39978!important;}
.infoblock {
    max-width: 800px;
    border-radius: 15px;
    padding-bottom: 30px;
}
.infoblock h2 {
    color: #988558;
    margin-bottom: 15px;
}
.gallery-top .swiper-pagination {display: none;}
@media (max-width: 767px) {
    .gallery-thumbs {display: none;}
    .gallery-top .swiper-slide img {min-height: unset;}
    .gallery-top .info-wrap {margin: 10px 0;flex-direction: column;}
    .gallery-top .info-wrap .left {
        max-width: unset;
        width: 100%;
        margin-bottom: 10px;
    }
    .gallery-top .info-wrap .right {
        max-width: unset;
        width: 100%;
    }
    .gallery-top {
        margin: 30px 0 30px;
        padding-top: 15px;
    }
    .gallery-top .swiper-wrapper {padding-top: 50px;}
    .gallery-top .swiper-slide.vert a {
        width: auto;
        background: none;
    }
    .gallery-top .swiper-slide.vert img {border-radius: 15px;}
    .gallery-top .swiper-button-next {
        top: 25px;
        right: 10px;
    }
    .gallery-top .swiper-button-prev {
        top: 25px;
        left: unset;
        right: 70px;
    }
    .gallery-top .swiper-pagination {
        display: initial;
        position: absolute;
        top: 34px;
        height: 30px;
    }
}