/* Highest priority styling */
/*
CORE
HEADER
MENUS
*/

/*******************************************************************************************
CORE - Top-level styling
*******************************************************************************************/


:root {
	font-size: 18px;
	--body-text-color: #000;
	--primary-color: #063B52;
	--secondary-color: #F47920;
	--alternate-color: #8FD0DD;
	--gray-color: #001D27;
	--light-gray-color: #ccc;
	--body-font-family: 'Hind', sans-serif;
	--heading-font-family:'Work Sans', sans-serif;
	--fa-caret-right: '\f0da';
	--fa-angle-right: '\f105';
	--fa-plus: '\f067';
	--fa-minus: '\f068';
}

@media screen and (min-width: 768px) {

	/*TABLET*/
	:root {
		font-size: 18px;
	}
}

html {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	display: block !important;
	line-height: 1.5;
	color: #000;
	font-size: 18px;
	font-family: var(--body-font-family);
	margin: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background-color:#fff;
	font-weight:300;
}

*:focus {
	outline: auto;
}

*,
*:before,
*:after {
	-webkit-box-sizing: inherit;
	-moz-box-sizing: inherit;
	box-sizing: inherit;
}

/* CORE > Headings and Paragraphs */
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 20px;
	font-family: var(--heading-font-family);
	line-height: 1.2;
	color:#000
}

h1 {
	font-size: 36px;
	font-weight:500;
    color:var(--primary-color);
 
}

h2 {
	font-size: 30px;
	font-weight:300;
    color:var(--body-text-color);
}

h3 {
	font-size: 24px;
	font-weight:500;
    color:var(--body-text-color);
 
}

h4 {
	font-size: 20px;
	font-weight:600;
	color:var(--secondary-color);
 
}
  
h5,
h6 {
	font-size: 18px;
} 

p {
	margin: 0 0 30px;
	font-size: 18px;
	color:var(--body-text-color);
	line-height:30px;
}

img {
  max-width: 100%;
  height: auto;
}
/* CORE > Links and Buttons */

a {
	color: var(--primary-color);
	text-decoration: underline;
	font-weight:600
}

a:hover,
a:focus {
    color: var(--secondary-color);
	text-decoration: underline;
	font-weight:600; 
}

 

a.no-underline {
	text-decoration: none;
}

a.no-underline:hover,
a.no-underline:focus {
	text-decoration: underline;
}

a,
button,
.button {
	-webkit-transition: color 200ms ease-out, background 200ms ease-out, transform 60ms ease-in;
	-o-transition: color 200ms ease-out, background 200ms ease-out, transform 60ms ease-in;
	transition: color 200ms ease-out, background 200ms ease-out, transform 60ms ease-in;
}

button, .button {
 font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
 font-family: var(--heading-font-family);
 padding: 19px 15px 19px;
	text-transform:uppercase;
	text-decoration:none;
	background:#f47920;
}



button:active,
.button:active {
	transform: translateY(1.5px);
}

button:hover,
button:focus,
.button:hover,
.button:focus {
	background-color:var(--primary-color);
	color: #fff;
	text-decoration: none;
	 font-weight: 500;
}






/* CORE > Layout */
.columns,
.column {
	float: left;
	padding: 0 15px;
}

.row,
.row-wide,
.row-narrow {
	max-width: 1200px;
	margin-right: auto;
	margin-left: auto;
}
.header-desktop .row {
	max-width: 95%;
	margin-right: auto;
	margin-left: auto;
}


.row-narrow {
	max-width: 1120px;
}

.row-wide {
	max-width: 1599px;
}

.row:after {
	clear: both;
}

.row:after,
.row:before {
	display: table;
	content: ' ';
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-ms-flex-order: 1;
	order: 1;
}

/* CORE > Utility Classes */
.no-float {
	float: none;
}

.no-margin {
	margin: 0 !important;
}

.no-padding {
	padding: 0 !important;
}

.no-min-height {
	min-height: 0;
}

.position-static,
.static {
	position: static !important;
}

.position-relative,
.relative {
	position: relative !important;
}

.block {
	display: block;
}

.full-width {
	width: 100%;
}

.full-height {
	height: 100%;
}

.center,
.align-center,
.text-center {
	text-align: center;
}

.right,
.align-right,
.text-right {
	text-align: right;
}

.body-font {
	font-family: var(--body-font-family);
}

.header-font {
	font-family: var(--header-font-family);
}

.uppercase {
	text-transform: uppercase;
}

.hide {
	display: none;
}

.visually-hidden {
	border: none !important;
	clip: rect(0 0 0 0) !important;
	height: 1px !important;
	margin: -1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	white-space: nowrap !important;
	width: 1px !important;
}

.flex-container {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}

.flex-align-vertical {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	align-items: center;
}

.flex-align-horizontal {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	text-align: center;
}

.two-buttons-container a,
.two-buttons-container button {
	display: block;
	margin-bottom: 10px;
}

.small-text {
	font-size: 0.9rem;
}

.larger-text {
	font-size: 1.2rem;
}

.font-light {
	font-weight: 300;
}

.font-normal {
	font-weight: 400;
}

.font-medium {
	font-weight: 500;
}

.font-semibold {
	font-weight: 600;
}

.bold,
.font-bold {
	font-weight: 700;
}

.mt10 {
	margin-top: 10px;
}

.mt20 {
	margin-top: 20px;
}

.mt30 {
	margin-top: 30px;
}

.mt40 {
	margin-top: 40px;
}

.mt50 {
	margin-top: 50px;
}

.mt60 {
	margin-top: 60px;
}

.mt70 {
	margin-top: 70px;
}

.mb10 {
	margin-bottom: 10px;
}

.mb20 {
	margin-bottom: 20px;
}

.mb30 {
	margin-bottom: 30px;
}

.mb40 {
	margin-bottom: 40px;
}

.mb50 {
	margin-bottom: 50px;
}

.mb60 {
	margin-bottom: 60px;
}

.mb70 {
	margin-bottom: 70px;
}

.pt10 {
	padding-top: 10px;
}

.pt20 {
	padding-top: 20px;
}

.pt30 {
	padding-top: 30px;
}

.pt40 {
	padding-top: 40px;
}

.pt50 {
	padding-top: 50px;
}

.pt60 {
	padding-top: 60px;
}

.pt70 {
	padding-top: 70px;
}

.pb10 {
	padding-bottom: 10px;
}

.pb20 {
	padding-bottom: 20px;
}

.pb30 {
	padding-bottom: 30px;
}

.pb40 {
	padding-bottom: 40px;
}

.pb50 {
	padding-bottom: 50px;
}

.pb60 {
	padding-bottom: 60px;
}

.pb70 {
	padding-bottom: 70px;
}

.small-margin-left {
	margin-left: 10px;
}

.small-margin-right {
	margin-right: 10px;
}

.no-background {
	background: none !important;
}

.animate-in-view,
.opacity0 {
	opacity: 0;
}

.opacity1 {
	opacity: 1 !important;
}

.pointer-events-none {
	pointer-events: none;
}

