@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    scroll-behavior: smooth;
}

body{
    font-family: "Work Sans", Lato, Arial, Helvetica, sans-serif;
    overflow-x: hidden;
    color: #001834;
}











#header{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 120px;
    padding: 20px 50px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
}

#header img{
    height: 75%;
}

#header-menu{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    font-size: 18px;
}

#header-menu a{
    color: #001834;
    font-size: 500;
    text-decoration: none;
    -webkit-transition: 0.2s ease;
    -o-transition: 0.2s ease;
    transition: 0.2s ease;
}

#header-menu a:hover{
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
}

#header-menu i{
    font-size: 30px;
    cursor: pointer;
    display: none;
    color: #001834;
}








#menu{
    position: fixed;
    top: 0;
    right: -400px;
    width: 80%;
    height: 100%;
    max-width: 300px;
    background-color: #ffffff;
    z-index: 10000;
    -webkit-box-shadow: 0 0 30px #00000040;
            box-shadow: 0 0 30px #00000040;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    gap: 5px;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}

#menu a{
    width: 100%;
    display: block;
    text-decoration: none;
    text-align: center;
    font-size: 20px;
    padding: 20px 0;
}

#menu i{
    font-size: 40px;
    padding: 20px 20px 0 0;
    -ms-flex-item-align: end;
        align-self: flex-end;
    color: #001834;
}








#footer{
    text-align: center;
    padding: 20px;
}

#footer img{
    max-width: 200px;
}











@media screen and (max-width: 650px) { 
    #header{
        padding: 20px 20px;
    }
    #header-menu a{
        display: none
    }

    #header-menu i{
        display: block;
    }
}