.contacts {
    display: flex;
    flex-flow: column;
    align-items: center;
    padding-bottom: 20px;
}

.contacts__title,
.contacts-list__text {
    font-family: 'Сentury Gothic', sans-serif;
    color: #eae9e7;
}

.contacts__title {
    text-transform: uppercase;
    font-size: 26px;
    line-height: 30px;
    font-weight: 700
}

.contacts__list {
    display: flex;
    flex-flow: row;
    width: 65vw;
    justify-content: space-around;
    flex-wrap: wrap;
}

.contacts-list__item {
    margin-right: 10px;
    margin-bottom: 15px;
    margin-left: 10px;
}

.contacts-list__link {
    text-decoration: none;
    font-size: 18px;
    line-height: 26px;
}

.contacts-list__text {
    white-space: nowrap;
}

@media screen and (max-width: 767px) {
    .contacts__title {
        font-size: 24px;
        line-height: 28px;
    }

    .contacts-list__link {
        font-size: 16px;
        line-height: 20px;
    }
}