﻿.getStartedIcon {
    width: 12px;
}

/* MENU CSS */
/* 

NAME: Jet Responsive Megamenu  

AUTHOR PAGE: http://codecanyon.net/user/marcoarib 

ITEM PAGE: http://codecanyon.net/item/jet-responsive-megamenu/5719593 

*/

.topMenuBar {
    background-color: #00539F !important;
    width: 100%;
    display: table;
}

.logoSize {
    width: 100px;
    margin-top: 5px;
}

.topIcon {
    position: absolute;
    left: 5px;
    top: 8px;
    width: 15px;
    height: 15px;
}

.footLink {
    display: block;
    color: #696969 !important;
    font-family: Open sans;
    font-weight: 300;
    padding-left: 0px;
    font-family: 'Open Sans', sans-serif !important;
    text-decoration: none !important;
}

.footLink:hover {
    text-decoration: underline !important;
}

.modalMenu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.8);
    z-index: 998;
    display: none;
    opacity: 0;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
}

    .modalMenu:target {
        opacity: 1;
        pointer-events: auto;
    }

    .modalMenu.fade {
        display: block;
        opacity: 1;
        -webkit-transition: all 200ms ease-in;
        -moz-transition: all 200ms ease-in;
        transition: all 200ms ease-in;
    }

/* 

**********************************************************/

/* MENU CONFIGURATION 

**********************************************************/

.jetmenu {
    width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
    float: left;
    list-style: none;
    background-color: #5575b4;
    z-index: 99;
    font-family: 'Open Sans' !important;
}

    .jetmenu li {
        display: inline-block;
        float: left;
    }

    .jetmenu a {
        transition: all 0.75s;
        -o-transition: all 0.75s;
        -webkit-transition: all 0.75s;
        -moz-transition: all 0.75s;
        outline: none;
        z-index: 10;
    }

    .jetmenu > li > a {
        padding: 20px 24px;
        font-family: 'Open Sans', sans-serif;
        font-size: 16px;
        color: #fff;
        text-decoration: none;
        display: inline-block;
    }

    .jetmenu > li:hover > a,
    .jetmenu > li.active > a {
        background-color: #00539F;
        color: #fff !important;
    }


    /********/
    .jetmenu > li > a.tree {
        padding: 20px 30px 20px 30px;
        font-family: 'Open Sans', sans-serif;
        font-size: 16px;
        color: #fff;
        text-decoration: none;
        display: inline-block;
    }

    .jetmenu > li:hover > a.tree,
    .jetmenu > li.active > a.tree {
        background-color: #00539F !important;
        color: #fff;
    }


    .jetmenu > li > a.cursorDefault {
        cursor: default !important;
    }

    /********/

    .jetmenu > li > a.greenBox {
        padding: 20px 24px;
        font-family: 'Open Sans', sans-serif;
        font-size: 16px;
        background-color: #56cb57;
        color: white !important;
        text-decoration: none;
        display: inline-block;
        border-left: 1px solid white;
    }

    .jetmenu > li:hover > a.greenBox,
    .jetmenu > li.active > a.greenBox {
        background-color: #72db74;
        color: #fff !important;
    }




.jet-flex-container {
    display: -webkit-flex; /* Safari */
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-justify-content: space-around; /* Safari 6.1+ */
    justify-content: space-around;
    width: 100%;
}




.jet-flex-containerRight {
    -webkit-justify-content: flex-end; /* Safari */
    justify-content: flex-end;
}




.jet-flex-container1 {
    display: -webkit-flex; /* Safari */
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-justify-content: space-around; /* Safari 6.1+ */
    justify-content: space-around;
    width: 385px;
    border: 1px solid red;
    margin-right: 50px;
}




.jet-flex-container2 {
    display: -webkit-flex; /* Safari */
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-justify-content: space-around; /* Safari 6.1+ */
    justify-content: space-around;
    width: 297px;
    border: 1px solid red;
    margin-right: 50px;
}




.jet-flex-item {
    -webkit-flex: 1 auto;
    flex: 1 auto;
    margin: 0px auto;
    text-align: left !important;
    -webkit-flex-grow: 1 !important; /* Safari */
    flex-grow: 1 !important;
}



.jet-flex-fixed-width {
    width: 95%;
}




/* DROPDOWN CONFIGURATION 

**********************************************************/

.jetmenu ul.dropdown,
.jetmenu ul.dropdown li ul.dropdown {
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
    position: absolute;
    z-index: 99;
    min-width: 134px;
    background-color: #f2f2f2;
    border-color: #343434;
    box-shadow: -10px 14px 16px 3px rgba(39,39,59,0.3);
    -webkit-box-shadow: -10px 14px 16px 3px rgba(39,39,59,0.3);
    -moz-box-shadow: -10px 14px 16px 3px rgba(39,39,59,0.3);
}

