﻿/*===================== 
	Color information
	
	
    orange #F26B1C
dk orange #d8631e
    grey #cdcdcd
    dk grey #474747
		 
=======================*/
/*===================== 
	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: "Roboto Condensed", 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-family: "Oswald", sans-serif;
        font-size: 30px;
        font-weight: 700;
}
	h2 {
        font-family: "Oswald", sans-serif;
        font-size: 28px;
        font-weight: 700;
}
	h3 {
        font-family: "Oswald", sans-serif;
        font-size: 24px;
        font-weight: 700;
}
	h4 {
        font-family: "Oswald", sans-serif;
        font-size: 20px;
        font-weight: 700;
}
	h5 {
        font-family: "Oswald", sans-serif;
        font-size: 18px;
        font-weight: 700;
}
	h6 {}

p {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 18px;
	margin: 0;
	}

.bold {
    font-weight: bold;
	}
.font-orange {
    color:#F26B1C;
}


/*===================== 
	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: #474747;
		}  
.text-line-1 {
    transition: .2s ease-in;
    font-weight: 600;
}
.text-line-1:hover {
    color:#474747;
}

.btn-white {
    background:#fff;
    border:2px solid #F26B1C;
    padding:20px;
    font-family: "Oswald", sans-serif;
    font-size:20px;
    font-weight:600;
    color:#474747!important;
    transition: .2s ease-in;
    text-align: center;
    box-sizing: border-box;
    cursor: pointer;
}
.btn-white:hover {
    background:#cdcdcd;
}
.btn-orange {
    background:#F26B1C;
    border:2px solid #cdcdcd;
    padding:20px;
    font-family: "Oswald", sans-serif;
    font-size:20px;
    font-weight:600;
    color:#000!important;
    transition: .2s ease-in;
    text-align: center;
    box-sizing: border-box;
    cursor: pointer;
}
.btn-orange:hover {
    background:#000;
	color: #fff!important;
}
.orange-btn-1 {
    background:#F26B1C;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    transition: .2s ease-in;
}
.orange-btn-1 .o-btn-text {
    font-family: "Oswald", sans-serif;
    padding:10px 20px;
    font-size: 20px;
    font-weight: 600;
    color:#000!important;
	text-shadow: 0 0 .08 #000;
}
.orange-btn-1 .o-btn-ico {
    background:#d8631e;
    width:65px;
    font-size: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left:10px;
    clip-path: polygon(15px 0%,100% 0%,100% 100%,0% 100%);
    color:#fff!important;
    transition: .2s ease-in;
}
.orange-btn-1:hover {
    background:#d8631e;
}
.orange-btn-1:hover .o-btn-ico  {
    clip-path: polygon(0% 0%,100% 0%,100% 100%,0% 100%);
}
.service-img-1 {
    width:100%;
    position: relative;
    z-index: 2;
}
.service-img-1 img {
    width:100%;
    height: auto;
    display: block;
}

.youtube-bg-1 {
    height: 100%;
    position: relative;
    overflow: hidden;
	display: flex;
	align-items: center;
}
.youtube-bg-1:after {
    content: "";
    width:100%;
    height: 100%;
    position: absolute;
    left:0;
    top:0;
    display: block;
    z-index: 2;
}
.youtube-bg-1 iframe {
	aspect-ratio: 7 / 9;
	height: 100%;
	display: block;
	margin: 0 auto;
	position: absolute;
	z-index: 1;
	width: auto;
	left: -11px;
}
.youtube-bg-2 {
    height: 100%;
    position: relative;
    overflow: hidden;
	display: flex;
	align-items: center;
}
.youtube-bg-2:after {
    content: "";
    width:100%;
    height: 100%;
    position: absolute;
    left:0;
    top:0;
    display: block;
    z-index: 2;
}
.youtube-bg-2 iframe {
	aspect-ratio: 16 / 9;
	height: 100%;
	display: block;
	margin: 0 auto;
	position: absolute;
	z-index: 1;
	width: auto;
	left: -50%;
	right: -50%;
}

/*===================== 
	Popup styles 
=======================*/

.pop-up-form {
    position: fixed;
    z-index: 4000;
    top:150px;
    left:0;
    display: none;
    width: 100%;
    max-width: 350px;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.3));
}
.pop-up-form.clickclose {
    display: block;
}


.pop-up-content-1 {
    position: absolute;
    z-index: 2;
    top: 40px;
    left: 0;
    margin: 0 auto;
    width:100%;
    box-sizing: border-box;
    display: block;
    background: #fff;
    padding:10px 30px 40px 40px;
    clip-path: polygon(0px 0%,calc(100% - 0px) 0%,100% 50px,100% calc(100% - 60px),calc(100% - 50px) 100%,60px 100%,0% calc(100% - 0px),0% 50px);
    opacity: 0;
    animation: slide-in-left  4s ease-in-out both;
}
@keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0;
  }
  70% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
.pop-up-content-1 p {
    font-size: 22px;
    text-align: center;
}
.close-button {
    display: flex;
    justify-content: flex-end;
}
.close-button a {
    padding:5px 9px;
    font-size: 18px;
    background:#474747;
    color:#fff;
    transition: .2s ease-in;
}
.close-button a:hover {
    background:rgba(0,0,0,0.8);
}

.form-click-shop {
  display: block;
  max-width: 200px;
  margin: 20px auto 0 auto;
  width: 100%;
}

.form-capta-info, .form-click-shop.clickclose {
    display: none;
}
.form-capta-info.clickclose {
    display: block;
}

/*===================== 
	header styles 
=======================*/

.header-wrap {
    width: 100%;
    margin: 0;
    background:#fff;
    position: relative;
    z-index: 2;
}
.top-head {
    background:#000;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding:10px 80px;
    box-sizing: border-box;
}
.top-head ul {
    padding:0;
    margin:0;
    display: flex;
    gap:0 15px;
}
.top-head ul li {
    padding:0;
    margin:0;
    list-style: none;
    font-family: "Oswald", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color:#fff;
}
.top-head ul li a {
    color:#fff;
    transition: .2s ease-in;
}
.top-head ul li a:hover, .top-head ul li a:hover .mobile-ico  {
    color:#F26B1C;
}
.top-head ul li .mobile-ico {
    color:#F26B1C;
    font-weight: 600;
}

