@charset "utf-8";

/* CSS Document */

#navigation {
    list-style: none;
}

#navigation li {
    float: left;
    margin: 0;
    padding: 0px;
    position: relative;
    background-image: none;
    z-index: 400;
    padding: 0px 20px;
}


/* #navigation li:first-child {
    padding-left: 0;
}
 */


/* #navigation li:last-child {
    padding-right: 0;
} */

#navigation a {
    font-size: 14px;
    color: #333333;
    text-transform: uppercase;
    line-height:20px;
    letter-spacing: 1px;
    font-family: 'BebasRegular';
    text-decoration: none;
    position: relative;
    background-color: transparent;
    border-radius: 0px;
}

#navigation a,
#navigation a.active,
#navigation a:hover {
    text-decoration: none;
}

#navigation a.active,
#navigation a:hover {
    color: #ef4933;
}


/* main level link hover */

#navigation .current a,
#navigation li:hover > a {
    text-decoration: none;
}

#navigation li a::after {
    content: " ";
    display: block;
    width: 0%;
    height: 3px;
    background-color: #ef4933;
    position: absolute;
    bottom: -6px;
    left: 50%;
    transition: ease-in 0.3s;
}

#navigation li a.on {
    color: #ef4933;
}
#navigation li a.on::after{
    content: " ";
    display: block;
    height: 3px;
    background-color: #ef4933;
    position: absolute;
    bottom: -6px;
    left:0;
    transition: ease-in 0.3s;
    width: 100%;
}

#navigation li a.active::after,
#navigation li a:hover::after {
    width: 100%;
    left: 0px;
}


/* sub levels link hover */

#navigation ul li:hover a,
#navigation li:hover li a {
    text-indent: 0px;
    background: none;
    background-color: #f79239;
    color: #ffffff;
    display: block;
    float: none;
    margin: 0px;
    padding: 12.5px 15px;
    font-family: 'latomedium';
    font-size: 14px;
    line-height: normal;
    border-top: 1px solid #fff;
    height: auto;
    width: 205px;
    box-sizing: border-box;
}

#navigation ul li:hover li:first-child a,
#navigation li:hover li:first-child a {
    border-top: 0;
}

#navigation ul a:hover {
    background: none !important;
    background-color: #000 !important;
    color: #f79239 !important;
    text-decoration: none;
}


/* dropdown */

#navigation li:hover > ul {
    display: block;
    /*border:1px solid #37b3d1;*/
}


/* level 2 list */

#navigation ul {
    display: none;
    margin: 0;
    padding: 0;
    width: auto;
    position: absolute;
    top: 40px;
    left: 15px;
    /*background-color:#0b007e;*/
}

#navigation ul li {
    float: none;
    margin: 0;
    padding: 0;
}

#navigation ul a {
    font-weight: normal;
}


/* level 3+ list */

#navigation ul ul {
    left: 181px;
    top: -3px;
}


/* clearfix */

#navigation:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}


/*#navigation {
    display: inline-block;
}*/

html[xmlns] #navigation {
    display: block;
}

* html #navigation {
    height: 1%;
}


/****s****/

.menuNew li .has-submenu {
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 111;
    width: 38px;
    height: 38px;
    color: #fff;
    line-height: 38px;
    font-size: 18px;
    text-align: center;
    border-left: 1px solid #fff;
    cursor: pointer;
}


/**end**/

.menuNew {
    display: none;
}

.menu-link {
    display: none;
    float: right;
    text-decoration: none;
    padding: 19px 10px;
}

.menuNew {
    -webkit-transition: all 0.8s ease-in-out;
    -moz-transition: all 0.8s ease-in-out;
    -ms-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
}

.menuNew ul {
    /* For Main Nav */
    padding: 0px;
    margin: 0px;
    list-style: none;
    position: relative;
    display: inline-table;
    font-size: 14px;
    line-height: 38px;
    text-transform: uppercase;
    z-index: 400;
}

.menuNew ul li {
    margin: 0px;
    position: relative;
}

.menuNew > li > ul.sub-menu {
    /* For Sub Nav Style */
    padding: 0px 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
}

.menuNew ul:after {
    content: "";
    clear: both;
    display: block;
}

.menuNew ul li {
    padding: 0px;
    background-image: none;
}

.menuNew ul li > a {
    /* For Main Nav List Height and TRBL Padding  */
    padding: 0px 22px;
}