.jetmenu ul.dropdown {
    top: 70px;
}

    .jetmenu ul.dropdown li ul.dropdown {
        left: 100%;
        top: inherit;
    }

    .jetmenu ul.dropdown li {
        clear: both;
        width: 100%;
        font-size: 14px;
    }

        .jetmenu ul.dropdown li a {
            width: 100%;
            padding: 12px 24px 12px;
            display: inline-block;
            float: left;
            clear: both;
            font-family: 'Open Sans', sans-serif;
            font-size: 14px;
            text-decoration: none;
            color: #737373;
            box-sizing: border-box;
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
            transition: all 0.75s;
            -o-transition: all 0.75s;
            -webkit-transition: all 0.75s;
            -moz-transition: all 0.75s;
        }

        .jetmenu ul.dropdown li:hover > a {
            background-color: #4062a2;
            background-color: #d4dff3 !important;
            color: #fff !important;
            color: #6293f8 !important;
        }




        /* dropdowns to left side */

        .jetmenu ul.dropdown li ul.dropdown.left {
            left: auto;
            right: 100%;
        }




/* MY NEW DROPDOWNS THAT ARE HIDDEN AT PC AND TABLET LEVEL 

**********************************************************/

.jetmenu ul.dropdown2,
.jetmenu ul.dropdown2 li ul.dropdown {
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
    position: absolute;
    z-index: 99;
    min-width: 134px;
    background-color: #f2f2f2;
    border-color: #343434;
}

.jetmenu ul.dropdown2 {
    top: 70px;
}

    .jetmenu ul.dropdown2 li ul.dropdown {
        left: 100%;
        top: inherit;
    }

    .jetmenu ul.dropdown2 li {
        clear: both;
        width: 100%;
        font-size: 14px;
    }

        .jetmenu ul.dropdown2 li a {
            width: 100%;
            padding: 12px 24px 12px;
            display: inline-block;
            float: left;
            clear: both;
            font-family: 'Open Sans', sans-serif;
            font-size: 14px;
            text-decoration: none;
            color: #737373;
            box-sizing: border-box;
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
            transition: all 0.75s;
            -o-transition: all 0.75s;
            -webkit-transition: all 0.75s;
            -moz-transition: all 0.75s;
        }

        .jetmenu ul.dropdown2 li:hover > a {
            background-color: #4062a2;
            color: #fff !important;
        }




        /* dropdowns to left side */

        .jetmenu ul.dropdown2 li ul.dropdown.left {
            left: auto;
            right: 100%;
        }







/* MY NEW DROPDOWNS THAT ARE SHOWN AT PC AND TABLET LEVEL 

**********************************************************/

.jetmenu ul.dropdown3,
.jetmenu ul.dropdown3 li ul.dropdown {
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
    position: absolute;
    z-index: 99;
    min-width: 134px;
    background-color: #f2f2f2;
    border-color: #343434;
}

.jetmenu ul.dropdown3 {
    top: 70px;
}

    .jetmenu ul.dropdown3 li ul.dropdown {
        left: 100%;
        top: inherit;
    }

    .jetmenu ul.dropdown3 li {
        clear: both;
        width: 100%;
        font-size: 14px;
    }

        .jetmenu ul.dropdown3 li a {
            width: 100%;
            padding: 12px 24px 12px;
            display: inline-block;
            float: left;
            clear: both;
            font-family: 'Open Sans', sans-serif;
            font-size: 14px;
            text-decoration: none;
            color: #737373;
            box-sizing: border-box;
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
            transition: all 0.75s;
            -o-transition: all 0.75s;
            -webkit-transition: all 0.75s;
            -moz-transition: all 0.75s;
        }

        .jetmenu ul.dropdown3 li:hover > a {
            background-color: #4062a2;
            color: #fff !important;
        }




        /* dropdowns to left side */

        .jetmenu ul.dropdown3 li ul.dropdown.left {
            left: auto;
            right: 100%;
        }

/**************************/







/* SUBMENU INDICATORS 

**********************************************************/

.jetmenu .indicator {
    position: relative;
    left: 5px;
    top: 0;
    font-size: 14px;
    float: right;
}

.jetmenu ul li .indicator {
    font-size: 12px;
    top: 1px;
    left: 10px;
}




/* MEGAMENU 

**********************************************************/
.jetmenu > li > .shiftRight {
    right: 140px;
}

