.contacts_sect .sect_title {
    padding: 0 0 0.5em;
    margin: 0 0 0.75em;
    border-bottom: 1px solid #D9D9D9;
    text-align: left;
}
.contacts_sect .items {
    margin: -1.5em -0.625em;
    display: flex;
    flex-wrap: wrap;
}
.contacts_sect .item {
    margin: 1.5em 0.625em;
    width: calc(100%/3 - 1.25em);
    position: relative;
    box-sizing: border-box;
}
.contacts_sect .item:first-child:last-child {
    width: calc(100% - 1.25em);
}
.contacts_sect .item.has_icon {
    padding-left: 2em;
}
.contacts_sect .item_icon {
    position: absolute;
    top: 0.75em;
    left: 0.75em;
    display: block;
    max-width: 1.5em;
    max-height: 1.5em;
    transform: translate(-50%, -50%);
}
.contacts_sect .item_title {
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1;
    margin: 0 0 0.625em;
}
.contacts_sect .item_title:last-child {
    margin-bottom: 0;
}
.contacts_sect .item_desc {
    line-height: 1.5;
    font-feature-settings: 'salt' on;
    color: #6B7280;
    font-size: 0.875em;
    margin-bottom: 1.25em;
}
.contacts_sect .item_desc:last-child {
    margin-bottom: 0;
}
.contacts_sect .item_link {
    text-transform: uppercase;
    color: #374151;
    font-size: 0.875em;
    font-weight: 600;
    margin-bottom: 1.25em;
}
.contacts_sect .item_link:last-child {
    margin-bottom: 0;
}
.contacts_sect .item_link a {
    color: inherit;
}
.contacts_sect .item_link a:after {
    content: '';
    display: inline-block;
    width: 1.15em;
    height: 1.15em;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../img/icons/link-chevron-right-000.svg);
    vertical-align: text-top;
    margin-left: 0.25em;
    transform: translate(0, 5%);
}
.contacts_sect .item_image {
    display: block;
    margin: 0;
    max-width: 100%;
}
@media(max-width: 1199px) {
    .contacts_sect .item {
        width: calc(50% - 1.25em);
    }
}
@media(max-width: 767px) {
    .contacts_sect .item {
        width: calc(100% - 1.25em);
    }
}