﻿/*===================== 
	Color information
	
	-UT blue #1b489c
TK blue #0a32b1

light Blue #009cdd

dk Grey #292929
lt Grey #ededed
Gold #bb9a6f
		 
=======================*/
/*===================== 
	CSS reset/normalize 
=======================*/

/**Correct `block` display not defined in IE 8/9.**/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
	display: block;
}

pre {
	white-space: pre-wrap;
}

small {
	font-size: 80%;
}


/*===================== 
	@Font-Face 
=======================*/


/*===================== 
	base styles 
=======================*/

html {
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: "Rethink Sans", sans-serif;
	margin: 0;
	padding: 0;
}

svg:not(:root) {
	overflow: hidden;
	/*reset*/
}

.clear {
	clear: both;
}

img {
	border: 0;
}

/*===================== 
	typography 
=======================*/

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
}

h1 {
	font-size: 30px;
	font-weight: 700;
}

h2 {
	font-size: 28px;
	font-weight: 700;
}

h3 {
	font-size: 24px;
	font-weight: 700;
}

h4 {
	font-size: 20px;
	font-weight: 700;
}

h5 {
	font-size: 18px;
	font-weight: 700;
}

h6 {}

p {
	font-size: 18px;
	margin: 0;
}

.bold {
	font-weight: bold;
}

.font-blue {
	color:#0a32b1;
}
.font-lt-blue {
	color:#009cdd;
}
.mob-only {
	display: none;
}


/*===================== 
	link styles 
=======================*/

a:focus {
	outline: thin dotted;
	/*reset*/
}

a,
a:link,
a:visited,
a:active {
	outline: 0;
	/*reset*/
	color: #000;
	text-decoration: none;
}

a:hover {
	outline: 0;
	/*reset*/
	text-decoration: none;
	color: #ccc;
}
.butn-lt-blue {
	background:#0A32b1;
	color:#fff!important;
	display: inline-block;
	padding:15px 10px;
	font-size: 18px;
	font-weight: 400;
	text-align:center;
	margin:10px 0;
    transition: .2s ease-in;
	border:0px;
	outline: none;
	cursor: pointer;
	border-radius: 0px!important;
	box-sizing: border-box;
	text-shadow: 0 0 5px rgba(0,0,0,0.5);
}
.butn-lt-blue span {
	font-weight: 700;
}
.butn-lt-blue:hover {
	background:#292929;
}
.butn-blue {
	background:#0a32b1;
	color:#fff!important;
	display: inline-block;
	padding:15px 10px;
	font-size: 18px;
	font-weight: 400;
	text-align:center;
	margin:10px 0;
    transition: .2s ease-in;
	border:0px;
	outline: none;
	cursor: pointer;
	border-radius: 0px!important;
	box-sizing: border-box;
}
.butn-blue span {
	font-weight: 700;
}
.butn-blue:hover {
	background:#292929;
}
.text-link-blue {
	font-weight: 600;
	color:#0a32b1!important;
	transition: .2s ease-in;
	background: none;
	border: 0;
	padding: 0;
	margin: 0;
	cursor: pointer;
	text-align: inherit;
}
.text-link-blue:hover {
	opacity: 0.7;
}

/*===================== 
	landing page styles 
=======================*/

.wrap-landing {
	width: 100%;
	border-bottom: 10px solid #000;
	min-height: 100vh;
	box-sizing: border-box;
}
.landing-header {
	width: 100%;
	background:#000;
}
.landing-header .container-1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap:10px;
	padding:10px 20px;
}
.landing-header .container-1 ul {
	padding:0;
	margin:0;
	display: flex;
	gap:20px;
}
.landing-header .container-1 ul li {
	padding:0;
	margin:0;
	list-style: none;
}
.landing-header .container-1 ul li a {
	font-size:20px;
	color:#fff;
}
.landing-header .container-1 ul li a:hover {
	opacity: 0.7;
}
.landing-cta {
	width: 100%;
}
.landing-cta .container-1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding:40px 20px;
	gap:20px 0;
}
.landing-cta .container-1 h1 {
	font-family: "Rethink Sans", sans-serif;
	text-align: center;
	font-size:35px;
	font-weight:700;
	line-height: 1;
	padding-bottom: 40px;
	display: block;
	width: 100%;
	box-sizing: border-box;
}
.landing-cta .container-1 h1 span {
	font-size:25px;
	font-weight:400;
	display: block;
}
.landing-cta-col {
	width: calc(33.33% - 10px);
	position: relative;
}
.landing-cta-bg {
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
}
.landing-cta-overlay {
	width: 100%;
	height: calc(100vh - 300px);
	min-height: 400px;
	background:rgba(0,0,0,0.3);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	padding:60px 20px 40px 20px;
	box-sizing: border-box;
	gap:20px;
	position: relative;
	z-index: 2;
}
.landing-cta-overlay img {
	width: 100%;
	max-width:250px;
	height: auto;
	display: block;
	margin:0 auto;
}
.landing-cta-overlay a {
	display: flex;
	align-items: stretch;
	min-height: 60px;
	box-shadow: 0 0 5px 2px rgba(0,0,0,0.5);
}
.thermo-king-btn {
	background:#009cdd;
}
.utility-btn {
	background:#1b489c;
}
.golf-btn {
	background:#bb9a6f;
}
.landing-cta-overlay a span {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-grow: 1;
	text-align: center;
	font-size:20px;
	font-weight:400;
	color:#fff;
	padding:0 20px;
	box-sizing: border-box;
	transition: .2s ease-in;
}
.landing-cta-overlay a i {
	display: flex;
	width: 60px;
	background:#fff;
	justify-content: center;
	align-items: center;
	color:#000;
	font-size:30px;
	transition: .3s ease-in;
}
.landing-cta-overlay a:hover span {
	background:#000!important;
}
.landing-cta-overlay a:hover i {
	background:#000;
	color:#fff;
}

