﻿/*===================== 
	Color information
	
Dark Blue #1F3565
Blue #0373AB
Orange #E1753D
grey:#F2F2F2
dk Grey #8B8B8B
	-
	-
	-
	-
		 
=======================*/
/*===================== 
	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%;
	scroll-behavior: smooth;
}

body {
	font-family: "Inter", 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;
}

/*===================== 
	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-blue {
	background:#1F3565;
	color:#fff!important;
	display: inline-block;
	font-family: "Inter", sans-serif;
	padding:10px 30px;
	font-size: 15px;
	font-weight: 400;
	text-align:center;
    transition: .2s ease-in;
	border:1px solid #1F3565;
	outline: none;
	cursor: pointer;
	border-radius:50px!important;
	box-sizing: border-box;
	margin: 5px 0;
	text-shadow: 0 0 0 rgba(0,0,0,0);
	justify-content: center;
	align-items: center;
	text-decoration: none;
}
.butn-blue:hover {
	color:#1F3565!important;
	background:#fff;
}
.butn-lt-blue {
	background:#0373AB;
	color:#fff!important;
	display: inline-block;
	font-family: "Inter", sans-serif;
	padding:10px 30px;
	font-size: 15px;
	font-weight: 400;
	text-align:center;
    transition: .2s ease-in;
	border:1px solid #0373AB;
	outline: none;
	cursor: pointer;
	border-radius:50px!important;
	box-sizing: border-box;
	margin: 5px 0;
	text-shadow: 0 0 0 rgba(0,0,0,0);
	justify-content: center;
	align-items: center;
	text-decoration: none;
}
.butn-lt-blue:hover {
	color:#0373AB!important;
	background:#fff;
}
.butn-orange {
	background:#E1753D;
	color:#000!important;
	display: inline-block;
	font-family: "Inter", sans-serif;
	padding:10px 30px;
	font-size: 15px;
	font-weight: 400;
	text-align:center;
    transition: .2s ease-in;
	border:1px solid #E1753D;
	outline: none;
	cursor: pointer;
	border-radius:50px!important;
	box-sizing: border-box;
	margin: 5px 0;
	text-shadow: 0 0 0 rgba(0,0,0,0);
	justify-content: center;
	align-items: center;
	text-decoration: none;
}
.butn-orange:hover {
	color:#E1753D!important;
	background:#fff;
}
.text-link-white {
	font-weight: 600;
	color:#fff!important;
	transition: .2s ease-in;
	background: none;
	border: 0;
	padding: 0;
	margin: 0;
	cursor: pointer;
	text-align: inherit;
}
.text-link-white:hover {
	opacity: 0.7;
}
.text-link-blue {
	font-weight: 600;
	color:#1F3565;
	transition: .2s ease-in;
	background: none;
	border: 0;
	padding: 0;
	margin: 0;
	cursor: pointer;
	text-align: inherit;
}
.text-link-blue:hover {
	opacity: 0.7;
}

/*===================== 
	header styles 
=======================*/

.header-wrap {
	width: 100%;
	margin: 0;
	box-shadow: 0 0 5px 1px rgba(0,0,0,0.2);
}
.top-head {
	width: 100%;
	background:#1F3565;
}
.top-head .container-1 {
	display: flex;
	justify-content: flex-end;
	gap:40px;
	padding: 15px 20px;
}
.top-head .container-1 a {
	font-size:14px;
	font-family: "Inter", sans-serif;
	font-weight: 400;
	color:#fff;
	transition: .2s ease-in;
	text-decoration: none;
}
.top-head .container-1 a:hover {
	opacity: 0.7;
}

header {
	margin: 0 auto;
	padding:20px;
	max-width: 1600px;
	width: 100%;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.head-logo-1 {
	width: 100%;
	max-width: 220px;
}
.head-logo-1 img {
	width: 100%;
	max-width: 100%;
	height: auto;
	display: block;
}
.head-right {
	display: flex;
	flex-direction: column;
	gap:20px; 
}
.head-info {
	display: flex;
	width: 100%;
	justify-content: flex-end;
	gap:20px;
}


/*===================== 
	nav styles 
=======================*/

#menu-button {
	display: none;
}

nav.mobile {
	display: none;
}



nav.primary {
	padding: 0;
	display: block;
	margin: 0;
	position: relative;
}

nav.primary ul {
	margin: 0 auto;
	padding: 0;
	display: flex;
	justify-content: flex-end;
}

nav.primary ul li {
	display: inline-block;
	margin: 0;
	list-style-type: none;
}

