.mdc_topblock {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.mdc_topblock h1 {
    font-size: 72px;
    line-height: 80px;
    color: #fff;
    font-weight: 700;
    max-width: 420px;
}
.mdc_topblock .mdc_topblock_right {
    background-color: #00244c;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding: 50px 50px 25px;
}
.mdc_topblock .mdc_topblock_right > div {
    margin-bottom: 25px;
}
.mdc_topblock .mdc_topblock_right .mdc_topblock_right_title {
    color: #b88210;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 24px;
    text-align: center;
}
.mdc_topblock .mdc_topblock_right .mdc_topblock_right_description {
    color: #fff;
    font-size: 24px;
}
.mdc_topblock .mdc_topblock_right .mdc_topblock_right_description p {
    margin-bottom: 0;
    text-align: center;
}
.mdc_topblock .mdc_topblock_right .mdc_topblock_right_description p a {
    color: #fff;
    text-decoration: underline;
}
@media (min-width:1024px) {
    .mdc_topblock h1 {
        background-image: none !important;
    }
}
@media (max-width:1023px) {
    .mdc_topblock {
        display: block;
        padding: 0;
        background-image: none !important;
    }
    .mdc_topblock h1 {
        font-size: 40px;
        text-align: center;
        max-width: 100%;
        padding: 50px 20px;
        line-height: 52px;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }
    .mdc_topblock .mdc_topblock_right {
        padding: 20px;
        text-align: center;
    }
    .mdc_topblock .mdc_topblock_right .mdc_topblock_right_title {
        font-size: 20px;
    }
    .mdc_topblock .mdc_topblock_right .mdc_topblock_right_description {
        font-size: 20px;
    }
}

.mdc_textthreeimages {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    padding: 0 10%;
}
.mdc_textthreeimages > div {
    margin-bottom: 25px;
}
.mdc_textthreeimages > div.mdc_textthreeimages_text > div {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.mdc_textthreeimages > div img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}