/* -------------- Burgur styling ----------------- */

.nav-hamburger {
    display: flex;
    flex-direction: row;
    align-self: center;
    max-width: 100px;
    padding: 16px;
}


.btn {
    top: 0;
    right: 0;
    height: 70px;
    width: 65px;
    padding: 18px 3px 18px 31px;
    background: #39870c;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    flex: auto;
}


.btn .bar1, .btn .bar2, .btn .bar3 {
    height: 2px;
    width: 75%;
    display: block;
    background: #ffffff;
}

div.nav-hamburger:hover {
    background: black;
    cursor: pointer;
}

/* ----------- close btn ------------- */
.close-btn .bar1 {
    transform: rotate(-130deg);
    height: 4px;
    width: 50%;
    display: block;
    background: #ffffff;
    position: absolute;
}

.close-btn .bar2 {
    display: none;
}

.close-btn .bar3 {
    transform: rotateZ(130deg);
    height: 4px;
    width: 50%;
    display: block;
    background: #ffffff;
    position: absolute;
}

/* ------------- Hide menu ----------- */
.menu {
    display: none;
}


/* ------------------- open-menu styling --------------- */
.open-menu {
    z-index: 999;
    background: #f9f9f9;
    display: flex;
    justify-content: space-evenly;
    transition: 5s all;
    position: absolute;
    top: 70px;
    width: 100vw;
    left: calc(-50vw + 50%);
    flex-direction: row;
    box-shadow: 0 11px 19px 0 #6d6d6d;
}

.open-menu li .haschildren {
    color: #39860f;
    font-size: small;
    padding-right: 10px;
}

.open-menu ul li {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.open-menu ul li a {
    text-decoration: none;
    font-size: 0.7em;
    font-weight: 800;
    color: #6f6f6f;
    padding: 10px;
}

.open-menu ul li a:hover {
    color: #39870c;
}


/* ------------------- submenu styling --------------- */
.submenu {
    display: none;
}

.open-submenu {
    display: initial;
}

.open-submenu ul {
    justify-content: left;
    align-items: start;
    flex-direction: column;
}

.open-submenu ul li {
    list-style: none;
}

.open-submenu ul li a {
    text-decoration: none;
    font-size: 0.6em;
    font-weight: 400;
    color: #6f6f6f;
}


/* ------------------- mainmenu-area styling --------------- */
.mainmenu-area {
    display: flex;
    border-style: none;
    width: 30%;
    padding-top: 10px;
    line-height: 0.30;
    padding-left: 16%;
}

.mainmenu-area ul li:hover {
    background: #d2e6cb;
    transition: 0.2s all;
    border-radius: 3px;
    width: 100%;
}

.mainmenu-area > ul {
    width: 100%;
}

/* ------------------- submenu-area styling --------------- */
.submenu-area {
    display: flex;
    border-left: 1px solid;
    border-color: #39870c;
    width: 40%;
    padding-top: 10px;
    margin-top: 10px;
}


.display-2-cols {
    column-count: 2;
}

.submenu-area div.submenu.open-submenu ul li a {
    text-decoration: none;
    font-size: 0.6em;
    font-weight: 501;
    color: #6f6f6f;
}

.submenu-area div.submenu.open-submenu ul li a:hover {
    color: #39870c;
}


/* ------------------- extra-area styling --------------- */
.extra-area {
    display: flex;
    border-style: none;
    width: 20%;
    padding-top: 10px;
    margin-top: 10px;
    line-height: 0.30;
    border-left: 1px solid;
    border-color: #39870c;
}

.extra-area > .close-btn {
    top: 0;
    right: 0;
    height: 70px;
    width: 65px;
    padding: 20px;
    background: #f9f9f9;
    position: absolute;
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    cursor: pointer;
}

.extra-area > .close-btn .bar1, .extra-area > .close-btn .bar3 {
    height: 4px;
    width: 20%;
    display: block;
    background: #01689b;
    margin-left: 7px;
}


.extra-area div ul li a:hover {
    color: #39870c;
    background: #d2e6cb;
    transition: 0.2s all;
    border-radius: 3px;
    width: 100%;
}

.close-text {
    font-size: 0.6em;
    font-weight: 800;
    color: #01689b;
    margin-left: -20px;
}

.menu-text {
    font-weight: 500;
    color: #f9f9f9;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 1.2rem;
}

.menu-text:before {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    content: "\e9bd";
    font-family: "Icomoon";
    font-weight: normal;
    line-height: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-right: 3px;
}

/* ------------------- blue-area styling --------------- */
.blue-area {
    background: #01689b;
    color: #f9f9f9;
    width: 100vw;
    left: calc(-50vw + 50%);
    position: relative;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    justify-content: center;
}

.blue-area > div {
    display: flex;
    flex-basis: 100%;
    flex-wrap: wrap;
    max-width: 1200px;
    align-items: flex-start;
    margin-right: -16px;
    margin-left: -16px;
}

.blue-area > div > div.blue-area-content {
    flex-grow: 0;
    flex-shrink: initial;
    flex-basis: 66.66667%;
    max-width: 66.66667%;
    padding-right: 16px;
    padding-left: 16px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .blue-area > div > div.blue-area-content {
        flex-grow: 0;
        flex-shrink: initial;
        flex-basis: initial;
        max-width: initial;
        padding-right: 16px;
        padding-left: 16px;
        margin: initial;
        display: initial;
        flex-direction: initial;
        justify-content: initial;
    }
}

.blue-area ul {
    padding-top: 16px;
}

.blue-area p {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-height: 100px;
    max-width: 275px;
}

.blue-area li, .blue-area p {
    font-size: 1.0rem;
}

.blue-area li a:hover {
    color: #6f6f6f;
    text-decoration: underline;
}


.blue-area a, .blue-area a:visited {
    color: #f9f9f9;
    text-decoration: none;
    font-size: 1.36rem;
    font-weight: 900;
}


/* ------------------- searchForm styling --------------- */
#navBar {
    z-index: 100;
    position: relative;
}

#navBar .wrapper {
    flex-wrap: wrap;
}

.breadCrumbNav {
    font-size: 1.2rem;
}

#overlay:not(#navBar) {
    display: none;
    background-color: rgba(0, 0, 0, 0.52);
    z-index: 10;
    opacity: 1;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}