nav.primary ul li a {
	font-family: "Inter", sans-serif;
	color: #000;
	font-size: 16px;
	text-decoration: none;
	padding:10px;
	display: block;
	margin: 0;
	text-align: center;
	text-transform: uppercase;
	transition: .2s ease-in;
	font-weight: 500;
	cursor: pointer;
	white-space: nowrap;
	border-radius: 5px;
}


nav.primary ul li a:hover {
	background: #0373AB;
	color: #fff;
}
nav.primary ul li:hover a {
	background: #0373AB;
	color: #fff;
}

/* Appearance of the sub-level links */
nav.primary ul li li a {
	font-size: 16px;
	line-height: 16px;
	padding: 10px 20px;
	color: #fff;
	background: #0373AB;
	display: block;
	text-align: left;
	border-right: none;
	border-left: none;
	border-radius: 0px;
}
nav.primary ul li li:first-of-type a {
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}
nav.primary ul li li:last-of-type a {
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
/* Appearance of the sub-level links on hover */
nav.primary ul li li a:hover {
	background: #1F3565;
}

/* 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: auto;
	position: relative;
	margin: 0;
}

/*===================== 
	content styles 
=======================*/

.wrap-hero {
	width: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	gap:20px;
	background-color:#000;
}
.slider-hero {
	width: 100%;
	height: 35vw;
	min-height: 400px;
	max-height: calc(100vh - 225px);
	position: relative;
	top: 0;
	left: 0;
	background: #1F3565;
	z-index: 1;
}
.slider-hero img {
	width: 100%;
	height: 35vw;
	min-height: 400px;
	max-height: calc(100vh - 225px);
	object-fit: cover;
	object-position: center;
	background:#1F3565;
	opacity: 0.7;
}
.slider-hero .slick-arrow {
	position: absolute;
	top:calc(50% - 15px);
	z-index: 3;
	font-size: 30px;
	color:rgba(255,255,255,0.3);
	transition: .2s ease-in;
}
.slider-hero .slick-prev {
	left:clamp(5px, 1vw, 20px);
}
.slider-hero .slick-next {
	right:clamp(5px, 1vw, 20px);
}
.slider-hero .slick-arrow:hover {
	color:rgba(255,255,255,0.7);
}
.wrap-hero .container-1 {
	position: absolute;
	z-index: 2;
	bottom:40px;
	left:0;
	right:0;
	display: flex;
	flex-direction: column;
	gap:40px;
}
.hero-text {
	max-width: 575px;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap:40px;
}
.hero-text h1 {
	color:#fff;
	text-shadow: 0 0 8px #1F3565;
	font-size:35px;
	font-weight:300;
	line-height: normal;
}
.hero-text h1 span {
	font-weight:600;
	display: block;
}
.hero-text p {
	color:#fff;
	text-shadow: 0 0 8px #1F3565;
	font-size:18px;
	font-weight:400;
	line-height: 1.5;
}
.hero-search {
	width: 100%;
	border-radius: 5px;
	padding:15px 10px;
	box-sizing: border-box;
	background:rgba(255,255,255,0.6);
}
.hero-search form {
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: 1450px;
	margin:0 auto;
	gap: 15px;
}

.hero-search form input {
	width: 26%;
	font-family: "Inter", sans-serif;
	padding:15px!important;
	background:#fff;
    box-sizing: border-box;
	font-size: 16px!important;
    font-weight: 400!important;
	border-radius: 5px;
	border:0px;
}
.select-box {
	width: 26%;
    display: flex;
    justify-content: space-between;
    align-items: center;
	padding:0px!important;
    background:#fff;
    box-sizing: border-box;
    position: relative;
	border-radius: 5px;
}
.select-box select {
    -webkit-appearance: initial;
    -moz-appearance: initial;
    appearance: initial;
    width:100%;
    background-color:transparent;
    border:0px!important;
    outline:none!important;
    font-size: 16px!important;
    font-weight: 400!important;
    padding:15px!important;
    box-sizing: border-box;
    color:#000; 
    position: relative;
    z-index: 2;
    cursor: pointer;
	font-family: "Inter", sans-serif;
}
.select-box i {
    position: absolute;
    z-index: 1;
    right:10px;
}

.hero-search button {
	width: 17%;
	margin:0 auto;
	display: block;
	font-size:16px;
	
}
.wrap-cat {
	width: 100%;
	padding:40px 0;
}
.wrap-cat .container-2 {
	padding:40px 20px;
}
.wrap-cat .container-2 img {
	width: 100%;
	max-width: 150px;
	display: block;
	margin:0 auto 20px auto;
}
.wrap-cat .container-2 h2 {
	font-size:clamp(22px, 4vw, 30px);
	font-weight:600;
	color:#000;
	text-align: center;
}
.wrap-cat .container-1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap:20px 0;
}
.wrap-cat .container-1 a {
	width: calc(33.33% - 10px);
}
.cat-img {
	background:#F2F2F2;
	border:1px solid #F2F2F2;
	transition: .2s ease-in;
	padding:10px;
	width: 100%;
	box-sizing: border-box;
	margin-bottom: 20px;
	border-radius: 5px;
}
.cat-img img {
	max-width:100%;
	width: auto;
	height: auto;
	margin:0 auto;
	display: block;
	transition: .2s ease-in;
}
.wrap-cat .container-1 a h2 {
	font-size:20px;	
	font-weight: 600;
	color:#000;
	transition: .2s ease-in;
	margin-bottom: 5px;
}
.wrap-cat .container-1 a p {
	font-size:16px;	
	font-weight: 400;
	color:#676767;
	transition: .2s ease-in;
}
.wrap-cat .container-1 a:hover .cat-img  {
	background: #fff;
	border:1px solid #E1753D;
}
.wrap-cat .container-1 a:hover .cat-img  img {
	filter: grayscale(1);
}
.wrap-cat .container-1 a:hover h2, .wrap-cat .container-1 a:hover p {
	color:#E1753D;
}
.wrap-cat .butn-blue {
	display: block;
	max-width: 220px;
	margin:40px auto 0 auto;
}
.wrap-service {
	width: 100%;
	padding:40px 0;
}
.wrap-service .container-1 {
	display: flex;
	flex-wrap:wrap;
	justify-content: space-between;
	gap:20px 0;
}
.service-contact {
	width:calc(66.66% - 10px);
}
.form-cont {
	padding:60px 40px;
	box-sizing: border-box;
	background:#F2F2F2;
	border-radius: 5px;
}
.form-cont h2 {
	font-size: clamp(22px, 4vw, 30px);
	font-weight:400;
	margin-bottom: 20px;
}
.form-cont h2 span {
	font-weight:600;
}
.service-cta {
	width:calc(33.33% - 10px);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: stretch;
	gap:20px;
}
.service-cta a {
	width: 100%;
	position: relative;
	flex-grow: 1;
	border-radius: 5px;
	overflow: hidden;
}
.service-cta a img {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 1;
	object-fit: cover;
	object-position: center;
	transition: .2s ease-in;
}
.service-cta-overlay {
	background:rgba(31,53,101,0.85);
	border:1px solid rgba(31,53,101,0.85);
	padding:40px;
	width: 100%;
	position: relative;
	z-index: 1;
	height: 100%;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	gap:20px;
	transition: .2s ease-in;
}
.service-cta-ico {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 70px;
	height: 70px;
	border:1px solid #fff;
	color:#fff;
	font-size:30px; 
	border-radius: 100px;
	transition: .2s ease-in;
}
.service-cta-info {
	width:calc(100% - 90px);
	color:#fff;
	text-shadow: 0 0 8px #1F3565;
	transition: .2s ease-in;
}
.service-cta-info h2 {
	font-size:22px;
	font-weight:600;
	margin-bottom: 10px;
}
.service-cta-info p {
	font-size:14px;
	font-weight:400;
}
.service-cta a:hover .service-cta-overlay {
	background:rgba(255,255,255,0.7);
	border:1px solid rgba(31,53,101,1.0);
}
.service-cta a:hover img {
	filter: grayscale(1);
}
.service-cta a:hover .service-cta-ico {
	border:1px solid #000;
	color:#000;
}
.service-cta a:hover .service-cta-info {
	color:#000;
	text-shadow: 0 0 0px #1F3565;
}

