/* Контакты - главный блок */
.contacts_main__wrapper {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 24px;
}

.contacts_main > .container {
    margin-top: 24px;
}

.contacts_main__item {
    padding: 24px;
    flex: 1;
    border: 1px solid #E9ECEF;
    border-radius: 8px;
}

.contacts_main__list {
    font-family: 'Inter', sans-serif;
    margin-top: 16px;
}

.contacts_main__item_element:not(:first-child) {
    margin-top: 16px;
}

.contacts_main__item_element {

}

.contacts_main__item_name {
    color: #7B8997;
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
}

.contacts_main__item_phone_block {
    display: flex;
    align-items: end;
    gap: 8px;
}

.contacts_main__item_phone-value {
    display: inline-block;
    margin-top: 4px;
    font-weight: 700;
    line-height: 20px;
}

.contacts_main__item_soc-value {
    display: inline-block;
}

.contacts_main__item_email-value {
    color: #0FC4AC;
    font-weight: 700;
    line-height: 20px;
}

.contacts_main__item_place {
    display: flex;
    gap: 4px;
    align-items: center;
    color: #7B8997;
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
}

.contacts_main__item_place svg {
    width: 14px;
    height: 14px;
}

.contacts_main__item_address {
    font-weight: 700;
    line-height: 20px;
}

.contacts_main__item_description {
    margin-top: 24px;
    color: #7B8997;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
}

.contacts_main__item_description b {
    color: #242440;
    font-weight: normal;
}
/* --- */

/* Соцсети */
.contacts_social {
    margin-top: 56px;
}

.contacts_social__list {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.contacts_social__item {
    border-radius: 8px;
    box-sizing: border-box;
    border: 1px solid #E9ECEF;
    flex: 0 0 calc(33.333333% - 22px);
    transition: .3s border;
    overflow: hidden;
}

.contacts_social__item:hover {
    border-color: #0FC4AC;
}

.contacts_social__item-inner {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 24px;
}

.contacts_social__image {
    display: flex;
    align-items: center;
}

.contacts_social__image img {
    width: 50px;
    height: 50px;
}

.contacts_social__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contacts_social__name {
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
}

.contacts_social__item_link {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    transition: .3s color;
    color: #7B8997;
}

.contacts_social__item:hover .contacts_social__item_link {
    color: #0FC4AC;
}
/* --- */

/* Карта */
.contacts_map {
    margin-top: 56px;
}

#contacts_map-item {
    width: 100%;
    height: 400px;
}
/* --- */