.content_sect {
    background-color: #F3F7FE;
    padding: 6em calc(50vw - 50%) 7em;
    margin: 0 calc(50% - 50vw);
}
.content_sect .sect_title {
    margin: 0 0 0.25em;
}
.content_sect .description {
    text-align: center;
    line-height: 1.25;
    font-size: 1.25em;
    margin: 0 0 2.25em;
}
.content_sect .content_wrap {
    display: flex;
    margin: 0 -0.5em;
}
.content_sect .links {
    margin: 0 0.5em;
    border: 1px solid #F8F8F8;
    background-color: #ffffff;
    border-radius: 1.125em;
    box-sizing: border-box;
    padding: 1.5em;
    width: 23.625em;
}
.content_sect .link {
    padding: 1.5em 0;
    border-bottom: 1px solid #E5E5E5;
}
.content_sect .link:first-child {
    padding-top: 0;
}
.content_sect .link:last-child {
    padding-bottom: 0;
    border: none;
}
.content_sect .link_data {
    display: flex;
    align-items: center;
    margin: 0 0 1.25em;
}
.content_sect .link_image_wrap {
    background-color: #F3F7FE;
    width: 6.75em;
    height: 6.75em;
    border-radius: 50%;
    position: relative;
    margin-right: 2.5em;
}
.content_sect .link_image {
    display: block;
    max-width: calc(100% - 0.5em);
    max-height: calc(100% - 0.5em);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.content_sect .link_data_text {
    width: calc(100% - 9.25em);
}
.content_sect .link_name {
    font-size: 1.5em;
    line-height: 1.4;
    margin: 0 0 0.5em;
}
.content_sect .link_info {
    line-height: 1.4;
}
.content_sect .link_title {
    font-weight: 500;
    font-size: 1.5em;
    line-height: 1.5;
    margin: 0 0 0.25em;
}
.content_sect .link_description {
    line-height: 1.4;
    margin: 0 0 1em;
}
.content_sect .link_butt {
    width: 100%;
}
.content_sect .posts_container {
    background-color: #ffffff;
    border: 1px solid #F8F8F8;
    border-radius: 1.125em;
    margin: 0 0.5em;
    width: calc(100% - 25.625em);
    box-sizing: border-box;
    padding: 1.5em;
}
.content_sect .posts_image {
    display: block;
    max-width: 100%;
    margin: 0 auto 1em;
}
.content_sect .posts {
    margin: -1em -0.5em;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.content_sect .post {
    margin: 1em 0.5em;
    width: calc(100%/3 - 1em);
    color: inherit;
    display: block;
}
.content_sect .post:hover {
    text-decoration: none;
    color: #317EE5;
}
.content_sect .post_image_wrap {
    background-color: #F3F7FF;
    border-radius: 1em;
    margin: 0 0 0.75em;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.content_sect .post_image_wrap:before {
    content: '';
    display: block;
    padding: 28% 0;
}
.content_sect .post_image {
    position: absolute;
    z-index: -1;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}
.content_sect .post_title {
    font-weight: 500;
    line-height: 1.3;
    font-size: 0.875em;
}
@media(max-width: 1199px) {
    .content_sect {
        padding: 4em calc(50vw - 50%);
    }
    .content_sect .content_wrap {
        display: block;
        margin: 0;
    }
    .content_sect .links {
        display: flex;
        width: 100%;
        margin: 0 0 1.25em;
        flex-wrap: wrap;
        padding: 0.5em;
        box-shadow: 0 0.25em 1em rgba(94, 94, 94, 0.07);
    }
    .content_sect .link {
        width: calc(50% - 2em);
        margin: 1em;
        padding: 0;
        border: none;
    }
    .content_sect .posts_container {
        box-shadow: 0 0.25em 1em rgba(94, 94, 94, 0.07);
        width: 100%;
        margin: 0;
    }
}