/*---------------------Header Section--------------------------*/
.header-container{
    position: relative;
    width: 100%;
    height: 10vh;
    font-size: 19px;
    margin: 0;
}

.header-container a{
    text-decoration: none;
    color: whitesmoke;
    font-weight: bold;
}

.header-nav{
    display: inline-block;
    background-color: #02102d;
    width: 100%;
    position: relative;
    z-index: 4;
}

.header-nav .logo{
    display: flex;
    align-items: center;
    margin: 1em 10em 0.8em 2em;
    font-size: 50px;
}

.header-nav ul{
    display: none;
    padding: 40px 80px 0 80px;
}

.header-nav li{
    display: block;
    margin: 1em 5em 1.5em 3em ;
    list-style: none;
    font-size: 49px;
}

#hamburger{
    position: absolute;
    top: 2.5em;
    right: 3em;
}

#hamburger span{
    display: block;
    width: 6.5rem;
    height: 0.5rem;
    margin: 0.8rem 0;
    background-color: whitesmoke;
}
/*---------------------Header Section--------------------------*/


/*---------------------Footer Section--------------------------*/
footer{
    position: relative;
    bottom: 0;
    margin-top: 40px;
}

.footer-container{
    position: relative;
    padding: 0;
    margin: 1em;
}

.footer-nav{
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-nav ul{
    display: flex;
    list-style-type: none;
    margin-bottom: 20px;
}

.footer-nav ul li a{
    margin-right: 60px;
    text-decoration: none;
}

.footer-nav ul li a:hover{
    color:#BBDEF4;
}

.footer-bottom{
    background-color: #000;
    padding: 20px;
    text-align: center;
}

.footer-bottom p{
    color: white;
    font-size: 30px;
}

#foot-index .footer-bottom p{
    font-size: 12px;
}

.footer a img{
    display: block;
    max-inline-size: 100%;
}

.footspan{
    display: block;
    height: 0.2rem;
    margin: 0.8em 6em 0 6em;
    background-color: #020d24;
}
/*---------------------Footer Section--------------------------*/

@media screen and (min-width: 992px){

    .header-container{
        display: flex;
    }

    .header-nav{
        display: grid;
        grid-template-columns: 1fr 2fr;
    }

    .header-nav .logo{
        display: flex;
        margin: 1.45rem 0 0 3.5rem;
        font-size: 23px;
    }

    #hamburger{
        display: none;
    }

    .header-nav ul{
        display: flex;
        list-style: none;
        padding: 0;
        margin-top: 0.3rem;
    }

    .header-nav li{
        font-size: 18px;
        margin: 20px;
    }

    .header-nav ul li a:hover{
        color: antiquewhite;
    }

    .footspan{
        height: 0.2em;
        margin: 0.8em 20em 0 20em;
    }

    .footer-bottom{
        padding: 10px;
    }

    .footer-bottom p{
        font-size: 12px;
    }



}