



#mainnavigation{
    width: 100%;
    padding: 0;
    /*font-family: 'Open Sans', sans-serif;*/
    font-size: 1em;
}
.menulistitem-ul{
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.menulistitem{
    position: relative;
}
.menulevel2{
    display: flex;
    flex: 1;
    /*background-color: #ffffff;*/
}
.menulevel2button{
    display: inline-block;
    border: none;
    margin: 0;
    
    /*2022*/
    color: #ffffff;
    /*color: #7d3f98;*/

    cursor: pointer;
    padding: 0.8em 0.8em;
    font-size: 1em;
    line-height: 1.1em;
    text-align: left;
    text-transform: none;
}
/*.menulevel2button:after{
    display: inline-block;
    width: 6px;
    height: 6px;
    border-top: 0;
    border-left: 0;
    border-bottom-width: 2px;
    border-right-width: 2px;
    border-style: solid;
    border-color: #7d3f98;
    transform: rotate(45deg);
    transition: transform .2s ease-out;
    content: "";
    margin-left: 8px;
    margin-right: 3px;
}
.open .menulevel2button:after{
    transform: rotate(-135deg);
    border-color: #ffffff;
}
*/

.menulevel2button:after{
    display: inline-block;
    width: 6px;
    height: 6px;
    border-top: 0;
    border-left: 0;
    border-bottom-width: 2px;
    border-right-width: 2px;
    border-style: solid;

    /*2022*/
    border-color: #7d3f98;
    border-color: #ffffff;
    
    transform: rotate(45deg) translateY(-4px);
    transition: transform 0.2s ease-out;
    content: " ";
    margin-left: 3px;
    margin-right: 3px;
}

.open .menulevel2button:after{
    transform: rotate(-135deg) translateX(-3px) translateY(2px);
    border-color: #ffffff;
}
@media only screen and (max-width: 900px) {
    .menulevel2button:after{
        display: none;
    }
}
.menulevel2button:before{
    display: inline-block;
    width: 6px;
    height: 6px;
    border-top: 0;
    border-left: 0;
    border-bottom-width: 2px;
    border-right-width: 2px;
    border-style: solid;

    /*2022*/
    /*border-color: #7d3f98;*/
    border-color: #ffffff;

    transform: rotate(45deg) translateY(-4px);
    transition: transform .2s ease-out;
    content: "";
    margin-left: 8px;
    margin-right: 10px;
}
.open .menulevel2button:before{
    transform: rotate(-135deg) translateY(2px);
}
@media only screen and (min-width: 900px) {
    .menulevel2button:before{
        display: none;
    }
}
.menulevel2button:hover,.menulevel2button:focus,.menulevel2button:active{
    text-decoration: underline;
}
.open .menulevel2button{
    color: #ffffff;

    /*2022*/
    /*background-color: #6c3484;*/
    background-color: #17386a;

}

/*.open .menulevel2button:before{
    display: inline-block;
    transform: rotate(0deg);
    content: "";
    position: absolute;
    height: 2px;
    width: 100%;
    bottom: 0;
    left: 0;
    border: none;
    margin: 0;
    padding: 0;
}*/



/* --------------------------------------------------------------------------------- */
.menulevel2button-linkonly{
    display: inline-block;
    border: none;
    margin: 0;

    /*2022*/
    /*color: #7d3f98;*/
    color: #ffffff;

    cursor: pointer;
    padding: 0.8em 0.8em;
    font-size: 1em;
    line-height: 1.1em;
    text-align: left;
    text-transform: none;
    text-decoration: none;
}
.menulevel2button-linkonly:hover,.menulevel2button-linkonly:focus,.menulevel2button-linkonly:active{
    text-decoration: underline;

    /*2022*/
    color: #ffffff;

}
/* --------------------------------------------------------------------------------- */



.menulevel3{
    display: none;
}
li.open>.menulevel3 {
}
.menulevel3{
    position: absolute;
    width: 300px;
}
.menulevel3ul{
    list-style-type: none;
    padding: 0;
    margin: 0;

    /*2022*/
    /*background-color: #7d3f98;*/
    background-color: #17386a;

    border: 2px solid rgba(0,0,0,0.2);
    border-bottom: 10px solid rgba(0,0,0,0.2);
    border-radius: 0em 0em 0.2em 0.2em;
    overflow: hidden;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.5);
}
.menulevel3li{
    font-size: 16px !important;
}
.menulevel3li a{
    color: #ffffff;
    display: block;
    font-size: 16px !important;
    line-height: 1em;
    padding: 0.6em 1em;
    cursor: pointer;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    text-decoration: none;
}
.menulevel3li a:hover,.menulevel3li a:focus,.menulevel3li a:active{
    background-color: #000000;
}



