/* ///////////////////////////////////////////////////////////////////
HERO
///////////////////////////////////////////////////////////////////*/
#hero{
    padding: 50px 0 0;
    background: var(--accent);
    position: relative;
}
#hero h1{
    font-size: 65px;
    line-height: 74px;
    margin-bottom: 30px;
}
#hero .accent{
    color: var(--blue);
}
#hero .inner{
    margin-bottom: 100px;
}
#hero .curve{
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    transform: scaley(-1);
}
#hero p{
    color: var(--grey);
    font-size: 20px;
    line-height: 27px;
}
#hero strong{
    color: var(--black);
    font-size: 27px;
    font-family: 'nowmedium';
    font-weight: 300;
}
@media(max-width: 767px){
    #hero h1 {
        font-size: 53px;
        line-height: 54px;
    }
}
/* ///////////////////////////////////////////////////////////////////
CONTACT
///////////////////////////////////////////////////////////////////*/
#contact .container-wrap{
    padding: 60px 200px;
    text-align: center;
}
#contact h3{
    font-size: 45px;
    line-height: 55px;
    font-family: 'nowblack';
    margin-bottom: 20px;
}
#contact .accent{
    color: var(--blue);
}

#contact .phone a,#contact .email a{
    color: var(--black);
    text-decoration: none;
    font-family: 'nowblack';
    font-size: 42px;
    line-height: 54px;
}
#contact .phone a:hover,#contact .email a:hover{
    color: var(--blue);
}
#contact .socials {
    margin: 0;
    padding: 10px 0;
    display: flex;
    justify-content: center;
}
#contact .socials img{
    height: 15px;
}
#contact .socials a {
    background: var(--blue);
    margin: 0 4px 0 0;
    border-radius: 50%;
    height: 36px;
    width: 36px;
    display: flex;
    justify-content: center;
    align-items:center;
}
#contact .socials a:hover{
    background: var(--dark-blue);
}

@media(max-width: 1500px){
    #contact .container-wrap{
        padding: 60px 20px;
    }
}
@media(max-width: 1200px){
    #contact h3{
        margin-top: 20px;
    }
    #contact .phone a,#contact .email a{
        font-size: 30px;
        line-height: 44px;
    }
}
@media(max-width: 767px){
    #contact .phone a,#contact .email a{
        font-size: 20px;
        line-height: 34px;
    }
    #contact .container-wrap{
        padding: 30px 20px 40px
    }
}