.mdc_three_images_block {
    display: flex;
    height: 90dvh;
    margin-bottom: 120px;
}
.mdc_three_images_block .mdc_three_images_block_left {
    width: 45%;
}
.mdc_three_images_block .mdc_three_images_block_left .mdc_three_images_block_title {
    display: none;
}
.mdc_three_images_block .mdc_three_images_block_left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.mdc_three_images_block .mdc_three_images_block_right {
    width: 55%;
    height: 100%;
    padding-left: 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.mdc_three_images_block .mdc_three_images_block_right .mdc_three_images_block_images {
    margin-left: -100px;
    display: flex;
    justify-content: space-between;
    height: 65%;
}
.mdc_three_images_block .mdc_three_images_block_right .mdc_three_images_block_images img {
    width: 49%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.mdc_three_images_block .mdc_three_images_block_title {
    font-weight: 500;
    color: #1C1C1C;
    font-size: 18px;
    margin-bottom: 30px;
}
.mdc_three_images_block .mdc_three_images_block_right .mdc_three_images_block_description p {
    font-weight: 300;
    color: #1C1C1C;
    margin-top: 15px;
}
.mdc_three_images_block .mdc_three_images_block_right .mdc_three_images_block_url {
    height: 34px;
}
.mdc_three_images_block .mdc_three_images_block_right .mdc_three_images_block_url .mdc_btn {
    padding: 6px 12px;
    display: block;
    width: fit-content;
    text-transform: uppercase;
    font-weight: 300;
}

@media(max-width: 1199px) {
    .mdc_three_images_block {
        height: 650px;
        margin-bottom: 60px;
    }
    .mdc_three_images_block .mdc_three_images_block_right .mdc_three_images_block_description p {
        max-height: 120px;
        overflow: hidden;
    }
    .mdc_three_images_block .mdc_three_images_block_right .mdc_three_images_block_images {
        margin-left: -160px;
        height: 60%;
    }
    .mdc_three_images_block .mdc_three_images_block_right .mdc_three_images_block_url {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width:767px) {
    .mdc_three_images_block {
        display: block;
        height: auto;
    }
    .mdc_three_images_block .mdc_three_images_block_left {
        width: 100%;
    }
    .mdc_three_images_block .mdc_three_images_block_right .mdc_three_images_block_images {
        display: none;
    }
    .mdc_three_images_block .mdc_three_images_block_right {
        width: 100%;
        display: block;
        padding-left: 0;
    }
    .mdc_three_images_block .mdc_three_images_block_right .mdc_three_images_block_title {
        display: none;
    }
    .mdc_three_images_block .mdc_three_images_block_left .mdc_three_images_block_title {
        display: block;
    }
    .mdc_three_images_block .mdc_three_images_block_right .mdc_three_images_block_description p {
        max-height: inherit;
    }
}