header {
	margin: 0 auto;
    width:100%;
    position: relative;
    background:#fff;
    display: flex;
    justify-content: space-between;
    z-index: 1;
    box-shadow: 0 0 10px 3px rgba(0,0,0,0.3);
}
.head-logo-1 {
    padding-left:60px;
}
.head-logo-1 a img {
	max-width: 275px;
    width:100%;
    display: block;
    margin:0 auto;
    padding:20px;
    box-sizing: border-box;
}
.head-right {
    width:auto;
    justify-content: flex-end;
    display: flex;
}
.head-btn {
    background:#F26B1C;
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100% + 50px);
    clip-path: polygon(0% 0%,100% 0%,100% 100%,60px 100%,0% calc(100% - 50px));
    position: relative;
    z-index: 2;
    width:175px;
}
.search-btn {
    padding:20px;
    font-size:40px;
    color:#fff;
    transition: .2s ease-in;
    cursor: pointer;
}
.search-btn:hover {
    color:#000;
}

.head-search {
    background: #474747;
    width: 100%;
    position: relative;
    left: 0;
    top: 100%;
    display: none;
}

.search-container-1 {
    width:100%;
    max-width: 800px;
    box-sizing: border-box;
    padding:20px;
    margin:0 auto;
}
.head-search form {
    width:100%;
    display: flex;
    background: #fff;
    padding:20px;
    box-sizing: border-box;
}
.head-search input {
    background:none;
    border:0px!important;
    outline:none!important;
    padding:0px;
    margin:0;
    font-family: "Roboto Condensed", sans-serif;
    width:100%;
    font-size: 18px;
}
.head-search button {
    background:none;
    border:0px!important;
    outline:none!important;
    padding:0px;
    margin:0; 
    font-size: 20px;
    cursor: pointer;
}
/*===================== 
	nav styles 
=======================*/

#menu-button{display: none;}
nav.mobile, .mobile-nav-cont-1 { display:none;}

nav.primary {
	padding:0 20px 0 0;
	display:flex;
    justify-content: flex-end;
    align-items: flex-end;
	margin:0;
	position:relative;
    box-sizing: border-box;
	}
	nav.primary ul {
		margin:0; 
		padding:0;
        display: flex;
        gap:0 1vw;
		}
		nav.primary ul li {
			display:inline-block;
			margin:0;
			list-style-type:none; 
			}
			nav.primary ul li a {
                font-family: "Oswald", sans-serif;
				color: #000;
				font-size: 18px;
				text-decoration: none;
				padding: 10px;
				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;
				}	
			nav.primary ul li:hover a {
				background: #F26B1C;
				color:#fff;
				}
            nav.primary ul li a:hover {
				background: #F26B1C;
				color:#fff;
				}
			/* Appearance of the sub-level links */
			nav.primary ul li li a { 
				padding:15px;
				color:#fff;
				background: #F26B1C;
				display: block;
				text-align:center;
				border-right:none;
				border-left:none;
			}
			/* Appearance of the sub-level links on hover */
			nav.primary ul li li a:hover { 
                background: #474747;
			}
