/*-----------------------------------------------------------------------------------*/
/*-------------------------------HEADER.CSS------------------------------------------*/
/*-----------------------------------------------------------------------------------*/

/*fixed body html js script */

body.fixed {
	
	max-height: 100vh !important;
	overflow-y: hidden;
}


header.headerfixed {
	position: fixed !important;
}

/*end fixed body html js script */

header {
	transition: all ease-in-out 0.2s;
	-webkit-transition: all ease-in-out 0.2s;
	-moz-transition: all ease-in-out 0.2s;
	-o-transition: all ease-in-out 0.2s;
    text-align: center;
	box-shadow: 0 2px 2px rgba(80,80,80,0.30);
	top: 0;
	z-index: 20;
    background-color: rgba(255,255,255,1.00);
	position: -webkit-sticky;
	position: sticky;
	width: 100%;
	padding: 0.5em 0;
}

header .logo {
	line-height: 70px;
   	display: inline-block;
	vertical-align: middle;
	text-align: left;
}

header .logo a {
	display: block;
}

header .logo img {
	max-width: auto;
	width: auto;
	max-height: 80px;
	display: inline-block;
	vertical-align: middle;
}

header .search-bar {
    color: rgba(80,80,80,1.00);
    border-radius: 5px;
	line-height: 80px;
	font-size: 14px;
}

header .search-bar form input {
	line-height: normal;
	border:0;
}

header .search-bar form input[type="text"] {
	padding: 0.7rem 1rem;
	display: inline-block;
	border-radius: 3px 0 0 3px;
	width: 73%;
	border:1px solid rgba(218,218,218,1.00);
	background-color: rgba(242,242,242,1.00);
	font-size: 0.85rem;
}

header .search-bar form input[type="submit"] {
	padding: 0.7rem 1rem;
	display: inline-block;
	border-radius: 0 3px 3px 0;
	border:1px solid rgba(25,69,83,1.00);
	background-color: rgba(25,69,83,1.00);
	color: rgba(255,255,255,1.00);
	font-weight: 700;
	font-size: 0.85rem;
	width: 25%;
	transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
}

header .search-bar form input[type="submit"]:hover {
	background-color: rgba(25,69,83,0.80);

}

header .search-bar form ::-webkit-input-placeholder {color:rgba(190,190,190,1.00);}
header .search-bar form ::-moz-placeholder {color:rgba(190,190,190,1.00);} /* firefox 19+ */
header .search-bar form :-ms-input-placeholder {color:rgba(190,190,190,1.00);} /* ie */
header .search-bar form :-moz-placeholder {color:rgba(190,190,190,1.00);}

header .social-links {
	background-color: rgba(189,131,37,0);
	line-height: 70px;
}

header .social-links a,
header .social-links p {
	transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	margin: 0 5px;
    font-size: 30px;
	color:rgba(0,113,188,1.00);
	/*text-shadow: 2px 2px rgba(0,0,0,0.5);*/
}

header .social-links-green a,
header .social-links-green p {
	color:rgba(1,130,15,1.00);
}

header .social-links a:hover,
header .social-links p:hover {
	opacity: 0.80;
}

header .social-links p.button-btn-search-nav {
	display: inline-block;
	margin-left: 1em;
	cursor: pointer;
}

header .menu-nav {
	line-height: 70px;
}

header .menu-nav .container-fluid {
	padding: 0; /*fix-bootstrap*/
}

header nav {
	text-align: center;
}

header nav ul li {
	transition: all ease-in-out 0.2s;
	-webkit-transition: all ease-in-out 0.2s;
	-o-transition: all ease-in-out 0.2s;
	-moz-transition: all ease-in-out 0.2s;
	position: relative;
	display: inline-block;
	margin: 0;
	padding: 0 0.4rem;
	color:rgba(25,69,83,1.00);
	font-size: 1.1em;
	font-weight: 700;
	border-bottom: 5px solid rgba(189,131,37,0);
	/*text-shadow: 2px 2px rgba(0,0,0,0.5);*/
}

/*header nav ul li a::before,
header nav ul li.toggle ul li a::before  {
	content: '';
	display: inline-block;
	width: 5px;
	height: 5px;
	background-color: rgba(25,69,83,1.00);
	margin-right: 10px;
	vertical-align: middle;
}

header nav ul li:first-child a::before {
	display: none;
}*/

header nav ul li i {
	margin: 0 0 0 5px;
	font-size: 0.6em;
}