.jetmenu > li > .megamenu {
    position: absolute;
    display: none;
    background: white;
    width: 25%;
    top: 70px;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    color: #f2f2f2;
    z-index: 99;
    border-top: 0px solid #343434;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    box-shadow: -10px 14px 16px 3px rgba(39,39,59,0.3);
    -webkit-box-shadow: -10px 14px 16px 3px rgba(39,39,59,0.3);
    -moz-box-shadow: -10px 14px 16px 3px rgba(39,39,59,0.3);
    text-align: justify;
    background-color: #fff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}




/* megamenu list */

.jetmenu li > .megamenu ul {
    margin: 0 0 20px 0;
    float: left;
    padding: 0;
    display: block;
    position: relative;
}

    .jetmenu li > .megamenu ul li {
        width: 100%;
        padding: 4px 0;
    }

        .jetmenu li > .megamenu ul li.title {
            margin: 0 0 8px;
            padding: 0 0 5px;
            font-size: 14px;
            border-bottom: solid 1px #666;
        }




/* megamenu h5 */

.jetmenu li > .megamenu h5 {
    width: 100%;
    margin: 0;
    padding: 0;
}




/* megamenu links */

.jetmenu li > .megamenu a {
    color: #f2f2f2 !important;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.75s;
    -o-transition: all 0.75s;
    -webkit-transition: all 0.75s;
    -moz-transition: all 0.75s;
    display: block;
    width: 100%;
}

    .jetmenu li > .megamenu a:hover {
        color: #fff !important;
        background-color: #4062a2;
    }

    .jetmenu li > .megamenu a.megaLink {
        color: #000 !important;
        text-decoration: none;
        font-size: 14px;
        transition: all 0.75s;
        -o-transition: all 0.75s;
        -webkit-transition: all 0.75s;
        -moz-transition: all 0.75s;
        display: block;
        width: 92% !important;
        padding: 10px;
        background-color: #f2f2f2 !important;
        border-color: #343434;
        border-radius: 4px;
    }

        .jetmenu li > .megamenu a.megaLink:hover {
            color: #6293f8 !important;
            background-color: #d4dff3 !important;
        }

    .jetmenu li > .megamenu a.megaLinkSmall {
        color: #000 !important;
        text-decoration: none;
        font-size: 14px;
        transition: all 0.75s;
        -o-transition: all 0.75s;
        -webkit-transition: all 0.75s;
        -moz-transition: all 0.75s;
        width: 92% !important;
        padding: 10px;
        background-color: #f2f2f2 !important;
        border-color: #343434;
        border-radius: 4px;
        display: table;
        -moz-box-sizing: border-box;
        height: 40px;
        margin-bottom: 5px;
        vertical-align: middle;
    }

        .jetmenu li > .megamenu a.megaLinkSmall:hover {
            color: #6293f8 !important;
            background-color: #d4dff3 !important;
        }

/*******************/


/* megamenu images */

.jetmenu .megamenu img {
    width: 100%;
    -webkit-transition: border 0.3s linear;
    -moz-transition: border 0.3s linear;
    -o-transition: border 0.3s linear;
    transition: border 0.3s linear;
}




/* to fix right attribute on submenus (menu aligned to left (default)) */

.jetmenu > li.fix-sub > .megamenu,
.jetmenu > li.fix-sub > .megamenu.half-width,
.jetmenu > li.fix-sub > .megamenu.half-widthGone,
.jetmenu > li.fix-sub > .megamenu.third-width,
.jetmenu > li.fix-sub > .megamenu.third-widthGone,
.jetmenu > li.fix-sub > .dropdown {
    right: 0;
}




/* MEGAMENU WIDTHS 

**********************************************************/

.jetmenu > li > .megamenu.half-width {
    width: 50%;
}

.jetmenu > li > .megamenu.third-width {
    width: 40%;
}

.jetmenu > li > .megamenu.full-width {
    width: 100%;
    left: 0;
}

.jetmenu > li > .megamenu.half-widthGone {
    /*width: 50%;*/
    width: 800px;
}

.jetmenu > li > .megamenu.third-widthGone {
    /*width: 40%;*/
    width: 180px;
}




/* MEGAMENU FORM CONFIGURATION 

**********************************************************/

.jetmenu li > .megamenu form {
    width: 100%;
}




    /* megamenu inputs */

    .jetmenu li > .megamenu form input[type="text"],
    .jetmenu li > .megamenu form textarea {
        padding: 5px;
        color: #999;
        background: #444;
        font-family: 'Open Sans', sans-serif;
        font-size: 14px;
        border: solid 1px transparent;
        outline: none;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-transition: border 0.3s linear;
        -moz-transition: border 0.3s linear;
        -o-transition: border 0.3s linear;
        transition: border 0.3s linear;
    }

        .jetmenu li > .megamenu form input[type="text"]:focus,
        .jetmenu li > .megamenu form textarea:focus {
            border-color: #e0e0e0;
        }

    .jetmenu li > .megamenu form input[type="text"] {
        width: 100%;
        margin-top: 10px;
    }

    .jetmenu li > .megamenu form textarea {
        width: 100%;
        margin-top: 10px;
    }

    .jetmenu li > .megamenu form input[type="submit"] {
        width: 25%;
        float: right;
        height: 30px;
        margin-top: 10px;
        border: none;
        cursor: pointer;
        background: #444;
        color: #777;
        font-family: 'Open Sans', sans-serif;
        -webkit-transition: background 0.3s linear;
        -moz-transition: background 0.3s linear;
        -o-transition: background 0.3s linear;
        transition: background 0.3s linear;
    }

        .jetmenu li > .megamenu form input[type="submit"]:hover {
            background: #e0e0e0;
            color: #555;
        }




/* MEGAMENU GRID SYSTEM 

**********************************************************/

.megamenu .row {
    width: 100%;
    margin-top: 15px;
    width: 100%;
    background-color: #fff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

    .megamenu .row:first-child {
        margin-top: 0;
    }

    .megamenu .row:before,
    .megamenu .row:after {
        display: table;
        content: "";
        line-height: 0;
    }

    .megamenu .row:after {
        clear: both;
    }

    .megamenu .row .col1,
    .megamenu .row .col2,
    .megamenu .row .col3,
    .megamenu .row .col4,
    .megamenu .row .col5,
    .megamenu .row .col6 {
        display: block;
        width: 100%;
        min-height: 20px;
        float: left;
        margin-left: 2.127659574468085%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .megamenu .row [class*="col"]:first-child {
        margin-left: 0;
    }

    .megamenu .row .col1 {
        width: 14.893617021276595%;
    }

    .megamenu .row .col2 {
        width: 31.914893617021278%;
    }

    .megamenu .row .col3 {
        width: 48.93617021276595%;
    }

    .megamenu .row .col4 {
        width: 65.95744680851064%;
    }

    .megamenu .row .col5 {
        width: 82.97872340425532%;
    }

    .megamenu .row .col6 {
        width: 100%;
    }




/* RIGHT ALIGNMENT (MENU ITEM) 

**********************************************************/

.jetmenu > li.right {
    float: right;
}

    .jetmenu > li.right > .megamenu,
    .jetmenu > li.right > .megamenu.half-width,
    .jetmenu > li.right > .megamenu.half-widthGone,
    .jetmenu > li.right > .megamenu.third-width,
    .jetmenu > li.right > .megamenu.third-widthGone,
    .jetmenu > li.right > .dropdown {
        right: 0;
    }




/* to fix right attribute on submenus (menu aligned to right) */

.jetmenu > li.jsright {
    float: right;
}

    .jetmenu > li.jsright.last > .megamenu,
    .jetmenu > li.jsright.last > .megamenu.half-width,
    .jetmenu > li.jsright.last > .megamenu.half-widthGone,
    .jetmenu > li.jsright.last > .megamenu.third-width,
    .jetmenu > li.jsright.last > .megamenu.third-widthGone,
    .jetmenu > li.jsright.last > .dropdown {
        right: 0;
    }


/* ICONS (FONT AWESOME) 

**********************************************************/

.jetmenu > li > a > i {
    line-height: 23px !important;
    margin-right: 6px;
    font-size: 18px;
    float: left;
}




/* COLLAPSIBLE MENU 

**********************************************************/

.jetmenu > li.showhide {
    display: none;
    width: 100%;
    height: 50px;
    cursor: pointer;
    color: #fff;
    background: #5575b4;
}

    .jetmenu > li.showhide span.title {
        margin: 15px 0 0 25px;
        font-family: 'Open Sans', sans-serif;
        float: left;
    }

    .jetmenu > li.showhide span.icon {
        float: right;
        text-align: right;
        background-color: #5575b4;
        display: inline-block;
        width: 120px;
        height: 50px;
    }

        .jetmenu > li.showhide span.icon:hover {
            background-color: #6293f8 !important;
        }

    .jetmenu > li.showhide .icon em {
        margin-bottom: 3px;
        display: block;
        width: 20px;
        height: 2px;
        background: #fff;
    }




.jetmenu > li.hideshow {
    float: left;
}




/* STYLES 

**********************************************************/

/* blue */

.blue > li:hover > a, .blue > li.active > a {
    background-color: #00539F !important;
    color: #fff;
}

.blue ul.dropdown li:hover > a {
    background-color: #3e5f9d;
    color: #fff;
}

.blue ul.dropdown2 li:hover > a {
    background-color: #3e5f9d;
    color: #fff;
}

.blue ul.dropdown3 li:hover > a {
    background-color: #3e5f9d;
    color: #fff;
}

.blue li > .megamenu form input[type="text"]:focus, .blue li > .megamenu form textarea:focus {
    border-color: #3e5f9d;
}

.blue li > .megamenu form input[type="submit"]:hover {
    background-color: #3e5f9d;
    color: #fff;
}

.blue li > .megamenu a:hover {
    color: #fff;
}



/* RESPONSIVE LAYOUT 

**********************************************************/
@media (min-width: 876px) {
    /*li#liHome { position: absolute; top: -200px; left: -5000px; }*/
}

@media (max-width: 875px) {


    .jetmenu {
        border-top: 1px solid white;
        border-bottom: 0px solid white;
    }

        .jetmenu a {
            transition: all 0s;
            -o-transition: all 0s;
            -webkit-transition: all 0s;
            -moz-transition: all 0s;
        }


        .jetmenu > li {
            display: block;
            width: 100%;
            box-sizing: border-box;
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
            border-bottom: 1px solid gray;
        }

            .jetmenu > li > a {
                padding: 15px 25px;
                padding: 15px 10px 0px 10px !important;
                background-color: #fff;
                color: #000 !important;
            }


            .jetmenu > li:hover > a,
            .jetmenu > li.active > a {
                background-color: #d4e0f3;
                color: #000 !important;
            }


            .jetmenu > li > a.tree {
                padding: 15px 25px;
                color: #000 !important;
                background: url('/Images/Menu/nav_down-blue.png');
                background-size: 16px auto;
                background-position: right 20px center;
                background-repeat: no-repeat;
                background-color: #fff !important;
            }


            .jetmenu > li:hover > a.tree,
            .jetmenu > li.active > a.tree {
                background-color: #d4e0f3 !important;
                color: #000 !important;
                background: url('/Images/Menu/nav_down-blue.png');
                background-size: 16px auto;
                background-position: right 20px center;
                background-repeat: no-repeat;
            }


        .jetmenu a {
            width: 100%;
            background: #f2f2f2;
            box-sizing: border-box;
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
        }

        .jetmenu ul.dropdown,
        .jetmenu ul.dropdown li ul.dropdown {
            width: 100% !important;
            left: 0;
            position: static !important;
            border: none;
            box-sizing: border-box;
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
        }

            .jetmenu ul.dropdown li {
                background: green !important;
                border: none;
            }

        .jetmenu ul.dropdown2 li {
            background: green !important;
            border: none;
        }

        .jetmenu ul.dropdown > li:hover > a,
        .jetmenu ul.dropdown > li.active > a {
            padding-left: 40px !important;
            color: black !important;
            background-color: #dfdfdf !important;
            background-color: #d4e0f3 !important;
        }

        .jetmenu ul.dropdown > li > a {
            padding-left: 40px !important;
            color: black !important;
            background-color: #cccccc !important;
        }

        .jetmenu ul.dropdown2,
        .jetmenu ul.dropdown2 li ul.dropdown {
            width: 100% !important;
            left: 0;
            position: static !important;
            border: none;
            box-sizing: border-box;
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
        }

            .jetmenu ul.dropdown2 li {
                background-color: #cccccc !important;
                border: none;
            }

                .jetmenu ul.dropdown2 li:hover > a,
                .jetmenu ul.dropdown2 li.active > a {
                    background-color: #dfdfdf !important;
                    background-color: #d4e0f3 !important;
                    color: black !important;
                    border: none;
                }

            .jetmenu ul.dropdown2 > li > a {
                padding-left: 40px !important;
                color: black;
                background-color: #cccccc;
            }

            .jetmenu ul.dropdown2 li:hover > a.allView,
            .jetmenu ul.dropdown2 li.active > a.allView {
                background-color: #8caaeb !important;
                background-color: #d4e0f3 !important;
                color: black !important;
                border: none;
            }

            .jetmenu ul.dropdown2 > li > a.allView {
                padding-left: 40px !important;
                color: black;
                background-color: #89a2d9 !important;
                background-color: #cccccc !important;
            }

            .jetmenu ul.dropdown2 li:hover > a.thirdLevel,
            .jetmenu ul.dropdown2 li.active > a.thirdLevel {
                background-color: #d4e0f3 !important;
                color: black !important;
                border: none;
            }

            .jetmenu ul.dropdown2 > li > a.thirdLevel {
                padding-left: 40px !important;
                color: black;
                background-color: #bbbaba !important;
                padding-left: 70px !important;
            }

        .jetmenu ul.dropdown3,
        .jetmenu ul.dropdown3 li ul.dropdown {
            width: 100% !important;
            left: 0;
            position: static !important;
            border: none;
            box-sizing: border-box;
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
        }

            .jetmenu ul.dropdown3 li {
                background-color: #f2f2f2 !important;
                border: none;
            }

            .jetmenu ul.dropdown3 > li > a {
                padding-left: 40px !important;
            }

        .jetmenu > li > .megamenu {
            width: 100% !important;
            position: static;
            border-top: none;
        }

            .jetmenu > li > .megamenu .row [class*="col"] {
                float: none;
                display: block;
                width: 100% !important;
                margin-left: 0;
                margin-top: 15px;
                -webkit-box-sizing: border-box;
                -moz-box-sizing: border-box;
                box-sizing: border-box;
            }

            .jetmenu > li > .megamenu .row:first-child [class*="col"]:first-child {
                margin-top: 0;
            }

            .jetmenu > li > .megamenu .row {
                margin-top: 0;
            }

        .jetmenu > li > ul.dropdown > li > a {
            padding-left: 40px !important;
            color: black;
        }

        .jetmenu > li > ul.dropdown > li > ul.dropdown > li > a {
            padding-left: 60px !important;
        }

        .jetmenu > li > ul.dropdown > li > ul.dropdown > li > ul.dropdown > li > a {
            padding-left: 80px !important;
        }

        .jetmenu > li > ul.dropdown2 > li > a {
            padding-left: 40px !important;
            color: black;
        }


            .jetmenu > li > ul.dropdown2 > li > a.tree {
                padding-left: 40px !important;
                background: url('/Images/Menu/nav_down-blue.png');
                background-size: 16px auto !important;
                background-position: right 20px center !important;
                background-repeat: no-repeat !important;
                background-color: #cccccc;
                color: #000 !important;
            }

        .jetmenu > li > ul.dropdown2 > li:hover > a.tree,
        .jetmenu > li > ul.dropdown2 > li.active > a.tree {
            padding-left: 40px !important;
            background: url('/Images/Menu/nav_down-blue.png');
            background-size: 16px auto !important;
            background-position: right 20px center !important;
            background-repeat: no-repeat !important;
            background-color: #d4e0f3 !important;
            color: #000 !important;
        }


        .jetmenu > li > ul.dropdown2 > li > ul.dropdown > li > a {
            padding-left: 60px !important;
        }

        .jetmenu > li > ul.dropdown2 > li > ul.dropdown > li > ul.dropdown > li > a {
            padding-left: 80px !important;
        }


        .jetmenu > li > ul.dropdown3 > li > a {
            padding-left: 40px !important;
        }

        .jetmenu > li > ul.dropdown3 > li > ul.dropdown > li > a {
            padding-left: 60px !important;
        }

        .jetmenu > li > ul.dropdown3 > li > ul.dropdown > li > ul.dropdown > li > a {
            padding-left: 80px !important;
        }


        .jetmenu > li.hideshow {
            height: 1px !important;
        }



        .jetmenu > li > .megamenu.half-widthGone {
            display: none !important;
        }



        .jetmenu > li > .megamenu.third-widthGone {
            display: none !important;
        }



    .grayMenu {
        margin-right: 0px !important;
    }

    /* THESE HELP HIDE THE MENU BUTTONS BEFORE THE MOBILE MENU LOADS */

    li#liHome {
        display: none;
    }

    li#mnuK12 {
        display: none;
    }

    li#mnuReviews {
        display: none;
    }

    li#mnuEvents {
        display: none;
    }

    li#mnuSupport {
        display: none;
    }

    li#mnuBlog {
        display: none;
    }

    li#mnuAbout {
        display: none;
    }

    li#mnuCareers {
        display: none;
    }

    li#mnuSearch {
        display: none;
    }

    li#mnuLogin {
        display: none;
    }

    li#mnuGetStarted {
        display: none;
    }

    /****************************************************************/
}

