*
{
    
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;

}

body
{
    font-family: 'Open Sans', sans-serif;
    padding: 45px 0 0 0;

}

nav
{
    background: white;
    height: 80px;
    width: 100%;
    z-index: 99;
    position: fixed;
    top: 0;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.2);
}


.logomobile
{
    display: none;
}

nav ul 
{
    float: right;
    margin-right: 20px;;
}

nav ul li
{
    display: inline-block;
    line-height: 80px;
    margin: 0 5px;
}

nav ul li a
{
    color: #395096;
    font-size:17px ;
    text-transform: uppercase;
    padding: 7px 13px;
    border-radius:3px; 
    text-decoration: none;
    font-family: 'Work Sans', sans-serif;

}

a.active,a:hover
{
    background: #395096;
    color: white;
    transition: .5s;
}


.menu
{
    font-size: 30px;
    color: #395096;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    margin-top: 25px;
    cursor: pointer;
    display: none;

}

#check
{
    display: none;
}


.downfix
      {
        display: none;
      }


@media (max-width:952px)
{

    

    nav ul li a
    {
        font-size: 16px;
    }


}


@media (max-width: 858px)
{

    .logomobile
{
    display: block;

}


.logopc
{
    display: none;
}



    .menu
    {
        display: block;
    }

    ul
    {
        position: fixed;
        width: 100%;
        height: 100vh;
        background: #395096;
        top: 80px;
        left: -100%;
        transition:  all .7s;
        
        text-align: center;
        padding-top: 50px;
        padding-right: 30px;

 
    }

    nav ul li
    {
        display: block;
    }
    nav ul li a
    {
        font-size: 20px;
        color: white;
    }

    a:hover,a.active
    {
        background: none;
        color: white;

    }


    #check:checked ~ ul {
        left: 0px;
    }


    .downfix
    {
      display: inline-block;
      background-color: white;
      color: #EEF2F5;
      position: fixed;
      bottom: 0px;
      text-align: center;
      width: 100%;
      
     
      z-index: 99;
      
      box-shadow: 0px 0 10px rgba(0, 0, 0, 0.8);
      
     
    }

    

    


}
