.guarantees_sect {
    padding: 5.625em calc(50vw - 50%) 4.5em;
    background-color: #F3F7FE;
    margin: 0 calc(50% - 50vw);
    background-size: 53.875em auto;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(../../../img/guarantees_sect/bg.svg);
}
.guarantees_sect .items {
    display: flex;
    flex-wrap: wrap;
    margin: -2em -3.5em;
}
.guarantees_sect .item {
    margin: 0.75em 3.5em;
    width: calc(100%/3 - 7em);
    flex-direction: column;
    display: flex;
    line-height: 1.5;
}
.guarantees_sect .item:nth-child(even) {
    flex-direction: column-reverse;
}
.guarantees_sect .item_image_wrap {
    height: 15.625em;
    position: relative;
    margin: 1.25em 0;
}
.guarantees_sect .item_image {
    display: block;
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 0.375em 0.625em rgba(0, 0, 0, 0.05));
}
.guarantees_sect .item_info {
    min-height: 15.625em;
    margin: 1.25em 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.guarantees_sect .item_title {
    font-weight: 500;
    font-size: 1.5em;
    margin: 0 0 0.5em;
}
.guarantees_sect .item_description {
    font-weight: 300;
    font-size: 1.125em;
}
.guarantees_sect .get_offer_form {
    margin: 7.5em auto 0;
    border-radius: 1.125em;
    background-color: #FFFFFF;
    padding: 2.25em 4em;
    max-width: 33em;
    box-sizing: border-box;
}
.guarantees_sect .get_offer_form_title {
    font-size: 1.25em;
}
@media(max-width: 1199px) {
    .guarantees_sect .items {
        margin: 0;
        display: block;
    }
    .guarantees_sect .item {
        margin: 0 -1em 2em;
        width: auto;
        flex-direction: row;
        align-items: center;
    }
    .guarantees_sect .item:nth-child(even) {
        flex-direction: row-reverse;
    }
    .guarantees_sect .item:last-child {
        margin-bottom: 0;
    }
    .guarantees_sect .item_info {
        margin: 0 1em;
        width: calc(50% - 2em);
    }
    .guarantees_sect .item_image_wrap {
        margin: 0 1em;
        width: calc(50% - 2em);
    }
    .guarantees_sect .get_offer_form {
        margin: 4.5em auto 0;
    }
}