@media (min-width: 876px) and (max-width: 1024px) {

    .jetmenu > li#liHome {
        display: none !important;
    }

    .jetmenu > li.jsright.last > #megaAbout {
        right: 0px !important;
    }

    .jetmenu > li.jsright.last > #megaSupport {
        right: 0px !important;
    }
}

/* BREADCRUMBS CSS */
.breadCrumbs {
    display: none; /*block*/
    background-color: #424242;
    color: white;
    margin-top: 100px;
    width: 100%;
    text-align: left;
}

.pageLinks {
    display: block;
    padding-left: 18px;
    width: auto;
}

.videoOverlay {
    margin-top: 0px;
}

@media (min-width: 50px) and (max-width: 875px) {
    .breadCrumbs {
        margin-top: 80px !important;
    }

    .breadCrumbs {
        text-align: left;
    }

    .pageLinks {
        padding-left: 20px;
    }

    .CMSBreadCrumbsLink {
        font-size: 8pt !important;
    }

    .CMSBreadCrumbsCurrentItem {
        font-size: 8pt !important;
    }
}

.footerCopyrightDiv a {
    text-decoration: none;
    color: #fff;
    font-size: 10pt;
}

.searchTextboxNew {
    width: 215px !important;
}

.searchOpen {
    width: 280px;
}

