.content-gallery {
    margin-bottom: 68px;
}

.content-gallery h2 {
    margin: 0;
    margin-bottom: 31px;
}

.content-gallery p {
    margin: 20px 0;
}

.content-gallery a.btn-blue {
    margin-top: 15px;
    min-width: auto;
}

.content-gallery .content-wrap {
    padding-right: 54px;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
}

.image-grid .item-1 {
    height: 503px;
    grid-row: 1 / span 2;
}

.image-grid .item-1 img,
.image-grid .item-2 img,
.image-grid .item-3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.image-grid .item-2,
.image-grid .item-3 {
    height: calc(492px / 2);
}

@media screen and (min-width: 1200px) {
    .content-gallery .container {
        max-width: 1130px;
    }

    .home .content-gallery .container {
        max-width: 1320px;
    }
}

@media only screen and (max-width : 1200px) {
    .content-gallery .content-wrap {
        padding-right: 0;
    }
}

@media only screen and (max-width : 992px) {
    .content-gallery .row .col-md-6 {
        width: 100%;
        text-align: center;
    }

    .content-gallery .content-wrap {
        padding-bottom: 50px;
    }
}

@media only screen and (max-width : 576px) {
    .image-grid {
        display: block
    }

    .image-grid .grid-item {
        height: 300px;
        margin-bottom: 15px;
    }

    .content-gallery {
        margin-bottom: 50px;
    }
}