.transition-all {
	-webkit-transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
	-moz-transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
	-ms-transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
	-o-transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
	transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.z-index-over {
	position: relative;
	z-index: 1;
}

.background-center {
	background-position: center center !important;
}

.background-y-bottom {
	background-position-y: 100%;
}

.background-y-top {
	background-position-y: 0%;
}

.background-cover {
	background-size: cover;
	background-repeat: no-repeat;
}

.background-transparent {
	background: transparent;
}

.light-text,
button.light-text,
.light-text h1,
.light-text h2,
.light-text h3,
.light-text p,
.light-text span,
.light-text li,
.light-text label {
	color: #fff;
}

@media screen and (min-width: 450px) {
	.two-buttons-container {
		display: flex;
		justify-content: center;
	}

	.two-buttons-container a,
	.two-buttons-container button {
		margin: 0 6px;
	}
}

@media (min-width: 768px) {
	.hide-for-medium {
		display: none !important;
	}
}

@media (min-width: 1025px) {
	.hide-for-large {
		display: none !important;
	}
}

@media screen and (max-width: 767px) {
	.hide-for-small-only {
		display: none !important;
	}
}

@media screen and (max-width: 0px),
screen and (min-width: 768px) {
	.show-for-small-only {
		display: none !important;
	}
}

@media screen and (max-width: 767px) {
	.show-for-medium {
		display: none !important;
	}
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
	.hide-for-medium-only {
		display: none !important;
	}
}

@media screen and (max-width: 767px),
screen and (min-width: 1025px) {
	.show-for-medium-only {
		display: none !important;
	}
}

@media screen and (max-width: 1024px) {
	.show-for-large {
		display: none !important;
	}
}
 


/*******************************************************************************************
HEADER 
*******************************************************************************************/

.header {
	position: fixed;
	top: 0;
	width: 100%;
	background-color: transparent;
	z-index: 10;
	border-bottom: 0px solid transparent;
	-webkit-transition: border-color 200ms ease-out;
	-moz-transition: border-color 200ms ease-out;
	-ms-transition: border-color 200ms ease-out;
	-o-transition: border-color 200ms ease-out;
	transition: border-color 200ms ease-out;
}

.home .header {
	background-color:transparent; 
}

body.scrolled .header {
	background: #011d27 !important;
	padding: 10px 0;
}

body.scrolled  .module-header-a::before {
	display: none !important;
}

.header>.row {
	height: 100%;
}

.header a {
	text-decoration: none;
}

.header-desktop {
	display: none;
}

.header-logo {
	display: flex;
	align-items: center;
	padding: 8px 0 8px 8px;
}

.header-logo img {
	max-width: 320px;
	height: auto;
	display: block;
	width: 100%;
	margin-top: 15px;
}

.header-logo a {
	width: 350px;
}
.header-mobile-inner {
	display: flex;
	min-height: 70px;
}

#header-mobile::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	bottom: 0;
	left: 0;
	background: transparent;
	pointer-events: none;
	z-index: -1;
}



.desk-header-translate a::after {
	content: "|";
	color: #fff;
	margin: 0 5px 0 8px;
	font-size: 14px;
	position: relative;
	bottom: 2px;
}

.desk-header-translate a:last-of-type::after {
	display: none;
}

.desk-header-translate a:hover,
.desk-header-translate a:focus{
	color: #fff !important;
}


.header-mobile-buttons {
	display: flex;
	margin-left: 4%;
	flex: 1;
	justify-content: flex-end;
}

.header-mobile-buttons a, .header-mobile-buttons button {
	display: flex;
	font-size: 1.3rem;
	align-items: center;
	justify-content: center;
	padding: 0 0;
	flex: 1;
	max-width: 45px;
	width: 45px;
	height: 50px;
	line-height: 50px;
	outline: none !important;
	margin: 0 3px;
	cursor: pointer;
	border: 1px solid #ff703c;
	color: #ff703c;
}


.header-mobile-buttons button:hover,
.header-mobile-buttons button:focus {
	max-width: 45px;
	width: 45px;
	height: 50px;
	line-height: 50px;
	outline: none !important;
	margin: 0 3px;
	cursor: pointer;
	border: 1px solid #ff703c;
	color: #fff;
	background:#ff703c
}





 

@media screen and (min-width: 1025px) {
	.header-mobile {
		display: none;
	}

	.header-desktop {
		display: block;
	}

.header-logo {
	padding: 0;
	padding-top: 0;
	padding-bottom: 0;
}


}

/* HEADER > module-header-a-style Start */
.module-header-a-right {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
 
}
 
.module-header-a-right-top {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 5px;
}

.module-header-a-right-top span {
  font-weight: 600;
}

span.headerCta {
    font-weight: 700;
    color: #dd001a;
    font-family: var(--heading-font-family);
}

.module-header-a {
	position:relative;
	
	
}
.module-header-a::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	bottom: 0;
	left: 0;
	/* background: rgb(255,255,255); */
	background-image: linear-gradient(to top, rgba(0, 0, 0, 0), #000);
	background: linear-gradient(to top,rgba(11,11,11,0) 0%,rgb(11, 11, 11) 100%);
	pointer-events: none;
	/* opacity: 0.85; */
}


.home .module-header-a::before {
	background-image: linear-gradient(to top,rgba(11,11,11,0) 0%,rgb(11, 11, 11) 100%);
 
	}

.module-header-a-right-top {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0px;
}

.module-header-a-phone {
	font-weight: bold;
	color: #fff;
	font-size: 1.75rem !important;
	margin-left: 15px;
	display: inline-block;
	padding: 0px 0;
	background: transparent !important;
	font-family: var(--body-font-family);
	letter-spacing: normal;
}
.module-header-a-phone:hover,
.module-header-a-phone:focus {
	font-weight: bold;
	color: #CC9A48;

}


.module-header-a-cta {
	background: #89AE8F;
	color: #404040;
	font-size: 15px;
	font-weight: bold;
	text-transform: uppercase;
	padding: 8px 21px;
	margin-left: 26px;
	margin-right: 11px;
}

.module-header-a-cta:hover,
.module-header-a-cta:focus {
/*	background: #404040;*/
	color: #fff;
	font-size: 15px;
	font-weight: bold;
	text-transform: uppercase;
	padding: 8px 21px;
	margin-left: 26px;
	margin-right: 11px;
}


.module-header-a-phone.header-cta.button {
	background: #404040!important;
	color: #fff;
	font-size: 15px !important;
	padding: 19px 23px;
	letter-spacing: 1.5px;
}

.module-header-a-phone.header-cta.button:hover,
.module-header-a-phone.header-cta.button:focus {
background-color: #0057e2 !important;
	color: #fff;
	font-size: 15px !important;
	padding: 19px 23px;
}
	
	
	
	
	
.module-header-a-cta a {
	color: #404040;
	font-size: 15px;
	font-weight: bold;
	padding: 0 5px 0 0px;
}

.module-header-a-cta a:hover,
.module-header-a-cta a:focus {
	
	color: #007297;
	font-size: 15px;
	font-weight: bold;

}
.module-header-a-phone i {
	font-size: 80%;
	color: #CC9A48;
	font-size: 1.188rem;
	font-weight: bold;
}
.module-header-a-right-bottom {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-align-items: center;
  -ms-align-items: flex-end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  justify-content: flex-end;
}

body.scrolled .header .header-logo.module-header-a-logo {
	padding-top: 0;
	padding-bottom: 0;
}

body.scrolled .header .header-logo.module-header-a-logo img {
	max-width: 220px;
	margin: 0;
}

body.scrolled  .module-header-a-inner {
	padding: 0px 15px;
}



@media screen and (min-width: 1025px) {
  .module-header-a-right {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    padding-bottom: 0px;
/*     width: 70%; */
	  width: 77%;
  }

  .module-header-a-logo {
    flex: 1;
  }

  .module-header-a-inner {
    padding: 10px 15px;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    position: relative;
  }

  .module-header-a-logo img {
    padding: 0;
  }
}



/* HEADER > module-header-b-style END */


/* HEADER > Header Search Bar */

.header-search {
	position: fixed;
	top: -100px;
	left: 0;
	right: 0;
	background-color: #404040;
	padding: 18px 0;
	width: 100%;
	opacity: 0;
	z-index: 99;
	-webkit-transition: all 200ms ease-out;
	-moz-transition: all 200ms ease-out;
	-ms-transition: all 200ms ease-out;
	-o-transition: all 200ms ease-out;
	transition: all 200ms ease-out;
}

.header-search.active {
	opacity: 1;
	top: 0;
}

.header-search-inner {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	float: none;
}

.search-results-post-type:not(:last-child) {
	margin-bottom: 30px;
}

.search-results-post-type ul {
	margin: 0;
}

.header-search-results {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	padding: 30px;
	background: #14172F;
	display: none;
	max-height: 350px;
	overflow: auto;
}

.header-search-results.active {
	display: block;
	-webkit-animation: fadeIn 200ms ease-out;
	animation: fadeIn 200ms ease-out;
}

.header-search-results h3,
.header-search-results a,
.header-search-results p {
	color: #fff;
}

.header-search-results h3 {
	margin-bottom: 8px;
}

.header-search-results a {
	text-decoration: none;
}

.header-search-results a:hover,
.header-search-results a:focus {
	text-decoration: underline;
}

.header-search-form {
	position: relative;
	flex: 1;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}

#header-search-input {
	margin: 0;
	height: 45px;
	border: 0 none;
	font-size: 1.3rem;
	color: #fff;
	border-bottom: 1px solid #fff;
	background: none;
	box-shadow: none;
	-webkit-box-shadow: none;
	padding: 0 15px !important;
}

