@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,700');

header {
    top: 0;
    height: 85px;
    background: #fff;
    width: 100%;
    position: fixed;
    z-index: 1000;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.16);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-ul {
   margin: 0px;
   padding: 0px;
   flex-grow: 0.5;
   margin-right: 109px;
   display: flex;
   justify-content: space-between;
}

.header-ul li {
    font-weight: 600;
    display: inline-block;
    font-family: Montserrat;
    font-size: 15px;
    line-height: 1.27;
    color: #003e52;
    border-bottom: 2px solid #fff;
    padding: 6px 0px;
}

.header-ul a:hover {
    border-bottom: 3px  solid#4faba7;
}

.header-ul li a {
    text-decoration: none;
    color: #003e52;
}

.header-ul a {
    text-decoration: none;
}

.header-ul li a:hover, a:focus, a:active {
    text-decoration: none;
}

a li {
    text-decoration: none;
}

.active {
    border-bottom: 3px  solid#4faba7;
}

.hamburger-menu {
    display: none;
    position: absolute;
    left: 0;
    margin-left: 20px;
    cursor: pointer;
    height: 18px;
}

.close-menu {
    display: none;
    position: absolute;
    left: 0;
    margin-left: 20px;
    cursor: pointer;
    height: 18px;
}

.page-logo {
    height:43px;
    margin-left: 109px;
    
}

.social-linkedin {
    width: 13.4px;
    height: 12.8px;
    color: #003e52;
    margin-right: 120px;
}

.social-li:hover {
    border-bottom: 3px  solid#4faba7;
}


@media( max-width: 1150px ) {
   
    header {
        width: 100%;
        text-align: center;
    }

    .header-ul {
        display: none;
        position: absolute;
        margin: 0px;
        top: 0;
        margin-top: 85px;
        width: 100%;
        padding: 0px;
        left: 0px;
        height: 100vh;
        background: #fff;
        box-shadow: 1px 5px 5px #666;
    }

    .header-ul li{
        display: block;
        background: #fff;
        left: 0;
        margin: 0px;
        width: 100%;
        padding: 0px;
        height: 50px;
        line-height: 50px;
        border: none;
    }

    .header-ul li:hover{
        border: none;
        background: #003e52;
        color: #fff;
    }

    .header-ul li:active {
        border-bottom: 3px  solid#4faba7;
        color:#fff;
    }
    

    .header-ul li:hover > a{
        color: #fff;
    }

    .active a {
        color: #fff;
    }

    .social-li:hover {
        background: #fff;
    }

    .social-linkedin{
        width: 30px;
        margin: 0px;
    }

    .hamburger-menu {
        display: block;
        position: absolute;
        left: 0;
        margin-left: 20px;
        cursor: pointer;
        height: 18px;
    }

    .close-menu {
        position: absolute;
        left: 0;
        margin-left: 20px;
        cursor: pointer;
        height: 18px;
    }

    .page-logo {
        margin-left: 0px;
        text-align: center;
    }

    .img-page-logo-link {
        flex-grow: 2;
    }

    .hide {
        display: none;
    }
    
    .appear {
        display: block;
    }
}

@media (max-width: 824px) {

    header ul {
        width: 100%;
    }

    .page-logo {
        height: 37px;
    }

}