/* 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%;
    height: auto;
    position: relative;
	background-color: #000;
}
.hero-video {
    display: block;
    width: 100%;
    max-height: calc(100vh - 300px);
    overflow: hidden;
    min-height: 500px;
    height: 54vw;
}
.hero-video iframe {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
    position: relative;
    top:-60px;
}
.hero-overlay {
    width:100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    left:0;
    top:0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-overlay .container-1 {
    text-align: right;
}
.hero-overlay h1 {
    font-family: "Oswald", sans-serif;
    color:#fff;
    font-size:54px;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(0,0,0,1);
    text-transform: uppercase;
}
.hero-overlay h1 span {
    font-size:42px;
    font-weight: 400;
}
.wrap-cat {
    background:#cdcdcd;
    width:100%;
    height: auto;
    position: relative;
}
.wrap-cat:after {
    content:"";
    background:#cdcdcd;
    clip-path: polygon(0% 0%,100% 0%,100% calc(100% - 50px),calc(100% - 60px) 100%,0% 100%);
    width:calc(50% - 630px);
    height: 50px;
    position: absolute;
    left:0;
    top:calc(100% - 1px);
    min-width: 80px;
}
.wrap-cat .container-1 {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    position: relative;
    top:-55px;
	z-index: 5;
}
.wrap-cat .container-1 a {
    width:33.33%;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.3));
}
.wrap-cat .container-1 a .cat-cont-1 {
    clip-path: polygon(0% 0%,100% 0%,calc(100% - 60px) 100%,0% 100%);
    background: #fff;
    padding:20px 70px 20px 15px;
    box-sizing: border-box;
    transition: .2s ease-in;
	height: 100%;
}
.wrap-cat .container-1 a .cat-cont-1-1 {
   clip-path: polygon(60px 0%,100% 0%,calc(100% - 60px) 100%,0% 100%);
    background: #fff;
    padding:20px 40px 20px 70px;
    box-sizing: border-box;
    transition: .2s ease-in;
	height: 100%;
}
.wrap-cat .container-1 a .cat-cont-1 p, .wrap-cat .container-1 a .cat-cont-1-1 p {
    font-family: "Oswald", sans-serif;
    font-size:26px;
    font-weight: 400;
    color:#000;
    padding-bottom:10px;
    line-height: 1;
    transition: .2s ease-in;
}
.wrap-cat .container-1 a .cat-cont-1 img, .wrap-cat .container-1 a .cat-cont-1-1 img {
    max-width: 100%;
    height: auto;
    width:100%;
	max-height: 80px;
    display: block;
    transition: .2s ease-in;
	object-fit: contain;
	object-position: left center;
}
.wrap-cat .container-1 a .cat-cont-2 {
    clip-path: polygon(40px 0%,100% 0%,calc(100% - 40px) 100%,0% 100%);
    background:#F26B1C;
    padding:30px 40px 30px 80px;
    box-sizing: border-box;
    transition: .2s ease-in;
	align-self: flex-start;
}
.wrap-cat .container-1 a .cat-cont-2 p {
    font-family: "Oswald", sans-serif;
    font-size:26px;
    font-weight: 400;
    color:#fff;
    padding-bottom:10px;
    line-height: 1;
}
.wrap-cat .container-1 a .cat-cont-2 h2 {
    font-family: "Oswald", sans-serif;
    font-size:30px;
    font-weight: 700;
    color:#fff;
    line-height: 1;
}

.wrap-cat .container-1 a .cat-cont-2:hover, .wrap-cat .container-1 a .cat-cont-1:hover, .wrap-cat .container-1 a .cat-cont-1-1:hover {
    background:#474747;
}
.wrap-cat .container-1 a .cat-cont-1:hover p, .wrap-cat .container-1 a .cat-cont-1-1:hover p {
    color:#fff;
}
.wrap-cat .container-1 a .cat-cont-1:hover img, .wrap-cat .container-1 a .cat-cont-1-1:hover img {
    filter:grayscale(100%) invert(100%) brightness(109%) contrast(111%);
}
.wrap-about {
    width:100%;
    padding:100px 0;
    display: flex;
    justify-content: flex-end;
}

.home-about-cont-1 {
    width:100%;
    max-width: calc(50% + 650px);
    padding:0 0 0 20px;
    box-sizing: border-box;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.3));
}
.home-about-col-1 {
    width:100%;
    clip-path: polygon(60px 0%,100% 0%,100% 100%,60px 100%,0% calc(100% - 50px),0% 50px);
    background:#fff;
    display: flex;
    flex-wrap: wrap;
}
.home-about-info-1 {
    padding:80px 60px;
    max-width:calc(50% + 150px);
    width:100%;
    box-sizing: border-box;
}
.home-about-info-1 h2, .home-about-info-1 h2 {
    font-family: "Oswald", sans-serif;
    color:#000;
    font-size:32px;
    font-weight:700;
}
.home-about-info-1 h2 span, .home-about-info-1 h1 span {
    font-size:25px;
    font-weight: 400;
}
.home-about-info-1 p {
    padding:40px 0 50px 0;
    font-family: "Roboto Condensed", sans-serif;
    color:#000;
    font-size:18px;
    line-height: 1.4;
}
.home-about-btn-cont-1 {
    width:100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap:20px 0;
}
.home-about-btn-cont-1 .btn-white {
    width: 48%;
}

.home-about-img-1 {
   max-width:calc(50% - 150px); 
}
.home-about-img-1 img {
    width:100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position:left center;
    clip-path: polygon(60px 0%,100% 0%,100% 100%,60px 100%,0% calc(100% - 50px),0% 50px);
}
.wrap-home-service {
    width:100%;
    position: relative;
}
.wrap-home-service:after {
    width:100%;
    content: "";
    position: absolute;
    z-index: 1;
    right:0;
    bottom:0;
    background:#474747;
    clip-path: polygon(60px 0%,100% 0%,100% 100%,60px 100%,0% 100%,0% 50px);
    height:calc(100% - 140px);
    max-width:calc(50% - 210px);
}
.wrap-home-service .container-1 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}
.wrap-home-service h2 {
    font-family: "Oswald", sans-serif;
    font-size:50px;
    font-weight: 700;
    color:#474747;
    width: 100%;
    display: block;
}
.service-info-cont-1 {
    width:33.33%;
    padding:150px 40px 0px 40px;
    box-sizing: border-box;
    text-align: center;
}

.service-info-cont-1 h3 {
    font-size:30px;
    font-weight:700;
    color:#F26B1C;
    font-family: "Oswald", sans-serif;
}
.service-info-cont-1 p {
    font-size:18px;
    font-weight:400;
    padding:20px 0 30px 0;
    color:#000;
    font-family: "Roboto Condensed", sans-serif;
}
.service-info-cont-1:last-of-type p{
    color:#fff;
	background-color: #474747;
}

.wrap-grey-bottom {
    width:100%;
    height: auto;
    padding:80px 0;
    position: relative;
    background:#cdcdcd;
}
.wrap-grey-bottom::after {
  content: "";
  background: #cdcdcd;
  clip-path: polygon(0% 0%,calc(100% - 60px) 0%,100% 100%,100% 100%,0% 100%);
  width: calc(50% - 630px);
  height: 50px;
  position: absolute;
  left: 0;
  bottom: calc(100% - 1px);
  min-width: 80px;
}
.grey-bottom-top::before {
    content: "";
    background: #cdcdcd;
    clip-path: polygon(0% 0%,100% 0%,100% calc(100% - 50px),calc(100% - 60px) 100%,0% 100%);
    width: calc(50% - 630px);
    height: 50px;
    position: absolute;
    left: 0;
    top: calc(100% - 1px);
    min-width: 80px;
}

.wrap-content {
    width:100%;
    padding:100px 0;
    display: flex;
    justify-content: flex-end;
}

.content-about-cont-1 {
    width:100%;
    max-width: 1300px;
    margin:0 auto;
    padding:0 20px;
    box-sizing: border-box;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.3));
}
.content-about-col-1 {
    width:100%;
    clip-path: polygon(60px 0%,calc(100% - 50px) 0%,100% 50px,100% calc(100% - 60px),calc(100% - 50px) 100%,60px 100%,0% calc(100% - 60px),0% 50px);
    background:#fff;
    display: flex;
    flex-wrap: wrap;
}
.content-about-info-1 {
    padding:80px 60px;
    max-width:calc(50% + 150px);
    width:100%;
    box-sizing: border-box;
}
.content-full-width {
    max-width: 100%!important;
    padding-bottom: 10px;
}

.content-about-info-1 h2, .home-about-info-1 h2 {
    font-family: "Oswald", sans-serif;
    color:#000;
    font-size:32px;
    font-weight:700;
}
.content-about-info-1 h2 span, .home-about-info-1 h1 span {
    font-size:25px;
    font-weight: 400;
}
.content-about-info-1 p {
    padding:40px 0 50px 0;
    font-family: "Roboto Condensed", sans-serif;
    color:#000;
    font-size:18px;
    line-height: 1.4;
}
.content-about-info-1 ul {
    padding:20px 0;
    margin: 0;
}
.content-about-info-1 ul li {
    padding:5px 0;
    margin: 0;
    list-style: none;
    font-size: 20px;
    font-weight: 600;
}
.content-about-info-1 ul li a {
    color:#474747;
    transition: .2s ease-in;
}
.content-about-info-1 ul li a:hover {
    color:#d8631e;
}
.content-about-btn-cont-1 {
    width:100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap:20px;
}
.content-about-btn-cont-1 .btn-white {
    width: calc(50% - 10px);
	flex-grow: 1;
}

.content-about-img-1 {
    width:100%;
   max-width:calc(50% - 150px); 
}
.content-about-img-1 img {
    width:100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position:center;
}
.map-bg-1 iframe {
   min-height: 300px;
    height:100%;
}
.content-about-img-2 {
    width:100%;
}
.content-about-img-2 img {
    width:100%;
    height: auto;
    display: block;
    margin:0 auto;
}
.content-about-img-1 img.hyundai-about-img {
    object-position: left center;
}
.content-about-img-1 img.axcs-about-img {
	 object-position: center;
}
.wrap-content-2 {
    width:100%;
    padding: 0px 0 80px 0;
}

.team-info-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 60px 1.3%;
}
.team-info-container h2 {
    font-family: "Oswald", sans-serif;
    font-size: 50px;
    font-weight: 700;
    color: #474747;
    width: 100%;
    display: block;
    text-transform: uppercase;
}
.locaton-header {
    display: block;
    width: 100%;
    padding:20px 30px;
    box-sizing: border-box;
    background: #F26B1C;
    text-align: center;
    font-size: 26px;
    color: #fff;
    clip-path: polygon(60px 0%,calc(100% - 50px) 0%,100% 50px,100% calc(100% - 0px),calc(100% - 50px) 100%,00px 100%,0% calc(100% - 60px),0% 50px);
}

.team-col {
    width:24%;
    padding:20px;
    clip-path: polygon(0px 0%,calc(100% - 0px) 0%,100% 50px,100% calc(100% - 60px),calc(100% - 50px) 100%,60px 100%,0% calc(100% - 0px),0% 50px);
    background:#474747;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 255px;
}

.team-col h3 {
    color:#fff;
    font-family: "Roboto Condensed", sans-serif;
    text-align: center;
    font-size:24px;
    font-weight: 600;
    min-height: 70px;
    box-sizing: border-box;
}
.team-col h3 span {
    display: block;
    font-size:18px;
    font-weight: 400;
    padding-top:5px;
}
.team-col ul {
    padding:0 10px;
    margin:5px 0;
}
.team-col ul li {
    padding:0;
    margin:20px 0;
    list-style: none;
    text-align: center;
}
.team-col ul li a {
    font-family: "Roboto Condensed", sans-serif;
    font-size:20px;
    font-weight: 500;
    background: #F26B1C;
    color:#000;
    padding:0;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: .2s ease-in;
	text-shadow: 0 0 .08 #000;
}
.team-col ul li a span:first-of-type {
    padding-left: 10px;   
}
.team-col ul li a .contact-btn-1 {
    background: #d8631e;
    font-size: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3px 20px 10px 25px;
    clip-path: polygon(15px 0%,100% 0%,100% 100%,0% 100%);
    color: #fff !important;
}
.team-col ul li a:hover {
    background: #d8631e;
}

.team-col ul ul {
    padding:0;
    margin:0;
    background:none;
}
.team-col ul ul li {
    padding:0;
    margin:0;
}
.team-col ul ul li a {
    background: #d8631e;
    text-align: center;
    display: block;
    padding: 10px;
    font-size:18px;
    font-weight: 400;
}
.wrap-hyundai {
    width:100%;
    background:#474747;
}
.wrap-hyundai img {
    max-width: 1100px;
    width: 100%;
    height: auto;
    margin: 30px auto;
    display: block;
}
.wrap-hyundai ul {
    padding:20px 0 0 0;
    border-top:2px solid #fff;
    margin:0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap:10px 20px;
}
.wrap-hyundai ul li {
    padding:0;
    margin:0 auto;
    list-style: none;
    flex-grow: 1;
}
.wrap-hyundai ul li a {
    color:#fff;
    border:1px solid #fff;
    padding:10px 20px;
    font-size: 18px;
    font-weight: 500;
    font-family: "Roboto Condensed", sans-serif;
    transition: .2s ease-in;
    display: flex;
    justify-content: space-between;
}
.wrap-hyundai ul li a:hover {
    background:#fff;
    color:#000;
}
.h-cat-info-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap:20px 0;
}
.h-cat-info-container h2 {
    font-family: "Oswald", sans-serif;
    font-size: 50px;
    font-weight: 700;
    color: #474747;
    width: 100%;
    display: block;
    text-transform: uppercase;
}
.h-cat-col {
    width:30%;
    position: relative;
}
.h-cat-col img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto -50px auto;
    z-index: 2;
    position: relative;
}
.h-cat-bottom {
    position: relative;
    z-index: 1;
    width:100%;
    padding:60px 30px;
    clip-path: polygon(0px 0%,calc(100% - 0px) 0%,100% 50px,100% calc(100% - 60px),calc(100% - 50px) 100%,60px 100%,0% calc(100% - 0px),0% 50px);
    background: #F26B1C;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    gap:20px 0;
    justify-content: space-between;
}
.h-cat-bottom h3 {
    color: #fff;
    font-family: "Roboto Condensed", sans-serif;
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    box-sizing: border-box;
    width: 100%;
}
.h-cat-bottom a {
    background: #474747;
    display: block;
    width:49%;
    padding:10px;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff !important;
    transition: .2s ease-in;
    text-align: center;
    box-sizing: border-box;
    cursor: pointer;
}
.h-cat-bottom a:hover {
    background: #000000;
}
.wrap-bottom-banner {
    width:100%;
    padding-top:70px;
    position: relative;
    margin-top: 70px;
}
.wrap-bottom-banner:after {
width: 100%;
  content: "";
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  background: #474747;
  clip-path: polygon(60px 0%,100% 0%,100% 100%,60px 100%,0% 100%,0% 50px);
  height: 97%;
  max-width: calc(50% + 650px);
}
.wrap-bottom-banner .container-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.banner-left {
    width:40%;
}
.banner-left h3 {
  font-size: 35px;
  font-weight: 700;
  color: #F26B1C;
  font-family: "Oswald", sans-serif;
}
.banner-left p {
    font-size: 20px;
    padding:30px 0;
}
.banner-left a {
    display: block;
    background: #fff;
    border: 2px solid #cdcdcd;
    padding:40px 20px;
    box-sizing: border-box;
    font-family: "Oswald", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #F26B1C !important;
    text-align: center;
    transition: .2s ease-in;
}
.banner-left a img {
    max-width: 300px;
    width:100%;
    height: auto;
    display: block;
    margin:0 auto;
}
.banner-left a:hover {
    background:#cdcdcd;
    color:#474747 !important;
}
.banner-left a:hover img {
    filter:grayscale(100%) invert(100%) brightness(109%) contrast(111%);
}
.banner-right {
    width:55%;
    padding:0 60px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}
.banner-right h3 {
    color: #F26B1C;
    font-size: 35px;
    font-weight: 700;
    font-family: "Oswald", sans-serif;
    border-bottom:1px solid #fff;
    padding-bottom:5px;
}
.banner-right ul {
    padding: 30px 0 30px 20px;
    margin: 0;
}
.banner-right ul li {
    color:#fff;
   padding:20px 0 0 0;
    margin:0;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 20px;
    font-weight: 500;
}
.banner-full {
    max-width: calc(50% + 650px);
    padding:0 60px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    background-color: #474747;
}
.banner-full h3 {
    color: #F26B1C;
    font-size: 35px;
    font-weight: 700;
    font-family: "Oswald", sans-serif;
    border-bottom:1px solid #fff;
    padding-bottom:5px;
}
.banner-full ul {
    padding: 30px 0 30px 20px;
    margin: 0;
}
.banner-full ul li {
    color:#fff;
   padding:20px 0 0 0;
    margin:0;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 20px;
    font-weight: 500;
}
.banner-full ul li a {
	transition: .2s ease-in;
	color:#fff;
	font-weight: 700;
}
.banner-full ul li a:hover {
	color:#F26B1C;
}
.about-page-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap:40px 0;
}
.about-page-info h2 {
    padding-bottom:30px;
    color:#000;
}
.about-page-info .col-1-2 {
    width:45%;
}
.about-page-info ul {
	padding:20px 0;
	margin:0;
}
.about-page-info ul li {
	padding:5px 0;
	margin:0;
	list-style: none;
	font-size:30px;
	font-weight: 400;
}
.about-page-info ul li span {
	font-weight: 900;
}
.core-values-pg {
	width: 100%;
	height: auto;
	padding:100px 0 80px 0;
	position: relative;
	background: #474747;
}
.core-values-pg:before {
	content: "";
	background: #ffffff;
	clip-path: polygon(0% 0%,100% 0%,100% 100%,60px 100%);
	width: calc(100% - 60px);
	max-width: calc(50% + 630px);
	height: 50px;
	position: absolute;
	right: 0;
	top:-1px;
	z-index: 2;
}
.core-values-pg .container-1 {
	position: relative;
	z-index: 2;
}
.core-values-bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	position: absolute;
	left:0;
	top:0;
	z-index: 1;
	opacity: 0.1;
}
.core-values-pg h2 {
	font-size: 50px;
	color:#F26B1C;
}
.core-values-pg .about-page-info ul {
	display: flex;
	flex-direction: column;
	gap:10px 0;
}
.core-values-pg .about-page-info ul li {
	padding:10px;
	box-sizing: border-box;
	margin:0;
	list-style: none;
	font-size: clamp(14px, 2vw, 18px);
	font-weight: 500;
	color:#fff;
	border-top: 10px solid #F26B1C;
	border-left: 10px solid #F26B1C;
	width: 19%;
	min-width: 150px;
	
}
.core-values-pg .about-page-info ul li:nth-of-type(1) {
	align-self: flex-end;
}
.core-values-pg .about-page-info ul li:nth-of-type(2) {
	margin-left:clamp(60%, 60%, 30px);
}
.core-values-pg .about-page-info ul li:nth-of-type(3) {
	margin-left:clamp(40%, 40%, 20px);
}
.core-values-pg .about-page-info ul li:nth-of-type(4) {
	margin-left:clamp(20%, 20%, 10px);
}

.core-values-pg .about-page-info ul li span {
	font-weight: 900;
	font-size: clamp(18px, 2vw, 24px);
	margin-right: 5px;
	display: inline-block;
}
.time-line  {
    padding-bottom: 50px;    
    overflow: hidden;
}
.time-line .slick-dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap:10px;
}
.time-line .slick-dots li {
    display: block;
    width:20px;
    height: 20px;
    padding:0;
    margin:0;
    list-style: none;
    background-color:#474747;
     cursor: pointer;
    transition: .2s ease-in;
}
.time-line .slick-dots li:hover {
   opacity: 0.7; 
}
.time-line .slick-dots li.slick-active {
    background-color:#F26B1C;
}

.time-line .slick-dots li button {
    display: none;
}

.time-line-cont-1 {
   background:#cdcdcd;
    display: flex; 
    justify-content: space-between;
    flex-wrap: wrap;
    margin:20px 0;
    clip-path: polygon(60px 0%, calc(100% - 50px) 0%, 100% 49px, 100% calc(100% - 60px), calc(100% - 50px) 100%, 0px 100%, 0% 100%, 0% 0px);
    
}
.time-line-info {
    font-family: "Roboto Condensed", sans-serif;
    color:#000;
    font-size: 17px;
    width:45%;
    flex-grow: 1;
    padding: 20px;
    box-sizing: border-box;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.time-line-info span {
    color:#F26B1C;
    font-size: 40px;
    font-weight: 700;
    font-family: "Oswald", sans-serif;
}
.time-line-img {
    width:55%;
    min-height: 200px;
}
.time-line-img img {
    width:100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.wrap-inv {
    background:#cdcdcd;
  width: 100%;
  height: auto;
  position: relative;
}
.wrap-inv h2 {
    text-align: center;
    color:#fff;
    background:#000;
    padding:20px;
    display: block;
    width:100%;
}
.wrap-inv:after {
    content:"";
    background:#cdcdcd;
    clip-path: polygon(0% 0%,100% 0%,100% calc(100% - 50px),calc(100% - 60px) 100%,0% 100%);
    width:calc(50% - 630px);
    height: 50px;
    position: absolute;
    left:0;
    top:calc(100% - 1px);
    min-width: 80px;
}
.wrap-inv .container-1 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap:20px;
    text-align: center;
}
.wrap-inv .container-1 p {
    font-size: 24px;
    font-weight: 500;
    color:#000;
    font-family: "Roboto Condensed", sans-serif;
}
.wrap-inv .container-1 .btn-orange {
    padding:15px 20px;
}


.banner-wrap {
    width:100%;
    display: flex;
    flex-wrap: wrap;
}
.banner-info {
    width:45%;
    background:#F26B1C;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding:70px 20px;
}
.banner-info-cont-1 {
    width:100%;
    max-width: 450px;
}
.banner-info-cont-1 h2 {
    text-transform: uppercase;
    line-height: 50px;
    font-size: 40px;
    padding-bottom: 40px;
}
.banner-info-cont-1 .small-text {
    font-size: 14px;
}
.banner-info-cont-1 {
    color:#fff;
}
.banner-info-cont-1 .btn-orange {
    display: block;
    margin-top:20px;
    max-width: 250px;
}
.banner-image {
    width:55%;
}
.banner-image img {
    width:100%;
    height: 100%;
    min-height: 300px;
    display: block;
    object-fit: cover;
    object-position: center;
}

.review-slider-1 {
	padding:40px 0;
}
.review-slider-1 .slick-track {
	display: flex;
	align-items: stretch;
	gap:20px;
}
.review-slider-1 .slick-dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap:10px;
}
.review-slider-1 .slick-dots li {
    display: block;
    width:20px;
    height: 20px;
    padding:0;
    margin:0;
    list-style: none;
    background-color:#474747;
     cursor: pointer;
    transition: .2s ease-in;
}
.review-slider-1 .slick-dots li:hover {
   opacity: 0.7; 
}
.review-slider-1 .slick-dots li.slick-active {
    background-color:#F26B1C;
}

.review-slider-1 .slick-dots li button {
    display: none;
}

.review-cont-1 {
	background:#ffff;
	padding:10px;
	box-sizing: border-box;
	display: flex!important;
	flex-direction: column;
	gap:20px;
	justify-content: space-between;
	height: auto !important;
}
.review-cont-1 img {
	width: 100%;
	max-width: 20px;
	display: block;
}
.review-stars {
	display: flex;
	justify-content: center;
	gap:2px;
	font-size: 12px;
	color:#F26B1C;
	padding-top: 10px;
}
.review-cont-1 .lg-text {
	font-size: 16px;
	text-align: center;
}
.review-cont-1 .sml-text {
	font-size: 20px;
	font-weight: 700;
	text-align: center;
}

.home-review-cont .text-link-black {
	font-size: 20px;
}


/*===================== 
	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 .form-section-header {
    padding:0 0 5px 0;
    color:#474747;
    margin:20px 0 10px 0;
    font-family: "Oswald", sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.form-info-cont input, .form-info-cont date, .form-info-cont select {
	width: 100%;
	display: block;
	padding: 15px;
	font-size: 17px;
	margin:  0 0 20px 0;
	box-sizing: border-box;
    font-family: "Roboto Condensed", sans-serif;
    background: #fff;
    border:4px solid #cdcdcd;
    outline:none;
}
.form-info-checkbox input[type="checkbox"] {
	padding: 5px 0 5px 5px;
	margin:  0 0 20px 0;
	box-sizing: border-box;
}
.form-info-cont textarea {
	width: 100%;
	display: block;
	padding: 15px;
	font-size: 17px;
	min-height: 120px;
	box-sizing: border-box;
	margin:  0 0 20px 0;
	font-family: "Roboto Condensed", sans-serif;
    background: #fff;
    border:4px solid #cdcdcd;
    outline:none;
}
.form-radio-btn {
    display: flex;
    flex-wrap: wrap;
	padding: 15px;
	font-size: 17px;
    background:#fff;
    font-family: "Roboto Condensed", sans-serif;
    gap:10px 20px;
    margin:  0 0 15px 0;
}
.radio-cont-1 {
    margin:  0;
    display: flex;
    align-items: center;
    gap:0 5px;
}
.form-radio-btn p {
    width:100%;
}
.form-radio-btn label {
    padding:0;
    margin: 0;
    font-weight: 600;
    font-family: "Roboto Condensed", sans-serif;
}
.form-radio-btn input {
    padding:0;
    margin: 0;
}

select {
	margin:0;
	padding:0;
}



.form-inline .btn-orange {
    display: block;
    max-width: 200px;
    margin:0 auto;
    width: 100%;
}

.CaptchaImage {
  max-width: 100%;
}

.CaptchaWhatsThisPanel a {color:#000;}
.CaptchaWhatsThisPanel a:hover {text-decoration:underline;} 




/*===================== 
	banner styles 
=======================*/