#repeat-search-input {
	padding: 0 15px !important;
	color: #404040;
	font-size: 15px;
}

input::-webkit-input-placeholder {
	color: #fff;
}

input:-ms-input-placeholder {
	color: #fff;
}

input::-ms-input-placeholder {
	color: #fff;
}

input::placeholder {
	color: #fff;
}

.header-search button {
	padding: 0 20px;
	height: 45px;
	white-space: pre;
}

.header-search-submit {
	margin: 0 1%;
}

#header-search-open i {
	font-weight: 400;
}


#header-search-open {
	font-size: 1.1rem;
	display: inline-block;
	line-height: 40px;
	width: 40px;
	height: 40px;
	padding: 0;
	text-align: center;
	margin: 0 0 0px 30px;
	background: transparent;
	border: 2px solid #89ae8f;
	font-size: 17px;
	font-weight: normal;
}

#header-search-open:hover,
#header-search-open:focus {
	font-size: 1.1rem;
	display: inline-block;
	line-height: 40px;
	width: 40px;
	height: 40px;
	padding: 0;
	text-align: center;
	margin: 0 0 0px 30px;
	background: #89ae8f;
	border: 2px solid #89ae8f;
	font-size: 17px;
	font-weight: normal;
}




/*******************************************************************************************
MENUS - Main navigation, dropdowns and mobile menu
*******************************************************************************************/
.main-navigation-menu {
	margin: 0;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

#menu-top-contact-menu li {
	background: linear-gradient(to bottom, #007297, #1d608c);
}

#menu-top-contact-menu {
	margin-left: 15px;
}

#menu-top-contact-menu li {
	background: linear-gradient(to bottom, #007297, #1d608c);
	padding: 0px 45px;
}

#menu-top-contact-menu .sub-menu {
	z-index: 1;
	left: -83px;
}

.main-navigation-menu li {
	display: block;
	position: relative;
	padding: 0;
}

#menu-top-contact-menu li a:hover,
#menu-top-contact-menu li a:focus {
	color: #000;
 
}
#menu-top-contact-menu li a:after,
#menu-top-contact-menu li a:before {
	display:none
 
 
}

.main-navigation-menu>li {
	padding: 0 0 00px 0;
	margin-right: 30px;
}

.main-navigation-menu>li:last-of-type {
	margin-right: 0;
}

.main-navigation-menu>li>a {
	position: relative;
}

.main-navigation-menu>li:last-of-type>a {
	margin-right: 0;
}

.main-navigation-menu .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	width: 275px;
	margin: 0;
	left: 0px;
	padding: 0px 0;
	background: #063b52;
	border-bottom: 0px solid #CC9A48;
	border-top: 0px solid #CC9A48;
}
 


.main-navigation-menu > li:last-of-type .sub-menu {
	left: -176px;
}
.main-navigation-menu>a:hover+.mega-menu,
.main-navigation-menu>a:focus+.mega-menu,
.main-navigation-menu>li.active>.mega-menu,
.main-navigation-menu>a:hover+.sub-menu,
.main-navigation-menu>a:focus+.sub-menu,
.main-navigation-menu>li.active>.sub-menu {
	display: block;
	-webkit-animation: menuSlideDown 200ms both;
	animation: menuSlideDown 200ms both;
}

.main-navigation-menu a:focus, .main-navigation-menu a:hover, .main-navigation-menu li:hover > a {
	color: var(--secondary-color);
	text-decoration: none;
	background: transparent;
}

.main-navigation-menu > li > a {
	display: block;
	height: 100%;
	color: #fff;
	line-height: 1.0;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 400;
	padding: 7px 0;
	font-family: var(--heading-font-family);
	letter-spacing: -0.32px;
}

  
 .main-navigation-menu > li a::before {
	position: absolute;
	-webkit-transition: all 0.35s ease;
	transition: all 0.35s ease;
}
  .main-navigation-menu > li a::before {
	bottom: 0;
	display: block;
	height: 3px;
	width: 0%;
	content: "";
	 background-image:linear-gradient(to left, #000 70%, #000);
	 opacity:0;
}


#desktop-navigation .sub-menu li a::before {
	display:none;
 
}




 .main-navigation-menu > li a:hover:before,
 .main-navigation-menu > li a:focus:before {
  opacity: 0;
  width: 100%;
}

/* MENUS > Main Nav Dropdowns (Level 2) */
#desktop-navigation .sub-menu li,
.mega-menu li {
	padding-left: 0;
	-webkit-transition: background 200ms ease-out;
	-moz-transition: background 200ms ease-out;
	-ms-transition: background 200ms ease-out;
	-o-transition: background 200ms ease-out;
	transition: background 200ms ease-out;
	background: #161616;
}

#desktop-navigation .sub-menu li {
	position: relative;
	cursor: pointer;
	border-bottom: 0px solid rgba(38, 143, 176, 0.9);
}

/*#desktop-navigation .sub-menu li:last-child {
	border: none;
}*/

#mega-menu li a, #desktop-navigation .sub-menu li a {
	color: #fff;
	font-size: 17px;
	display: block;
	padding: 15px 15px 15px 27px;
	line-height: 1.0;
	text-decoration: none;
	font-weight: 500 !important;
	background: #063b52;
	font-family: var(--heading-font-family);
	letter-spacing: 0 !important;
}


#desktop-navigation .sub-menu li:hover,
#desktop-navigation .sub-menu li:focus {
	background: #8fd0dd;
	 
}
#desktop-navigation .sub-menu li a:hover,
#desktop-navigation .sub-menu li a:focus {
	color:#063b52;
	background: #8fd0dd;
  border-bottom: 0px solid rgba(180, 208, 185,0);
}
.mega-menu li.active,
#desktop-navigation .sub-menu li.active {
	background:#8fd0dd;
}

.mega-menu li::before, #desktop-navigation .sub-menu li::before {
	content: "\f054";
	font-family: "Font Awesome 6 Pro";
	position: absolute;
	left: 11px;
	top: 11px;
	color: #fff;
	pointer-events: none;
	-webkit-transition: color 200ms ease-out;
	-moz-transition: color 200ms ease-out;
	-ms-transition: color 200ms ease-out;
	-o-transition: color 200ms ease-out;
	transition: color 200ms ease-out;
	font-weight: 300 !important;
	font-size: 12px;
	font-style: normal;
	text-rendering: auto;
	opacity: 0;
}

#desktop-navigation .sub-menu li:hover::before,
#desktop-navigation .sub-menu li:focus::before {
	color: #fff;
}


.mega-menu li.active:before,
#desktop-navigation .sub-menu li.active:before {
	color: #fff;
}

#desktop-navigation .sub-menu .menu-item-has-children>a:after {
	content: "\f101";
	font-family: 'Font Awesome 6 Pro';
	position: absolute;
	right: 10px;
	color: #fff;
}

#desktop-navigation .sub-menu .menu-item-has-children.active>a:after {
	color: #fff;
}

#desktop-navigation .sub-menu .menu-item-has-children ul {
	position: absolute;
	left: 100%;
	top: 0;
}

#desktop-navigation .sub-menu .sub-menu .sub-menu {
	display: none !important;
}

#desktop-navigation .sub-menu .menu-item-has-children:hover ul,
.menu-item-has-children.active>.sub-menu {
	display: block;
	-webkit-animation: menuSlideRight 200ms both;
	animation: menuSlideRight 200ms both;
}

/* MENUS > Mobile Menu */
#container {
	position: relative;
	right: 0;
	top: 0;
	overflow: hidden;
}

#container:before {
	z-index: 99;
	content: "";
	position: absolute;
	pointer-events: none;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(255, 255, 255, 0.5);
	opacity: 0;
	-webkit-transition: opacity 200ms ease-out;
	-moz-transition: opacity 200ms ease-out;
	-ms-transition: opacity 200ms ease-out;
	-o-transition: opacity 200ms ease-out;
	transition: opacity 200ms ease-out;
}

#container.active {
	cursor: pointer;
}

#container.active::before {
	opacity: 0;
}
#mobile-menu:not(.active) {
	display: none;
}

#mobile-navigation {
	z-index: 100;
	position: fixed;
	background-color:#031d26;;
	opacity: 0;
}

