@charset utf-8;


main {
margin-top: 5%;
}


footer {
display: block;
display: flex;
justify-content: flex-end;
font-weight: 700;
background: #777;
padding: 0 5px 0 0;
}

//Start vertical navigation bar



#vertical_nav {
    padding: 0;
    margin: 0;
}


#vertical_nav ul {
    list-style-type: none;
    width: 20%;
}


#vertical_nav ul li {
    position: relative;
    display: flex;
    justify-content: center;
}


#vertical_nav ul li a {
    width: 100%;
    color: #080A52;
    background-image: linear-gradient(#838100,#A4A100,#BDBA02,#D9D603,#FFFB00);
    display: flex;
    height: 64px;
    font-family: sans-serif;
    font-weight: bold;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

#vertical_nav ul li a:hover {
    background-image: linear-gradient(#838100,#BDBA02,#FFFB00);
}



//Start Drop Menu



#drop_nav {
    margin: 0;
    padding: 0;
}
#drop_nav ul {
    list-style: none;
    width: 100%;
    display: flex;
    margin: 0px;
    padding: 0;
}
#drop_nav li {
    position: relative;
    width: 100%;
    text-align: center;
}
#drop_nav a {
    color: #1300FF;
    background: #00E8FF;
    display: block;
    display: flex;
    height: 64px;
    font-family: sans-serif;
    font-weight: 500;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: background 0.4s;
}
#drop_nav a:hover {
    background: #00BDFF;
}
#drop_nav li:hover .submenu > li {
    display: block;
    top: 0;
}
.submenu li {
    display: none;
    position: relative;
    top: 0;
}
.submenu {
    display: flex;
    position: absolute;
    flex-direction: column;
    width: 100%;
}
.submenu li:hover {
    display: block;
}
/*Add a class named arrow here. Include all 
required formatting per the instructions.*/
.arrow {
    margin-left: 8px;
    color: #6C7375;
    font-size: 12px;
}



//Start Navigation Tabs

#tabs_nav {
    margin: 0;
    padding: 0;
}
#tabs_nav ul {
    width: 90%;
    list-style: none;
    display: flex;
}
#tabs_nav li {
    width: 100%;
    justify-content: center;
    text-align: center;
    position: relative;
}
#tabs_nav a {
    color: #FFFFFF;
    height: 64px;
    border-radius: 20px 20px 0 0;
    margin-bottom: 0;
    margin-right: -10px;
    margin-left: 5px;
    z-index: 5;
    text-decoration: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, .8);
    display: flex;
    justify-content: space-around;
    align-items: center;
    display: block;
    background-image: linear-gradient(#00FFD1, #22C8AA);
    position: relative;
    transition: background 0.4s;
    font-family: sans-serif;
    font-weight: bold;
}
#tabs_nav a:hover {
    margin-top: -10px;
    padding-bottom: 10px;
    margin-right: -5px;
    z-index: 5px;
    position: relative;
}






//Start responsive menu here

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
.navbar {
    font-size: 18px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding-bottom: 10px;
    background-image: linear-gradient(260deg, #FF2E00, #DA3E1B);
}
.main-nav {
    list-style-type: none;
    display: none;
}
.active {
    display: block;
}
.nav-links, .home {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
}
.main-nav li{
    text-align: center;
    margin: 15px auto;
}
.home {
    display: inline-block;
    font-size: 22px;
    margin-top: 10px;
    margin-left: 20px;
}
.navbar-toggle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 24px;
    margin-top: 10px;
    margin-right: 20px;
    cursor: pointer;
    position: absolute;
}
@media screen and (min-width: 768px) {
    .navbar {
        display: flex;
        justify-content: space-between;
        align-content: center;
        align-items: center;
        height: 70px;
        padding-bottom: 0;
    }
    .main-nav {
        display: flex;
        margin-right: 30px;
        flex-direction: row;
        justify-content: flex-end;
    }
    .main-nav li {
        margin: 0;
    }
    .nav-links {
        margin-left: 40px;
    }
    .home {
        margin: 0;
    }
    .navbar-toggle {
        display: none;
    }
a.home:hover, a.nav-links:hover {
    color: rgba(255, 255, 255, 1);
}
}