/*===================== 
	header styles 
=======================*/

.header-wrap {
	width: 100%;
	margin: 0;
	background:#fff;
	position: relative;
}
.head-search-1 {
	background: #dadbdc;
	padding:20px 2%;
	width: 100%;
	box-sizing: border-box;
	margin: 0 auto;
	display: none;
}
.head-search-1 form {
    display: flex;
    background:#fff;
    padding:5px 10px;
    box-sizing: border-box;
    width: 100%;
}
.head-search-1 form input {
    background: #fff;
    background-color: #fff!important;
    font-size: 16px!important;
    flex-grow: 1;
    width:100%;
    border:0px!important;
    outline: none!important;
    font-family: "Rethink Sans", sans-serif;
    height: auto!important;
    padding:15px!important;
    line-height: normal!important;
    border-radius: 0px!important;
}
.head-search-1 form button {
    background: #fff;
    background-color: #fff;
    color:#555759;
    font-size: 16px;
    border:0px;
    outline: none;
    transition: .2s ease-in;
}
.head-search-1 form:hover button {
    color:#0a32b1;
}


header {
	margin: 0 auto;
	width: 100%;
	max-width: 1600px;
	padding:20px;
	box-sizing: border-box;
}
.top-head {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap:0 10px;
}

.head-logo-1 {
	display: flex;
}
.head-logo-1 img {
	display: block;
	height: auto;
	border-right: 2px solid #000;
	object-fit: contain;
	object-position: center;
	padding:0px 20px;
	box-sizing: content-box;
}
.head-logo-1 img:first-of-type {
	padding-left: 0px;
}
.head-logo-1 img:last-of-type {
	border-right: 0px;
}
.header-alert-text {
	font-family: "Rethink Sans", sans-serif;
	font-size:15px;
	text-transform: uppercase;
	color:#0a32b1!important;
	text-align: center;
	font-weight:600;
	padding:10px 5px;
	border:1px solid #009cdd;
	transition: .2s ease-in;
}
.header-alert-text:hover {
	color:#000!important;
	border:2px solid #000;
}
.head-info-1 {
	padding:0;
	margin:0;
	display: flex;
	gap:0 10px;
}
.head-info-1 li {
	padding:0;
	margin:0;
	list-style: none;
}
.head-info-1 li a {
	font-size:18px;
	font-weight:400;
	oclor:#000;
	transition: .2s ease-in;
	white-space: nowrap;
}
.head-info-1 li a:hover {
	color:#0a32b1;
}
.desktop-search-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width:50px;
	height:50px;
	background:#009cdd;
	color:#fff;
	font-size:18px;
	transition: .2s ease-in;
	cursor: pointer;
	padding:0 10px;
	box-sizing: border-box;
	
}
.desktop-search-btn:hover {
	background:#000;
}


/*===================== 
	nav styles 
=======================*/

#menu-button {
	display: none;
}

nav.mobile {
	display: none;
}



nav.primary {
	padding: 0;
	display: block;
	margin: 0;
	position: relative;
	width: 100%;
	background:#292929;
}
nav.primary > ul {
	width:100%;
	max-width: 1600px;
	display: flex;
	justify-content: space-between;
}
nav.primary ul {
	margin: 0 auto;
	padding: 0;
}

nav.primary ul li {
	display: inline-block;
	margin: 0;
	list-style-type: none;
	transition: .2s ease-in;
}

nav.primary ul li a {
	font-family: "Rethink Sans", sans-serif;
	color: #fff;
	font-size: 18px;
	text-decoration: none;
	padding: 15px;
	display: block;
	margin: 0;
	text-align: center;
	text-transform: uppercase;
	-webkit-transition: .4s ease-in;
	-moz-transition: .2s ease-in;
	-o-transition: .2s ease-in;
	transition: .2s ease-in;
	font-weight: 500;
	cursor: pointer;
}