header nav ul li a {
	display: block;
	color:rgba(50,50,50,1.00);
	/*text-shadow: 2px 2px rgba(0,0,0,0.5);*/
	text-align: center;
}

header nav ul li:hover {
	border-bottom: 5px solid rgba(50,50,50,1.00);
	text-decoration: none;
}

header nav ul li a:hover {
	text-decoration: none;
	color:rgba(50,50,50,1.00);
	opacity: 0.80;
	background-position: center bottom;
	background-repeat: repeat-x;
	background-size: 2px 2px;

}

/* START CUSTOM MENU COLORS
----------------------------*/

header nav ul li.blue a {
	color: rgba(0,133,188,1.00);
}
header nav ul li.darkblue a {
	color: rgba(1,71,137,1.00);
}
header nav ul li.red a {
	color: rgba(220,0,0,1.00);
}
header nav ul li.orange a {
	color: rgba(255,83,14,1.00);
}
header nav ul li.green a {
	color: rgba(1,130,15,1.00);
}

/* THE END CUSTOM MENU COLORS
----------------------------*/


header nav ul li.blue:hover {
	background-color: rgba(0,0,0,0.05);
	border-bottom:5px solid rgba(0,133,188,1.00);
}
header nav ul li.darkblue:hover {
	background-color: rgba(0,0,0,0.05);
	border-bottom:5px solid rgba(1,71,137,1.00);
}
header nav ul li.red:hover {
	background-color: rgba(0,0,0,0.05);
	border-bottom:5px solid rgba(220,0,0,1.00);
}
header nav ul li.orange:hover {
	background-color: rgba(0,0,0,0.05);
	border-bottom:5px solid rgba(255,83,14,1.00);
}
header nav ul li.green:hover {
	background-color: rgba(0,0,0,0.05);
	border-bottom:5px solid rgba(1,130,15,1.00);
}


/***********/

header nav ul li ul {
	background-color: rgba(242,242,242,1.00);
	/*border: 1px solid rgba(0,0,0,0.2);*/
	border-radius: 0 3px 3px 3px;
	position: absolute;
	margin:2em 0 0 -1em;
	padding: 1em;
	width: 17em;
	display: none;
	min-width: 200px;
	transition: all ease-in-out 0.9s;
	-webkit-transition: all ease-in-out 0.9s;
	-o-transition: all ease-in-out 0.9s;
	-moz-transition: all ease-in-out 0.9s;
	box-shadow: 0 2px 2px rgba(80,80,80,0.30);
	z-index: 5;
}

header nav ul li ul li {
	background-image: none;
	padding: 0;
	margin: 0;
	float: none;
	display: block;
	line-height:1.5em;
	transition: all ease-in-out 0.2s;
	-webkit-transition: all ease-in-out 0.2s;
	-o-transition: all ease-in-out 0.2s;
	-moz-transition: all ease-in-out 0.2s;
	border:0;
}

header nav ul li ul li:last-child {
	width: 100%;
	background: none;
}

header nav ul li ul li a {
	width: 100%;
	display: inline-block;
	color: rgba(255,255,255,1.00);
	border-bottom: 1px solid rgba(0,0,0,0.10);
	text-shadow: none;
	text-align: left;
	font-weight: 700;
	font-size: 0.8rem;
	transition: all ease-in-out 0.2s;
	-webkit-transition: all ease-in-out 0.2s;
	-o-transition: all ease-in-out 0.2s;
	-moz-transition: all ease-in-out 0.2s;
	padding: 0.5em 0;
}

header nav ul li ul li:last-child a {
	border-bottom: 0;
}

header nav ul li:hover ul {
	display: block;
	margin-top: 5px;
}

header nav ul li ul li:hover {
	border-bottom: 0px solid rgba(0,0,0,0.5);
}

header nav ul li ul li a:hover {
	color: rgba(255,255,255,0.8);
}


/* START CUSTOM SUBMENU COLORS
----------------------------*/

header nav ul li.blue ul li a:hover {
	color: rgba(0,133,188,0.70);
}
header nav ul li.darkblue ul li a:hover {
	color: rgba(1,71,137,0.70);
}
header nav ul li.red ul li a:hover {
	color: rgba(220,0,0,0.70);
}
header nav ul li.orange ul li a:hover {
	color: rgba(255,83,14,0.70);
}
header nav ul li.green ul li a:hover {
	color: rgba(1,130,15,0.70);
}

/* THE END CUSTOM SUBMENU COLORS
----------------------------*/

/* COLUMNS MEGA-SUBMENU
----------------------------*/

