.offer_sect {
    padding: 6.875em 0;
}
.offer_sect .tabs_toggles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 1.5em;
    line-height: 1.25;
    margin: 0 -1em 2em;
}
.offer_sect .tabs_toggle {
    padding: 0 1em;
    position: relative;
    transition-property: color;
    transition-duration: 0.3s;
    cursor: pointer;
}
.offer_sect .tabs_toggle:not(:last-child):after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 100%;
    background-color: #46597B;
    width: 1px;
    height: calc(100% - 0.6em);
    transform: translate(-50%, -50%);
}
.offer_sect .tabs_toggle.active {
    color: #317EE5;
}
.offer_sect .tabs_panel:not(.active) {
    display: none;
}
.offer_sect .text_items {
    display: flex;
    flex-wrap: wrap;
    margin: -1em -0.5em;
}
.offer_sect .text_items:not(:last-child) {
    margin-bottom: 1em;
}
.offer_sect .text_item {
    margin: 1em 0.5em;
    padding: 2.25em;
    box-sizing: border-box;
    width: calc(100%/3 - 1em);
    border: 1px solid rgba(69, 136, 225, 0.4);
    border-radius: 1.125em;
    color: #53627C;
    line-height: 1.5;
}
.offer_sect .text_item_text {
    font-size: 1.125em;
    position: relative;
    padding-left: 1.25em;
}
.offer_sect .text_item_text:before {
    content: '—';
    top: 0.75em;
    left: 0;
    transform: translate(0, -50%);
    color: #4588E1;
    position: absolute;
}
.offer_sect .butt_wrap {
    text-align: center;
}
.offer_sect .butt_wrap .butt {
    padding: 0 2em;
}
@media(max-width: 1199px) {
    .offer_sect .text_items {
        margin: -0.5em;
    }
    .offer_sect .text_item {
        padding: 1.25em 1em;
        margin: 0.5em;
        width: calc(50% - 1em);
    }
    .offer_sect .text_item_text {
        font-size: 1em;
    }
}