.contacts {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: nowrap;
}

.contacts .bold {
    font-weight: 700;
    margin-right: 10px;
}
@media (max-width:768px){
.contacts {
    flex-direction: column;
    flex-wrap: nowrap;
}

.contacts div {
    margin-bottom: 30px;
    text-align: center;
}
}