nav.primary ul li a:hover {
	background: #0a32b1;
	color: #fff;
}
nav.primary ul li:hover a {
	background: #0a32b1;
	color: #fff;
}

/* Appearance of the sub-level links */
nav.primary ul li li a {
	background: #0a32b1;
	text-align: left;
}

/* Appearance of the sub-level links on hover */
nav.primary ul li li a:hover {
	background: #000;
}


/* This controls the Primary nav dropdowns for sublinks. Should not have to edit this too muuch */
nav.primary ul ul {
	display: none;
	position: absolute;
}

nav.primary ul ul ul {
	position: absolute;
	left: 100%;
	top: 0;
}

nav.primary ul li:hover>ul {
	display: block;
	line-height: 18px;
	z-index: 100;
}
nav.primary ul ul li {
	display: block;
	float: none;
	width: 230px;
	position: relative;
	margin: 0;
}

/*===================== 
	content styles 
=======================*/

.wrap-hero {
	width: 100%;
}
.wrap-hero .container-1 {
	display: flex;
	padding:60px 20px;
	justify-content: space-between;
	gap:40px;
}
.hero-left {
	width: 65%;	
	max-height: calc(-325px + 100vh);
	min-height: 500px;
	height: 54vw;
}
.hero-left a {
	width: 100%;
	height: 100%;
	position: relative;
	display: block;
}
.hero-left a img {
	position: absolute;
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
}
.hero-left a h1 {
	display: flex;
	width: 100%;
	padding: 20px 20px 25% 20px;
	box-sizing: border-box;
	justify-content: flex-end;
	align-items: center;
	flex-direction: column;
	text-align: center;
	font-size: 70px;
	font-weight: 900;
	color: #fff;
	text-shadow: 0 0 10px rgba(0,0,0,0.7);
	font-family: "Rethink Sans", sans-serif;
	line-height: 1;
	position: relative;
	z-index: 2;
	text-transform: uppercase;
	height: 100%;
	background-image: -webkit-linear-gradient(270deg,rgba(0,0,0,0.00) 2.59%,rgba(0,0,0,0.82) 82.38%);
	background-image: -moz-linear-gradient(270deg,rgba(0,0,0,0.00) 2.59%,rgba(0,0,0,0.82) 82.38%);
	background-image: -o-linear-gradient(270deg,rgba(0,0,0,0.00) 2.59%,rgba(0,0,0,0.82) 82.38%);
	background-image: linear-gradient(180deg,rgba(0,0,0,0.00) 2.59%,rgba(0,0,0,0.82) 82.38%);
	transition: .2s ease-in;
}
.hero-left a h1 span {
	display: block;
	font-size:35px;
	font-weight:500;
}
.hero-left a h2 {
	display: block;
	width: 100%;
	padding: 20px;
	box-sizing: border-box;
	text-align: center;
	background: #0a32b1;
	color: #fff;
	font-size: 30px;
	font-weight: 700;
	position: absolute;
	z-index: 3;
	bottom: 0;
	left:0;
	transition: .2s ease-in;
}
.hero-left a h2 span {
	font-weight: 400;
}
.hero-left a:hover h1 {
	text-shadow: 0 0 20px rgba(0,0,0,1.0);
	background-image: -webkit-linear-gradient(270deg,rgba(0,0,0,0.50) 2.59%,rgba(0,0,0,0.82) 82.38%);
	background-image: -moz-linear-gradient(270deg,rgba(0,0,0,0.50) 2.59%,rgba(0,0,0,0.82) 82.38%);
	background-image: -o-linear-gradient(270deg,rgba(0,0,0,0.50) 2.59%,rgba(0,0,0,0.82) 82.38%);
	background-image: linear-gradient(180deg,rgba(0,0,0,0.50) 2.59%,rgba(0,0,0,0.82) 82.38%);
}
.hero-left a:hover h2 {
	background:#009cdd;
}
.hero-right {
	width: 35%;	
	max-height: calc(-325px + 100vh);
	min-height: 500px;
	height: 54vw;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap:40px;
}
.hero-right a {
	width: 100%;
	height: 50%;
	background:#000;
	position: relative;
}
.hero-right a img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
	opacity: 0.6;
	position: absolute;
	left:0;
	top:0;
	z-index: 1;
	transition: .2s ease-in;
}
.hero-right a h2 {
	display: block;
	width: 100%;
	padding: 10px 20px;
	box-sizing: border-box;
	text-align: center;
	background: #0a32b1;
	color: #fff;
	font-size: 30px;
	font-weight: 700;
	position: absolute;
	bottom: 0;
	left:0;
	z-index: 2;
	transition: .2s ease-in;
}
.hero-right a h2 span {
	font-weight: 400;
}
.hero-right a:hover img {
	opacity: 0.3;
}
.hero-right a:hover h2 {
	background:#009cdd;
}
.wrap-featured {
	width:100%;
	background:#ededed;
}
.wrap-featured h2 {
	display:block;
	width:100%;
	padding:20px;
	text-align: center;
	box-sizing: border-box;
	color:#fff;
	font-size:30px;
	font-weight:800;
	background:#292929;
}
.wrap-featured h2 span {
	font-weight:400;
}
.wrap-featured .container-2 {
	padding:80px 20px;
}
.featured-slider {
	display: flex!important;
	align-items: center;
	gap: 10px;
}
.featured-slider .slick-track {
	display: flex!important;
	gap:10px;
	align-items: stretch;
}
.featured-slider .slick-slide {
	box-sizing: border-box;
	height: auto!important;
}
.featured-slide {
	background:#fff;
	padding:20px;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap:10px;
	box-sizing: border-box;
	height: 100%;
}
.featured-slide img {
	width: 100%;
	height:auto;
	min-height: 200px;
	display: block;
	object-fit: cover;
	object-position: center;
}
.featured-slide h3 {
	text-align: center;
	font-size:20px;
	font-weight:600;
	color:#000;
}
.featured-slide p {
	text-align: center;
	font-size:18px;
	font-weight:700;
	color:#ba0000;
}
.featured-slide a {
	display: block;
	width: 100%;
	max-width: 250px;
	margin:0 auto;
}
.wrap-about-home {
	width: 100%;
}
.wrap-about-home .container-1 {
	display: flex;
	gap:20px 40px;
	align-items: stretch;
	padding:140px 20px;
}
.home-about-left {
	width: 65%;
	display: flex;
	flex-direction: column;
}
.home-about-left img {
	width: 100%;
	height: auto;
	min-height: 230px;
	display: block;
	object-fit: cover;
	object-position: center;
}
.home-about-info {
	background:#292929;
	padding:100px 40px;
	color:#fff;
}
.home-about-info h2 {
	font-size:30px;
	font-weight:700;
	text-transform: uppercase;
	margin-bottom: 20px;
}
.home-about-info p {
	font-size:16px;
	font-weight:400;
	line-height: 1.5;
}
.home-about-right {
	width: 35%;
	display: flex;
	gap:40px;
}
.home-about-right a {
	width: 50%;
	box-sizing: border-box;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background:#0a32b1;
	padding:20px;
	transition: .2s ease-in;
}
.btn-text {
	position: relative;
	z-index: 2;
	font-size:30px;
	font-weight:700;
	text-align: center;
	color:#fff;
}
.btn-text span {
	font-weight:400;
}
.btn-bg {
	position: absolute;
	width: 100%;
	box-sizing: border-box;
	top: 43%;
	right: 0;
	opacity: 0.2;
	color: #fff;
	text-align: right;
	font-size: 100px;
	padding: 20px;
	transition: .35s ease-in;
}
.btn-bg i {
	transition: .3s ease-in;
}
.btn-bg i:first-of-type {
	opacity: 0.2;	
	margin-right: -40px;
}
.home-about-right a:hover {
	background:#009cdd;
}
.home-about-right a:hover .btn-bg {
	padding-right:30px; 
}
.home-about-right a:hover .btn-bg i:first-of-type {
	margin-right: -10px;
}
.wrap-contact-info {
	width:100%;
	padding:60px 20px;
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap:20px 60px;
	align-items: center;
	background:#0a32b1;
}
.contact-info {
	display: flex;
	align-items: center;
	gap:20px;
}
.contact-info i {
	display: flex;
	width:75px;
	height:75px;
	background:#009cdd;
	color:#fff;
	justify-content: center;
	align-items: center;
	transition: .2s ease-in;
	font-size: 20px;
}
.contact-info span {
	font-size:20px;
	font-weight:400;
	color:#fff;
	transition: .2s ease-in;
}
a.contact-info:hover i {
	background:#000;
}
a.contact-info:hover span {
	color:#009cdd;
}

