﻿/*===================== 
	Color information
	
	-
	-yellow #fff200
	grey #e8e8e8
	-
	-
		 
=======================*/
/*===================== 
	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: "Open 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: 17px;
	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;
}
.btn-yellow {
	background:#fff200;
	color:#000!important;
	display: inline-block;
	padding:20px 30px;
	font-size: 16px;
	font-weight:500;
	text-transform: uppercase;
	text-align:center;
	margin:0;
    transition: .2s ease-in;
	border:0px;
	outline: none;
	cursor: pointer;
	border-radius: 0px!important;
	box-sizing: border-box;
	clip-path: polygon(25px 0%,calc(100% - 25px) 0%,100% 50%,calc(100% - 25px) 100%,25px 100%,0% 50%);
}
.btn-yellow:hover {
	background:#c3b900;
	clip-path: polygon(30px 0%,calc(100% - 30px) 0%,100% 50%,calc(100% - 30px) 100%,30px 100%,0% 50%);
}
.btn-white {
	background:#fff;
	color:#000!important;
	display: inline-block;
	padding:20px 30px;
	font-size: 16px;
	font-weight:500;
	text-transform: uppercase;
	text-align:center;
	margin:0;
    transition: .2s ease-in;
	border:0px;
	outline: none;
	cursor: pointer;
	border-radius: 0px!important;
	box-sizing: border-box;
	clip-path: polygon(25px 0%,calc(100% - 25px) 0%,100% 50%,calc(100% - 25px) 100%,25px 100%,0% 50%);
}
.btn-white:hover {
	background:#e8e8e8;
	clip-path: polygon(30px 0%,calc(100% - 30px) 0%,100% 50%,calc(100% - 30px) 100%,30px 100%,0% 50%);
}
.text-link-grey {
	font-weight: 600;
	color:#5C5C5C!important;
	transition: .2s ease-in;
	background: none;
	border: 0;
	padding: 0;
	margin: 0;
	cursor: pointer;
	text-align: inherit;
	font-size: 18px;
	text-transform: uppercase;
}
.text-link-grey i {
	color:#000!important;
	margin-left:2px;
	transition: .2s ease-in;
}
.text-link-grey:hover {
	opacity: 0.7;
}
.text-link-grey:hover i {
	transform: translateX(-2px);
}
.btn-cont-1 {
	display: flex;
	flex-wrap: wrap;
	gap:10px 30px;
}
/*===================== 
	header styles 
=======================*/

.header-wrap {
	width: 100%;
	margin: 0;
	background:#fff;
	box-shadow: 0 0 5px rgba(0,0,0,0.2);
	position: relative;
	z-index: 20;
}

header {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding:15px 0 15px clamp(20px, -880px + 50vw, 100vw);
	box-sizing: border-box;
	gap:0 10px;
}
.head-logo-1 {
	width: 100%;
	max-width: 165px;
}
.head-logo-1 img {
	width: auto;
	max-width: 100%;
	height: auto;
	display: block;
}
.head-info {
	padding:25px clamp(20px, -880px + 50vw, 100vw) 25px 50px;
	background:#fff200;
	clip-path: polygon(25px 0%,100% 0%,100% 100%,25px 100%,0% 50%);
	display: flex;
	gap: 10px;
	align-items: center;
}
.head-info ul {
	padding:0;
	margin:0;
	display: flex;
	gap:3px;
}
.head-info ul li {
	padding:0;
	margin:0;
	list-style: none;
}
.head-info ul li a {
	font-size:22px;
	color:#000;
	transition: .2s ease-in;
}
.head-info ul li a:hover {
	opacity: 0.7;
}

/*===================== 
	nav styles 
=======================*/

#menu-button {
	display: none;
}

nav.mobile {
	display: none;
}
nav.primary {
	padding: 0;
	display: block;
	margin: 0;
	position: relative;
	flex-grow: 1;
}
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;
	transition: .2s ease-in;
}

