@charset "utf-8";
@font-face {
	font-family: 'Hemi Head Rg';
	src: url('../fonts/HemiHeadRg-BoldItalic.woff2') format('woff2'),
	url('../fonts/HemiHeadRg-BoldItalic.woff') format('woff');
	font-weight: bold;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Gilroy';
	src: url('../fonts/Gilroy-ExtraBold.woff2') format('woff2'),
	url('../fonts/Gilroy-ExtraBold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Gilroy';
	src: url('../fonts/Gilroy-Medium.woff2') format('woff2'),
	url('../fonts/Gilroy-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
/* CSS Document */
html {
	-webkit-text-size-adjust: none; /* Prevent font scaling in landscape */
	width: 100%;
	height: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
input[type="submit"] {
	-webkit-appearance: none;
	-webkit-border-radius: 0;
}
*, *:after, *:before {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
body {
	margin: 0;
	padding: 0;
	font-family: 'Gilroy', sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	width: 100%;
	height: 100%;
	font-weight: 500;
	background: #f9f9f9;
	color: #231916;
}
a {
	outline: none;
	text-decoration: none;
	color: #231916;
}
a:hover, a:focus{
	text-decoration:none;
	outline:none;
	outline-offset:0;
}
:focus,
button:focus{
	outline: 0;
}
img {
	border: 0;
	max-width:100%;
	height:auto;
}
input, textarea, select {
	outline: none;
	resize: none;
	font-family: 'Gilroy', sans-serif;
}
::-webkit-input-placeholder{opacity:1;}
:-moz-placeholder{opacity:1;}
::-moz-placeholder{opacity:1;}
:-ms-input-placeholder{opacity:1;}

.form-control::-webkit-input-placeholder{opacity:1; color: #8F9193;}
.form-control:-moz-placeholder{opacity:1; color: #8F9193;}
.form-control::-moz-placeholder{opacity:1; color: #8F9193;}
.form-control:-ms-input-placeholder{opacity:1; color: #8F9193;}

button::-moz-focus-inner {
	border: 0;
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	margin: 0;
	padding: 0;
	font-weight: normal;
	color: #181818;
}
img {
	border: 0;
	vertical-align: top;
	max-width: 100%;
	height: auto;
	width: auto\9; /* ie8 */
}
ul, ol {
	margin: 0;
	padding: 0;
	list-style: none;
}
p {
	margin: 0 0 10px 0;
	padding: 0;
	line-height: 1.76;
}
strong{
	font-weight: 700;
}
path,
rect{
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.slick-slider{
	user-select: text;
}
.slick-slide,
.slick-arrow,
.slick-dots button{
	outline: none !important;
}

.container{
	max-width: 750px;
	padding: 0 15px;
	width: 100%;
	margin: 0 auto;
}


.header{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 1234;
	padding-top: 21px;
}
.header .container{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.header .container .left{
	width: 33%;
	text-align: center;
}
.header .container .center{
	width: 33%;
	text-align: center;
}
.header .container .right{
	width: 33%;
	text-align: center;
}

.header .social a{
	display: inline-flex;
	color: #ffffff;
	font-weight: 700;
}
.header .social a span{
	width: 18px;
	margin-right: 8px;
	flex-shrink: 0;
}
.logo a{
	display: inline-block;
}
.logo img{
	max-width: 137px;
}

.banner-wrap{
	position: relative;
	padding-top: 187px;
	padding-bottom: 100px;
	background-size: cover;
	background-position: center center;
}
.banner-content{
	text-align: center;
}
.banner-content .banner-title{
	font-size: 30px;
	line-height: 1;
	color: #ffffff;
	font-family: 'Hemi Head Rg';
	font-weight: 700;
	font-style: italic;
	text-transform: uppercase;
}
.banner-content .banner-title span{
	display: block;
}
.banner-content .banner-title span.tag-line{
	font-size: 60px;
}
.text-black.banner-content .banner-title{
	color: #231916;
}

.banner-content .cta{
	padding-top: 90px;
}

.cta-link{
	position: relative;
	padding: 17px 74px;
	color: #ffffff;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	display: inline-block;
}
.cta-link span{
	position: relative;
	z-index: 1;
}
.cta-link:after{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #e60013;
	-webkit-transform: skew(-15deg, 0deg);
	-moz-transform: skew(-15deg, 0deg);
	-o-transform: skew(-15deg, 0deg);
	-ms-transform: skew(-15deg, 0deg);
	transform: skew(-15deg, 0deg);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.cta-link:hover:after{
	background: #000000;
}

.service-wrap{
	padding: 57px 0 84px;
}
.service-wrap .title{
	padding-bottom: 55px;
}

.title {
	text-align: center;
}
.title p{
	margin-bottom: 0;
	text-transform: uppercase;
	color: #242424;
	font-size: 20px;
	line-height: 30px;
}
.title h2{
	font-size: 35px;
	text-transform: uppercase;
	font-weight: 700;
	color: #242424;
}
.title h2 span{
	color: #e60013;
}

.service-list{
	position: relative;
}
.service-list .overlay-logo{
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	width: 100%;
	text-align: center;
	-webkit-transform: translate(0%, -50%);
	-moz-transform: translate(0%, -50%);
	-o-transform: translate(0%, -50%);
	-ms-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
}
.service-list .overlay-logo img{
	width: 155px;
	margin-left: 55px;
}
.service-list ul{
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
}
.service-list ul li{
	padding: 0 10px;
	width: 50%;
}
.service-list ul li img{
	width: 100%;
}

.quality-wrap{
	padding-top: 43px;
}
.quality-wrap h3{
	font-size: 20px;
	color: #242424;
	max-width: 480px;
	text-align: center;
	margin: 0 auto;
}
.quality-wrap h3 span{
	color: #e60013;
}

.quality-list{
	padding-top: 50px;
}
.quality-list ul{
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
}
.quality-list ul li{
	width: 50%;
	padding: 0 10px;
}
.quality-list ul li .box{
	display: flex;
	align-items: center;
	padding: 0 40px;
	height: 125px;
	background: #ffffff;
}
.quality-list ul li .box .icon{
	width: 84px;
	flex-shrink: 0;
}
.quality-list ul li .box .icon img{
	max-width: 55px;
}
.quality-list ul li .box .txt{
	font-size: 20px;
	line-height: 25px;
	color: #242424;
	font-weight: 700;
}

.map iframe{
	width: 100%;
	height: 394px;
	border: 0;
}
.map-info a{
	display: flex;
	align-items: center;
	padding: 40px;
	background: #231916;
	color: #ffffff;
	font-size: 22px;
	font-weight: 700;
	line-height: 27px;
	-webkit-transform: translate(0%, -50%);
	-moz-transform: translate(0%, -50%);
	-o-transform: translate(0%, -50%);
	-ms-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
}
.map-info a .icon{
	flex-shrink: 0;
	width: 60px;
}

.service-banner{
	padding-bottom: 64px;
}
.service-banner .banner-content .cta{
	padding-top: 36px;
}

.footer{
	padding-bottom: 55px;
}
.footer .container{
	display: flex;
	justify-content: space-between;
}
.footer .container .f-logo{
	flex-shrink: 0;
	width: 132px;
}

.footer .f-links{
	width: 100%;
}
.footer .f-links ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.footer .f-links ul li{
	display: flex;
	font-size: 14px;
	line-height: 17px;
	color: #231916;
	font-weight: 700;
}
.footer .f-links ul li a{
	color: #231916;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.footer .f-links ul li a:hover{
	color: #e60013;
}
.footer .f-links ul li .icon{
	flex-shrink: 0;
	width: 17px;
	margin-right: 10px;
}