.galleryTwo__items {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    row-gap: 20px;
}
.galleryTwo__item {
    position: relative;
    width: 100%;
    height: 100%;
    max-height: 350px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.galleryTwo__item-img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.galleryTwo__btn-after {
    margin: 0 auto;
    margin-top: var(--Margin-100-20);
}

.galleryTwo-block .block-header__title {
    max-width: 445px;
}


@media(max-width: 770px) {
    .galleryTwo__items {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media(max-width: 600px) {
    .galleryTwo-block .block-header {
        width: 88%;
    }
}
@media(max-width: 430px) {
    .galleryTwo__items {
        grid-template-columns: repeat(1, 1fr);
    }
}