/*===================== 
	slideshow styles 
=======================*/

/*  SCROLLING INVENTORY
------------------------------------------------*/
.scrolling-wrap {
    width:100%;
    height:90px;
    overflow:hidden;
}
 
.scrolling{
    width:100%;
    height:92px;
}

/*===================== 
	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;
	margin:10px 0 10px 0;
	font-weight: 600;
	
}
.form-info-cont input, .form-info-cont date {
	width: 100%;
	display: block;
	padding: 15px;
	font-size: 16px;
	margin:  0 0 15px 0;
	box-sizing: border-box;
    outline:none;
    color:#000; 
	font-family: "Inter", sans-serif;
	border:0px;
	background:#fff;
	border-radius: 5px;
}

.select-cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
	padding:0px!important;
    width:100%;
    background:#fff;
    box-sizing: border-box;
    position: relative;
	border-radius: 5px;
}
.select-cont  select {
    -webkit-appearance: initial;
    -moz-appearance: initial;
    appearance: initial;
    width:100%;
    background-color:transparent;
    border:0px!important;
    outline:none!important;
    font-size: 16px!important;
    font-weight: 400!important;
    padding:15px!important;
    box-sizing: border-box;
    color:#000; 
    position: relative;
    z-index: 2;
    cursor: pointer;
	font-family: "Inter", sans-serif;
	border-radius: 5px;
}
.select-cont i {
    position: absolute;
    z-index: 1;
    right:0px;
}

.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%;
	display: block;
	padding: 15px;
	font-size: 16px;
	min-height: 120px;
	box-sizing: border-box;
	margin:  0 0 15px 0;
    outline:none;
    border:0px;
    color:#000; 
	font-family: "Inter", sans-serif;
	background:#fff;
	border-radius: 5px;
}
.form-info-cont .butn-blue {
	display: block;
	width:100%;
	max-width: 220px;
	margin-top: 20px;
}

.CaptchaImage {
  max-width: 100%;
}
.CaptchaWhatsThisPanel input {
    margin:0 auto;
}

.CaptchaWhatsThisPanel a {color:#000;}
.CaptchaWhatsThisPanel a:hover {text-decoration:underline;} 

.click-to-show, .click-show.clicked {
	display: none;
}
.click-to-show.clicked {
	display: block;
}

/*===================== 
	layout styles 
=======================*/