.searchClosed {
    width: 280px;
    border: None !important;
}

.menuLogo {
}

@media (min-width: 925px) and (max-width: 965px) {
    .menuLogo {
        width: 80px;
        margin-top: 5px;
    }

    #miniLogo {
        padding-right: 0px;
    }
}

@media (min-width: 876px) and (max-width: 924px) {
    .menuLogo {
        width: 60px;
        margin-top: 10px;
    }

    #miniLogo {
        padding-right: 0px;
    }
}

@media (min-width: 50px) and (max-width: 875px) {
    .menuLogo {
        display: none;
    }
}

@media (min-width: 50px) and (max-width: 875px) {
    .noMobile {
        display: none;
    }

    .jetmenu > li.hideshow {
        height: 1px !important;
    }

        .jetmenu > li.hideshow > #miniLogo {
            display: none !important;
        }
}

@media (min-width: 50px) and (max-width: 550px) {
    .searchTextboxNew {
        width: 95px !important;
    }

    .searchClosed {
        width: 160px !important;
    }

    .searchOpen {
        width: 160px !important;
    }
}
/*********************/

/*ADDITONAL MENU CSS */
.homeTopLogo {
    padding: 0px;
    margin: 0px;
    padding-left: 0px !important;
    padding-top: 0px !important;
    padding-right: 0px !important;
    display: inline-block !important;
    height: 60px;
    background-color: Transparent;
    padding-left: 10px !important;
    padding-right: 10px !important;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

    .homeTopLogo:hover {
        background-color: #5575b4;
    }

.homeGetStarted {
    float: right;
    display: inline-block;
    padding-top: 10px;
    height: 50px;
    width: 120px;
    padding-left: 30px;
    text-align: center;
    background-color: #56cb57;
    color: white !important;
    text-decoration: none !important;
    position: relative;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

    .homeGetStarted:hover {
        background-color: #72db74;
    }

.homeGetArrow {
    width: 18px;
    position: absolute;
    left: 15px;
    top: 17px;
}

.homeLogIn {
    float: right;
    display: inline-bloack;
    padding-top: 10px;
    height: 50px;
    width: 110px;
    padding-left: 20px;
    text-align: center;
    background-color: transparent;
    color: white !important;
    text-decoration: none !important;
    position: relative;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

    .homeLogIn:hover {
        background-color: #5575b4;
    }

.homeLogArrow {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    height: 24px;
    width: 24px;
    position: absolute;
    left: 15px;
    top: 14px;
}

.treeArrow {
    position: absolute;
    right: 10px;
    top: 30px;
}

span.megaSpan {
    vertical-align: middle !important;
    text-align: center !important;
    display: table-cell !important;
    font-size: 14px;
}

@media (min-width: 876px) and (max-width: 5000px) {
    .jetmenu > li#liHome {
        display: none !important;
    }

    .jetmenu > li#mnuCareers {
        float: right;
        display: none !important;
    }

    .jetmenu > li#mnuLogin {
        float: right;
        display: none !important;
    }

    .jetmenu > li#mnuGetStarted {
        float: right;
        display: none !important;
    }

    .jetmenu > li#mnuSearch {
        float: right;
        width: 150px;
    }

    #lnkSearch {
        position: relative;
        text-align: left;
        padding-left: 60px;
        width: 90px;
    }

        #lnkSearch:hover {
            background-color: #00539F !important;
        }
}

