:root {
    --usf-tan: #EDEBD1;
    --usf-green: #006747;
}

html {
    font-size: 62.5%;
}

body {
    background-color: var(--usf-green);
}

.wrapper-main {
    width: calc(100% - 40px);
    margin: auto;
}

h1 {
    font-size: 2.6rem;
    line-height: 1.5;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}

h2 {
    font-size: 2.6rem;
    line-height: 1.5;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}

h3 {
    font-size: 2.6rem;
    line-height: 1.5;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}

p {
    font-size: 1.4rem;
    line-height: 1.75;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

a {
    font-size: 1.4rem;
    line-height: 1.75;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    cursor: pointer;
}

.header-main {
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    background-color: var(--usf-tan);
    display: flex;
    justify-content: space-between;
    z-index: 1000;
}

.header-main-logo {
    width: fit-content;
    height: 100%;
    padding-left: 60px;
    display: flex;
}

.header-main-logo img {
    height: 40px;
    align-self: center;
    background-color: var(--usf-tan);
}

.header-main-nav {
    width: fit-content;
    height: 100%;
}

.header-main-nav ul {
    list-style: none;
    margin-left: 30px;
}

.header-main-nav ul li {
    display: inline;
    float: left;
}

.header-main-nav ul a {
    padding: 0 10px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    line-height: 60px;
    color: var(--usf-green);
    display: block;
    height: 100%;
}

.header-main-nav ul a:hover {
    color: black;
}

.header-main-sm {
    width: fit-content;
    height: 100%;
    padding-right: 60px;
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.header-main-sm-fb {
    width: 20px;
    height: 20px;
    background-image: url(../img/facebook.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.header-main-sm-fb:hover {
    background-image: url(../img/facebook-color.png);
}

.header-main-sm-in {
    width: 20px;
    height: 20px;
    background-image: url(../img/instagram.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.header-main-sm-in:hover {
    background-image: url(../img/instagram-color.png);
}

.footer-main {
    width: 100%;
    padding: 60px 0 100px;
    background-color: var(--usf-tan);
}

.footer-main-flex {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    
}

.footer-sitemap {
    flex-basis: 100%;
    display: flex;
    justify-content: space-around;
}

.footer-sitemap a {
    color: var(--usf-green);
    font-weight: bold;
}

.footer-sitemap a:hover {
    color: black;
}

.footer-sitemap p {
    color: var(--usf-green);
    text-transform: uppercase;
    font-weight: bold;
}

.footer-sitemap ul:nth-child(1) {
    border-left: 4px solid var(--usf-green);
    padding-left: 1rem;
}

.footer-sitemap ul:nth-child(4) p {
    text-align: right;
}

.dropbtn {
    height: 100%;
    background-color: var(--usf-tan);
    color: var(--usf-green);
    padding: 0 10px;
    font-size: 1.4rem;
    line-height: 60px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    cursor: pointer;
}

.dropbtn:hover {
    color: black;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 250px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 10;
}

.dropdown-menu-btn {
    display: none;
    margin-left: 10px;
    width: 50px;
    height: 50px;
    background-image: url(../img/menu.png), url(../img/close.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center,center left 50px;
}

.dropdown-menu {
    display: none;
    position: fixed;
    overflow-y: scroll;
    right: 0px;
    width: 100vw;
    height: 100vh;
    z-index: 900;
    background-color: var(--usf-green);
}

.dropdown-menu ul {
    width: 100%;
    height: calc(100vh - 60px);
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
}

.dropdown-menu ul li {
    flex-basis: 100%;
    border-top: 2px solid var(--usf-tan);
    border-left: 2px solid var(--usf-tan);
    border-right: 2px solid var(--usf-tan);
}

.dropdown-menu ul li:last-child {
    flex-basis: 100%;
    border-bottom: 2px solid var(--usf-tan);
}

.dropdown-menu ul li a {
    display: block;
    height: 100%;
    font-size: 2rem;
    padding: 30px 0;
    flex-basis: 100%;
    text-align: center;
}

/* <600px, 601px, 768px, 992px, 1200px */

/* mobile version*/

@media only screen and (max-width: 1024px) {
    .dropdown-menu-btn {
        display: block;
        margin-left: 10px;
        width: 50px;
        height: 50px;
        background-image: url(../img/menu.png), url(../img/close.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center,center left 50px;
    }

    .dropdown-menu {
        display: none;
        position: fixed;
        width: 100%;
        height: 100vh;
        z-index: 900;
        background-color: var(--usf-green);
    }

    .dropdown-menu ul {
        width: 100%;
        height: calc(100vh - 60px);
        display: flex;
        flex-wrap: wrap;
        align-content: flex-start;
    }

    .dropdown-menu ul li {
        flex-basis: 100%;
        border-top: 2px solid var(--usf-tan);
    }

    .dropdown-menu ul li:last-child {
        flex-basis: 100%;
        border-bottom: 2px solid var(--usf-tan);
    }

    .dropdown-menu ul li a {
        display: block;
        height: 100%;
        font-size: 2rem;
        padding: 30px 0;
        flex-basis: 100%;
        text-align: center;
    }

    .header-main-logo {
        padding-left: 20px;
    }

    .header-main-sm {
    padding-right: 20px;
    }

    .header-main-nav {
        display: none;
    }

    .footer-sitemap {
        flex-wrap: wrap;
    }

    .footer-sitemap ul:nth-child(1) {
        border-left: none;
        padding-left: 0;
    }

    .footer-sitemap ul:nth-child(1),
    .footer-sitemap ul:nth-child(2),
    .footer-sitemap ul:nth-child(3) {
        flex-basis: 100%;
        text-align: center;
        padding-bottom: 20px;
    }

    .footer-sitemap p {
        padding: 0 20px;
    }

    .footer-sitemap ul:nth-child(4) p {
        text-align: center;
    }
}