nav.primary ul li a {
	font-family: "Open Sans", sans-serif;
	color: #000;
	font-size:clamp(12px, 1.2vw, 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;
}

nav.primary ul li a:hover {
	background:#fff200;
}
nav.primary ul li:hover a {
	background:#fff200;
}

/* Appearance of the sub-level links */
nav.primary ul li li a {
	padding:15px 10px;
	text-align: left;
	background:#fff200;
}

/* Appearance of the sub-level links on hover */
nav.primary ul li li a:hover {
	background:#c3b900;
}

/* 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;
	z-index: 100;
}

nav.primary ul ul li {
	display: block;
	float: none;
	width: auto;
	min-width: 230px;
	position: relative;
	margin: 0;
}

/*===================== 
	content styles 
=======================*/
.wrap-hero {
	width: 100%;
	position: relative;
}
.wrap-hero:after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	display: block;
	width: 22vw;
	max-width:450px;
	height: 22vw;
	max-height:450px;
	background: rgba(0,0,0,0.4);
	z-index: 2;
	clip-path: polygon(100% 0%,0% 100%,100% 100%);
}
.wrap-hero img {
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	left:0;
	top:0;
	object-position: center;
	object-fit: cover;
	z-index: 1;
}
.hero-overlay {
	width: 100%;
	height: auto;
	background:rgba(0,0,0,0.3);
	display:flex;
	flex-direction: column;
	gap:20px 0;
	justify-content: center;
	align-items: center;
	padding: clamp(80px, 9vw, 160px) 20px;
	position: relative;
	z-index: 3;
	box-sizing: border-box;
}
.hero-overlay h1 {
	color:#fff;
	font-weight: 800;
	font-size:clamp(25px, 5vw, 50px);
	text-align: center;
	line-height: 1;
	text-shadow: 0 0 10px rgba(0,0,0,0.6);
}
.hero-overlay h1 span {
	display: block;
	font-size:clamp(18px, 3.5vw, 36px) ;
}
.hero-overlay .btn-cont-1 {
	justify-content: center;
	padding-top: 10px;
}
.wrap-cta {
	width: 100%;
	position: relative;
	padding:20px 0;
	background: #e8e8e8;
	border-top: 20px solid #fff;
	border-bottom: 20px solid #fff;
}
.wrap-cta:after {
	content: "";
	position: absolute;
	top: -21px;
	right: 0;
	display: block;
	width: 22vw;
	max-width:450px;
	height: 22vw;
	max-height:450px;
	background: rgba(0,0,0,1);
	z-index:6;
	clip-path: polygon(0% 0%,100% 100%,100% 0%);
}
.wrap-cta:before {
	content: "";
	position: absolute;
	top:-20px;
	right: 0;
	display: block;
	width: calc(22vw + 30px);
	max-width:450px;
	height: calc(22vw + 30px);
	max-height:480px;
	background: #fff;
	z-index:4;
	clip-path: polygon(0% 0%,100% 100%,100% 0%);
}
.cta-cont {
	width:100%;
	padding:15px clamp(20px, 50vw - 540px, 100vw) 15px clamp(20px, -880px + 50vw, 100vw);
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap:50px 10px;
	box-sizing: border-box;
	position: relative;
	z-index: 7;
}
.cta-cont:after {
	content:"";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 1;
	left:0;
	top:0;
}
.cta-cont a {
	width: calc(20% - 10px);
	position: relative;
	z-index: 2;
}
.cta-cont a img {
	width: 100%;
	max-width:220px;
	height: auto;
	display: block;
	margin:-50px auto 20px auto;
	transition: .2s ease-in;
}
.cta-cont a h2 {
	font-size:16px;
	font-weight:500;
	color:#000;
	text-align: center;
	transition: .2s ease-in;
}
.cta-cont a:hover img {
	transform: translateY(10px);
	filter:grayscale(100%);
}
.cta-cont a:hover h2 {
	opacity: 0.7;
}
.wrap-about {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
	z-index: 5;
}
.wrap-about:after {
	clip-path: polygon(calc(100% - 25px) 0%,100% 50%,calc(100% - 25px) 100%,0% 100%,0% 0%);
	content:"";
	display: block;
	height: 80px;
	width: calc(100% - 20px);
	max-width: calc(50% + 800px);
	background:#fff200;
	position: absolute;
	z-index: 6;
	left:0;
	bottom:-40px;
}
.about-cont-1 {
	width: 50%;
	box-sizing: border-box;
	padding: clamp(40px, 9vw, 180px) clamp(20px, 3vw, 40px) clamp(40px, 9vw, 180px) clamp(20px, -880px + 50vw, 100vw)!important;
}
.about-cont-1 h2 {
	font-size:30px;
	font-weight:900;
	line-height: 1;
}
.about-cont-1 h2 span {
	font-size:16px;
	font-weight:400;
	line-height:1;
	display: block;
}
.about-cont-1 p {
	padding:30px 0;
	line-height: 1.4;
}
.about-img {
	width: 50%;
	position: relative;
}
.about-img img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center left;
	position: absolute;
	z-index: 1;
	right:0;
	top:0;
}
.wrap-service {
	width: 100%;
	position: relative;
}
.wrap-service .container-lg {
	padding:100px 20px 0px 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap:20px 60px;
}
.wrap-service .container-lg a {
	width: calc(33.33% - 40px);
	position: relative;
	overflow: hidden;
}
.wrap-service .container-lg a:first-of-type {
	clip-path: polygon(70px 0%,100% 0%,100% 100%,70px 100%,0% calc(100% - 60px),0% 60px);
}
.wrap-service .container-lg a:last-of-type {
	clip-path: polygon(calc(100% - 70px) 0%,100% 60px,100% calc(100% - 60px),calc(100% - 70px) 100%,0% 100%,0% 0%);
}
.wrap-service .container-lg a img {
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	z-index: 1;
	object-fit: cover;
	object-position: center;
}
.service-info {
	width: 100%;
	height: 100%;
	background:rgba(0,0,0,0.5);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap:10px;
	padding:clamp(40px, 8vw, 140px) 40px;
	box-sizing: border-box;
	color:#fff;
	text-align: center;
	text-shadow: 0 0 5px rgba(0,0,0,0.5);
	position: relative;
	z-index: 2;
	transition: .2s ease-in;
}
.service-info h2 {
	font-size:clamp(22px, 2vw, 26px);
	font-weight:800;
	text-transform: uppercase;
}
.service-info p {
	font-size:clamp(14px, 2vw, 16px);
	font-weight:600;
	text-transform: uppercase;
}
.wrap-service .container-lg a:hover .service-info {
	background:rgba(0,0,0,0.8);
	text-shadow: 0 0 5px rgba(0,0,0,0.9);
}
.service-img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	object-position: bottom left;
	max-height: 50vw;
	margin-top: -5vw;
	min-height: 300px;
}
.wrap-contact {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 0 40px;
}
.wrap-contact .contact-info {
	width: calc(40% - 150px);
	padding: 40px;
	box-sizing: border-box;
	background: #000;
	color: #fff;
	margin:100px 0;
	position: relative;
}
.wrap-contact .contact-info:after {
	content: "";
	background: #000;
	clip-path: polygon(0% 0%,0% 100%,100% 50%);
	top: 0;
	left: 100%;
	width: 200px;
	display: block;
	position: absolute;
	height: 100%;
}
.wrap-contact .contact-info h1 {
	margin-bottom: 20px;
}
.wrap-contact .contact-info p {
	margin-bottom: 20px;
}
.wrap-contact .contact-info ul {
	padding: 10px 0;
	margin:0;
}
.wrap-contact .contact-info ul li {
	padding:0;
	margin:0;
	list-style: none;
	font-size: 18px;
}
.wrap-contact .contact-info ul li span {
	font-size: 20px;
	font-weight: 700;
}
.wrap-contact .contact-info ul li a {
	color:#fff200;
	transition: .2s ease-in;
}
.wrap-contact .contact-info ul li a:hover {
	color:#c3b900;
}
.wrap-contact .form-cont {
	width: 59%;
	padding:40px 0;
}

