/* 
 Style of contact details template
*/

.coordonates {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding-bottom: 3rem;
}
/* LOGO */
.coordonates .site_logo {
    width: clamp(134px, 22vw + 1rem, 165px);
}
/* ADDRESS */
.address p,
.phone_hours {
    font-size: min(max(1rem, 1vw), 1.5rem);
    text-align: center;
}
/* PHONE / HOURS */
.phone,
.hours {
    display: flex;
    justify-content: center;
}
.phone_link {
    font-weight: 700;
    color: var(--main-black);
    display: flex;
    align-items: flex-end;
    gap: .3rem;
}
.phone_link svg {
    max-width: 35px;
    max-height: 30px;
    width: clamp(1rem, 1vw + 1rem, 1.8rem);
    height: clamp(1rem, 1vw + 1rem, 2rem);
}
.hours {
    text-align: center;
}
/* NETWORKS */
.social_element,
.social_element a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
}
.social_element svg {
    max-width: 64px;
    max-height: 64px;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    border: 1.5px solid var(--main-gold);
}
.social_element a svg,
.social_element svg path {
    transition: .3s ease;
}
.social_element svg:hover path {
    fill: var(--main-gold);
    stroke: var(--main-gold);
}
@media all and (max-width: 900px) {
    .social_element svg {
        width: 70%;
        height: 70%;
    }
}