/*-------- COLORS --------*/

:root {
    /* All text that appears outside of the colored boxes, background for the colored boxes */
    /* Insurance/Financing buttons */
    /* Some titles, some buttons */
    /* Background color for hover states, text color for hover states */
    /* Background color, all text appearing within the colored boxes */
}

nav.desktopNav {
    position: relative;
    display: block;
    z-index: 9000;
    margin: 0 auto 0 auto;
    padding: 0 0 0 0;
    text-align: center;
    width: 100%;
    color: #FEE12B;
}

nav * {
    font-family: paralucent, sans-serif;
}

nav.desktopNav li ul {
    display: none;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}


/* FIRST LEVEL ==================================================== */


nav.desktopNav ul,
nav.desktopNav li.level1 {
    list-style: none;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
}

nav.desktopNav ul {
    display: flex;
}

nav.desktopNav ul li.level1 {
    display: block;
    position: relative;
    float: left;
    text-align: center;
    /* background: var(--primary); */
    /*OPTIONAL*/
}

nav.desktopNav ul li.level1 a:hover {
    height: 1%;
    color: #333;
    background-color: rgba(292, 215, 43, 1.00);
}

nav.desktopNav ul li.level1 a {
    display: block;
    text-decoration: none;
    color: #333;
    font-weight: normal;
    font-size: 13px;
    /* line-height: 30px; */
    transition: color .2s ease-in-out;
    -moz-transition: color .2s ease-in-out;
    -webkit-transition: color .2s ease-in-out;
    text-transform: uppercase;
    text-align: center;
    /* letter-spacing: 1px; */
    padding: 0 30px;
    /*OPTIONAL*/
    box-sizing: border-box;
}



/* SECOND LEVEL ==================================================== */

nav.desktopNav ul li li.level2 {
    display: block;
    position: relative;
    float: left;
    text-align: center;
    box-sizing: border-box;
    background: #FEE12B;
    /*OPTIONAL*/
}

nav.desktopNav ul li li.level2 a {
    width: 100%;
    text-align: left;
    line-height: 30px;
    color: #333;
    font-size: 14px;
    background-color: #FEE12B;
    letter-spacing: 1px;

}

nav.desktopNav ul li li.level2 a:hover {
    background-color: rgba(292, 215, 43, 1.00);
}

nav.desktopNav ul ul li.level2 {
    float: left;
    position: relative;
    display: inline-block;
    width: 100%;
}



/* THIRD LEVEL ==================================================== */

nav.desktopNav ul li li.level3 {
    display: block;
    position: relative;
    float: left;
    text-align: center;
    padding: 3px 8px;
    box-sizing: border-box;
    background: #FEE12B;
    /*OPTIONAL*/
}

nav.desktopNav ul li li.level3 a {
    width: 100%;
    text-align: left;
    line-height: 30px;
    color: #333;
    font-size: 14px;
    background-color: #FEE12B;
    letter-spacing: 1px;

}

nav.desktopNav ul li li.level3 a:hover {
    background-color: rgba(292, 205, 43, 1.00);
}

nav.desktopNav ul ul li.level3 {
    float: left;
    position: relative;
    display: inline-block;
    width: 100%;
}



/* GENERAL ==================================================== */

nav.desktopNav ul ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0px;
}

nav.desktopNav ul ul ul {
    position: absolute;
    left: 100%;
    top: 0;
}

nav.desktopNav ul li:hover > ul {
    display: block;
    line-height: 18px;
    z-index: 100;
    width: 100%;
}