.wrap-banner {
	width: 100%;
	position: relative;
}
.wrap-banner img {
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 1;
	display: block;
	object-fit: cover;
	object-position: center;
}
.wrap-banner .banner-overlay {
	width: 100%;
	height: auto;
	background:rgba(0,0,0,0.4);
	box-sizing: border-box;
	position: relative;
	z-index:2;
}
.wrap-banner .container-2 {
	padding: calc(8vw + 40px) 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	gap:20px;
}
.wrap-banner .container-2 h2 {
	color:#fff;
	font-size:50px;
	font-weight:700;
	text-shadow: 0 0 10px rgba(0,0,0,0.6);
	text-transform: uppercase;
	text-align: right;
	line-height: 1.2;
}
.wrap-banner .container-2 h2 span {
	font-weight:400;
	display: block;
}
.wrap-banner .container-2 a {
	display: block;
	max-width: 250px;
	width: 100%;
}


/*===================== 
	Form styles 
=======================*/

/* Containers */



.form-info-cont {
	width: 100%;
	box-sizing: border-box;
}
.form-flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.form-inline-1 {
	display: flex;
	flex-wrap: wrap;
}
.thankyou-container {
	width:100%;
	box-sizing: border-box;
	padding:30px 10% 10% 10%;
	margin-top:0;
}