#mobile-navigation,
#mobile-navigation .sub-menu {
	display: block;
	height: 100vh;
	transform: translateY(-100%);
	width: 100%;
	animation-fill-mode: both;
	-webkit-transition: all 500ms cubic-bezier(0.87, 0, 0.13, 1);
	-moz-transition: all 500ms cubic-bezier(0.87, 0, 0.13, 1);
	-ms-transition: all 500ms cubic-bezier(0.87, 0, 0.13, 1);
	-o-transition: all 500ms cubic-bezier(0.87, 0, 0.13, 1);
	transition: all 500ms cubic-bezier(0.87, 0, 0.13, 1);
}

.mobile-navigation-top-inner {
	align-items: center;
	padding: 0px 0 8px 20px;
	padding-right: 0;
	background: transparent;
}

#mobile-navigation.active .mobile-navigation-top-inner {
	display: flex !important;
	justify-content: flex-end;
}

.mobile-navigation-close {
	background: none;
}

#mobile-navigation a {
	padding-left: 40px;
}

#mobile-navigation.active {
	transform: translateY(0);
	opacity: 1;
	z-index: 999999999999999;
	margin-top: 0;
	padding-top: 80px;
}
#mobile-navigation a {
	display: block;
	text-decoration: none;
	font-size: 18px;
	color: #fff;
	padding-top: 25px;
	padding-bottom: 25px;
	text-transform: uppercase;
	font-weight: normal;
	padding-right: 60px;
	line-height: 1.5;
	letter-spacing: 1.2px;
	padding-left: 25px;
	position: relative;
	text-align: center;
}

#mobile-navigation a:hover,
#mobile-navigation a:active,
#mobile-navigation a:focus {
	color:#F47920 !important;
	 
}
#mobile-navigation a::before {
	content: "\f054";
	position: absolute;
	left: 0;
	font-family: "Font Awesome 6 Pro";
	font-size: 1rem;
	color: #cc9a48;
	opacity: 0;
}

#mobile-navigation ul {
	margin: 0;
	margin-top: 29px;
	padding-left: 0	;
	padding-right: 0;
}


#mobile-navigation .fas.fa-arrow-right {
	font-weight: bold;
}

#mobile-navigation ul li {
	padding: 0;
	position: relative;
	display: block;
	width: 100%;
	border-bottom: 1px solid rgb(255, 255, 255,.1);
}

#mobile-navigation ul li:last-of-type {
	border: none;
}

#mobile-navigation ul li:before {
	display: none;
}

#mobile-navigation ul li.sub-menu-open>.sub-menu {
	top: 0;
	transform: translateY(0);
	display: block;
	-webkit-animation: fadeInRight 300ms ease-out;
	animation: fadeInRight 300ms ease-out;
	animation-fill-mode: both;
}

.mobile-navigation-previous button {
	background: transparent;
	border: 1px solid #F47920;
	color: #F47920;
	margin-left: 2px;
	padding: 10px 15px;
	font-size: 15px;
	font-weight: bold !important;
	font-family: var(--body-font-family);
}

#mobile-navigation .mobile-navigation-previous button:hover,
#mobile-navigation .mobile-navigation-previous button:focus {
	background:#F47920 !important;
	border: 1px solid #F47920 !important;
	color: #fff !important;
	margin-left: 2px;
	padding: 10px 15px;
	font-size: 15px;
}



#mobile-navigation .sub-menu {
	margin: 0;
	position: fixed;
	background-color: #031d26;;
	z-index: 1;
	overflow: auto;
	display: none;
	margin-top: 20px;
	padding-left: 0;
}

.mobile-navigation-next,
.mobile-navigation-close {
	padding: 0;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	width: 60px;
	height: 100%;
}

.mobile-navigation-close {
	margin-left: auto;
	color: #14172F;
	font-size: 1.6rem;
	height: 60px;
}

.mobile-navigation-close:focus,
.mobile-navigation-close:hover {
	color: #0057E2;
}

.mobile-navigation-next {
	position: absolute;
	right: 0;
	top: 0;
	background: transparent;
	color: #F47920;
	cursor: pointer;
	border: none !important;
}
.mobile-navigation-next:hover,
.mobile-navigation-next:focus {
	background:transparent;
	color:#fff;
}



.mobile-navigation-previous button:hover,
.mobile-navigation-previous button:focus {
	background: #fff;
	color:#0057E2
}

.mobile-navigation-previous {
	margin-bottom: 10px;
	border: none !important;
	padding: 0 10px !important;
}

.mobile-navigation-close.no-background.mobile-menu-toggle {
	background: transparent !important;
	font-size: 22px;
	height: 50px;
	max-height: 50px;
	max-width: 50px;
	margin-right: 15px;
	border: 1px solid #ef782f;
	color: #ef782f;
	cursor: pointer;
}

#mobile-navigation-top {
	position: absolute;
	top: 20px;
	right: 5px;
}

#mobile-navigation.active .mobile-navigation-top-inner img {
	max-width: 200px;
	height: auto !important;
	width: 100%;
	display: none;
}

.mobile-menu-toggle {
	margin-left: 8px;
	margin-right: 10px;
	background: linear-gradient(to bottom, transparent, transparent);
	color: #fff;
	font-weight: bold;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
	background: linear-gradient(to bottom, transparent, transparent);
	color: #CC9A48;
	font-weight: bold;
}


@media screen and (min-width: 1025px) {
	#mobile-navigation {
		display: none;
	}

	.mobile-navigation-top-inner {
		display: none;
	}
}

/* MENUS > Mega Menu */
.mega-menu {
	width: 100%;
	position: absolute;
	top: 100%;
	left: auto;
	right: 0;
	display: none;
	background: #14172F;
	padding: 25px 75px;
}

.mega-navigation-menu {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-column-gap: 15px;
	margin: 0;
}

.mega-menu li {
	border-right: 1px solid #fff;
}

.mega-menu li:nth-child(4n) {
	border-right: none;
	margin: 0;
	padding-right: 0;
}

.mega-menu .sub-menu {
	display: none;
}



/* HOME HERO AND/OR SLIDER Start */

.home-hero {
	position: relative;
	margin-top: 0;
  overflow: hidden;
}
.slick-autoplay-toggle-button {
	display: none;
}
/* .home-slider {
	position: absolute;
	top: 0;
	left: 0;
} */

.home-slider,
.home-slider-single {
	height:670px;
}
#home-slider .slick-dots {
	opacity: 0;
}
.home-slider-single {
	background-repeat: no-repeat;
	background-size: cover;
	background-position-x: 60%;
	position:relative;
}

.home-slider-single::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 80%;
	z-index: 0;
	background-image: linear-gradient(11deg, #001d27 3%, rgba(0, 29, 39, 0) 71%);
}


.home-slider-single::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 52%;
	height: 100%;
	z-index: 0;
	background-image: linear-gradient(to right, rgb(0, 0, 0,0), rgba(255, 182, 193, 0));
}

.home-slider .slick-dots li button:before {
	color: #fff;
}

.home-hero-form-container {
	display: none;
}

 

.home-slider-single .columns,
.home-slider-single .row {
  height: 100%;

}

