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

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


:root {
	font-size: 21px;
	--body-text-color: #112D32;
	--primary-color: #274045;
	--secondary-color: #89AE8F;
	--alternate-color: #007297;
	--gray-color: #CEE083;
	--light-gray-color: #ccc;
	--body-font-family: 'Roboto', sans-serif;
	--heading-font-family: 'Josefin 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: 21px;
	}
}

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

body {
	display: block !important;
	line-height: 1.7;
	color: #112D32;
	font-size: 21px;
	font-family: var(--body-font-family);
	margin: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background-color:#fff
}

*: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 30px;
	font-family: var(--heading-font-family);
	line-height: 1.2;
    font-weight: 400;
}

h1 {
	font-size: 50px;
	color: #007297;
	text-transform: uppercase;
}

h2 {
	font-size: 40px;
	color:#112D32;
	font-family: 'Roboto Condensed', sans-serif;
}

h3 {
	font-size: 25px;
	line-height: 1.2;
    font-weight: 700;
	color:#112D32;
/* 	text-transform:uppercase; */
}

h4 {
	font-size: 22px;
	color:#112D32;
}
 
h5,
h6 {
	font-size: 20px;
} 

p {
	margin: 0 0 30px;
	font-size: 21px;
	color:#112D32;
	line-height:35px
}

/* CORE > Links and Buttons */
a {
	color: #007297;
	text-decoration: underline;
}

a:hover,
a:focus {
	color: #274045;
	text-decoration: underline;
}

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: 21px;
	font-weight: 700;
	text-transform: uppercase;
	cursor: pointer;
	border: none;
	margin: 0;
	border-radius: 0px;
	padding: 12px 30px;
	text-align: center;
	display: inline-block;
	color:#fff;
	background-color: #007297;
	text-decoration: none;
}



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

button:hover,
button:focus,
.button:hover,
.button:focus {
	background-color: #274045;
	color: #fff;
	text-decoration: none;
}






/* 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: 1280px;
	margin-right: auto;
	margin-left: auto;
}


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

.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;
}

body.scrolled .header {
	background: #274045 !important;
	box-shadow: 0 0 10px rgba(51, 51, 51,0.3);
}
body.scrolled .header:before {
	background: #274045 !important;
	box-shadow: 0 0 10px rgba(51, 51, 51,0);
}

.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-bottom:20px;
}
.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: rgb(255,255,255); */
	background: linear-gradient(180deg, rgb(5, 29, 33) 0.9%, rgba(11, 11, 11, 0) 100%);
	pointer-events: none;
	z-index: -1;
}



.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.1rem;
	align-items: center;
	justify-content: center;
	padding: 0 10px;
	flex: 1;
	max-width: 40px;
	width: 40px;
	height: 40px;
}
 

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

	.header-desktop {
		display: block;
	}

.header-logo {
	padding: 0;
	padding-top: 25px;
	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;
  align-self: flex-end;
}
 
.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;
}

.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: linear-gradient(180deg, rgb(5, 29, 33) 0.9%, rgba(11, 11, 11, 0) 100%);*/
	pointer-events: none;
}

.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: 8px;
}


.module-header-a-phone {
	font-weight: 600;
	color: #fff;
	font-size: 15px !important;
	margin-left: 20px;
	display: inline-block;
	padding: 10px 20px;
	background-image: linear-gradient(to bottom, #007297, #1d608c);
	min-width: 170px;
}

.module-header-a-phone:hover,
.module-header-a-phone:focus {
	font-weight: 600;
	color: #fff;
	font-size: 15px !important;
	margin-left: 20px;
	display: inline-block;
	padding: 10px 20px;
	background-image: linear-gradient(to bottom, #89AE8F, #89AE8F);
	min-width: 170px;
}



.module-header-a-cta {
	background: #89AE8F;
	color: #112D32;
	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: #112D32;*/
	color: #fff;
	font-size: 15px;
	font-weight: bold;
	text-transform: uppercase;
	padding: 8px 21px;
	margin-left: 26px;
	margin-right: 11px;
}

.module-header-a-cta a {
	color: #112D32;
	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: #007297;
	font-size: 20px;
	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: 15px;
	padding-bottom: 10px;
}

@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-top: 0px;
    width: 70%;
  }

  .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: #112D32;
	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: #112D32;
	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: 40px;
}

.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: 255px;
	margin: 0;
	left: -70px;
}

.main-navigation-menu > li.menu-item-1259 .sub-menu {
	columns: 2;
	width: 593px;
	left: -200px;
	background: #6dbe5a;
}