@media (min-width: 50px) and (max-width: 875px) {
    .homeGetStarted {
        padding-top: 10px;
        height: 50px;
        width: 90px;
        padding-left: 30px;
    }

    .homeGetArrow {
        width: 18px;
        left: 8px;
        top: 17px;
    }

    .homeLogIn {
        padding-top: 10px;
        height: 50px;
        width: 90px;
        padding-left: 20px;
    }

    .homeLogArrow {
        height: 24px;
        width: 24px;
        left: 9px;
        top: 14px;
    }

    .treeArrow {
        display: none;
    }

    .jetmenu > li#mnuCareers {
        float: right;
    }

    .jetmenu > li#mnuSearch {
        float: right;
        width: 100%;
    }

    #lnkSearch {
        padding-left: 0px;
        width: 100%;
        background-image: url('/Images/Menu/nav_search-blue.png') !important;
        background-size: 16px 16px !important;
        background-position: right 20px center !important;
        background-repeat: no-repeat !important;
    }

    #imgSearch {
        display: none;
    }

    .jetmenu > li#mnuLogin {
        float: right;
        width: 100%;
    }

    #lnkLogin {
        background-image: url('/Images/Menu/nav_login-blue.png') !important;
        background-size: 16px 16px !important;
        background-position: right 20px center !important;
        background-repeat: no-repeat !important;
    }

    .jetmenu > li#mnuGetStarted {
        float: right;
        width: 100%;
    }

    #lnkGetStarted {
        background-image: url('/Images/Menu/nav_arrow-white.svg') !important;
        background-size: 16px 16px !important;
        background-position: right 20px center !important;
        background-repeat: no-repeat !important;
    }
}
/*********************/

