.history_block {
    padding: 95px 0 85px;
    background: #ffffff;
}
.history_wrap {
    display: grid;
    grid-template-columns: 35% 1fr;
    column-gap: 200px;
    align-items: start;
}

.history_title {
    margin: 0 0 8px;
}
.history_image_wrap {
    margin-top: 250px;
    width: 100%;
}
.history_image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.history_content_item:not(:last-child) {
    margin-bottom: 25px;
}
.history_content_title {
    margin: 0 0 24px;
    font-family: 'Moderat_Regular';
    font-size: 22px;
    line-height: 30px;
    color: var(--text-color);
}
.history_content_text,
.history_content_text p {
    margin: 0;
    font-family: 'Moderat_Regular';
    font-size: 22px;
    line-height: 30px;
    color: var(--text-color);
}
.history_content_text p:not(:last-child) {
    margin-bottom: 16px;
}

@media (max-width: 1199px) {
    .history_wrap {
        grid-template-columns: 38% 1fr;
        column-gap: 150px;
    }
    .history_image_wrap {
        margin-top: 160px;
    }
}

@media (max-width: 991px) {
    .history_block {
        padding: 70px 0;
    }
    .history_wrap {
        grid-template-columns: 1fr;
        row-gap: 45px;
    }
    .history_image_wrap {
        margin-top: 45px;
        max-width: 520px;
    }
}

@media (max-width: 767px) {
    .history_block {
        padding: 55px 0;
    }
    .history_image_wrap {
        margin-top: 35px;
    }
    .history_content_title {
        margin-bottom: 14px;
    }
}