.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: #fff;
	text-decoration: none;
	background: transparent;
}

.main-navigation-menu > li > a {
	display: block;
	height: 100%;
	color: #fff;
	line-height: 1.0;
	font-size: 17px;
	text-transform: uppercase;
	font-weight: normal;
	padding: 12px 0;
	font-family:var(--heading-font-family);
}
  
 .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: 4px;
	width: 0%;
	content: "";
	 background-image:linear-gradient(to left, #89ae8f 70%, #cee0b3);
}


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




 .main-navigation-menu > li a:hover:before,
 .main-navigation-menu > li a:focus:before {
  opacity: 1;
  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: rgba(0, 114, 151,0.9);
}

#desktop-navigation .sub-menu li {
	position: relative;
	cursor: pointer;
	border-bottom: 1px 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: 15px;
	display: block;
	padding: 14px 15px 14px 27px;
	line-height: 1.0;
	text-decoration: none;
	font-weight: 400;
	font-family:var(--heading-font-family);
	text-transform:uppercase;
	background: transparent !important;
}

#desktop-navigation .sub-menu li:hover,
#desktop-navigation .sub-menu li:focus {
	background: RGBA(137, 174, 143, 0.9);
	 
}
#desktop-navigation .sub-menu li a:hover,
#desktop-navigation .sub-menu li a:focus {
	color:#fff;
	background: rgba(137, 174, 143, 0.9);
		border-bottom: 0px solid rgba(180, 208, 185,0);
}
.mega-menu li.active,
#desktop-navigation .sub-menu li.active {
	background: rgba(137, 174, 143, 0.9);
}

.mega-menu li::before, #desktop-navigation .sub-menu li::before {
	content: "\f054";
	font-family: "Font Awesome 5 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;
}

#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 5 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: 1;
}

#mobile-menu:not(.active) {
	display: none;
}

#mobile-navigation {
	z-index: 100;
	position: fixed;
	background-color:#007297;
	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: 15px 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;
}

#mobile-navigation a {
	display: block;
	text-decoration: none;
	font-size: 16px;
	color: #fff;
	padding-top: 8px;
	padding-bottom: 8px;
	text-transform: uppercase;
	font-weight: bold;
	padding-right: 60px;
	line-height: 1.5;
}

#mobile-navigation a:hover,
#mobile-navigation a:active,
#mobile-navigation a:focus {
	color: #89AE8F !important;
	 
}

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

#mobile-navigation ul li {
	padding: 0;
	position: relative;
	display: block;
	width: 100%;
	border-bottom: 0px solid #E9F5F7;
}

#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: #274045;
}
#mobile-navigation .sub-menu {
	margin: 0;
	position: fixed;
	background-color: #007297;
	z-index: 1;
	overflow: auto;
	display: none;
}

.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: #0F8577;
}

.mobile-navigation-next {
	position: absolute;
	right: 0;
	top: 0;
	background: transparent;
	color: #fff;
}

.mobile-navigation-next:hover,
.mobile-navigation-next:focus {
	background: #fff;
	color:#89AE8F
}



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


.mobile-navigation-previous {
	margin-bottom: 10px;
	border: none !important;
}
.mobile-navigation-close.no-background.mobile-menu-toggle {
	background: #89AE8F !important;
	font-size: 22px;
	height: 50px;
	max-height: 50px;
}

#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, #007297, #1d608c);
	color: #fff;
	font-weight: bold;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
	background: linear-gradient(to bottom, #007297, #007297);
	color: #fff;
	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;
}
.slick-autoplay-toggle-button {
	display: none;
}
/* .home-slider {
	position: absolute;
	top: 0;
	left: 0;
} */

.home-slider,
.home-slider-single {
	height:670px;
}

.home-slider-single {
	background-repeat: no-repeat;
	background-size: cover;
	background-position-x: 60%;
}

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

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

.home-hero .slick-dots {
	z-index: 1;
	display: none !important;
}


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

}

