.coordonates {
display: flex;
flex-direction: column;
align-items: flex-end;
width: 33%;
}
.coordonates a {
display: inline;
color: white;
transition: .5s;
}
.coordonates a:hover {
color: var(--main-gold);
}
.coordonates h4,
.coordonates p {
text-align: right;
}
@media all and (max-width: 860px) {
.coordonates p {
font-size: .9rem;
}
}
@media all and (max-width: 800px) {
.coordonates {
width: 40%;
}
}
@media all and (max-width: 768px) {
.coordonates {
justify-content: center;
align-items: center;
width: 100%;
}
}