@media only screen and (max-width: 900px) {
    .menulistitem-ul{
        display: block;
        width: 100%;
        position: relative;
    }
    .menulistitem{
        display: block;
        width: 100%;
        position: relative;
    }
    .menulevel2button{
        display: block;
        width: 100%;
        position: relative;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    .open .menulevel2button{
        color: #ffffff;

        /*2022*/
        /*background-color: #6c3484;*/
        background-color: #17386a;

        font-weight: 600;
    }
    .open .menulevel2button:before{
        border-color: #ffffff;
    }

    .menulevel2button-linkonly{
        display: block;
        width: 100%;
        position: relative;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    .menulevel2button-linkonly:before{
        display: inline-block;
        width: 5px;
        height: 5px;
        border-top: 0;
        border-left: 0;
        border-bottom-width: 2px;
        border-right-width: 2px;
        border-style: solid;
        border-color: rgba(255,255,255,0);
        transform: rotate(45deg);
        transition: transform .2s ease-out;
        content: "";
        margin-left: 8px;
        margin-right: 10px;
    }
    .menulevel3{
        width: 100%;
        position: relative;
    }
    .menulevel3li a{
        padding-left: 3em;
    }
}




#menutoggle {
    margin: 0;
    border: none;
    font-size: 1em;
    display: none;
    width: 100%;
    padding: 0.5em;
    color: #d9d9d9;
    background-color: #172436;
    z-index: 10;
    position: relative;
}
#menutoggle:hover,
#menutoggle:focus {
    /*display: block;*/
    width: 100%;
    color: #ffffff;
    background-color: #172436;
    cursor: pointer;
    text-decoration: underline;
}
@media only screen and (max-width: 900px) {
    #menutoggle {
        display: block;
    }
    .mainnavigation-list{
        display: block;
    }
}

