:root {
    --menu-count: 4;
}

.header-main {
    width: 100%;
    padding: 0 30px;
    height: 100px;
    display: flex;
    justify-content: space-between;
    top: 0;
    background-image: linear-gradient(#191f3e, #212d64);
    z-index: 100;
}

.header-main .logo{
    cursor: pointer;
    width: fit-content;
    align-self: center;
    align-items: center;
    transition: transform 0.3s ease-in-out;
}

.header-main .logo:hover{
    transform: rotate(360deg);
    scale: 1.1;
}

.logo {
    height: 100%;
    padding: 10px 0;
}

.header-main nav {
    display: flex;
    height: 100%;
}

.nav_links {
    height: 100%;
    list-style: none;
    display: flex;
    align-self: center;
    align-items: center;
}

.nav_links li a {
    display: block;
    height: 100%;
    font-size: 1rem;
    color: white;
    width: 100%;
    padding: 50px;
    text-align: center;
}

.nav_links li a:hover {
    color: #ff7926;
    font-weight: bold;
}

.icon-container {
   height: 100%;
   display: flex;
   align-items: center;
}

.icon-container .fa-brands, .icon-container .fa-solid {
    color: white;
    display: flex;
    padding: 0 10px;
}

.mobile-btn, .mobile-btn-2 {
    display: none;
}

.copywrite {
    width: 100%;
    color: white;
}

.blank-space {
    height: 20px;
}

@media (max-width: 1000px){
    
    .header-main {
        display: flex;
        flex-direction: column;
        padding: 0;
        height: 100px;
    }
    
    .header-main .logo {
        width: 90px;
        position: relative;
        padding-left: 20px;
    }

    .header-main .logo:hover {
        transform: none;
        cursor: default;
        scale: none;
    } 

    .nav_links {
        display: none;
        flex-direction: column;
        width: 100%;;
        height: 100%;
        justify-content: space-evenly;
        margin: 0 auto;
    }

    .icon-container {
        display: none;
        justify-content: center;
    }

    .icon-container .fa-brands, .icon-container .fa-solid {
        padding: 0 20px;
    }

    .nav_links li a {
        width: 100%;
        padding: 0;
        overflow-x: hidden;
        white-space: nowrap;
        justify-content: center;
        align-content: center;
        font-size: 2rem;
        text-align: left;
    }

    .mobile-btn, .mobile-btn-2 {
        display: flex;
        justify-content: center;
        width: 90px;
        height: 90px;
        position: absolute;
        top: 5px;
        right: 0;
        z-index: 200;
        align-items: center;
    }

    .mobile-btn-2 {
        display: none;
        color: white;
        font-size: 30px;
    }

    .mobile-btn .fa-solid {
        color:white; 
        margin:0 10px; 
        font-size: 40px;
    }

    .mobile-btn .fa-solid:hover {
        color:rgb(199, 199, 199);
    }
}

.footer-main {
    width: 100%;
    height: 100%;
    background-image: linear-gradient(#191f3e, #212d64);
    z-index: 100;
    text-align: center;
}

.footer-nav-links {
    width: 100%;
    justify-content: center;
    display: flex;
    list-style: none;
    padding: 50px 0;
    text-align: center;
}

.footer-nav-links a {
    color: white;
    margin: 0 20px;
    text-align: center;
}

.footer-nav-links a:hover {
    color:#ff7926;
    font-weight: bold;
}

.copywrite {
    width: 100%;
    justify-content: center;
    display: flex;
}



/*Misc*/