/* SVG ICONS CSS */
.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}

/* ==========================================
  Single-colored icons can be modified like so:
  .icon-name {
    font-size: 32px;
    color: red;
  }
  ========================================== */

.icon-StudyHallScheduler {
    width: 1.01953125em;
}

.icon-SaveStyle {
    width: 1.0048828125em;
}

.icon-Unlink {
    width: 1.00390625em;
}

.icon-Unschedule {
    width: 1.0263671875em;
}

.icon-DontSave {
    width: 1.0048828125em;
}

.icon-ScheduleChanges {
    width: 1.0263671875em;
}

.icon-Activate {
    width: 0.9794921875em;
}

.icon-Deactivate {
    width: 0.9794921875em;
}

.icon-AddCourseRequest {
    width: 1.0263671875em;
}

.icon-AccountReceivable {
    width: 0.9599609375em;
}

.icon-Uncompress {
    width: 1.005859375em;
}

.icon-Update {
    width: 0.9990234375em;
}

.icon-VerticalBottomAlign {
    width: 1.00390625em;
}

.icon-ViewCourseList {
    width: 1.0087890625em;
}

.icon-YearEnd {
    width: 1.0263671875em;
}

.icon-AccountPayable {
    width: 0.9599609375em;
}

.icon-ActivityAccess {
    width: 1.0107421875em;
}

.icon-AddCourseList {
    width: 0.9853515625em;
}

.icon-AddNote {
    width: 1.00390625em;
}

.icon-AdminAccess {
    width: 0.9951171875em;
}

.icon-Analytics {
    width: 1.0087890625em;
}

.icon-Attendance {
    width: 0.9912109375em;
}

.icon-BatchAndConfirm {
    width: 0.9853515625em;
}

.icon-BorderBottom {
    width: 0.9912109375em;
}

.icon-BorderLeft {
    width: 1.0087890625em;
}

.icon-BorderRight {
    width: 1.0087890625em;
}