.home-slider-tagline-inner {
	height: 100%;
	display: flex;
	align-items: flex-end;
	margin-top: 0;
	padding-bottom: 100px;
	justify-content: flex-start;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
.tag-fourth {
	color: #0f1730;
	text-transform: none;
	letter-spacing: 1.3px;
	font-size: 0.813rem;
	font-weight: bold;
	margin-top: 5px;
	margin-left: 15px;
	display:none;
}



 
 
   

 
.home-slider-single-tagline {
	width: 100%;
	max-width: 100%;
	background: transparent;
	text-align: left;
	padding: 0px 0 00px 25px;
	/* height: 100%; */
	align-items: center;
}


 
.tag-one {
	font-family: var(--heading-font-family);
	font-size: 85px;
	color: #fff;
	line-height: 85px;
	font-weight: 300;
	margin-bottom: 15px;
	margin-top: 15px;
	letter-spacing: -3.36px;
		text-transform: uppercase;
}
.tag-two {
	font-size: 30px;
	line-height: 1;
	color: #f47920;
	margin-bottom: 0;
	font-weight: 600;
	letter-spacing: 1.8px;
	text-transform: uppercase;
	font-family: var(--heading-font-family);
}


.tag-third {
	font-family: var(--heading-font-family);
	font-size: 85px;
	color: #fff;
	line-height: 85px;
	font-weight: 300;
	margin-bottom: 10px;
	margin-top: 10px;
	letter-spacing: -3.36px;
		text-transform: uppercase;
}


.home-slider-single2 .tag-third {
	max-width: 560px;
}


.home-slider-single3 .tag-one {
	max-width: 375px;
}



 body.scrolled .slide-scroll-btn {
	display: none;
}
 
 .slide-scroll-btn {
	position: fixed;
	bottom: 1px;
	text-align: center;
	width: 100%;
}
.tag-cta.hpCtaBtn {
	margin-top: 55px;
}
.home-slider-single-tagline button, .home-slider-single-tagline button, .home-slider-single-tagline .button, .home-slider-single-tagline .button {
	color: #fff;
	background: transparent;
	text-decoration: none;
	border: 1px solid #fff;
	padding: 15px 25px;
	font-size: 18px;
 
}
 
.home-slider-single-tagline button:hover,
.home-slider-single-tagline button:focus,
.home-slider-single-tagline .button:hover,
.home-slider-single-tagline .button:focus {
	color: #fff;

	text-decoration: none;
	 border:1px solid #fff;
	 background: var(--secondary-color);
	padding: 15px 25px;
    border:1px solid var(--secondary-color);
	 
}
 




.home-hero .slick-dots li.slick-active button .slick-dot-icon {
	color: #DD001A;
	opacity: 1;
}
.home-hero  .slick-dots li button .slick-dot-icon {
	color: #fff;
	opacity: 1;
}
.home-hero .slick-dots li.slick-active button:focus .slick-dot-icon {
	color: #6dbe5a;
	opacity: 1;
}
.home-hero .slick-dots li.slick-active button:focus .slick-dot-icon {
	color: #6dbe5a;
	opacity: 1;
}



.tag-fourth.hpCtaBtn {
	position: absolute;
	bottom: 0;
	right: 0;
}

.home-sidebar-form {
	position: absolute;
	right: 0;
	bottom: 67px;
	background: rgb(22, 22, 22,0.93);
	height: auto;
	margin-top: 0;
	z-index: 9;
}

.home-sidebar-form .form-container {
	padding: 30px 40px 30px 40px;
	max-width: 370px;
	width: 20.938rem;
}

.closeBtn {
	color: #fff;
	font-weight: normal;
	position: absolute;
	right: 26px;
	top: 27px;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 1.68px;
	font-family: var(--heading-font-family);
	cursor: pointer;
}


.home-sidebar-form .form-container .form-first-text {
	color: #fff;
	line-height: normal;
	margin-bottom: 0;
	letter-spacing: 0;
	text-align: center;
	font-size: 1.188rem;
	font-family: var(--heading-font-family);
	font-weight: normal;
}

.home-sidebar-form .form-container .form-second-text {
	font-size: 1.188rem;
	color: #fff;
	text-transform: uppercase;
	margin-top: 0;
	margin-bottom: 0;
	font-weight: bold;
	text-align: center;
}
.home-sidebar-form .form-container .form-third-text {
	font-size: 1.188rem;
	color: #fff;
	text-transform: uppercase;
	margin-top: 0;
	margin-bottom: 25px;
	font-weight: bold;
	text-align: center;
}

.home-sidebar-form .form-container .form-input-row input {
	background: transparent;
	color: #fff;
	border-bottom: 1px solid rgba(255, 255, 255,0.7);
	height: 45px;
}

.home-sidebar-form .form-container .form-input-group textarea {
	background: transparent;
	min-height: 120px;
	border-bottom: 1px solid rgba(255, 255, 255,0.7);
	color: #fff;
}
 
.home-sidebar-form .form-container .button {
	border-radius: 5px;
}

.home-sidebar-form .form-container .form-input-group.button-container .button {
	background: #cc9a48;
	color: #0f1730;
}

.home-sidebar-form .form-container .form-input-group.button-container .button:hover,
.home-sidebar-form .form-container .form-input-group.button-container .button:focus {
	background: #404040;
	color:#fff
}

.home-sidebar-form .form-container label {
	color: #fff;
	font-size: 1rem;
	font-weight: normal;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}


@media screen and (min-width: 1025px) {

.home-hero, .home-slider, .home-slider-single {
	height: 100vh;
	min-height: 800px;
	width: 100%;
	background-size: cover;
 	background-position: center 0; 
}

	.home-hero-form-container {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		width: 100%;
		height: 100%;
		position: absolute;
		left: 0;
		top: 0;
	}

	.home-hero-form .contact-form-heading {
		font-size: 1.5rem;
		margin-bottom: 15px;
	}

	.home-hero-form form button {
		width: 100%;
	}

	.home-hero-form {
		margin-top: 80px;
		min-width: 375px;
		padding: 0;
		background: #E9F5F7;
	}
}

@media screen and (max-height: 700px) and (min-width: 1025px) {
	.home-hero-form {
		margin: 0;
		position: absolute;
		bottom: 0;
		right: 0;
		padding: 30px;
	}

	.home-hero-form .contact-form-heading {
		display: none;
	}
}



/* HOME HERO AND/OR SLIDER */
.home-hero-height-sync {
	height: 400px;
}

.home-hero,
.home-hero-inner {
	position: relative;
}

.home-hero-image-container {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
}

.home-hero-image-container img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	object-position: 50%;
}

.home-hero-form-container {
	display: none;
}

.home-hero-form-row {
	display: flex;
	justify-content: flex-end;
}

 

@media screen and (min-width: 1025px) {
	.home-hero-inner {
		display: block;
	}

	.home-hero-height-sync {
		height: 750px;
	}

	.home-hero-form-container {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		display: block !important;
	}

	.home-hero-form-container,
	.home-hero-form-inner,
	.home-hero-form-container .row,
	.home-hero-form-container .columns {
		height: 100%;
	}

	.home-hero-form-inner {
		display: flex;
		justify-content: flex-end;
		align-items: center;
	}

	.home-hero-form .contact-form-heading {
		font-size: 1.5rem;
		margin-bottom: 15px;
	}

	.home-hero-form form button {
		width: 100%;
	}

	.home-hero-form {
		margin-top: 80px;
		min-width: 375px;
		padding: 0;
		background: #E9F5F7;
	}
}

@media screen and (max-height: 700px) and (min-width: 1025px) {
	.home-hero-form {
		margin: 0;
		position: absolute;
		bottom: 0;
		right: 0;
		padding: 30px;
	}

	.home-hero-form .contact-form-heading {
		display: none;
	}
}

/* HOME HERO AND/OR SLIDER END */


/* Header & Slider Media CSS */
 
 @media screen and (min-width: 280px) and (max-width: 767px) {
.header-mobile-inner {
	flex-wrap: wrap;
	text-align: center;
	align-items: center;
	padding: 10px 5px;
}

#header-mobile .header-mobile-buttons .button.alt-01 {
	display: block;
}	
.mob-header-cta {
	display: inline-block;
	width: 100%;
	background: #1b3a63;
	color: #fff;
	font-size: 15px;
	padding: 2px 0;
	margin-bottom: 4px;
}
.header-logo {
	padding: 0px 0 0px 5px;
	width: 68%;
}

.header-logo img {
	max-width: 254px;
	margin: 0;
	margin-left: -10px;
}


.header-mobile-buttons {
	margin-left: 2px;

}

#header-mobile .header-mobile-buttons .button {
	background: transparent;
	color: #cc9a48;
	font-weight: bold;
	border: 0px solid #cc9a48;
	line-height: 45px;
}


#header-mobile .header-mobile-buttons .button:hover,
#header-mobile .header-mobile-buttons .button:focus {
	background: transparent;
	color: #cc9a48;
	font-weight: bold;
	border: 0px solid #cc9a48;
}
#header-mobile .header-mobile-buttons .button .fas.fa-phone {
	color: #cc9a48;
	font-weight: bold;
	font-size: 20px;
}

#header-mobile .header-mobile-buttons .button:hover .fas.fa-phone,
#header-mobile .header-mobile-buttons .button:focus .fas.fa-phone {
	color: #fff !important;
	font-weight: bold;
}
.home-hero {
	margin-top: 0;
}
.home-slider {
	height: 315px;
}