.wrap-content {
	width: 100%;
	margin: 0;
}
.header-bg {
	width: 100%;
	position: relative;
	color:#fff;
	background:#1F3565;
	text-shadow: 0 0 5px #1F3565;
}
.header-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	left:0;
	top:0;
	opacity: 0.3;
}
.header-bg .container-1 {
	padding: clamp(50px, 8vw, 150px) 20px;
	position: relative;
	z-index: 2;
}
.wrap-content h1 {
	padding-bottom: 20px;
}
.info-cont-flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap:20px 0;
}
.info-cont-col-1 {
	padding:40px 20px;
	border-radius: 5px;
	border:1px solid #0373AB;
}
.info-cont-col-2 {
	padding:40px 20px;
	background:#F2F2F2;
	border-radius: 5px;
}
.info-cont-img {
	min-height: 200px;
	position: relative;
}

.info-cont-img img {
	position: absolute;
	width: 100%;
	border-radius: 5px;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.container-1 {
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
	padding:40px 20px;
	box-sizing: border-box;
}
.container-2 {
	width: 100%;
	max-width:650px;
	margin: 0 auto;
	padding: 20px;
	box-sizing: border-box;
}

.container-inv {
	margin: 0 auto;
	padding:40px 10px;
	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.66%;
	box-sizing: border-box;
}

.col-3-4 {
	width: 75%;
	box-sizing: border-box;
}

/*===================== 
	footer styles 
=======================*/

footer {
	margin: 0;
	width: 100%;
	background: #1F3565;
}
footer .container-1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	gap:20px;
	padding:60px 20px 100px 20px;
}
.foot-col-1 {
	display: flex;
	flex-wrap: wrap;
}
.foot-col-1 p {
	display: block;
	width: 100%;
	color:#fff;
	font-size:20px;
	font-weight: 600;
	padding-bottom: 20px;
}
.foot-col-1 ul {
	padding:0;
	margin:0;
}
.foot-col-1 ul li {
	padding:0;
	margin:0;
	list-style: none;
}
.foot-col-1 ul li a {
	color:#fff;
	font-size:16px;
	font-weight:400;
	transition: .2s ease-in;
	line-height:2;
	text-decoration: none;
}
.foot-col-1 ul li a:hover {
	opacity: 0.7;
}

/*========================== 
	  Responsive styles 
============================*/

@media screen and (max-width: 1250px) {
	.service-contact, .service-cta {
		width: calc(50% - 10px);
	}
}

