.contacts {
    max-width: 735px;
}

.contacts__list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

@media (max-width: 991.98px) {
    .contacts__list {
        flex-direction: column;
    }
}

.contacts__item {
    width: 50%;
}

@media (max-width: 991.98px) {
    .contacts__item {
        width: 100%;
        margin-bottom: 15px;
    }
}

@media (max-width: 991.98px) {
    .contacts__item:last-child {
        margin-bottom: 0;
    }
}

.contacts__address {
    display: block;
    font-size: 24px;
    line-height: 28px;
    font-weight: 700;
    text-decoration: underline;
    color: #00c7d2;
    margin-bottom: 8px;
}

.contacts__address:hover {
    text-decoration: none;
}