/*===================== 
	layout styles 
=======================*/

.wrap {
	width: 100%;
	margin: 0;
	}
	

.container-1 {
    width:100%;
	max-width: 1300px;
	margin: 0 auto;
	padding:20px;
	box-sizing: border-box;
	}
.container-2 {
    width:100%;
	max-width: 1500px;
	margin: 0 auto;
	padding:20px;
	box-sizing: border-box;
	}
.container-inv {
	max-width: 1300px;
	margin: 0 auto;
	padding:80px 20px 80px 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%;
    background:#474747;
	}
footer .foot-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}
.foot-nav-1 {
    width:100%;
    max-width: 650px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap:10px;
    padding:20px 0;
}
.foot-nav-col-1 h4 {
    font-family: "Oswald", sans-serif;
    font-size:24px;
    font-weight: 600;
    color:#F26B1C;
    padding-bottom:10px;
}
.foot-nav-col-1 ul {
    padding:10px 0 0 0;
    margin:0;
}
.foot-nav-col-1 ul li {
    font-family: "Roboto Condensed", sans-serif;
    padding:0;
    margin: 0;
    list-style: none;
    font-size:18px;
    font-weight:400;
    line-height: 1.4;
    color:#fff;
}
.foot-nav-col-1 ul li a {
    color:#fff;
    transition: .2s ease-in;
}
.foot-nav-col-1 ul li a:hover {
    color:#F26B1C;
}
.foot-right {
    clip-path: polygon(60px 0%,100% 0%,100% 100%,60px 100%,0% 100%,0% 50px);
    background: #F26B1C;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px 0;
    position: absolute;
    top: -51px;
    right: 20px;
    height: calc(100% + 125px);
    z-index: 2;
    box-sizing: border-box;
}
.foot-right img {
    width: 100%;
    max-width: 235px;
    display:block;
    height: auto;
    margin:0 auto;
}
.foot-right ul {
    padding:0;
    margin:0;
    display: flex;
    gap:10px;
    flex-wrap: wrap;
}
.foot-right ul li {
    padding:0;
    margin:0;
    list-style: none;
}
.foot-right ul li a {
    font-size:28px;
    color:#fff;
    transition: .2s ease-in;
}
.foot-right ul li a:hover {
    color:#000;
}