.tag-one {
	font-size: 60px !important;
	line-height: 60px;
	letter-spacing: -2.4px !important;
	text-align: center;
	margin: 5px 0;
}
 
.tag-two {
	font-size: 21px !important;
	line-height: 1;
	margin-bottom: 0;
	text-align: center;
	letter-spacing: 1.26px;
}
.tag-third.tagline {
	font-size: 60px !important;
	line-height: 60px;
	letter-spacing: -2.4px !important;
	text-align: center;
}
.single-logo img {
	max-width: 55px;
}
.home-slider-single-tagline {
	width: 97%;
	padding: 0 15px 50px 15px;
}

#home-slider .slick-dots li {
	margin: 0 0;
 
}
#home-slider .slick-dots li button {
	height: 15px;
	width: 15px;
}

#home-slider  .slick-dots li.slick-active button .slick-dot-icon::before {
	font-size: 2rem;
}
#home-slider  .slick-dots li button .slick-dot-icon::before {
	font-size: 2rem; 
}
.home-slider-tagline-inner {
	margin-top: 0;
}
.home-slider-tagline-inner {
	height: 100%;
	display: flex;
	align-items: flex-end;
	margin-top: 0;
	padding-bottom: 0;
	justify-content: center;
	padding-top: 45px;
}

.home-slider-single-tagline-lower.hp-cta  .button {
	padding: 12px 15px;
 
}
.module-header-b-upper-side {
	display: none;
}
 
.home-slider {
	height: 660px;
	position: relative;
	z-index: 9;
	background-size: cover;
	margin-bottom: 0;
}









 
  
.mobile-slider-content.show-for-small-only {
	position: relative;
	margin: 15px 0;
}

.home-logo {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0px 0 0px 0;
	position: relative;
	bottom: 0;
	right: 0;
	width: 100%;
	margin: 15px 0;
} 
.slider-contact-title::after {
	display: none;
}
.slider-contact-title::before {
	display: none;
}
.slider-contact-title {
	width: 100%;
	max-width: 424px;
	position: relative;
	margin-top: 0;
	margin-left: 0;
	text-align: center;
}
.mobile-slider-contact-form-section {
	background: #0d385d;
	margin: 0 20px;
	padding-top: 15px;
}
.slider-contact-title p {
	color: #fff;
	padding:0;
	z-index:0;
}
.slider-contact-title p strong span {
	color: #89AE8F !important;
}
.slider-contact-title p {
	line-height: normal;
}
.slider-contact-title p {
	font-size: 18px;
	line-height: normal;
}
.slider-contact-form1 .form-container .form-input-row input {
	padding-left: 20px;
}

.slider-contact-form1 .form-container .form-input-row input {
	padding-left: 20px;
	height: 45px;
	color: #0d385d;
	font-size:16px
}
.form-container .error-text {
	line-height: normal !important;
	padding-top: 5px !important;
	color: red !important;
}

.slider-contact-form1 #commentsStandard {
	height: 45px;
	padding: 0 18px;
	line-height: 45px;
		color: #0d385d;
	font-size:16px
}



.slider-contact-form1 input::-webkit-input-placeholder,
.slider-contact-form1 textarea::-webkit-input-placeholder {
	color: #0d385d !important;
	font-size:14px!important;
}

.slider-contact-form1 input:-ms-input-placeholder,
.slider-contact-form1 textarea:-ms-input-placeholder {
	color: #0d385d!important;
	font-size:14px!important;
}

.slider-contact-form1 input::-ms-input-placeholder,
.slider-contact-form1 textarea::-ms-input-placeholder {
	color: #0d385d!important;
	font-size:14px!important;
}

.slider-contact-form1 input::placeholder,
.slider-contact-form1 textarea::placeholder {
	color: #0d385d!important;
	font-size:14px!important;
}

 .slider-contact-form1 .form-container {
	padding-top: 18px;
}
.slider-contact-form1 .form-container .form-input-group.button-container button {
	height: 45px;
	padding: 10px;
}

 

.home-slider-single-tagline {
	margin-top: 0;
}
.home-slider-tagline-inner {
	align-items: flex-end;
	margin-top: 0;
	padding-bottom: 0;
	justify-content: center;
	padding-top: 75px;
}


.hpBtn.button.animated.fadeInUp.slow {
	padding: 6px 35px !important;
	font-size: 16px;
}

.tag-fourth.hpCtaBtn {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 9;
	width: 100%;
	text-align: center;
}

.free-con {
	display: none;
}
.bubble-img img {
	width: 100px;
}

 .home-sidebar-form {
	bottom: 0;
	width: 100%;
}

.home-sidebar-form .form-container {
	padding: 60px 15px 10px 15px;
	max-width: 100%;
	width: 100%;
}


.home-sidebar-form .form-container .form-second-text {
	font-size: 18px;
	color: #fff;
	text-transform: uppercase;
	margin-top: 0;
	margin-bottom: 05px;
	font-weight: normal;
}

.home-sidebar-form .form-input-group {
	margin-bottom: 10px;
	 
}
.home-sidebar-form .form-container .form-input-row input {
	height: 40px;
}

.home-sidebar-form  .form-container .error-text {
	line-height: normal !important;
	padding-top: 5px !important;
	color: #fff !important;
}

.home-sidebar-form .form-container .form-input-group textarea {
	min-height: 50px;
 
}
.home-slider-single::before {
	width: 100%;
	height: 50%;
	z-index: 0;
	top: -7px;
	background-image: linear-gradient(to bottom, #000 18%, rgba(0, 0, 0, 0) 92%);
	opacity: 0.85;
}
body.scrolled .header {
	background: #011d27 !important;
	padding: 0px 0;
}
body.scrolled .header .header-mobile-inner {
	padding: 5px;
}
.tag-cta.hpCtaBtn {
	position: relative;
	bottom: 0;
	left: 0;
	z-index: 9;
	text-align: center;
	width: 100%;
	margin-top: 35px;
}

.tag-cta.hpCtaBtn .hpBtn {
	width: 100% !important;
}

.desk-header-translate {
	display: none;
} 













 
}














 
@media screen and (min-width: 480px) and (max-width: 600px) {

.home-slider, .home-slider-single {
	height: 700px;
	position: relative;
	z-index: 9;
	background-size: 100%;
} 



}




@media screen and (min-width: 600px) and (max-width: 767px) {
.mob-header-cta {
	display: none;
}	 
.home-hero {
	margin-top: 0;
}
.header-mobile-buttons .button.alt-01 {
	display: none;
}

.header-logo {
	padding: 10px 0 8px 10px;
	width: 35%;
}
.module-header-b-upper-side {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding-right: 0;
	width: 54%;
}
.header-mobile-buttons {
	display: flex;
	margin-left: 1%;
	flex: 1;
	justify-content: flex-end;
	width: 10%;
	vertical-align: top;
}
 .header-badge-lefft img {
	display: block;
	max-width: 60px;
}
.module-header-b-phone {
	font-size: 22px;
	line-height: 23px;
	font-weight: bold;
}

.header-cta-right {
	margin-left: 15px;
	text-align: right;
	color: #1b3a63;
	font-size: 12px;
	font-weight: bold;
	line-height: 1.5;
}

.header-cta-right.med-cta .header-cta p, .header-cta-right.med-cta .header-cta p a {
	font-size: 12px;
	color: #1b3a63;
	letter-spacing: 0;
	margin: 0;
	line-height: normal;
	margin-bottom: 1px;
}

 .header-cta-right.med-cta .header-cta p a:hover,
  .header-cta-right.med-cta .header-cta p a:focus {
	font-size: 12px;
	color: #6dbe5a;
	letter-spacing: 0;
} 

.module-header-b-phone i {
	font-size: 17px;
	font-weight: bold;
}
  
.slider-contact-title {
	width: 100%;
	max-width: 100%;
	position: relative;
	margin-top: 10px;
	margin-left: 0;
	text-align: center;
}
.single-logo {
	margin: 12px auto;
	min-width: 280px;
	min-height: 171px;
	padding-top: 10px;
	display: inline-block;
	vertical-align: top;
	width: 37%;
}

.home-slider, .home-slider-single {
	height: 400px;
	background-size: cover;
}
 

.mob-cta-ph.show-for-medium-only {
	display: inline-block !important;
	min-width: inherit !important;
	max-width: inherit !important;
	text-align: right;
	color: #000;
	font-weight: bold;
	font-size: 22px;
	position: relative;
	padding-top: 10px;
}
.free-con {
	display: block;
	position: absolute;
	right: 10px;
	top: -15px;
	font-size: 14px;
	text-transform: uppercase;
	color: #DD001A;
	font-family: var(--heading-font-family);
}
 
.mob-cta-ph.show-for-medium-only i {
	font-weight: bold;
}

.home-slider, .home-slider-single {
	height: 550px;
	padding-bottom: 50px;
}
.mob-cta-ph.show-for-medium-only i {
	color: #DD001A;
	font-size: 20px;
}
.home-slider-tagline-inner {
	padding-top: 150px;
}
.home-slider-single-tagline {
	width: 100%;
	padding: 0 15px;
	text-align: center;
}
.columns.medium-6.large-6.small-12.prac-col {
	width: 50%;
}
.home-slider-single3 .tag-one {
	max-width: 400px;
	margin: 0 auto;
}
  
  
#header-mobile .header-mobile-buttons .button.alt-01 .visually-hidden {
	margin: 0 !important;
	width: auto !important;
	height: auto !important;
	clip: inherit !important;
	overflow: auto !important;
	position: relative !important;
	white-space: inherit !important;
}