nav ul li.sub-menu-col-2 {}

nav ul li.sub-menu-col-2 ul {
	width: 25em;
	column-count: 2;
	column-gap: 4em;
	column-rule: solid 1px rgba(200,200,200,1.00);
}

nav ul li.sub-menu-col-3 {}

nav ul li.sub-menu-col-3 ul {
	width: 36em;
	column-count: 3;
	column-gap: 4em;
	column-rule: solid 1px rgba(200,200,200,1.00);
}


/* THE END COLUMNS MEGA-SUBMENU
----------------------------*/

.header-global-menu {
	padding: 0.5em 0 0;
}

#nav-global {
	background-color: rgba(40,40,40,1.00);
	padding: 0.8rem 0;
	margin-top: 0.3rem;
}

#nav-global .menu-nav {
	line-height: normal;
}

#nav-global nav ul li {
	color: rgba(255,255,255,1.00);
	font-weight: 500;
}

#nav-global nav ul li a {
	color: rgba(255,255,255,1.00);
}

#nav-global nav ul li:hover {
	border-bottom: 5px solid rgba(166,16,16,1.00);
	text-decoration: none;
}

#nav-global nav ul li ul {
	background-color: rgba(112,112,112,1.00);
	border-radius: 0 10px 0 10px;
}

#nav-global nav ul li ul li {
	padding: 0;
}

#nav-global nav ul li ul li a {
	border-bottom: 1px solid rgba(255,255,255,0.2);
	font-weight: 500;
	font-size: 0.8rem;
}

#nav-global nav ul li ul li:hover {
	border-bottom: 0px solid rgba(0,0,0,0.5);
}

/*---------------------------*/

header .close-menu-nav,
header .close-button-btn-one,
header .close-button-btn-search {
	color: rgba(0,113,188,1.00);
	font-weight: 700;
	font-size: 1.5rem;
	border-radius: 5px;
	float: right;
	padding: 0;
	margin-left: 1rem;
}

header .menu-nav .active,
header .close-button-btn-one .active,
header .close-button-btn-search .active {
	color: rgba(255,255,255,1.00);
	background-color: rgba(1,71,137,1.00);
	box-shadow: inset 0 0 2px rgba(0,0,0,0.5);
}

header .open-link {
	background-color: rgba(0,113,188,1.00);
	display: inline-block;
	width: 40px;
	border-radius: 5px;
	color: rgba(255,255,255,1.00);
	margin-right: 5px;
}

.mobile-menu-nav {
	display: none;
	z-index: 50;
	text-align: left;
	background-color: rgba(0,133,188,0.6);
	background-image: linear-gradient(90deg,rgba(1,71,137,0.95) 0%,rgba(0,113,188,0.95) 100%);
	padding: 2rem 0;
	min-width: 70%;
	height: 100vh;
	width: 100%;
	position: absolute;
	top: 0;
	overflow-y: scroll;
}

.mobile-menu-nav p.close-nav {
	font-weight: lighter;
	color: rgba(255,255,255,1.00);
	background-color: rgba(1,71,137,1.00);
	border: 1px solid rgba(1,71,137,1.00);
	display: inline-block;
	font-size: 1em;
	padding: 0.5em 1.25em;
	float: right;
	cursor: pointer;
	border-radius: 5px;
	transition: all ease-in-out 0.2s;
	-webkit-transition: all ease-in-out 0.2s;
	-moz-transition: all ease-in-out 0.2s;
	-o-transition: all ease-in-out 0.2s;
	text-transform: none;
}

.mobile-menu-nav ul {
	margin-top: 2em;
	padding: 1em;
}

.mobile-menu-nav ul li { 
	color: rgba(255,255,255,1.00);
	border-bottom: 1px solid rgba(179,179,179,0.2);
	padding: 0;
	margin: 0;
	line-height: 40px;
	position: relative;
	font-weight: 700;
}

.mobile-menu-nav ul li .fas {
	position: absolute;
	right: 0;
	top: 10px;
}

.mobile-menu-nav ul li a {
	color: rgba(255,255,255,1.00);
	display: block;
}
/*
.mobile-menu-nav ul li a::before {
	content: '';
	display: inline-block;
	width: 5px;
	height: 5px;
	background-color: rgba(179,179,179,1.00);
	margin-right: 10px;
	vertical-align: middle;
}
*/
.mobile-menu-nav ul li.toggle ul {
	display: none;
	margin-left:0;
	margin-top: 0;
	padding-left: 1rem;
	padding-top: 0;
	background-color: rgba(0,0,0,0.3);
}
/*
.mobile-menu-nav ul li ul li a {
	 font-weight: 400;
	 padding: 0 1rem 0 0;
	}
*/