.menuNew ul ul {
    /* Sub Nav Style*/
    display: none;
    position: absolute;
    top: 100%;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.menuNew ul li:hover > ul {
    display: block;
}

.menuNew ul ul > li {
    position: relative;
}

.menuNew ul ul > li a {
    /* Sub Nav List Style */
    padding: 10px 15px;
    height: auto;
    text-transform: none;
    font-size: 13px;
    line-height: normal;
    -webkit-transition: background-color 0.3s ease-in-out;
    -moz-transition: background-color 0.3s ease-in-out;
    -ms-transition: background-color 0.3s ease-in-out;
    -o-transition: background-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
}

.menuNew ul ul ul {
    position: absolute;
    left: 100%;
    top: 0;
}

.ParentLink {
    display: none;
}

@media only screen and (max-width: 1024px) {
    .menuNew {
		clear: both;
		min-width: inherit;
		float: none;
		display: block;
		width: 100%;
		text-align: left;
	}
    a.menuNew-link {
        display: block;
        float: right;
        width: auto;
        padding: 6px 8px;
        text-align: center;
        margin-right: 8px;
        margin-top: 8px;
        position: relative;
    }
	a.menuNew-link {
    	margin-top: -10px;
	}
	a.menuNew-link {
		display: block;
		color: #fff;
		background-color: transparent;
		/* background-color: transparent; */
		float: none;
		width: auto;
		padding: 0px 8px;
		text-align: center;
		border: 2px solid #fff;
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		border-radius: 5px;
		margin-right: 0px;
		margin-top: 0px;
		position: relative;
	}
    a.menuNew-link p {
        display: block;
        background-color: #fff;
        width: 25px;
        margin: 0 auto;
        margin-top: 3px;
        margin-bottom: 4px;
        padding: 0;
        text-align: center;
        height: 3px;
    }
    .menuNew {
        clear: both;
        min-width: inherit;
        float: none;
    }
    .menuNew,
    .menuNew > ul ul {
        /* For Nav Background Color and Style */
        overflow: hidden;
        max-height: 0;
        -webkit-transition: all 0.8s ease-in-out;
        -moz-transition: all 0.8s ease-in-out;
        -ms-transition: all 0.8s ease-in-out;
        -o-transition: all 0.8s ease-in-outt;
        transition: all 0.8s ease-in-out;
        position: absolute;
        z-index: 115;
    }
    .menuNew > li > ul.sub-menu {
        padding: 0px;
        border: none;
        -webkit-border-radius: 0px;
        -moz-border-radius: 0px;
        border-radius: 0px;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        -webkit-background-clip: padding-box;
        -moz-background-clip: padding;
        background-clip: padding-box;
    }
    .menuNew.active,
    .menuNew > ul ul.active {
        max-height: 880px;
    }
    .menuNew ul {
        display: inline;
		padding: 0px;
		margin: 0px;
		list-style: none;
		position: relative;
		display: block;
		font-size: 14px;
		line-height: 38px;
		text-transform: uppercase;
		z-index: 400;
    }
    .menuNew > ul {
        /* For Nav Border */
       /* border-top: 1px solid #d573ba;*/
    }
    .menuNew li,
    .menuNew > ul > li {
        display: block;
    }
    .menuNew li a {
        display: block;
        padding: 1px;
        position: relative;
    }
    .menuNew li a:hover {
        /* For Nav Hover Bg Color */
        /*background-color:#c626a2;*/
    }
    .menuNew li.has-submenu > a:after {
        content: '+';
        position: absolute;
        top: -10px;
        right: 0;
        display: block;
        font-size: 28px;
        padding: 8px 10px;
        color: #FFF;
    }
    .menuNew li.has-submenu > a.active:after {
        content: "-";
        font-size: 28px;
        right: 5px;
    }
    .menuNew li.has-submenu span {
        display: none !important;
    }
    .menuNew ul ul > li a {
        /* For Sub Nav style */
        color: #FFF;
        height: auto;
        padding: 7px 10px 7px 40px;
    }
    .menuNew ul ul > li a:hover {
        /*background-color:#c626a2;*/
    }
    .menuNew ul ul,
    .menuNew ul ul ul {
        display: inherit;
        position: relative;
        left: auto;
        top: auto;
        box-shadow: none;
        border: none;
    }
    .menuNew li .has-submenu {
        position: absolute;
        right: 0px;
        top: 0px;
        z-index: 111;
        width: 38px;
        height: 38px;
        color: #fff;
        line-height: 38px;
        font-size: 18px;
        text-align: center;
        border-left: 1px solid #3A4D80;
        cursor: pointer;
    }
	.menuNew ul li {
		border-top: 1px solid #fff;
		font-family: 'myriad_set_prothin';
		text-transform: uppercase;
		line-height: 28px;
		font-size: 18px;
		height: auto;
		padding: 0px;
		background-image: none;
		position: relative;
	}
}

@media only screen and (max-width: 1024px) {
    a.menu-link {
        /* For  Screen Nav Button Style */
        /*margin-top:-10px;*/
    }
    .TopArrow {
        display: block;
    }
    /*  Color  Over Hover Chang  */
    .menuNew ul li a,
    .menuNew ul li a:hover {
        background-color: #03b3d0;
        /*background-color: rgba(0, 0, 0, 0.97);*/
        color: #fff;
    }
    .menuNew ul li {
        border-top: 1px solid rgb(8, 165, 191);
        font-size: 14px;
        color: #fff;
        text-transform: uppercase;
        line-height: 22px;
        letter-spacing: 1px;
        font-family: 'Bodoni MT';
    }
	.menuNew ul li a{
		display:block;	
		padding:9px 20px;
	}
    /*.menuNew ul li:last-child a,
    .menuNew ul li:last-child a:hover {
        background-color: #77b3bb;
    }*/
    /*  End  */
}

@media only screen and (max-width: 768px) {
    a.menuNew-link {
        /* For  Screen Nav Button Style */
        /*margin-top:-70px;
        margin-right:50%;*/
    }
}

@media only screen and (max-width: 524px) {
    a.menuNew-link {
        /* For  Screen Nav Button Style */
        /*margin-top:-40px;
        margin-right:6%;*/
    }
}

.ResponsiveMenu {
    position: relative;
    width: 100%;
    top: 0px;
    height: 50px;
    background-color: #263842;
    display: none;
}
.MenuNewStyle {
    color: #fff;
    background-color: #03b3d0;
    font-size: 22px;
    line-height: 32px;
    height:auto;
    text-transform: uppercase;
    font-family: 'Bodoni MT';
    padding: 12px 20px;
    width: 445px;
    margin: 18px auto;
    letter-spacing: 1px;
}
.MenuNewStyle i {
    margin-left: 15px;
}