#header-mobile .header-mobile-buttons .button.alt-01 {
	display: block;
	width: auto !important;
	max-width: inherit !important;
	position: relative;
	text-transform: capitalize;
	font-family: var(--body-font-family) !important;
	color: #fff;
	font-weight: normal;
	text-align: right;
	height: auto !important;
	align-items: center;
	padding-top: 3px;
}
.desk-header-translate {
	display: block;
}

.desk-header-translate a {
	display: inline-block;
	width: auto !important;
	height: auto !important;
	max-width: inherit !important;
	font-size: 12px;
}

.tag-third.tagline {
	margin: 0 auto !important;
}








  
}









@media screen and (min-width: 767px) and (max-width: 1024px) {
.mob-header-cta {
	display: none;
}	 
.home-hero {
	margin-top: 80px;
}
.header-mobile-buttons .button.alt-01 {
	display: none;
}

.header-logo {
	padding: 0px;
	width: 35%;
}
.module-header-b-upper-side {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding-right: 0;
	width: 57%;
}
.header-mobile-buttons {
	display: flex;
	margin-left: 1%;
	flex: 1;
	justify-content: flex-end;
	width: 60px;
	vertical-align: top;
	align-items: center;
}

.header-badge-lefft img {
	display: block;
	max-width: 60px;
}
.module-header-b-phone {
	font-size: 24px;
	line-height: 25px;
	font-weight: bold;
}

.header-cta-right {
	margin-left: 25px;
	text-align: right;
	color: #1b3a63;
	font-size: 12px;
	font-weight: bold;
	line-height: 1.5;
}

.module-header-b-phone i {
	font-size: 17px;
	font-weight: bold;
}

.header-mobile-inner {
	padding: 10px 15px;
}

.home-hero {
	margin-top: 0;
}

.home-hero {
	background-size: cover;
	background-repeat: no-repeat;
}
.home-slider, .home-slider-single {
	height: 650px;
}

.standing-img img {
	position: absolute;
	bottom: -180px;
	max-width: 200px;
	right: 24%;
	z-index: 1;
}


.slider-contact-form .form-container .form-input-row input {
	padding-left: 17px;
	height: 30px;
}
.slider-contact-form .form-container .form-input-row {
	column-gap: 8px;
}
.slider-contact-form .form-container .form-input-row {
	display: inline-block;
	column-gap: 8px;
}
.slider-contact-form .form-container .error-text {
	font-size: 9px;
	line-height: normal;
	padding-top: 4px;
}
.slider-contact-form .form-container .form-input-group textarea {
	background: #fff;
	border: transparent;
	color: #0d385d;
	opacity: 1;
	min-height: 30px;
	height: 30px;
	padding-top: 0;
	padding-bottom: 0;
	line-height: 30px;
	padding-left: 17px;
}
.slider-contact-form .form-container .form-input-group {
	width: 100%;
	display: inline-block;
}

.slider-contact-form {
	width: 45%;
	margin-top: 22px;
	max-width: 400px;
	margin-left: 15px;
}

.res-tit {
	font-size: 16px; 
}
.res-cont p {
	font-size: 11px;
	line-height: 14px;
	margin: 0;
}

.single-logo {
	background-size: 99%;
	margin: 5px auto;
	min-width: 169px;
	min-height: 100px;
	padding-top: 0;
}
.home-logo {
	right: 0%;
	width: 180px;
 
}
 
 
.slider-contact-form-section {
	padding-bottom: 20px;
}
.slider-third-tagline.tag-three {
	max-width: 345px;
	padding-left: 25px;
	position: relative;
}
.home .header {
	background-color: transparent;
 
}

.module-practices-c-inner {
	padding: 15px;
}
.home-slider-single-tagline {
	padding: 0px 0 00px 25px;
 
}
.home-slider-tagline-inner {
	height: 100%;
	display: flex;
	align-items: flex-end;
	margin-top: 0;
	padding-top: 175px;
	justify-content: flex-start;
	padding-left: 20px;
	padding-right: 20px;
}

.slider-third-tagline.tag-three p {
	font-size: 15px;
	line-height: normal;
}
.slider-contact-title p {
	margin: 0;
	padding: 2px 0;
	font-size: 12px;
}

.slider-contact-form .form-container input::-webkit-input-placeholder,
.slider-contact-form .form-container textarea::-webkit-input-placeholder {
	color: #0d385d;
	font-size:13px;
	font-weight:400;
	opacity:1
}

.slider-contact-form .form-container input:-ms-input-placeholder,
.slider-contact-form .form-container textarea:-ms-input-placeholder {
	color: #0d385d;
	font-size:13px;
	font-weight:400;
	opacity:1
}

.slider-contact-form .form-container input::-ms-input-placeholder,
.slider-contact-form .form-container textarea::-ms-input-placeholder {
	color: #0d385d;
	font-size:13px;
	font-weight:400;
	opacity:1
}

.slider-contact-form .form-container input::placeholder,
.slider-contact-form .form-container textarea::placeholder {
	color: #0d385d;
	font-size:13px;
	font-weight:400;
	opacity:1
}

.slider-contact-form .form-container .form-input-group.button-container {
	width: 100%;
	vertical-align: top;
	height: auto;
	margin-left: 0;
}

.slider-contact-form .form-container .form-input-group.button-container .button {
	width: 100%;
	padding: 5px 25px;
	height: 39px;
	line-height: normal;
	font-size: 16px;
}

.mob-cta-ph.show-for-medium-only {
	display: inline-block !important;
	min-width: inherit !important;
	max-width: inherit !important;
	text-align: right;
	color: #404040;
	font-weight: bold;
	font-size: 25px;
}
#header-mobile .header-mobile-buttons .button.alt-01 {
	display: none;
}
.mob-cta-ph.show-for-medium-only {
	display: inline-block !important;
	min-width: inherit !important;
	max-width: inherit !important;
	text-align: right;
	color: #000;
	font-weight: bold;
	font-size: 22px;
	position: relative;
	padding-top: 10px;
}
.free-con {
	display: block;
	position: absolute;
	right: 10px;
	top: -15px;
	font-size: 14px;
	text-transform: uppercase;
	color: #DD001A;
	font-family: var(--heading-font-family);
}


#header-mobile .header-mobile-buttons .button.alt-01 {
	display: none;
}
.mob-cta-ph.show-for-medium-only i {
	font-weight: bold;
}

 

 
.home-sidebar-form .form-container {
	padding: 60px 30px 30px 30px;
	max-width: 370px;
}
.home-sidebar-form .form-container .form-second-text {
	font-size: 18px;
	color: #fff;
	text-transform: uppercase;
	margin-top: 10px;
	margin-bottom: 10px;
	font-weight: normal;
}
.home-sidebar-form .form-container .form-input-group textarea {

	min-height: 70px;
 
}
 

  
  
#header-mobile .header-mobile-buttons .button.alt-01 .visually-hidden {
	margin: 0 !important;
	width: auto !important;
	height: auto !important;
	clip: inherit !important;
	overflow: auto !important;
	position: relative !important;
	white-space: inherit !important;
}