@media only screen and (max-width: 900px) {
    #menulistitem-hideshow{
        display: none;
    }
}




























































                    /*@media print, screen and (min-width: 900px){*/
                    @media only screen and (max-width: 900px) {
                        .menulistitem-ul .grid-x > .medium-6 ,
                        .menulistitem-ul .grid-x > .medium-4{
                            width: 100%;
                            display: block;
                            max-width: 100%;
                        }
                    }




                    /*------------------------------------------------------------------*/
                    /* DESKTOP MEDIA QUERY -------------------------------------------- */
                    /*------------------------------------------------------------------*/
                    /*@media only screen and (min-width: 740px) {*/
                    @media only screen and (min-width: 900px) {

                        /*--------------------------------------------------------------*/
                        /* LISTS -------------------------------------------------------*/
                        /*--------------------------------------------------------------*/
                        .megamenu-ul{

                        }
                        /* TURNS A DROPDOWN INTO A MEGA-MENU ---------------------------*/
                        .menulevel3-mega {
                            background-color: #7D3F98;
                            background-color: #ededed;
                            color: #333333;
                            text-align: left;
                        }
                        .menulevel3-mega--width600 {
                            width: 600px;
                        }
                        .menulevel3-mega--width800 {
                            width: 800px;
                        }
                        /*RESET AND REMOVE SHADOW STYLING ------------------------------*/
                        .menulevel3ul{
                            border: none;
                            -webkit-box-shadow: none;
                            -moz-box-shadow: none;
                            box-shadow: none;
                            background-color: transparent;
                        }

                        /*----------------------------------------------------*/
                        /* HEADS ---------------------------------------------*/
                        /*----------------------------------------------------*/
                         .menulevel3-mega h3{
                            font-size: 1.1em;
                            line-height: 1em;
                            font-family: 'DomaineDisplayWeb-Bold', sans-serif;
                        }
                        /* ADD BORDER TO TOP OF DROPDOWN MENUS ---------------*/
                        /* ADD SHADOW TO ALL DD MENUS ------------------------*/
                        .menulevel3{
                            padding-top: 0.5em;
                            padding-bottom: 0.5em;
                            padding:1em;

                            background-color: #ededed;

                            /*2022*/
                            /*border-top: 10px solid rgba(108, 52, 132,0.2);*/
                            border-top: 5px solid rgba(23,56,106,0.5);


                            right: auto;
                            left: auto;
                            -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.5);
                            -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.5);
                            box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.5);
                        }

                        /* RE-COLOR BASE ITEMS -------------------------------*/
                        .menulevel3ul{
                            background-color: #ededed;
                            border: none;
                        }
                        .menulevel3li a {

                            /*2022*/
                            /*color: #7D3F98;*/
                            color: #1A0150;


                            display: block;
                            font-size: 16px !important;
                            line-height: 1em;
                            padding: 0.4em 0em;
                            cursor: pointer;
                            border-bottom: 1px solid rgba(0,0,0,0.1);
                            text-decoration: none;
                        }
                        /* REMOVE LAST BOTTOM BORDER ON MENU LIST ITEM ---------------------*/
                        .menulevel3ul li:last-of-type a {
                            border-bottom: none;
                        }

                        /*------------------------------------------------------------------*/
                        .menulevel3li a:hover,
                        .menulevel3li a:focus,
                        .menulevel3li a:active {
                            background-color: rgb(224, 224, 224);
                            text-decoration: underline;
                        }
                        /*------------------------------------------------------------------*/



                        /*------------------------------------------------------------------*/
                        /*------------------------------------------------------------------*/
                        /* COLUMNS - START -------------------------------------------------*/
                        /*------------------------------------------------------------------*/
                        /*------------------------------------------------------------------*/


                        /*------------------------------------------------------------------*/
                        /* ALL COLUMNS -----------------------------------------------------*/
                        /*------------------------------------------------------------------*/
                        .menulevel3-mega--col1,
                        .menulevel3-mega--col2,
                        .menulevel3-mega--col3{
                            padding: 0em 0.5em 0em 0.5em;
                            font-size: 1em;
                            line-height: 0.7em;
                        }
                        .menulevel3-mega--col1 p,
                        .menulevel3-mega--col2 p,
                        .menulevel3-mega--col3 p{
                            font-size: 1em;
                            line-height: 1.2em;
                        }
                        .menulevel3-mega--col1 img,
                        .menulevel3-mega--col2 img,
                        .menulevel3-mega--col3 img{
                            /* --- */
                        }
                        .menulevel3-mega--col1 h3,
                        .menulevel3-mega--col2 h3,
                        .menulevel3-mega--col3 h3{
                            /* --- */
                        }


                        /*------------------------------------------------------------------*/
                        /* ONE COLUMN ------------------------------------------------------*/
                        /*------------------------------------------------------------------*/
                        .menulevel3---one-col{
                            /*background-color: red !important;*/
                        }
                        .menulevel3---one-col .menulevel3-mega--col1{
                            /*background-color: red !important;*/
                        }


                        /*------------------------------------------------------------------*/
                        /* TWO COLUMN ------------------------------------------------------*/
                        /*------------------------------------------------------------------*/
                        .menulevel3---two-col{
                        }
                        .menulevel3---two-col .menulevel3-mega--col1{
                            padding-right: 1em;
                        }
                        .menulevel3---two-col .menulevel3-mega--col2{
                            padding-left: 1em;
                            padding-right: 1em;
                            border-left: 1px solid rgba(0,0,0,0.1);
                        }

                        /*------------------------------------------------------------------*/
                        /* THREE COLUMN ----------------------------------------------------*/
                        /*------------------------------------------------------------------*/
                        .menulevel3---three-col{
                        }
                        .menulevel3---three-col .menulevel3-mega--col1{
                            padding-right: 1em;
                        }
                        .menulevel3---three-col .menulevel3-mega--col2{
                            padding-left: 1em;
                            padding-right: 1em;
                            border-left: 1px solid rgba(0,0,0,0.1);
                        }
                        .menulevel3---three-col .menulevel3-mega--col3{
                            padding-left: 1em;
                            padding-right: 1em;
                            border-left: 1px solid rgba(0,0,0,0.1);
                        }



                        /*----------------------------------------------------*/
                        /*----------------------------------------------------*/
                        /* COLUMNS - END */
                        /*----------------------------------------------------*/
                        /*----------------------------------------------------*/






                        /*----------------------------------------------------*/
                        /* IMAGE LINKS IN MENU ------------------------------ */
                        /*----------------------------------------------------*/

                        .menulevel3-mega--img{
                            position: relative;
                        }
                        .menulevel3-mega--img:after{
                            display: inline-block;
                            border: 10px solid rgba(0,0,0,0.2);
                            content: " ";
                            position: absolute;
                            top: 0;
                            left: 0;
                            width: 100%;
                            height: 100%;
                            pointer-events: none;
                            -webkit-transition: all 0.1s ease-out;
                            -moz-transition: all 0.1s ease-out;
                            -o-transition: all 0.1s ease-out;
                            transition: all 0.1s ease-out;
                        }
                        .menulevel3-mega--img--link a{
                            display: block;
                            position: relative;
                        }
                        .menulevel3-mega--img--link a:after{
                            display: inline-block;
                            border: 5px solid rgba(0,0,0,0.1);
                            content: " ";
                            position: absolute;
                            top: 0;
                            left: 0;
                            width: 100%;
                            height: 100%;
                            pointer-events: none;
                            -webkit-transition: all 0.2s ease-out;
                            -moz-transition: all 0.2s ease-out;
                            -o-transition: all 0.2s ease-out;
                            transition: all 0.2s ease-out;
                        }
                        .menulevel3-mega--img--link a:hover::after,
                        .menulevel3-mega--img--link a:focus::after,
                        .menulevel3-mega--img--link a:active::after{
                            border: 12px solid rgba(73,44,92,1);
                        }


                        /*------------------------------------------------------------------*/
                        /* MEGA MENU - MAKE IT FULL WIDTH IF NEEDED ----------------------- */
                        /*------------------------------------------------------------------*/
                        .mega-fullwidth-level1 {
                            position: static;
                        }
                        .mega-fullwidth-level3 {
                            left:0;
                            right: auto;
                            width:100%;
                        }
                        .mega-rightalign-level3 {
                            right: 0px;
                            left: auto;
                        }




                    }
                    /*------------------------------------------------------------------*/
                    /* END DESKTOP MEDIA QUERY /*---------------------------------------*/
                    /*------------------------------------------------------------------*/



                    /* MOBILE ------------------------------------------------------------------------ */

                    /*@media only screen and (max-width: 740px) {*/
                    @media only screen and (max-width: 900px) {

                        .hide-from-mobile-menu{
                            display: none !important;
                        }
                        .menulevel3-mega {
                            color: #ffffff;
                            padding: 0;
                        }
                        .menulevel3-mega h3{
                            font-size: 1.2em;
                            font-family: 'DomaineDisplayWeb-Bold', sans-serif;
                            display: none;
                        }
                        .menulevel3-mega--col1 .menulevel3ul{
                            border: 10px solid red;
                            border: none;
                            border-radius: 0;
                        }
                        .menulevel3-mega--col2 .menulevel3ul{
                            border: 10px solid green;
                            border: none;
                            border-radius: 0;
                        }
                        .menulevel3-mega .menulevel3li a{
                            border-bottom: 1px solid #6c3484;
                        }

                    }


                    /* TESTING STUFF ------------------------------------------------------------------------ */

                    /* BORDERS AND MARGINS?????????? */
                     .menulevel3-mega--col1 > .menulevel3-mega-h3 {
                        border: none;
                    }
                    .menulevel3-mega--col1 > .menulevel3-mega-h3 ~ .menulevel3-mega-h3 {
                        margin-top: 1em;
                    }
                    .menulevel3-mega--col2 > .menulevel3-mega-h3 {
                        border: none;
                    }
                    .menulevel3-mega--col2 > .menulevel3-mega-h3 ~ .menulevel3-mega-h3 {
                        margin-top: 1em;
                    }
                    .menulevel3-mega--col3 > .menulevel3-mega-h3 {
                        border: none;
                    }
                    .menulevel3-mega--col3 > .menulevel3-mega-h3 ~ .menulevel3-mega-h3 {
                        margin-top: 1em;
                    }

