/* Header */
header{
    height: 120px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 100px;

    background: linear-gradient(to right, white 50%, #e6f4fc 50% );
}

#logo{
    color: #3454d2;
}


header li{
    display: inline-block;
    margin: 0px;

    font-size: 18px;
    padding: 15px 32px;

    color: #6d7b93;
    font-weight: bold;

    cursor: pointer;

    box-sizing: border-box;
}


.fa-bars{
    display: none;
}



header li button{
    background: #3454d2;
    color: white;

    border-radius: 5px;

    font-size: 18px;
    padding: 15px 35px;

    border: 0px;

    box-shadow: 0px 10px 10px rgba(56,88,214,0.3);
}


/* Effects */

header li:hover{
    background: #3454d2;
    color: white;

    border-radius: 5px;
    border: 0px;

    box-shadow: 0px 10px 10px rgba(56,88,214,0.3);

}


header li button:hover{
    cursor: pointer;
    box-shadow: 0px 15px 10px rgba(56,88,214,0.3);
}


/* Responsive */
@media (max-width: 1200px){
    header{
        padding: 0 2%;
        justify-content: space-between;
    }

    header li {
        margin: 0 10px;
        font-size: 18px;
    }
    header li button {
        font-size: 18px;
    }
    
}

@media (max-width : 900px){
    header li{
        font-size: 15px;
    }

    header ul{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }

    .link{
        display: none;
    }

    .fa-bars{
        display: inline;
    }
}

@media (max-width: 900px){
    .responsive .link{
        display: block;
    }
}