.home-slider-tagline-inner {
	height: 100%;
	display: flex;
	align-items: center;
	margin-top: 0;
	padding-bottom: 0;
	justify-content: center;
	background: linear-gradient(to right,#283e42 .1%,rgba(11,11,11,0) 100%);
}

.home-slider-single-tagline {
	width: 100%;
	max-width: 1226px;
	background: transparent;
	text-align: center;
	padding: 00px 0 60px 0;
}

.tag-one {
	font-size: 45px;
	line-height: 54px;
	color: #fff;
	font-family: 'Roboto Condensed', sans-serif;
	text-transform: capitalize;
	margin-bottom: 30px;
}

.tag-two {
	font-family: var(--heading-font-family);
	font-size: 125px;
	color: #fff;
	line-height: 135px;
	text-transform: uppercase;
}

.tag-third  {
	font-size: 45px;
	font-weight: normal;
	line-height: 54px;
	color: #fff;
	font-family: 'Roboto Condensed', sans-serif;
	text-transform: capitalize;
}
 body.scrolled .slide-scroll-btn {
	display: none;
}
 
 .slide-scroll-btn {
	position: fixed;
	bottom: 1px;
	text-align: center;
	width: 100%;
}

.scroll-to i {
	color: #112d32;
	font-size: 32px;
}

.scroll-to {
	background: transparent !important;
	position: relative;
	padding: 0;
}

.scroll-to:hover i,
.scroll-to:focus i {
	color:#fff
 
}


.scroll-to::after {
	background: transparent;
	content: "";
	position: absolute;
	left: -8px;
	top: 11px;
	width: 32px;
	height: 97%;
	background-image: linear-gradient(to bottom, #007297, #1d608c);
	z-index: -1;
}

.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: #6dbe5a;
	background-color: #fff;
	text-decoration: none;
}

.standing-img {
	position: relative;
	/* bottom: -62px; */
	/* text-align: right; */
	/* width: 100%; */
}

.standing-img img {
	position: absolute;
	bottom: -227px;
	max-width: 250px;
	right: 22%;
	z-index: 1;
}





.home-hero .slick-dots li.slick-active button .slick-dot-icon {
	color: #6dbe5a;
	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;
}
 

@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: none;
}	*/
.mob-header-cta {
	display: inline-block;
	width: 100%;
	background: #1b3a63;
	color: #fff;
	font-size: 15px;
	padding: 2px 0;
	margin-bottom: 4px;
}
.header-logo {
	padding: 5px 0 5px 6px;
	width: 60%;
}

.header-logo img {
	max-width: 220px;
}
.header-mobile-buttons {
	margin-left: 2%;

}

#header-mobile .header-mobile-buttons .button {
	background: #61BACC;
	color: #fff;
	font-weight: bold;
	border: 1px solid #1b3a63;
}
#header-mobile .header-mobile-buttons .button:hover,
#header-mobile .header-mobile-buttons .button:focus {
	background:#1b3a63;
	color: #fff;
	font-weight: bold;
	border: 1px solid #1b3a63;
}
#header-mobile .header-mobile-buttons .button .fas.fa-phone {
	color: #1b3a63;
	font-weight: bold;
}

#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: 0px;
}
.home-slider {
	height: 315px;
}

.tag-one {
	font-size: 25px;
	line-height: 28px;
	margin-bottom: 20px;
}

.tag-two {
	font-size: 60px;
	line-height: 1;
	margin-bottom: 0;
}

.tag-third.tagline {
	font-size: 25px;
	line-height: 28px;
}


.single-logo img {
	max-width: 55px;
}
 .home-slider-single-tagline {
	width: 85%; 
}

#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: 50px;
	justify-content: center;
}
.home-slider-single-tagline-lower.hp-cta  .button {
	padding: 12px 15px;
 
}
.module-header-b-upper-side {
	display: none;
}

.standing-img img {
	position: absolute;
	bottom: -100px;
	max-width: 110px;
	right: 13%;
	z-index: 1;
}

.home-slider, .home-slider-single {
	height: 490px;
	position: relative;
	z-index: 9;
}
.home-slider-single-tagline {
	width: 100%;
	max-width: 1226px;
	background: transparent;
	text-align: center;
	padding: 10px 30px 10px 30px;
	margin-top: 7%;
}
.slider-third-tagline.tag-three p {
	font-size: 16px;
	color: #0d385d;
	line-height: 22px;
}

.slider-third-tagline.tag-three {
	max-width: 57%;
	font-size: 16px;
	color: #0d385d;
	padding-left: 28px;
	position: relative;
	margin-top: 30px;
	margin-left: 12px;
	margin-bottom: 30px;
}

.slider-third-tagline.tag-three::after {
	left: 8px;
	top: 4px;
	width: 4px;
	height: 92%;
}
.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;
}




	
}

@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-mobile-inner {
	padding-top: 10px;
}

.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;
}





  
}



@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: 10px 0 8px 10px;
	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: 5px 15px;
}
.home-hero {
	margin-top: 0px;
}

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