#header-mobile .header-mobile-buttons .button.alt-01 {
	display: block;
	width: auto !important;
	max-width: 175px !important;
	position: relative;
	text-transform: capitalize;
	font-family: var(--body-font-family) !important;
	color: #fff;
	font-weight: normal;
	text-align: right;
	height: auto !important;
	align-items: center;
	padding-top: 3px;
	background: transparent !important;
}
.desk-header-translate {
	display: block;
}

.desk-header-translate a {
	display: inline-block;
	width: auto !important;
	height: auto !important;
	max-width: inherit !important;
	font-size: 12px;
}
body.scrolled .header {
	padding: 0px 0;
}

body.scrolled  .header-logo img {
	margin-top: 0;
}
body.scrolled .header-logo {
	padding: 0;
 
}

.header-logo img {
	margin-top: 0;
}

.home-slider-single {
	background-position: center right;
}
.tag-one {
	font-size: 45px;
	line-height:45px
}
.tag-two {
	font-size: 20px; 
   line-height:25px
}
.tag-third {
	font-size: 45px;
	line-height:45px
 
}
#header-mobile::before {
	background: linear-gradient(to top,rgba(11,11,11,0) 0%,rgb(11, 11, 11) 100%);
}


.home-slider-single::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 52%;
	height: 100%;
	z-index: 0;
	background-image: linear-gradient(to right, rgb(0, 0, 0,0), rgba(255, 182, 193, 0));
}
.home-slider-single::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 80%;
	z-index: 0;
	background-image: linear-gradient(11deg, #001d27 3%, rgba(0, 29, 39, 0) 71%);
}

 
  
}

@media screen and (min-width: 980px) and (max-width: 1024px) {
.home-slider, .home-slider-single {
	height: 650px;
}
.home-slider-tagline-inner {
	max-width: 90%;
}
.home-slider-tagline-inner {
	padding-top: 20%;
}
 
.home-slider-single-tagline {
	padding: 0px 0 00px 0 !important;
}

.home-slider-tagline-inner {
	padding-top: 20% !important;
}
 
 .tag-one {
	font-size: 65px;
	line-height: 65px;
}
.tag-two {
	font-size: 25px;
	line-height: 25px;
}
.tag-third {
	font-size: 65px;
	line-height: 65px;
}

.home-slider-single3 .tag-one {
	max-width: 300px;
}

 
	
}


@media screen and (min-width: 1024px) and (max-width: 1279px) {
.main-navigation-menu > li > a {
	font-size: 14px;
	padding: 10px 0;
}

#mega-menu li a, #desktop-navigation .sub-menu li a {
	font-size: 14px;
}
.main-navigation-menu > li {
	margin-right: 12px;
}
.home-hero, .home-slider, .home-slider-single {
	height: 650px;
	min-height: 600px;
 
}

#desktop-navigation .sub-menu .menu-item-has-children ul {
	left: -100%;
	top: 0;
}

.single-logo {
	min-width: 207px;
	min-height: 130px;
	padding-top: 0;
	padding-bottom: 0;
}
.home-logo {
	right: 0; 
}

.header-logo {
	padding: 0;

} 
 
 .module-badges-a-single img {
/* 	max-height: 80px; */
}
 
.home-slider-tagline-inner {
	max-width: 900px;
}

 .header-logo img {
	max-width: 280px;
 }
.module-header-a-inner {
	padding: 10px 0;
 
}
.module-header-a-right {
	padding-left: 30px;
}




}


 

@media screen and (min-width: 1275px) and (max-width: 1300px) {
.header-desktop .row {
	max-width: 1240px;
 
}



}






@media screen and (min-width: 1900px) and (max-width: 12000px) {
.header-desktop .row {
	max-width: 95%;
}
.header-logo img {
	max-width: 350px;
	width: 100%;
}

.module-header-b-phone {
	font-size: 32px;
	line-height: 40px;
	font-weight: bold;
}

.home-hero, .home-slider, .home-slider-single {
	height: 100vh;
	min-height: 1100px;
	width: 100%;
}

.home-hero {
	margin-top: 0;
}
 

.slider-third-tagline.tag-three p {
	font-size: 20px;
	color: #0d385d;
	line-height: 30px;
}

.module-header-b .columns.no-float {
	padding: 0;
}
.row, .row-wide, .row-narrow {
	max-width: 1360px;
	margin-right: auto;
	margin-left: auto;
}
.module-header-a-phone {
	font-size: 2.625rem !important;
	letter-spacing: 2.1px;
}
.module-header-a-phone i {
	font-size: 1.688rem;
	padding-right: 5px;
}

.main-navigation-menu > li > a {
/* 	font-size: 23px !important; */
	font-size: 19px !important;
	letter-spacing: -0.46px;
	font-weight: 400;
}

.main-navigation-menu > li {
	padding: 0 0 00px 0;
/* 	margin-right: 50px; */
	margin-right: 40px;
}
 
 .home-slider-tagline-inner {
	max-width: 1600px;
	margin: 0 auto;
}
.module-header-a-phone.header-cta.button {
	background: #404040 !important;
	color: #fff;
	font-size: 22px !important;
	padding: 16px 44px !important;
	letter-spacing: 1.5px;
	letter-spacing: 2.2px !important;
}


.module-header-a-phone.header-cta.button:hover,
.module-header-a-phone.header-cta.button:focus {
	background: #0057E2 !important;
	color: #fff;
	font-size: 22px !important;
	padding: 16px 44px !important;
	letter-spacing: 1.5px;
	letter-spacing: 2.2px !important;
}



.home-logo {
	right: 1%;
	width: 335px;
}
.home main .row, .home main .row-narrow {
	max-width: 1700px;
}
 
#mega-menu li a, #desktop-navigation .sub-menu li a {
	font-size: 22px;
	display: block;
	padding: 18px 19px 18px 30px;
	/* line-height: 1.2; */
}
.main-navigation-menu .sub-menu {
	width: 450px;
}

.mega-menu li::before, #desktop-navigation .sub-menu li::before {
	top: 18px;
	font-size: 16px;
}
 
#header-search-open {
	font-size: 1.1rem;
	display: inline-block;
	line-height: 60px !important;
	width: 60px !important;
	height: 60px !important;
	padding: 0;
	text-align: center;
	margin: 0 0 0px 30px;
	background: transparent;
	border: 2px solid #89ae8f !important;
	font-size: 25px !important;
	font-weight: normal;
}
	
#menu-top-contact-menu li {
	padding: 6px 45px;
}
 
 
p {
	font-size: 20px; 
}

button, .button {
	font-size: 18px; 
}

.module-header-a-right-top {
	margin-bottom: 0;
}
 
.header-logo img {
max-width: 460px; 
margin-top: 25px;
}
.module-header-a-inner {
	padding: 15px 15px;
}
 
body.scrolled .header .header-logo.module-header-a-logo img {
	max-width: 300px;
}

.home-slider-tagline-inner {
	padding-bottom: 150px;
 
} 
.tag-one {
	font-size: 125px;
	line-height: 135px;
	letter-spacing: 5px;
	 
} 
.tag-two {
	font-size: 44px;
	letter-spacing: 2.64px;
}


.tag-third {
	font-size: 125px;
	line-height: 135px;
	letter-spacing: 5px;
}
.home-slider-single-tagline button, .home-slider-single-tagline button, .home-slider-single-tagline .button, .home-slider-single-tagline .button {
	padding: 30px 40px!important;
	font-size: 26px!important;
	min-width: 330px !important;
	display: inline-block;
}
.home-slider-single2 .tag-third {
	max-width: 900px;
}
.home-slider-single3 .tag-one {
	max-width: 625px;
}

}

/* Header & Slider Media CSS */
@media screen and (max-width: 767px){
	.slide-scroll-btn {
    position: fixed;
    bottom: 153px;
    text-align: center;
    width: 100%;
    z-index: 999999999;
}
}

.badge-slider .swiper-wrapper {
  -webkit-transition-timing-function:linear!important;
  transition-timing-function:linear!important; 
  position: relative;
  align-items: center;
}

.badge-slider .swiper-slide {
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
}

.badge-slider .swiper-slide img[data-src] {
  opacity: 0;
}

.bagde-slider img {
  max-width: 100%;
}