.mobile-menu-nav ul li ul li:last-child {
	border:0;
}

.mobile-menu-nav ul li ul li a::before {
	content: '';
	display: inline-block;
	width: 5px;
	height: 5px;
	background-color: rgba(255,255,255,1.00);
	margin-right: 10px;
	vertical-align: middle;
}

.mobile-menu-nav .social-icons {
	display: block;
	margin-top: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(61,52,42,0.2);
}

.mobile-menu-nav .social-icons img {
	width: 15px;
}

/** mobile search **/

.mobile-search-form {
	display: none;
	z-index: 50;
	text-align: left;
	background-color: rgba(0,133,188,0.6);
	background-image: linear-gradient(90deg,rgba(1,71,137,0.95) 0%,rgba(0,113,188,0.95) 100%);
	padding: 2rem 0;
	height: 100vh;
	width: 100%;
	position: absolute;
	top: 0;
	/*border-top: 1px solid rgba(212,212,212,1.00);*/
}

.mobile-search-form p.close-search {
	font-weight: lighter;
	color: rgba(255,255,255,1.00);
	background-color: rgba(1,71,137,1.00);
	border: 1px solid rgba(1,71,137,1.00);
	display: inline-block;
	font-size: 1em;
	padding: 0.5em 1.25em;
	float: right;
	cursor: pointer;
	border-radius: 5px;
	transition: all ease-in-out 0.2s;
	-webkit-transition: all ease-in-out 0.2s;
	-moz-transition: all ease-in-out 0.2s;
	-o-transition: all ease-in-out 0.2s;
}

.mobile-search-form p.close-search:hover {
	opacity: 0.7;
}

.mobile-search-form p.description {
	margin-top: 25vh;
	margin-bottom: 1em;
	color: rgba(255,255,255,1.00);
	font-size: 2em;
	font-weight: 500;
}

.mobile-search-form  form {
	line-height: normal;
	vertical-align: middle;
	display: inline-block;
	width: 100%;
}

.mobile-search-form  form input {
	border:0;
}

.mobile-search-form  form input[type="text"] {
	padding: 15px 20px;
	width: 100%;
	border: 1px solid rgba(222,222,222,1.00);
	background-color: rgba(242,242,242,1.00);
	border-radius: 5px;
}

.mobile-search-form  form input[type="submit"] {
	padding: 0.6em 1em;
	margin-top: 1em;
	background-color: rgba(255,162,0,1.00);
	color: rgba(255,255,255,1.00);
	border-radius: 5px;
	width: 100%;
	transition: all ease-in-out 0.2s;
	-webkit-transition: all ease-in-out 0.2s;
	-moz-transition: all ease-in-out 0.2s;
	-o-transition: all ease-in-out 0.2s;
	font-size: 1.2em;
}

.mobile-search-form  form input[type="submit"]:hover {
	opacity: 0.7;
}

.mobile-search-form  form ::-webkit-input-placeholder {color:rgba(190,190,190,1.00);}
.mobile-search-form  form ::-moz-placeholder {color:rgba(190,190,190,1.00);} /* firefox 19+ */
.mobile-search-form  form :-ms-input-placeholder {color:rgba(190,190,190,1.00);} /* ie */
.mobile-search-form  form :-moz-placeholder {color:rgba(190,190,190,1.00);}

.mobile-search-form .suggestion-links {
	text-align: left;
}

.mobile-search-form .suggestion-links p {
	font-size: 1.1rem;
	font-weight: 700;
	color: rgba(255,255,255,1.00);
	text-transform: uppercase;
	border-bottom: 1px solid rgba(255,255,255,0.30);
}

.mobile-search-form .suggestion-links ul {}
.mobile-search-form .suggestion-links ul li {
	margin-top: 1rem;
	font-weight: 500;
}
.mobile-search-form .suggestion-links ul li a {
	background-color: rgba(0,0,0,0.40);
	color: rgba(255,162,0,1.00);
	display: block;
	padding: 1rem;
	border-radius: 5px;
}

.mobile-btn-one {
	border-top: 1px solid rgba(212,212,212,1.00);
	text-align: left;
	display: none;
	padding: 20px 0;
	background-color: rgba(255,255,255,1.00);
}