@media screen and (max-width: 950px) {
	header {
		flex-wrap: wrap;
	}

	/*==============================
		Mobile Nav Styles			
	================================*/


	nav.primary {
		display: none;
	}

	#menu-button {
		width: 100%;
		display: block;
		text-align: center;
		position: relative;
		z-index: 400;
		/* needs to be lower than nav.mobile, adjust as needed */
		background: #1F3565;
		padding:20px;
		box-sizing: border-box;
	}

	#menu-button a {
		color: #fff;
		font-size: 14px;
		text-transform: uppercase;
		text-decoration: none;
		font-weight: normal;
		cursor: pointer;
		text-decoration: none;
	}

	nav.mobile {
		display: block;
		position: fixed;
		top: 0;
		left: -250px;
		width: 250px;
		height: 100%;
		background: #1F3565;
		z-index: 500;
		/* needs to be higher than #menu-button, adjust as needed */
		overflow: auto;
	}

	

	/* MENU HEADER STYLES */
	nav.mobile .mobile_top {
		position: relative;
		display: flex;
		justify-content: flex-end;
		padding:5px 10px;
		font-size: 18px;
		font-weight: 400;
		width: 100%;
		box-sizing: border-box;
	}

	/* MENU CLOSE 'X' BUTTON */
	nav.mobile .menu-toggle {
		padding: 3px 8px 3px;
		font-family: Arial, sans-serif;
		font-size: 24px;
		font-weight: bold;
		line-height: 1;
		color: #fff;
		text-decoration: none;
		cursor: pointer;
	}

	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 {
		font-family: "Inter", sans-serif;
		position: relative;
		display: block;
		font-size: 16px;
		font-weight: 500;
		padding: 10px;
		color: #fff;
		text-decoration: none;
		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 */
	}

	/* SECOND LEVEL */
	nav.mobile ul li li:last-child {
		border: none;
	}

	nav.mobile ul li li a {
		background: #444;
		position: relative;
		display: block;
		padding: 10px 10px 10px 15px;
		color: #fff;
		text-decoration: none;
	}

	nav.mobile ul li li a:hover {
		background: rgba(65, 65, 65, 0.5);
	}

	/* THIRD LEVEL */
	nav.mobile ul li li li:last-child {
		border: none;
	}

	nav.mobile ul li li li a {
		background: #555;
		position: relative;
		display: block;
		padding: 10px 10px 10px 25px;
		color: #fff;
		text-decoration: none;
	}

	nav.mobile ul li li li a:hover {
		background: rgba(85, 85, 85, 0.5);
	}
	.nav-footer {
		color: #E1753D;
		position: relative;
		text-align: center;
		font-size: 14px;
		line-height: 16px;
		padding: 15px 0;
	}
	
	
	.wrap-hero .container-1 {
		position: static;
	}
	.slider-hero, .slider-hero img {
		min-height: 150px;
	}
	.hero-text {
		max-width: 100%;
	}
	.hero-text h1 {
		font-size:clamp(24px, 6vw, 35px);
		color:#000;
		text-shadow: 0 0 0 rgba(0,0,0,0);
	}
	.hero-text p {
		font-size:clamp(12px, 2vw, 18px);
		color:#000;
		text-shadow: 0 0 0 rgba(0,0,0,0);
	}
	.hero-search {
		background:#F2F2F2;
	}
	.hero-search form {
		flex-wrap: wrap;
	}
	.hero-search form input, .hero-search form .select-box, .hero-search form button {
		width: calc(50% - 8px);	
		margin:0;
	}
	.service-contact, .service-cta {
		width:100%;
	  }
	.col-1-3, .col-2-3 {
		width: 49%;
	}

}
@media screen and (max-width: 640px) {
	header {
		flex-direction: column;
		gap: 20px;
	}
	.top-head {
		display: none;
	}
	.head-logo-1 {
		max-width:160px;
	}
	.head-right {
		width: 100%;
	}
	.head-info {
		gap:0;
		justify-content:space-between;
	}
	.head-info a {
		width: 49%;
		display: flex;
	}
	.wrap-cat .container-1 a {
		width:100%;
	}
	.service-contact, .service-cta {
		width:100%;
	  }
	.form-cont, .service-cta-overlay {
		padding:40px 20px;
	  }
	.col-1-3, .col-2-3 {
		width:100%;
	}
}
@media screen and (max-width: 540px) {
	h1 {
		font-size: 26px;
	}

	h2 {
		font-size: 24px;
	}

	h3 {
		font-size: 22px;
	}

	h4 {
		font-size: 18px;
	}

	h5 {
		font-size: 16px;
	}
	p {
		font-size: 16px;
	}
	.butn-blue, .butn-lt-blue, .butn-orange {
		padding:10px;
		font-size: 13px;
	}
	.hero-search form input, .hero-search form .select-box, .hero-search form button {
		width: 100%;	
		font-size:14px!important;
	}
	.hero-search form button {
		max-width: 90%;
		margin:0 auto;
	}
	.col-1-2 {
		width: 100%;
	}
	.service-cta-ico {
		width: 50px;
		height: 50px;
		font-size: 20px;
	}
	.service-cta-info {
		width: calc(100% - 70px);
	}
	
	
}


