.landing-section {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: space-between;
    gap: 0px;
    margin: 2rem 0;
    width: 100%;
    margin-bottom: 2rem;
    box-sizing: border-box;

    @media (width>=768px) {
        gap: 30px;
        margin-bottom: 4rem;

    }
}

.description-landing-image {
    flex: 0 0 35%;
    max-width: 35%;
    height: auto;
    object-fit: cover;
}

.right-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10px;
    text-align: left;
}

.right-text p {
    margin-bottom: 1.5rem;
}

.description-landing-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin: 4rem 0;
    width: 100%;
    box-sizing: border-box;
}

.gallery-image {
    flex: 1 1 calc(33.333% - 20px);
    height: 300px;
    max-width: calc(33.333% - 20px);
    object-fit: cover;
    margin: 0;
}

@media (max-width: 768px) {
    .landing-section {
        flex-direction: column;
        align-items: center;
    }

    .description-landing-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    .right-text {
        width: 100%;
        padding: 0;
        text-align: center;
    }

    .right-text p {
        text-align: left;
    }

    .description-landing-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .gallery-image {
        flex: 1 1 100%;
        max-width: 100%;
        height: 200px;
        object-fit: cover;


        @media (min-width: 992px) {
            height: 300px;
        }
    }
}

.text-above {
    margin-bottom: 20px;

    @media (width>=768px) {
        margin-bottom: 50px;
    }

}

@media (max-width: 768px) {

    .text-above p,
    .right-text p,
    .description-landing p,
    .description-landing-image,
    .description-landing-grid,
    .description-landing-wrap h2,
    .landing-section p {
        text-align: left;
        padding: 0 10px !important;
    }
}