.foot-bottom-1 {
    background:#000;
    width:100%;
    padding:17px 0;
}
.foot-bottom-1 p {
    font-family: "Roboto Condensed", sans-serif;
    font-size:12px;
    font-weight:400;
    color:#fff;
}
.foot-bottom-1 p a {
    transition: .2s ease-in;   
    color:#fff;
}
.foot-bottom-1 p a:hover {
    color:#F26B1C;
}

/*========================== 
	  Responsive styles 
============================*/

@media screen and (max-width: 1300px)  {
    .top-head {
      padding: 10px 20px;
    }
    .head-logo-1 {
      padding-left: 0px;
    }
    .head-btn {
        width: 125px;
    }
    nav.primary ul {
        gap: 0;
    }
    nav.primary ul li a {
        font-size: 1.4vw;
    }
    .wrap-home-service::after {
        max-width: 33%;
    }
    .team-info-container {
        gap: 60px 2%;
    }
    .team-col {
        width: 32%;
    }
    
}
@media screen and (max-width: 1150px)  {
    .wrap-cat .container-1 a .cat-cont-2 h2 {
        font-size: 2.5vw;
    }
    .wrap-cat .container-1 a .cat-cont-2 p, .wrap-cat .container-1 a .cat-cont-1 p, .wrap-cat .container-1 a .cat-cont-1-1 p {
      font-size: 2vw;
    }
    .foot-nav-1 {
        max-width: calc(100% - 350px);
    }
    
}
@media screen and (max-width: 1000px)  {

    .hero-overlay .container-1 {
        text-align: center;
    }
    .hero-overlay h1 {
        font-size:6vw;
    }
    .hero-overlay h1 span {
        font-size:5vw;
    }

    
    .top-head ul li {
        font-size: 16px;
    }
    
    .search-btn {
        display: none;
    }
    .head-btn {
        width: 100px;
        height: calc(100% + 20px);
        clip-path: polygon(0% 0%,100% 0%,100% 100%,30px 100%,0% calc(100% - 20px));
    }
    .head-logo-1 a img {
        max-width: 250px;
    }
    .head-search {
        background: #474747;
        width: 100%;
        position: static;
        display: block!important;
        padding:10px;
        box-sizing: border-box;
    }
    .head-search form {
        padding: 10px;
    }
    .search-container-1 {
        max-width: calc(100% - 90px);
        padding: 10px;
        margin: 0;
    }
    
	/*==============================
		Mobile Nav Styles			
	================================*/	
    
    
    
	nav.primary{display:none;}
    .mobile-nav-cont-1 {
        display:block;
        position: relative;
        z-index: 2;
    }
    
	#menu-button{ 
		display: block;
        padding-bottom:20px;
		position: relative;
		z-index: 400; /* needs to be lower than nav.mobile, adjust as needed */
	}
	.menu-toggle {
        display: flex;
        gap:13px;
        align-items: center;
		cursor: pointer;
    }
     .menu-hamburger {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        width:35px;
        height: 27px;
        position: relative;
    }
    .menu-hamburger-bar-1 {
       display: block;
       background:#fff;
        height: 5px;
        width:100%;
        transition: .2s ease-in;
    }
    .menu-hamburger-bar-2 {
       display: block;
       background:#fff;
        height: 5px;
        width:100%;
        transition: .2s ease-in;
    }
    .menu-hamburger-bar-3 {
       display: block;
       background:#fff;
        height: 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:25px;
    }
    .clickopen .menu-hamburger-bar-3 {
        position: absolute;
        top:10px;
        transform: rotate(-45deg);
        width:25px;
    }
	nav.mobile {
		display:none;
		position: absolute;
		left: 0px;
		width: 100%;
		height: auto;
		background: #F26B1C;
		z-index: 500; 
		overflow:auto;
		max-height: 69vh;
	}

	/* 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: "Oswald", sans-serif;
		position: relative;
		display: block;
		font-size:16px;
		padding: 10px 20px;
		color: #fff;
		text-decoration: none;
	}
	nav.mobile ul li a:hover {
		background:rgba(45,45,45,0.5); 
		color: #fff; 
	}

	/* 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 25px;
		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: #474747;
		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);}


    .home-about-info-1, .content-about-info-1 {
        padding: 60px 20px;
        max-width: 100%;
    }
    .home-about-img-1, .content-about-img-1 {
        width:100%;
        max-width: 100%;
    }
    .home-about-img-1 img {
      width: 100%;
      height: auto;
        object-fit: contain;
      object-position: left center;
      clip-path: polygon(0px 0%,100% 0%,100% 100%,60px 100%,0% calc(100% - 50px),0% 50px);
    }
    .content-about-img-1 img {
      width: 100%;
      height: 300px;
        object-fit: cover;
      object-position: left center;
    }
    
    
    .wrap-home-service .container-1 {
        align-items: center;
        flex-direction: column;
    }
    .service-info-cont-1 {
        width: 100%;
        padding: 40px 0px;
        max-width: 500px;
    }
    .wrap-home-service::after {
        max-width: calc(100% - 20px);
        height: 650px;
    }
    .service-img-1 img {
          height: 400px;
        object-fit: cover;
        object-position: bottom left;
    }
    .h-cat-col {
        width: 45%;
        margin: 0 auto;
    }
    .youtube-bg-1 iframe, .youtube-bg-2 iframe {
	aspect-ratio: 16 / 9;
      height: auto;
      position: static;
      width: 100%;
    }
}
@media screen and (max-width: 900px)  {
    .wrap-cat .container-1 {
        top: 0;
        flex-wrap: wrap;
        gap:20px 0;
    }   
    .wrap-cat .container-1 a {
        width:100%;
        max-width: 600px;
        margin:0 auto;
    }
    .wrap-cat .container-1 a .cat-cont-1, .wrap-cat .container-1 a .cat-cont-1-1 {
        padding:20px 70px 20px 40px;
		clip-path: polygon(0% 0%,100% 0%,calc(100% - 60px) 100%,0% 100%);
    }
    .wrap-cat .container-1 a .cat-cont-2 {
        clip-path: polygon(0% 0%,100% 0%,calc(100% - 60px) 100%,0% 100%);
        padding:20px 70px 20px 40px;
    }
    .wrap-cat .container-1 a .cat-cont-1 p, .wrap-cat .container-1 a .cat-cont-1-1 p {
        font-size:20px;
    }
    .wrap-cat .container-1 a .cat-cont-1 img {
        max-width: 400px;
    }
    .wrap-cat .container-1 a .cat-cont-2 p {
        font-size:20px;
    }
    .wrap-cat .container-1 a .cat-cont-2 h2 {
        font-size:40px;
    }
    .team-col {
        width: 49%;
    }
    .banner-left {
      width: 100%;
        margin-bottom:120px;
    }
    .banner-right {
        width: 100%;
    }
    .wrap-bottom-banner::after {
        max-width: calc(100% - 20px);
        height: calc(100% - 20px);
    }
    .col-1-2, .col-1-3, .col-2-3 {
        width:100%;
    }
    
}
@media screen and (max-width: 800px)  {
    
    .hide-mobile {
        display: none;
    }  
    .hero-video {
        display: none;
    }
    .hero-overlay {
        position: static;
        background-image: url("../siteart/hero-img-1.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        padding:60px 20px;
        box-sizing: border-box;
    }
    .hero-overlay h1 {
        font-size: 30px;
    }
    .hero-overlay h1 span {
        font-size: 20px;
    }
    .home-about-btn-cont-1 .btn-white {
      width: 100%;
    }
    .wrap-home-service h2 {
      font-size: 30px;
    }
    .h-cat-bottom a {
        width: 100%;
    }
    .h-cat-bottom h3 {
        font-size: 3.2vw;
    }
    .about-page-info .col-1-2 {
        width:100%;
    }
	.core-values-pg h2 {
		font-size: 30px;
	}

}
@media screen and (max-width: 700px)  {
    .foot-nav-1 {
        display: none;
    }
    footer .foot-top {
      padding: 0;
    }
    .foot-bottom-1 .container-1 p {
        text-align: center;
    }
    .foot-right {
        padding: 80px 40px;
        position: static;
        height: auto;
        z-index: 2;
        width: 100%;
        margin-top: -50px;
    }
    .wrap-home-service::after {
        max-width: calc(100% - 20px);
        height: 560px;
    }
    .service-img-1 img {
          height: 300px;
        object-fit: cover;
        object-position: bottom left; 
    }
    .team-col {
        width: 100%;
        min-height: auto;
    }
    .wrap-inv .container-1 p {
        font-size: 18px;
        font-weight: 500;
        color:#000;
        font-family: "Roboto Condensed", sans-serif;
    }
    .wrap-inv .container-1 .btn-orange {
        padding:15px;
        font-size: 16px;
    }
    .time-line-info {
        width:100%;
    }
    .time-line-img {
        width:100%;
    }
    .content-about-btn-cont-1 .btn-white {
      width: 100%;
    }
    .banner-info {
        width:100%;
        padding:30px 20px;
    }
    .banner-info-cont-1 {
        max-width: 100%;
    }
    .banner-info-cont-1 h2 {
        line-height: 40px;
        font-size: 30px;
        padding-bottom: 20px;
    }
    .banner-info-cont-1 .small-text {
        font-size: 12px;
    }
    .banner-image {
        width:100%;
    }
}
@media screen and (max-width: 550px)  {
    .wrap-cat .container-1 a .cat-cont-1 p, .wrap-cat .container-1 a .cat-cont-1-1 p {
        font-size:16px;
    }
    .wrap-cat .container-1 a .cat-cont-2 p {
        font-size:16px;
    }
    .wrap-cat .container-1 a .cat-cont-2 h2 {
        font-size:30px;
    }
    .wrap-home-service::after {
        max-width: calc(100% - 10px);
    }
    .banner-right {
        padding: 0 20px;
    }
    .h-cat-col {
        width: 100%;
    }
    .wrap-hyundai ul li {
        width:100%;
    }
    .wrap-hyundai ul li a {
        font-size: 16px;
    }
	.wrap-cat .container-1 a .cat-cont-1 img, .wrap-cat .container-1 a .cat-cont-1-1 img {
		max-height: 60px;
	}

    
}
