.attachments_sect {
    padding: 5em 0;
}
.attachments_sect.padding_top_off {
    padding-top: 0;
}
.attachments_sect.padding_bottom_off {
    padding-bottom: 0;
}
.attachments_sect .info_wrap {
    display: flex;
    justify-content: space-between;
    padding: 1.5em 2em;
    box-sizing: border-box;
    background-color: #F5F9FD;
    border-radius: 1.125em;
    align-items: center;
    min-height: 10em;
    margin: 0 auto 1em;
}
.attachments_sect .info_wrap .image_wrap {
    width: 6.75em;
    margin-left: 1.25em;
}
.attachments_sect .info_wrap .image {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}
.attachments_sect .info_wrap .title_and_desc_wrap {
    width: calc(100% - 8em);
}
.attachments_sect .info_wrap .title {
    font-weight: 500;
    font-size: 1.75em;
    line-height: 1.26;
    margin: 0 0 0.25em;
}
.attachments_sect .info_wrap .description {
    line-height: 1.425;
    font-size: 1.125em;
}
.attachments_sect .tabs {
    display: flex;
    flex-wrap: wrap;
    margin: -0.25em -0.5em 0.75em;
}
.attachments_sect .tab {
    display: flex;
    height: 4em;
    margin: 0.25em 0.5em;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    flex-grow: 1;
    padding: 0 1em;
    border-radius: 0.5em 0.5em 0 0;
    background-color: #F5F9FD;
    transition-property: background-color, color;
    transition-duration: 0.3s;
    cursor: pointer;
}
.attachments_sect .tab.active {
    background-color: #317EE5;
    color: #FFFFFF;
}
.attachments_sect .tab .tab_title {
    font-weight: 500;
    font-size: 1.125em;
    line-height: 1.83;
}
.attachments_sect .tab_panel:not(.active) {
    display: none;
}
.attachments_sect .links .link {
    display: flex;
    font-size: 1.125em;
    align-items: center;
    /*padding: 2.25em 0 1em;*/
    padding: 1em 0;
    box-sizing: border-box;
    min-height: 6.5em;
    border-bottom: 1px solid #C1DCF6;
}
.attachments_sect .links .link_side {
    box-sizing: border-box;
    padding: 0 1em;
    width: 50%;
}
.attachments_sect .links .link_side:first-child {
    padding-left: 0;
}
.attachments_sect .links .link_side:last-child {
    text-align: right;
    padding-right: 0;
}
.attachments_sect .links .link_title {
    font-weight: 600;
}
.attachments_sect .links .link_image {
    max-height: 4.5em;
    max-width: 100%;
}
@media(max-width: 1199px) {
    .attachments_sect {
        padding: 2em 0;
    }
    .attachments_sect .info_wrap {
        padding: 1em;
        display: block;
        min-height: 0;
    }
    .attachments_sect .info_wrap .title_and_desc_wrap {
        width: 100%;
    }
    .attachments_sect .info_wrap .image_wrap {
        display: none;
    }
    .attachments_sect .info_wrap .title {
        font-size: 1.25em;
        margin: 0 0 0.5em;
    }
    .attachments_sect .info_wrap .description {
        font-size: 0.875em;
    }
    .attachments_sect .tabs {
        margin: -0.25em;
    }
    .attachments_sect .tab {
        margin: 0.25em;
        height: 2.75em;
    }
    .attachments_sect .tab .tab_title {
        font-size: 0.875em;
    }
    .attachments_sect .tab_panel {
        margin-top: 0.625em;
    }
    .attachments_sect .links .link {
        padding: 0.75em 0;
        min-height: 4em;
        font-size: 0.875em;
    }
    .attachments_sect .links .link_image {
        max-height: 2.5em;
    }
}