/*===================== 
	Form styles 
=======================*/

/* Containers */

.form-cont {
	padding:40px 0;
}
.form-cont .container-md {
	clip-path: polygon(70px 0%,calc(100% - 70px) 0%,100% 60px,100% calc(100% - 60px),calc(100% - 70px) 100%,70px 100%,0% calc(100% - 60px),0% 60px);
	padding:60px 40px;
	width: 100%;
	box-sizing: border-box;
	background:#e8e8e8;
}
.form-cont h3 {
	margin-bottom: 20px;
}
.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 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;
    border:1px solid #000;
    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;
}
.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;
}
.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:1px solid #000;
}
.form-info-cont button {
	margin:0 auto;
	display: block;
	width: 100%;
	max-width: 300px;
}

.CaptchaImage {
  max-width: 100%;
}
.CaptchaWhatsThisPanel input {
    margin:0 auto;
}

.CaptchaWhatsThisPanel a {color:#000;}
.CaptchaWhatsThisPanel a:hover {text-decoration:underline;} 





/*===================== 
	banner styles 
=======================*/


/*===================== 
	layout styles 
=======================*/

.wrap {
	width: 100%;
	margin: 0;
}
.wrap-content {
	width: 100%;
	position: relative;
}
.yellow-bar::after {
  clip-path: polygon(calc(100% - 25px) 0%,100% 50%,calc(100% - 25px) 100%,0% 100%,0% 0%);
  content: "";
  display: block;
  height: 80px;
  width: calc(100% - 20px);
  max-width: calc(50% + 800px);
  background: #fff200;
  position: absolute;
  z-index: 6;
  left: 0;
  bottom: -40px;
}
.wrap-content .container-md {
	padding:60px 20px;
}
.wrap-content h2 {
	margin-bottom: 20px;
}
.container-lg {
	width: 100%;
	max-width: 1800px;
	margin: 0 auto;
	padding: 20px;
	box-sizing: border-box;
}
.container-md {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	box-sizing: border-box;
}
.container-sml {
	width: 100%;
	max-width: 800px;
	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-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 {
	padding:20px 0;
	margin: 0;
	width: 100%;
	background:#000;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;
}
.foot-logo {
	padding:60px 20px 60px clamp(20px, -880px + 50vw, 100vw);
}
.foot-logo a {
	max-width: 250px;
	width: 100%;
	display: block;
}
.foot-logo a img {
	width: auto;
	max-width: 100%;
	display: block;
	margin:0 auto;
	height: auto;
}
.foot-nav {
	padding:60px clamp(20px, -880px + 50vw, 100vw) 60px 160px;
	clip-path: polygon(100px 0%,100% 0%,100% 100%,100px 100%,0% 50%);
	display: flex;
	justify-content: space-between;
	background:rgba(255,255,255,0.2);
	gap:0 clamp(20px, 8vw, 80px);
}
.foot-nav-col p {
	font-size:18px;
	font-weight:600;
	color:#fff200;
}
.foot-nav-col ul {
	padding:5px 0;
	margin:0;
}
.foot-nav-col ul li {
	padding:0;
	margin: 0;
	list-style: none;
}
.foot-nav-col ul li a {
	font-size:16px;
	font-weight:400;
	color:#fff;
	line-height: 2;
	font-family: "Open Sans", sans-serif;
	transition: .2s ease-in;
}
.foot-nav-col ul li a:hover {
	opacity: 0.6;
}

/*========================== 
	  Responsive styles 
============================*/

@media screen and (max-width: 1000px) {

	/*==============================
		Mobile Nav Styles			
	================================*/


	nav.primary {
		display: none;
	}

	#menu-button {
		display: block;
		padding-left: 10px;
	}

	#menu-button a {
		color: #000;
		font-size:30px;
		cursor: pointer;
	}

	nav.mobile {
		display: block;
		position: fixed;
		top: 0;
		left: -250px;
		width: 250px;
		height: 100%;
		background: #333;
		z-index: 500;
		/* needs to be higher than #menu-button, adjust as needed */
		overflow: auto;
	}

	/* 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: #ccc !important;
	}

	nav.mobile .social-media a:link,
	nav.mobile .social-media a:visited {
		color: #ccc;
		text-decoration: none;
	}

	nav.mobile .social-media a:hover,
	nav.mobile .social-media a:active {
		color: #fff;
		text-decoration: underline;
	}

	/* 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;
		right: 13px;
		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 {
		border-top: 1px solid #454545;
		border-bottom: 1px solid #151515;
		position: relative;
	}

	/* FIRST LEVEL */
	nav.mobile ul li a {
		font-family: "Open Sans", sans-serif;
		position: relative;
		display: block;
		font-size: 15px;
		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-left: 4px #fff200 solid;
		/* 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;
		border-left: 4px #444 solid;
		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;
		border-left: 4px #555 solid;
	}

	nav.mobile ul li li li a:hover {
		background: rgba(85, 85, 85, 0.5);
	}
	.nav-footer {
		color:#fff200;
		position: relative;
		text-align: center;
		font-size: 14px;
		line-height: 16px;
		padding: 15px 0;
	}
	.wrap-service .container-lg a {
		width:100%;
	}
	.wrap-service .container-lg a:first-of-type {
		clip-path: polygon(calc(100% - 70px) 0%,100% 60px,100% 100%,0% 100%,0% 60px,70px 0%);
	}
	.wrap-service .container-lg a:last-of-type {
		clip-path: polygon(100% 0%,100% calc(100% - 60px),calc(100% - 75px) 100%,75px 100%,0% calc(100% - 60px),0% 0%);
	}
	.about-cont-1 {
		width: 100%;
	}
	.about-img {
		width: 100%;
		height: 60vw;
	}
	.cta-cont a {
		width: calc(33.33% - 7px);
		margin: 0 auto;
	}
	.foot-logo {
		width: 100%;
		box-sizing: border-box;
		padding:60px 20px 60px 20px;
	}
	.foot-logo a {
		max-width: 250px;
		width: 100%;
		display: block;
		margin:0 auto;
	}
	.foot-nav {
		display: none;
	}
	.wrap-contact .contact-info {
		width: 100%;
		margin:40px auto;
		padding: 40px 20px;
	}
	.wrap-contact .contact-info:after {
		clip-path: polygon(0% 0%,50% 100%,100% 0%);
		top:100%;
		left: 0;
		width:100%;
		height:100px;
	}
	.wrap-contact .form-cont {
		width:100%;
	}
	.form-cont .container-md {
		padding: 60px 20px;
	}
}
@media screen and (max-width: 680px) {
	.cta-cont a {
	  width: calc(50% - 5px);
	}
}
@media screen and (max-width: 800px) {
	.col-1-2, .col-1-3 {
		width: 100%;
	}
}
@media screen and (max-width: 540px) {
	h1 {
		font-size: 26px;
	}

	h2 {
		font-size: 20px;
	}

	h3 {
		font-size: 18px;
	}

	h4 {
		font-size: 16px;
	}

	h5 {
		font-size: 14px;
	}
	p {
		font-size: 14px;
	}
	.btn-yellow, .btn-white  {
		padding:15px 20px;
		font-size: 14px;
	}
	.text-link-grey {
		font-size: 14px;
	}
	.wrap-contact {
		padding: 0 10px;
	}
	header {
		padding:10px 0 10px 20px;
	}
	.head-logo-1 {
	  max-width: 125px;
	}
	.head-info {
 		 padding: 15px 20px 15px 50px;
	}
	.wrap-contact .contact-info ul li {
		font-size: 16px;
	}
	.wrap-contact .contact-info ul li span {
		font-size: 18px;
	}
}