/* Inputs */

.radio-pad {
	padding: 0 0 0 10px;
}

.form-info-cont p {
	font-size:20px;
	font-weight: 600;
	color:#fff;
	margin:20px 0 10px 0;
	text-align: left;
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.form-info-cont input, .form-info-cont date {
	width: 100%;
	font-family: "Rethink Sans", sans-serif;
	display: block;
	padding: 15px;
	font-size: 16px;
	margin:  0 0 15px 0;
	box-sizing: border-box;
    outline:none;
    border:0px;
	background:#fff;
    color:#000; 
}

.select-cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
	padding:0px!important;
    border-radius: 0px!important;
    width:100%;
    background:#fff;
    box-sizing: border-box;
    position: relative;
	margin: 0 0 15px 0;
}
.select-cont  select {
    -webkit-appearance: initial;
    -moz-appearance: initial;
    appearance: initial;
    width:100%;
    background-color:transparent;
    border:0px!important;
    outline:none!important;
    font-size: 17px!important;
    font-weight: 400!important;
    padding:15px!important;
    box-sizing: border-box;
    color:#000; 
    position: relative;
    z-index: 2;
    cursor: pointer;
}
.select-cont i {
    position: absolute;
    z-index: 1;
    right:10px;
}

.form-info-checkbox input[type="checkbox"] {
	padding: 5px 0 5px 5px;
	margin:  0 0 15px 0;
	box-sizing: border-box;
}
.form-info-cont textarea {
	width: 100%;
	background:#fff;
	font-family: "Rethink Sans", sans-serif;
	display: block;
	padding: 15px;
	font-size: 16px;
	border:0px;
	min-height: 120px;
	box-sizing: border-box;
	margin:  0 0 15px 0;
    outline:none;
}


.CaptchaImage {
  max-width: 100%;
}
.CaptchaWhatsThisPanel input {
    margin:0 auto;
}

