/*FONTS*/
body{
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}
*, html {
    scroll-behavior: smooth !important;
}

/*HEADER*/
#header{
    /*position: fixed;*/
    width: 100%;
    z-index: 2;
    height: 20vh;
}
#header h1{
    margin: 0;
}
#header ul{
    display: flex;
    justify-content: space-between;
    padding: 1.2rem;
    margin: auto;
    position: relative;
    align-items: center;
}
#header ul .nav_link a{
    color: #f6f6f6;
}
#header .logo{
    height: 125px;
}
#header li.nav_logo{
    margin-right: auto;
}
#header li.nav_logo a::before{
    content: none;
}
#header li.nav_link:not(:last-child){
    margin-right: .8rem;
}
#header li.nav_link.contact_link{
    margin-right: 2rem;
}
#header li.nav_link img{
    width: 26px;
}
#header li.nav_link.tel{
    position: absolute;
    top: 1.5rem;
    right: 1.2rem;
    font-style: italic;
    margin-right: 0;
    padding-top: 0;
}
#header li.nav_link.tel a{
    color: #f3d530;
    font-size: 14px;
    line-height: 14px;
    display: flex;
    align-items: center;
}
#header li.nav_link.tel img{
    width: 15px;
    margin-right: 8px;
}
@media screen and (max-width: 765px){
    #header{
        height: 15vh;
    }
    #header .logo{
        height: 75px;
    }
    #header li a{
        font-size: 14px;
    }
    #header li.nav_link{
        padding-top: 1.5rem;
    }
    #header li.nav_link.contact_link{
        display: none;
    }
    #header li.nav_link.tel a{
        font-size: 12px;
    }
    #header li.nav_link.tel img{
        width: 13px;
        margin-right: 8px;
    }
}


/*TITLES*/
h1,h2,h3{
    font-family: sans-serif;
    font-weight: 600;
    font-size: 25px;
    @media screen and (max-width: 765px) {
        font-size: 22px;
    }
}


.container{
    max-width: 1350px;
}
.uppercase_text{
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
}
a{
    text-decoration: none;
    position: relative;
    white-space: nowrap;
}
a::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: currentColor;
    top: 120%;
    left: 0;
    pointer-events: none;
    transform-origin: 100% 50%;
    transform: scale3d(0, 1, 1);
    transition: transform 0.3s;
}

a:hover::before{
    transform-origin: 0% 50%;
    transform: scale3d(1, 1, 1);
}

p{
    font-size: 13px;
    @media screen and (max-width: 765px) {
        font-size: 12px;
    }
}


/*FOOTER*/
footer{
    padding: 2rem 10% 4rem;
    background-color: #f6f6f6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    @media screen and (max-width: 765px) {
        flex-direction: column;
        align-items: start;
    }
}

footer img{
    width: 150px;
}
footer .footer_center, footer .footer_right{
    display: flex;
    justify-content: center;
    @media screen and (max-width: 765px) {
        justify-content: start;
    }
}
footer .footer_center > div, footer .footer_right > div{
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: baseline;
    min-height: 120px;
}
footer > div{
    width: 33.3333%;
    text-align: center;
    @media screen and (max-width: 765px) {
        width: 100%;
        text-align: left;
    }
}
footer a{
    font-size: 14px;
    color: black;
    margin-bottom: .5rem;
    @media screen and (max-width: 765px) {
        font-size: 13px;
    }
}
footer .year{
    text-align: right;
    font-size: 14px;
    margin-top: 1rem;
}
.footer_left{
    display: flex;
    justify-content: center;
    @media screen and (max-width: 765px) {
        justify-content: start;
    }
}
.footer_left p{
    text-align: left;
    font-style: italic;
}
.footer_left a:before{
    background-color: transparent;
    content: "" !important;
}
.footer_left a:hover{
    opacity: 1;
    &:before{
        background-color: transparent;
    }
}
.footer_left a:hover:before{
    background-color: transparent;
}