.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;
 
}
.tag-one {
	font-size: 30px;
	line-height: 35px;
	margin-bottom: 25px;
}

.tag-two {
	font-size: 70px;
	line-height: 60px;
	margin-bottom: 10px;
 
}

.tag-third  {
	font-size: 30px;
	line-height: 35px;
	margin-bottom: 15px;
}

.home-slider-single-tagline {
	padding: 00px 25px 00px 25px;
}
.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;
 
}
.home-slider-tagline-inner {
	height: 100%;
	display: flex;
	align-items: flex-end;
	margin-top: 0;
	padding-bottom: 100px;
	justify-content: center;
}

.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;
}





  
}

@media screen and (min-width: 980px) and (max-width: 1024px) {
.home-slider, .home-slider-single {
	height: 650px;
}

		
	
}


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

#mega-menu li a, #desktop-navigation .sub-menu li a {
	font-size: 14px;
}
.main-navigation-menu > li {
	margin-right: 20px;
}
.home-hero, .home-slider, .home-slider-single {
	height: 100vh;
	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; 
}

.slider-third-tagline.tag-three p {
	font-size: 18px;
}

.slider-contact-title p {
	font-size: 15px;
}
.slider-contact-form .form-container .form-input-row input {
	padding-left: 10px;
	height: 45px;
	line-height: 45px;
}
.slider-contact-form .form-container .form-input-group textarea {
	padding-left: 10px;
}
.slider-contact-form .form-container .form-input-group {
	width: 366px;
 }
 
 .slider-contact-form .form-container .form-input-group.button-container {
	width: 174px;
	vertical-align: top;
	height: 45px;
	margin-left: 10px;
	font-size: 16px;
}

.slider-contact-form .form-container .form-input-group.button-container .button {
	width: 100%;
	padding: 10px 15px;
	height: 45px;
	line-height: 30px;
	font-size: 16px;
}

.home-slider-single-tagline {
	padding: 00px 0 00px 0;
}
.home-slider-tagline-inner {
	align-items: flex-end;
	margin-top: 0;
	padding-bottom: 100px;
 
}

.tag-one {
	font-size: 40px;
	line-height: 50px;
	margin-bottom: 20px;
}

.tag-two {
	font-size: 90px;
	color: #fff;
	line-height: 100px;
 
}

.tag-three {
	font-size: 40px;
	line-height: 50px;
	margin-bottom: 00px;
}


}





@media screen and (min-width: 1200px) and (max-width: 1300px) {
.module-header-a-inner {
	padding: 0 15px;
}	
	
}



@media screen and (min-width: 1900px) and (max-width: 12000px) {
.header-desktop .row {
	max-width: 95%;
}
.header-logo img {
	max-width: 430px;
	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: 1070px;
	width: 100%;
}

.home-hero {
	margin-top: 0;
}
.tag-one {
	font-size: 50px;
	line-height: 1.5;
	margin-bottom: 20px;
}

.tag-two {
	font-size: 140px;
	line-height: normal;
}
.tag-third {
	font-size: 50px;
	font-weight: normal;
	line-height: 54px;
 
}

.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;
}

 

.main-navigation-menu > li > a {
	font-size: 25px !important;
}
 
.module-header-a-phone {
	font-size: 24px !important; 
	 padding: 12px 55px !important;
}


.module-header-a-phone:hover,
.module-header-a-phone:focus {
	font-size: 24px !important; 
		padding: 12px 55px !important;
}
.social-links a {
	font-size: 30px !important;
	width: 50px !important;	 
}
.module-header-a-cta a {
	font-size: 20px !important; 
}
.module-header-a-cta a:first-child::after {
	font-size: 22px!important;	  
}
.module-header-a-phone i {
	font-size: 28px!important;	 
 
}
 
 
.home-slider-single-tagline {
	width: 100%;
	max-width: 1900px;
	background: transparent;
	padding: 130px 0 00px 0;
}

 

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

.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;
}

.scroll-to::after {
	left: -11px;
	top: 11px;
	width: 44px;
 
}
.scroll-to i {
	color: #112d32;
	font-size: 45px;
}


 
 
	
}



@media screen and (min-width: 2560px) and (max-width: 12000px) {

 

.home-hero, .home-slider, .home-slider-single {
	height: 100vh;
	min-height: 1600px;
	width: 100%;
}
.standing-img img {
	right: 31%; 
}
.home-logo {
	right: 11%;
}	
#menu-top-contact-menu li {
	padding: 6px 45px;
}
}	
/* 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;
}
}