.CaptchaWhatsThisPanel a {color:#000;}
.CaptchaWhatsThisPanel a:hover {text-decoration:underline;} 


.click-to-show {
	display: none;
	padding:10px;
	width:100%;
	background:#fff;
	box-sizing: border-box;
}
.click-to-show.clicked {
	display: block;
}
.click-show.clicked {
	display: none;
}


/*===================== 
	banner styles 
=======================*/


/*===================== 
	layout styles 
=======================*/

.wrap {
	width: 100%;
	margin: 0;
}
.wrap-content {
	padding:40px 0;
} 
.wrap-content h1 {
	display: block;
	width: 100%;
	padding: 20px;
	text-align: center;
	box-sizing: border-box;
	color: #fff;
	font-size: 30px;
	font-weight: 800;
	background: #0a32b1;
	margin-bottom: 40px;
}
.wrap-content h1 span {
	font-weight: 400;
}
.flex-content {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	gap: 40px;
}
.content-left {
	width: 65%;
	background:#ededed;
	padding:40px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	gap:10px;
}
.content-right {
	width: 35%;
}
.form-cont-1 {
	padding: 40px;
	box-sizing: border-box;
	background: #0A32b1;
	text-align: center;
}
.form-cont-1 h2 {
	font-size:26px;
	color:#fff;
	text-align: center;
	margin-bottom: 10px;
	text-transform: uppercase;
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.content-bg-img {
	position: relative;
}
.content-bg-img img {
	position: absolute;
	left:0;
	top:0;
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
}
.content-bg-btn-overlay {
	position: relative;
	z-index: 2;
	background-image: -webkit-linear-gradient(270deg,rgba(0,0,0,0.00) 2.59%,rgba(0,0,0,0.82) 82.38%);
	background-image: -moz-linear-gradient(270deg,rgba(0,0,0,0.00) 2.59%,rgba(0,0,0,0.82) 82.38%);
	background-image: -o-linear-gradient(270deg,rgba(0,0,0,0.00) 2.59%,rgba(0,0,0,0.82) 82.38%);
	background-image: linear-gradient(180deg,rgba(0,0,0,0.00) 2.59%,rgba(0,0,0,0.82) 82.38%);
	transition: .2s ease-in;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	height: 100%;
	width: 100%;
}
.content-bg-btn-overlay h2 {
	display: block;
	width: 100%;
	padding: 20px;
	box-sizing: border-box;
	text-align: center;
	background: #0a32b1;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	position: absolute;
	z-index: 3;
	bottom: 0;
	left: 0;
	transition: .2s ease-in;
	text-transform: uppercase;
}
.content-bg-btn-overlay h2 span {
	font-weight: 400;
}
.content-bg-btn-overlay:hover {
	text-shadow: 0 0 20px rgba(0,0,0,1.0);
	background-image: -webkit-linear-gradient(270deg,rgba(0,0,0,0.50) 2.59%,rgba(0,0,0,0.82) 82.38%);
	background-image: -moz-linear-gradient(270deg,rgba(0,0,0,0.50) 2.59%,rgba(0,0,0,0.82) 82.38%);
	background-image: -o-linear-gradient(270deg,rgba(0,0,0,0.50) 2.59%,rgba(0,0,0,0.82) 82.38%);
	background-image: linear-gradient(180deg,rgba(0,0,0,0.50) 2.59%,rgba(0,0,0,0.82) 82.38%);
}
.content-bg-btn-overlay:hover h2 {
	background: #009cdd;
}
.map-cont iframe {
	width: 100%;
	height: 100%;
	min-height: 350px;
}
.contact-list {
	padding:5px 0;
	margin:0;
}
.contact-list li {
	padding:2px 0;
	margin:0;
	list-style: none;
	font-size:18px;
	font-weight: 500;
}
.contact-list li span {
	font-weight: 800;
	text-transform: uppercase;
	font-size:20px;
}
.contact-list li a {
	color:#000;
}
.contact-list li a:hover {
	color:#0a32b1;
}
.container-1 {
	max-width: 1600px;
	margin: 0 auto;
	padding: 20px;
	box-sizing: border-box;
}
.container-2 {
	max-width: 1100px;
	margin: 0 auto;
	padding: 20px;
	box-sizing: border-box;
}
.container-inv {
	padding:40px 20px;
	box-sizing: border-box;
}

.flex-cont-1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.col-1 {
	width: 100%;
	box-sizing: border-box;
}
.col-1-6 {
	width: 16%;
	box-sizing: border-box;
}

.col-1-5 {
	width: 20%;
	box-sizing: border-box;
}

.col-1-4 {
	width: 24%;
	box-sizing: border-box;
}

.col-1-3 {
	width: 32.33%;
	box-sizing: border-box;
}

.col-1-2 {
	width: 49%;
	box-sizing: border-box;
}

.col-2-3 {
	width: 65%;
	box-sizing: border-box;
}

.col-3-4 {
	width: 75%;
	box-sizing: border-box;
}

/*===================== 
	footer styles 
=======================*/

footer {
	margin: 0;
	width: 100%;
	border-top:15px solid #009cdd;
	display: flex;
	justify-content: space-between;
}
.foot-nav {
	width:70%;
	background:#ededed;
	display: flex;
	gap:calc(5vw + 20px);
	padding:80px 5vw;
}
.foot-nav-col p {
	font-family: "Rethink Sans", sans-serif;
	font-size:20px;
	font-weight:400;
	color:#0a32b1;
}
.foot-nav-col ul {
	padding:10px 0 0 0;
	margin:0;
}
.foot-nav-col ul li {
	padding:1px 0;
	margin:0;
	list-style: none;
}
.foot-nav-col ul li a {
	font-size:16px;
	font-weight:600;
	color:#000;
	transition: .2s ease-in;
}
.foot-nav-col ul li a:hover {
	color:#0a32b1;
}
.foot-logo {
	width: 30%;
	padding:60px 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap:40px;
	background:#fff;
	box-sizing: border-box;
}
.foot-logo img {
	display: block;
	width: 100%;
	max-width:400px;
	height: auto;
}
.foot-logo ul {
	padding:0;
	margin:0 auto;
	display: flex;
	gap:10px;
}
.foot-logo ul li {
	padding:0;
	margin:0;
	list-style: none;
}
.foot-logo ul li a {
	font-size:20px;
	color:#0a32b1;
	transition: .2s ease-in;
}
.foot-logo ul li a:hover {
	color:#000;
}

/*========================== 
	  Responsive styles 
============================*/
@media screen and (max-width: 1228px) {
.header-alert-text {
		font-size: 15px;
		padding: 5px 5px;
	}	
}
@media screen and (max-width: 1144px) {
	.header-alert-text {
		font-size: 15px;
		padding: 5px 5px;
	}
}
@media screen and (max-width: 1200px) {
	nav.primary ul li a {
		font-size: 1.5vw;
	}
	.header-alert-text {
		font-size: 13px;
		padding: 5px 5px;
	}
	.head-info-1 {
		gap: 0 10px;
	}
	.head-info-1 li a {
		font-size: 16px;
	}
	.hero-left a h1 {
		font-size: 50px;
	}
	.hero-left a h1 span {
		font-size:25px;
	}
	.hero-left a h2, .hero-right a h2 {
		font-size: 20px;
	}
	.home-about-left, .home-about-right {
		width:50%;
	}
	.btn-text {
  		font-size: 20px;
	}
	.landing-cta-overlay a span {
		font-size:18px;
	}
	.content-left {
		width: 55%;
	}
	.content-right {
		width: 45%;
	}
}
@media screen and (max-width: 1195px) {
	
}
@media screen and (max-width: 1000px) {
	.wrap-about-home .container-1 {
	  flex-wrap: wrap;
	}
	.home-about-left, .home-about-right {
		width:100%;
		gap:0 20px;
	}
	.home-about-right a {
		height: 250px;
	}
	.btn-bg {
  		bottom: 0;
	}
	.flex-content {
	  flex-wrap: wrap;
	}
	.content-left, .content-right {
		width: 100%;
		order:2;
	}
	.mob-only {
		display: block;
	}
	.content-bg-img {
		position: relative;
		min-height: 300px;
		order:1;
	}

}
@media screen and (max-width: 1170px) {
	.col-1-2, .col-1-3 {
		width: 100%;
	}
	
	.landing-cta-col {
		width: 100%;
	}
	.landing-cta-overlay {
		width: 100%;
		height: auto;
		min-height: 100%;
		padding: 20px 20px;
		gap: 10px;
	}
	.landing-cta-overlay img {
		max-width: 200px;
	}
	.landing-header .container-1 ul li a {
		font-size: 16px;
	}
	.landing-cta .container-1 h1 {
		font-size:25px;
		padding-bottom: 20px;
	}
	.landing-cta .container-1 h1 span {
		font-size:16px;
	}
	

	.desktop-search-btn {
		display: none;
	}
	.head-info-1 {
		display: none;
	}
	
	/*==============================
		Mobile Nav Styles			
	================================*/
	nav.primary {
		display: none;
	}
    .mobile-nav-cont-1 { display:block;}
    
	#menu-button {
		width: 100%;
		display: flex;
        justify-content: space-between;
        align-items: center;
		position: relative;
        box-sizing: border-box;
		background:#0a32b1;
		padding:10px 20px;
		gap:5px;
	}
	#menu-button ul {
		padding:0;
		margin:0;
		display: flex;
		gap:10px;
		flex-wrap: wrap;
	}
	#menu-button ul li {
		padding:0;
		margin:0;
		list-style: none;
	}
	#menu-button ul li a {
		font-size:22px;
		color:#009cdd;
		transition: .2s ease-in;
		cursor: pointer;
	}
	#menu-button ul li a:hover {
		color:#fff;
	}
	.menu-toggle {
        display: flex;
        align-items: center;
		justify-content: center;
		height: 50px;
		width: 50px;
		cursor: pointer;
    }
     .menu-hamburger {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        width:30px;
        height: 22px;
        position: relative;
    }
    .menu-hamburger-bar-1 {
       display: block;
       background:#fff;
        height: 3px;
		border-radius: 5px;
        width:100%;
        transition: .2s ease-in;
    }
    .menu-hamburger-bar-2 {
       display: block;
       background:#fff;
        height: 3px;
		border-radius: 5px;
        width:100%;
        transition: .2s ease-in;
    }
    .menu-hamburger-bar-3 {
       display: block;
       background:#fff;
        height: 3px;
		border-radius: 5px;
        width:100%;
        transition: .2s ease-in;
    }

    .clickopen .menu-hamburger-bar-2 {
        display: none;
    }
    .clickopen .menu-hamburger-bar-1 {
        position: absolute;
        top:10px;
        transform: rotate(45deg);
        width:26px;
    }
    .clickopen .menu-hamburger-bar-3 {
        position: absolute;
        top:10px;
        transform: rotate(-45deg);
        width:26px;
    }
    nav.mobile {
		display:none;
		position: absolute;
		left: 0px;
        top:100%;
		width: 100%;
		height: auto;
		background:#393939;
		z-index: 500; 
		overflow: scroll;
		max-height: calc(100vh - 250px); 
	}
	/* MENU HEADER SOCIAL MEDIA */
	nav.mobile .social-media {
		position: relative;
		text-decoration: none;
		display: inline-block;
		font-size: 16px;
		word-spacing: 13px;
		padding: 0 0 0 15px;
		color: #0a2737 !important;
	}
	nav.mobile .social-media a:link,
	nav.mobile .social-media a:visited {
		color: #2383b7;
		text-decoration: none;
	}
	nav.mobile .social-media a:hover,
	nav.mobile .social-media a:active {
		color: #0a2737;;
		text-decoration: underline;
	}
	.mobiletitle {
		padding-left: 20px;
		color: #0a2737;
	}
	/* MENU HEADER STYLES */
	nav.mobile .mobile_top {
		position: relative;
		display: block;
		padding: 0;
		margin: 15px 0 10px 0;
		color: #999;
		font-size: 18px;
		font-weight: 400;
	}
	/* MENU CLOSE 'X' BUTTON */
	nav.mobile .menu-toggle {
		position: absolute;
		padding: 3px 8px 3px;
		font-family: Arial, sans-serif;
		font-size: 24px;
		font-weight: bold;
		line-height: 1;
		background: #222;
		color: #999;
		text-decoration: none;
		top: -4px;
		/*top:-35px;*/
		right: 13px;
	}
	nav.mobile .menu-toggle:hover {
		/* Menu close button on hoveer */
		color: #fff;
	}
	/* MENU LIST STYLE */
	nav.mobile ul {
		list-style: none;
		font-weight: 300;
		margin: 0;
		padding: 0;
	}
	nav.mobile ul li {

		position: relative;
	}
	/* FIRST LEVEL */
	nav.mobile ul li a {
		position: relative;
        font-family: "Rethink Sans", sans-serif;
		font-size: 18px;
		padding:10px 15px;
        text-align: left;
		color: #fff;
		text-decoration: none;
		display: flex;
		justify-content: space-between;
		align-items: center;
		cursor: pointer;
	}
	nav.mobile ul li a:hover {
		background: rgba(45, 45, 45, 0.5);
		color: #fff;
		/* border highlight - Change to fit match site colors */
	}
	nav.mobile ul li a i {
		margin-left:5px;
	}
    .menu-btn-1 a {
       border:0px;
        background:#000;
    }
	/* SECOND LEVEL */
	nav.mobile ul li li:last-child {
		border: none;
	}
	nav.mobile ul li li a {
		background: #555759;
		text-decoration: none;
	}
	nav.mobile ul li li a:hover {
		background: rgba(65, 65, 65, 0.5);
        color: #fff;
	}
	.wrap-hero .container-1 {
		gap:20px;
		flex-wrap: wrap;
		padding: 30px 20px;
	}
	.hero-left {
		width: 100%;
		max-height: 100%;
		min-height: 300px;
		height: auto;
	}
	.hero-right {
		width: 100%;
		gap:20px;
	}
	.flex-content {
	  gap:20px;
	}
	.content-left, .form-cont-1 {
		padding:40px 20px;
	}
	.wrap-content h1 {
	  padding:15px 20px;
	  font-size: 26px;
	  background: #292929;
	  margin-bottom: 20px;
	}
	
	
}
@media screen and (max-width: 840px) {
	.landing-header .container-1 {
		justify-content:center;
		flex-direction: column;
		align-items: center;
	}
	.landing-cta .container-1 {
	  padding:20px;
	}
	.landing-cta-overlay a span {
		font-size: 16px;
	}
	.landing-cta-overlay a i {
		font-size: 20px;
	}
	 .landing-cta .container-1 h1 {
		font-size: 22px;
		padding-bottom: 10px;
	}
	.top-head {
		flex-wrap: wrap;
		gap:10px;
	}
	.header-alert-text {
		display: block;
		width: 100%;
		font-size: 13px;
	}
	.hero-left a h1 {
		font-size: 35px;
		justify-content: center;
		padding:20px 20px 40px 20px;
	}
	.head-logo-1 {
	max-width:100%;
	max-width: 1600px;
	padding-right:40px;
	display: flex;
}
	.hero-left a h1 span {
		font-size:20px;
	}
	.hero-left a h2, .hero-right a h2 {
		font-size: 18px;
		bottom: 20px;
		width: calc(100% - 40px);
		margin: 0 auto;
		left: 0;
		right: 0;
		padding:10px;
	}
	.featured-slide h3 {
		font-size:18px;
	}
	.featured-slide p {
		font-size:16px;
	}
	.wrap-featured h2 {
	  font-size: 26px;
	}
	.wrap-about-home .container-1 {
	  padding: 60px 10px;
	}
	.butn-lt-blue, .butn-blue {
		padding: 10px;
  		font-size: 16px;
	}
	.btn-bg {
		font-size: 50px;
	}
	.btn-bg i:first-of-type {
		opacity: 0.2;	
		margin-right: -20px;
	}
	
	.home-about-right a:hover .btn-bg {
		padding-right:30px; 
	}
	.home-about-right a:hover .btn-bg i:first-of-type {
		margin-right: 0px;
	}
	.home-about-info {
		padding: 40px 20px;
	}
	.home-about-left img {
		min-height: auto;
		object-fit: cover;
	}
	.wrap-contact-info {
		justify-content: flex-start;
		gap: 20px 60px;
		align-items: flex-start;
		background: #0a32b1;
		flex-direction: column;
	}
	.contact-info span {
		font-size: 18px;
	}
	.contact-info i {
		width: 60px;
		height: 60px;
		font-size: 18px;
	}
	.wrap-banner .container-2 {
		padding: 80px 20px;
		align-items: center;
	}
	.wrap-banner .container-2 h2 {
		font-size: 40px;
		text-align: center;
	}
	.wrap-banner .container-2 h2 span {
		font-size: 30px;
	}
	.foot-nav {
		display: none;
	}
	.foot-logo {
		width: 100%;
	}
	.form-cont-1 h2 {
	  font-size: 24px;
	}
	h1 {
		font-size: 26px;
	}

	h2 {
		font-size: 24px;
	}

	h3 {
		font-size: 22px;
	}

	h4 {
		font-size: 18px;
	}

	h5 {
		font-size: 16px;
	}
	p {
		font-size: 16px;
	}
	
}

