.contacts {
    display: grid;
    row-gap: 50px;
}
.contactsBlock__content {
    display: flex;
}
.contactsBlock--title {
    color: #231F20;
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    padding: 4px 8px;
    margin-bottom: 24px;
}
.contactsMap {
    width: 352px;
    flex: none;
    margin-left: 8px;
    border-radius: 13px;
    overflow: hidden;
}
.contactsInfo {
    column-gap: 8px;
    row-gap: 8px;
    flex: 1;
}
.contactsInfo__item {
    padding: 24px 20px;
    border-radius: 13px;
    background: rgba(113, 133, 158, 0.05);
}
.contactsInfo__item--icon {
    font-size: 24px;
    margin-bottom: 14px;
    display: block;
}
.contactsInfo__item--title {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    margin-bottom: 3px;
}
.contactsInfo__item--text {
    font-size: 14px;
    line-height: 20px;
    color: rgba(35, 31, 32, 0.70);
}
.contactsInfo__item--text>a {
    color: rgba(35, 31, 32, 0.70);
}
.contactsInfo__item__links {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    margin-top: 5px;
    display: grid;
    right: 4px;
}
.contactsInfo__item--link {
    color: #2C63AC;
    padding: 2.5px 0;
    display: inline-block;
}

@media screen and (max-width: 1200px) {
    .contacts {
        row-gap: 30px;
    }
    .contactsMap {
        width: 100%;
        margin-left: 0;
        height: 375px;
        margin-top: 8px;
    }
    .contactsBlock__content {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 700px) {
    .contacts {
        row-gap: 20px;
    }
    .contactsInfo__item {
        padding: 20px;
    }
}