.mobile-btn-one .unit {
	line-height: normal;
	display: inline-block;
	margin: 10px 0;
	background-color: rgba(255,255,255,1.00);
	padding: 15px;
	box-shadow: 0 0 15px rgba(0,0,0,0.1);
	border-bottom: 5px solid rgba(189,131,37,1.00);
	width: 100%;
}

/* START COLUMNS MEGA-MENU
----------------------------*/

.mega-menu-wide {
	display: none;
	z-index: 50;
	text-align: left;
	background-color: rgba(0,133,188,0.6);
	background-image: linear-gradient(90deg,rgba(1,71,137,0.95) 0%,rgba(0,113,188,0.95) 100%);
	padding: 2rem 0;
	height: 100vh;
	width: 100%;
	position: absolute;
	top: 0;
	/*border-top: 1px solid rgba(212,212,212,1.00);*/
}

.mega-menu-wide p.close-mega-menu-wide {
	font-weight: 300;
	color: rgba(255,255,255,1.00);
	background-color: rgba(1,71,137,1.00);
	border: 2px solid rgba(1,71,137,1.00);
	display: inline-block;
	font-size: 1em;
	padding: 0.5em 1.25em;
	float: right;
	cursor: pointer;
	border-radius: 5px;
	transition: all ease-in-out 0.2s;
	-webkit-transition: all ease-in-out 0.2s;
	-moz-transition: all ease-in-out 0.2s;
	-o-transition: all ease-in-out 0.2s;
}

.mega-menu-wide p.close-mega-menu-wide:hover {
	opacity: 0.7;
}

.mega-menu-wide p.description {
	margin-top: 2vh;
	margin-bottom: 1em;
	color: rgba(255,255,255,1.00);
	font-size: 1.2rem;
	font-weight: 700;
	text-align: center;
	text-align: left;
	padding: 0 0 1rem;
	border-bottom: 1px solid rgba(255,255,255,0.2);
}

.mega-menu-wide ul {
	width: 100%;
	float: left;
	text-align: left;
}
.mega-menu-wide ul li {
	font-weight: 700;
	font-size: 0.9rem;
	margin-bottom: 1rem;
}
.mega-menu-wide ul li a {
	color: rgba(255,255,255,1.00);
	background-color: rgba(1,71,137,1.00);
	display: block;
	padding: 0.5rem;
	border-radius: 3px;
	text-align: center;
}

.mega-menu-wide ul li a:hover {
	opacity: 0.8;
}

.mega-menu-wide .menu-col-3 ul {
	column-count: 3;
	column-gap: 4em;
	column-rule: solid 1px rgba(255,255,255,0.2);
}

/* THE END COLUMNS MEGA-MENU
----------------------------*/

.mega-menu-wide-green {
	background-color: rgba(1,130,15,0.60);
	background-image: linear-gradient(90deg,rgb(0,65,7,0.95) 0%,rgb(1,130,15,0.95) 50%);
}

.mega-menu-wide p.close-mega-menu-wide-green {
	background-color: rgba(0,65,7,1.00);
	border: 2px solid rgba(0,65,7,1.00);
}

.mega-menu-wide-green ul li a {
	background-color: rgba(0,65,7,1.00);
}

/* START CUSTOM MOBILE UI COLORS
----------------------------*/

header.header-green .close-menu-nav,
header.header-green .close-button-btn-one,
header.header-green .close-button-btn-search {
	color: rgba(0,65,7,1.00);
}

header.header-green .mobile-menu-nav {
	background-color: rgba(1,130,15,0.6);
	background-image: linear-gradient(90deg,rgb(0,65,7,0.95) 0%,rgb(1,130,15,0.95) 50%);
}

header.header-green .mobile-menu-nav p.close-nav {
	background-color: rgba(0,65,7,1.00);
	border: 1px solid rgba(0,65,7,1.00);
}

.mobile-search-form-green {
	background-color: rgba(1,130,15,0.60);
	background-image: linear-gradient(90deg,rgb(0,65,7,0.95) 0%,rgb(1,130,15,0.95) 50%);
}

.mobile-search-form-green p.close-search {
	background-color: rgba(0,65,7,1.00);
	border: 2px solid rgba(0,65,7,1.00);
}

.mobile-search-form-green form input[type="submit"] {
	background-color: rgba(0,65,7,1.00);
}

.mobile-search-form-green .suggestion-links ul li a {
	color: rgba(255,255,255,1.00);
}

/* THE END CUSTOM MOBILE UI COLORS
----------------------------*/

@media (min-width:992px) and (max-width:1199px) {		
	header nav ul li {
		font-size: 0.95rem;
	}
}