﻿/* Site Navigation */

.submenuWrapper {
    background: #eff2f4;
    padding: 0.1px 0;
    margin-top: -1px;
    text-align: center;
}

#dnn_sub {
    margin: 0; 
    padding: 0;
}

#dnn_sub li {
    position: relative;
    list-style: none;
    margin: 0;
}

#dnn_sub li ul {
	margin-left: 10px;
}

#dnn_sub > li {
    display: inline-block;
    margin: 35px 13px 0 13px;
    padding-bottom: 28px;
}

#dnn_sub > li::before {
    visibility: hidden;
	transition: all 0.25s ease-in-out;
    bottom: -50px;
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    opacity: 0;
}

#dnn_sub > li:hover::before {
    visibility: visible;
    opacity: 1;
}

#dnn_sub > li > a, #dnn_sub > li > span {
    display: block;
    padding: 8px 23px 9px;
    font-size: 120%;
    line-height: 100%;
    font-weight: 700;
    color: #142029;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #acc294;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    z-index: 3;
}

#dnn_sub > li > a > span, #dnn_sub > li > span > span {
    position: relative;
    z-index: 10;
}

#dnn_sub > li > a::before, #dnn_sub > li > span::before {
    content: "";
    position: absolute;
    z-index: 1;
    height: 100px;
    width: 100%;
    bottom: 100%;
    left: 0;
    background: #87a461;
    transition: all 0.3s ease;
}

#dnn_sub > li:hover > a::before, #dnn_sub > li:focus > a::before, #dnn_sub > li.active > a::before, #dnn_sub > li:hover > a:active::before {
    bottom: -30px;
    transition: all 0.6s ease;
}



#dnn_sub > li > span {
	cursor: default;
}

.menuParentBlue:after {
    content: "\f078";
    font-family: 'Font Awesome 6 Pro';
    font-weight: 900;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    color: #36566f;
    padding-left: 8px;
    font-size: 76%;
    position: relative;
    z-index: 10;
}

/* Secondary level */
#dnn_sub > li ul {
    visibility: hidden;
    opacity: 0;
    top: 82px;
    position: absolute;
    z-index: 2;
    width: auto;
    white-space: nowrap;
    min-width: 100%;
    padding: 0;
    background: rgb(54 86 111 / 83%);
    border-radius: 0 0 7px 7px;
    text-align: left;
    transition: all 0.25s ease;
}

#dnn_sub > li:hover > ul {
    visibility: visible;
    top: 65px;
    opacity: 1;
}

#dnn_sub > li > ul {
    left: 0;
    margin: 0 auto;
    padding: 15px 16px;
}

#dnn_sub > li ul a {
    display: block;
    padding: 6px 0;
    margin: 1px 0;
    font-size: 96%;
    line-height: 90%;
    font-weight: normal;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.4px;
}
#dnn_sub > li ul span {
    color: #fff;
    cursor: default;
}

#dnn_sub > li ul a span {
    cursor: pointer;
}

#dnn_sub > li > ul li:hover > a, #dnn_sub > li > ul li:focus > a {
    color: #fff;
    text-decoration: underline;
}

/* Tertiary level */
#dnn_sub li ul li ul {
    display: none !important;
    left: 225px;
    top: -8px;
    padding: 15px 5px;
    border-left: 1px solid #ddd;
}
