@media(max-width: 991px) {
    .margin-top {
        margin-top: 46px;
    }

    .menu-col {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background-color: white;
        z-index: 4;
        padding: 20px;
    }

    ul#menu-topleft, ul#menu-footer {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 12px;
    }

    img.custom-logo {
        height: auto;
    }

    .menu-col img.custom-logo {
        height: 90px;
        width: 90px;
    }

    .burger-menu {
        height: 50px;
        width: 30px;
        display: flex;
        cursor: pointer;
        position: relative;
        border-radius: 25px;
        z-index: 4;
        cursor: pointer;
    }

    .burger-menu-top__block {
        position: absolute;
        top: 15px;
        width: 30px;
        height: 3px;
        background: black;
    }

    .burger-menu-middle__block {
        width: 100%;
        height: 3px;
        background: black;
        margin: auto;
    }

    .burger-menu-bottom__block {
        position: absolute;
        bottom: 15px;
        width: 30px;
        height: 3px;
        background: black;
    }

    header.active .burger-menu-top__block {
        transform: rotate(45deg);
        top: 24px;
        background: #211e4b !important;
    }

    header.active .burger-menu-middle__block {
        opacity: 0;
    }

    header.active .burger-menu-bottom__block {
        transform: rotate(-45deg);
        bottom: 23px;
        background: #211e4b !important;
    }

    .left-side,
    .right-side {
        flex: 0 0 100%;
    }

    h1.site-title,
    h3.section-title {
        margin-top: 24px;
        margin-bottom: 16px;
    }

    .left-side__heading {
        padding-bottom: 40px;
    }

    .left-side__objects {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .about-gallery {
        gap: 16px;
    }

    .about-gallery div:first-child {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .about-gallery div:nth-child(2),
    .about-gallery div:last-child {
        flex: 1 1 calc(50% - 37.5px);
        min-width: calc(50% - 37.5px);
        height: 260px;
    }

    .about-gallery div img {
        object-fit: cover;
        height: 100%;
        width: 100%;
    }

    section#objects {
        padding: 80px 0;
    }
}

@media(min-width: 992px) {
    .margin-top {
        margin-top: 80px;
    }

    img.custom-logo {
        width: 70px;
        height: 78px;
        object-fit: cover;
    }

    .left-side,
    .right-side {
        flex: 0 0 50%;
    }

    .left-side__heading {
        padding-bottom: 80px;
    }

    h1.site-title,
    h3.section-title {
        line-height: 100%
    }

    .left-side__objects {
        padding-top: 80px;
    }

    .about-gallery {
        gap: 24px 48px;
    }

    .about-gallery div:first-child {
        flex: 4.5;
    }

    .about-gallery div:nth-child(2) {
        flex: 3;
    }

    .about-gallery div:last-child {
        flex: 2.5;
    }

    .about-gallery div img {
        object-fit: contain;
        height: auto;
    }

    section#objects {
        padding: 80px 0;
    }

    .property-image {
        flex: 0 0 auto;
        width: 50%;
    }
}

@media(max-width: 440px) {

    .about-gallery div:nth-child(2),
    .about-gallery div:last-child {
        height: 160px;
    }
}