.icon-BorderTop {
    width: 0.9912109375em;
}

.icon-CheckBox {
    width: 0.99609375em;
}

.icon-CheckBoxPartial {
    width: 0.99609375em;
}

.icon-CheckBoxUnchecked {
    width: 0.99609375em;
}

.icon-Columns {
    width: 1.0048828125em;
}

.icon-Compress {
    width: 1.00390625em;
}

.icon-Customization {
    width: 1.005859375em;
}

.icon-DialogPrompt {
    width: 1.0009765625em;
}

.icon-DropDate {
    width: 0.98828125em;
}

.icon-Enrollment {
    width: 1.0087890625em;
}

.icon-GradeBook {
    width: 0.9970703125em;
}

.icon-Home {
    width: 1.001953125em;
}

.icon-NewStudentImport {
    width: 1.00390625em;
}

.icon-NoImage {
    width: 1.0048828125em;
}

.icon-Override {
    width: 1.0107421875em;
}

.icon-PageBreak {
    width: 1.0068359375em;
}

.icon-Purchasing {
    width: 0.99609375em;
}

.icon-Redo {
    width: 1.001953125em;
}

.icon-ReportCard {
    width: 1.0078125em;
}

.icon-Save {
    width: 1.0029296875em;
}

.icon-SaveAndBack {
    width: 1.0029296875em;
}

.icon-SaveAndForward {
    width: 1.0029296875em;
}

.icon-ScheduleBuilder {
    width: 0.982421875em;
}

.icon-StarTenPoints {
    width: 1.0205078125em;
}

.icon-StudentGrades {
    width: 1.00390625em;
}

.icon-StudentSchedule {
    width: 1.0263671875em;
}

.icon-SubReport {
    width: 0.994140625em;
}

.icon-TileBrowse {
    width: 1.0048828125em;
}
/*********************/
/*  Master Page CSS  */
.remoteBar {
    display: block;
    background-color: #4265ad;
    color: #fff;
    width: 100%;
    text-align: center;
    padding-bottom: 5px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

    .remoteBar:hover {
        color: #fff;
        text-decoration: none;
        background-color: #5a7dbd;
    }

.breadCrumbs {
    margin-top: 130px !important;
}

a.skip-nav {
    left: -999px;
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: -999;
}

    a.skip-nav:focus, a.skip-nav:active {
        color: #fff;
        background-color: #5575b4;
        left: auto;
        top: 0;
        width: 100%;
        height: 1.5em;
        margin: 0;
        padding: 10px;
        text-align: center;
        font-size: 1.2em;
        z-index: 999;
    }

#FollowUs {
    width: 110px;
    justify-content: flex-end;
    align-items: flex-end;
    text-align: right;
}

#SocialLinks {
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
}

#SkywardLogo {
    max-width: 160px;
}

#SoftwareColumn {
    max-width: 250px;
}

#HappeningColumn {
    max-width: 180px;
}

#AboutColumn {
    max-width: 100px;
}

#TrainingColumn {
    max-width: 170px;
}

#FollowUs {
    display: none;
}

@media (min-width: 601px) and (max-width: 768px) {
    .remoteBar {
        font-size: 11pt;
    }

    #FollowUs {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        text-align: center;
        margin: 0px !important;
    }

    #tdFollowUs {
        display: none;
    }

    #SocialLinks {
        justify-content: center;
        align-items: center;
        position: relative;
        text-align: center;
        margin: 0px !important;
    }

    #SubscribeBlogs {
        margin-bottom: 30px;
    }

    #SkywardLogo {
        max-width: 100%;
        width: 100%;
    }

    #SoftwareColumn {
        max-width: 100%;
        width: 37% !important;
    }

    #HappeningColumn {
        max-width: 100%;
        width: 37% !important;
    }

    #AboutColumn {
        max-width: 100%;
        width: 37% !important;
    }

    #TrainingColumn {
        max-width: 100%;
        width: 37% !important;
    }
}

@media (min-width: 601px) and (max-width: 850px) {
    .breadCrumbs {
        margin-top: 110px !important;
    }
}

@media (min-width: 50px) and (max-width: 600px) {
    .breadCrumbs {
        margin-top: 110px !important;
    }

    .remoteBar {
        font-size: 11pt;
    }

    #FollowUs {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        text-align: center;
        margin: 0px !important;
    }

    #tdFollowUs {
        display: none;
    }

    #SocialLinks {
        justify-content: center;
        align-items: center;
        position: relative;
        text-align: center;
        margin: 0px !important;
    }

    #SubscribeBlogs {
        margin-bottom: 30px;
    }

    #SkywardLogo {
        max-width: 100%;
        width: 100%;
    }

    #SoftwareColumn {
        max-width: 100%;
        width: 90% !important;
    }

    #HappeningColumn {
        max-width: 100%;
        width: 90% !important;
    }

    #AboutColumn {
        max-width: 100%;
        width: 90% !important;
    }

    #TrainingColumn {
        max-width: 100%;
        width: 90% !important;
    }
}

/************************************************************************************************/
