/*

Grand Tints


/
/* ---------------------------------------------
Table of contents
------------------------------------------------
01. font & reset css
02. reset
03. global styles
04. header
05. banner
06. features
07. testimonials
08. contact
09. footer
10. preloader
11. search
12. portfolio

--------------------------------------------- */
/* 
---------------------------------------------
font & reset css
--------------------------------------------- 
*/
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* 
---------------------------------------------
reset
--------------------------------------------- 
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, div
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q,
s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
figure, header, nav, section, article, aside, footer, figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

/* clear fix */
.grid:after {
  content: '';
  display: block;
  clear: both;
}

/* ---- .grid-item ---- */

.grid-sizer,
.grid-item {
  width: 50%;
}

.grid-item {
  float: left;
}

.grid-item img {
  display: block;
  max-width: 100%;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

ul, li {
  padding: 0;
  margin: 0;
  list-style: none;
}

header, nav, section, article, aside, footer, hgroup {
  display: block;
}

* {
  box-sizing: border-box;
}

html, body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  background-color: #fff;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none !important;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0px;
  margin-bottom: 0px;
}

ul {
  margin-bottom: 0px;
}

p {
  font-size: 17px;
  line-height: 30px;
  color: #444444;
}

img {
  width: 100%;
  overflow: hidden;
}
h3{
	font-family: 'Poppins';
	font-size: 40px;
	font-weight: 700;
	color: #d09329;
}
/* 
---------------------------------------------
global styles
--------------------------------------------- 
*/
html,
body {
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

::selection {
  background: #03a4ed;
  color: #fff;
}

::-moz-selection {
  background: #03a4ed;
  color: #fff;
}
h1,h2{
	font-size:42px;
	font-family: 'Poppins';
	font-weight: 700;
	color: #fff;
	text-transform: capitalize;
}

@media (max-width: 991px) {
  html, body {
    overflow-x: hidden;
  }
  .mobile-top-fix {
    margin-top: 30px;
    margin-bottom: 0px;
  }
  .mobile-bottom-fix {
    margin-bottom: 30px;
  }
  .mobile-bottom-fix-big {
    margin-bottom: 60px;
  }
}

.page-section {
  margin-top: 120px;
}

.gndtsHdr h2{
	position: relative;
}
.gndtsHdr h2:after{
	content: " ";
	display: block;
	width: 50px;
	height: 3px;
	background: #ebb930;
	margin: 20px auto 0;
	position: relative;
}
.gndtsHdr p{
	color: #fff;
}
.gndtBtn-yellow{
  display: inline-block;
  background-color: #eaba34;
  font-size: 18px;
  font-weight: 600;
  color: #060d1e;
  text-transform: uppercase;
  padding: 12px 25px;
  border-radius: 6px;
  letter-spacing: 0.25px;
  transition: all .3s;
	border: none;
}

.gndtBtn-yellow:hover {
  background-color: #fff !important;
  color: #060d1e !important;
}
.gndtBtn-white{
  display: inline-block;
  background-color: #fff;
  font-size: 18px;
  font-weight: 600;
  color: #060d1e;
  text-transform: uppercase;
  padding: 12px 25px;
  border-radius:6px;
  letter-spacing: 0.25px;
  transition: all .3s;
}

.gndtBtn-white:hover {
  background-color: #eaba34 !important;
  color: #060d1e !important;
}

.gndtBtn-row a{
	margin: 0 15px;
}

.socialMedia a.top_phone { 
	width: auto !important; 
	height: auto !important; 
	padding: 0 !important; 
	border: none !important;
}


.itemCaption{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	text-align: center;
	display: flex;
  align-items: center;
  justify-content: center;
	flex-direction: column;
/* 	background: rgba(0,0,0,0.5); */
	transition: all 0.4s;
	transition: opacity 1s ease;
	padding: 0 14px;
	z-index:1;
	
}
.itemCaption:before{
	content: " ";
	display:block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: #000;
	transition: all 0.4s;
	transition: opacity 1s ease;
	padding: 0 14px;
	opacity:0.5;
	z-index:-1;
}
.itemCaption h4{
	font-weight: bold;
	font-size:25px;
	color: #fff;
	padding:0 15px;
	margin-bottom:20px;
}
.mnhdrSlider div.item:hover .itemCaption:before{
	opacity:0.8;
}
.itembxes {
  overflow: hidden;
  transition: all 0.8s ease;
  max-height:33px;
}
.mnhdrSlider div.item:hover .itembxes {
  height: auto;
  max-height: 260px;
	
}

.mnhdrSlider .item img{
    height:513px;
    object-fit:cover;
}


.mobile-srvGlry .items{
	position:relative;
}
.mobile-srvGlry .items:hover .itembxes {
  height: auto;
  max-height: 260px;	
}
.mobile-srvGlry .items .itembxes p {
	color:#fff;
}
.mobile-srvGlry .items img{
    height:413px;
    object-fit:cover;
}





.main-blue-button a {
  display: inline-block;
  background-color: #d09329;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  text-transform: capitalize;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
  transition: all .3s;
}

.main-blue-button a:hover {
  background-color: #110239 !important;
  color: #fff !important;
}

.main-green-button a {
  display: inline-block;
  background-color: #33ccc5;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  text-transform: capitalize;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
  border-bottom: 2px solid #4771cb!important;
  transition: all .3s;
}

.main-green-button a:hover {
  background-color: #4771cb!important;
  color: #fff!important;
  border-bottom: 2px solid #33ccc5!important;
}

.kzANES{
	height:auto !important;
}
.elfstbox{
	padding:60px 0;
}
.kexhGA{
	background-color:#fff !important;
}
.capcOd{
	background-color:#fff !important;
}
/* 
---------------------------------------------
header
--------------------------------------------- 
*/

.wall_thumbnail img {
  max-width: 100%;
  height: auto;
  line-height: 0;
}
.wall_thumbnail img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-transition: all 1.5s ease;
  -moz-transition: all 1.5s ease;
  -ms-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
}
.wall_thumbnail:hover img:not(.static) {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.wall_thumbnail .mask {
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  background: #000;
  background-color: rgba(0,0,0,.5);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  width: 100%;
  height: 100%;
}








.wall_thumbnail:hover .mask {
    background: rgba(0,0,0,.5);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1;
}




.background-header {
  background-color: #060606 !important;
  height: 80px!important;
  position: fixed!important;
  top: 0px;
  left: 0px;
  right: 0px;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.15)!important;
}


.topHdr-phone .tphone {
  box-shadow: 0px 0px 58px 4px rgba(234,186,52,0.73);
  border: 1px solid #f2daa0;
  border-radius: 100px;
}

.background-header .logo,
.background-header .main-nav .nav li a {
  color: #fff;
}
.background-header .logo{
	max-width: 91px;
}
.background-header .main-nav .nav li:hover a {
  color: #33ccc5;
}

.background-header .nav li a.active {
  position: relative;
  color: #fff;
}

.background-header .nav li a.active::after {
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #ebb82e;
  content: '';
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
}

.header-area {
  background-color: #060606;
  position: absolute;
	border-bottom: 1px solid #1f1f1f;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 100;
  height: 100px;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}

.header-area .main-nav {
  min-height: 100px;
  background: transparent;
	display: flex;
  justify-content: space-between;
	align-items: center;
}

.header-area .main-nav .logo {
  float: left;
	margin-top: 7px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}



.background-header .main-nav .nav {
  margin-top: 10px !important;
}

.header-area .main-nav .nav {
  float: right;
  margin-top:0px;
  margin-right: 0px;
  background-color: transparent;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 999;
}

.header-area .main-nav .nav li {
  padding-left: 20px;
  padding-right: 20px;
}



.header-area .main-nav .nav li a {
  display: block;
  font-weight: 400;
  font-size: 17px;
  color: #fff;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  height: 60px;
  line-height: 60px;
  border: transparent;
  letter-spacing: 0px;
}

.header-area .main-nav .nav li:hover a,
.header-area .main-nav .nav li a.active {
  color: #ebb82e!important;
}
.header-area .main-nav .nav li:hover a{
	color: #ebb82e !important;
}
.background-header .main-nav .nav li:hover a,
.background-header .main-nav .nav li a.active {
  color: #ebb82e!important;
  opacity: 1;
}



.header-area .main-nav .menu-trigger {
  cursor: pointer;
  display: block;
  position: absolute;
  top: 33px;
  width: 32px;
  height: 40px;
  text-indent: -9999em;
  z-index: 99;
  right: 15px;
  display: none;
}

.background-header .main-nav .menu-trigger {
  top: 23px;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #fff;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}

.background-header .main-nav .menu-trigger span,
.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
  background-color: #cf932a;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #fff;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  width: 75%;
}

.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
  background-color: #100d15;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  content: "";
}

.header-area .main-nav .menu-trigger span {
  top: 16px;
}

.header-area .main-nav .menu-trigger span:before {
  -moz-transform-origin: 33% 100%;
  -ms-transform-origin: 33% 100%;
  -webkit-transform-origin: 33% 100%;
  transform-origin: 33% 100%;
  top: -10px;
  z-index: 10;
}

.header-area .main-nav .menu-trigger span:after {
  -moz-transform-origin: 33% 0;
  -ms-transform-origin: 33% 0;
  -webkit-transform-origin: 33% 0;
  transform-origin: 33% 0;
  top: 10px;
}

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
  background-color: transparent;
  width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
  -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
  -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
  -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
  transform: translateY(6px) translateX(1px) rotate(45deg);
  background-color: #fff;
}

.background-header .main-nav .menu-trigger.active span:before {
  background-color: #cf932a;
}

.header-area .main-nav .menu-trigger.active span:after {
  -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  background-color: #fff;
}

.background-header .main-nav .menu-trigger.active span:after {
  background-color: #cf932a;
}

.header-area.header-sticky {
  min-height: 80px;
}

.header-area .nav {
  margin-top: 30px;
}

.header-area.header-sticky .nav li a.active {
  color: #33ccc5;
}
.socialMedia{
	
}
.socialMedia a {
	width: 38px;
	height: 38px;
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	line-height: 37px;
	border-radius: 38px;
	border: 1px solid #505050;
	color: #8f8f8f;
	font-size: 15px;
	transition: all 0.3s ease 0s;
	margin: 0 6px;
	
}
.socialMedia a:hover{
	border: 1px solid #ebb82e;
	color: #ebb82e;
}




@media (max-width: 1200px) {
  .header-area .main-nav .nav li {
    padding-left: 12px;
    padding-right: 12px;
  }
  .header-area .main-nav:before {
    display: none;
  }
}
@media (min-width: 992px) {
	
	.background-header.header-area .main-nav .logo{
		margin-top: -2px;
	}
}
@media (min-width: 1200px) {
	
}
@media (max-width: 992px) {
  
}
@media (max-width: 991px) {
	.header-area .main-nav .logo{
		margin-top: 6px;
		max-width: 126px;
	}
	.header-area .main-nav .nav li a{
		font-size: 15px;
	}
}
@media (max-width: 991px) {
  .background-header .main-nav .nav {
    margin-top: 80px !important;
  }
  .header-area .main-nav .logo {
    color: #1e1e1e;
  }
  .header-area.header-sticky .nav li a:hover,
  .header-area.header-sticky .nav li a.active {
    color: #cf932a!important;
    opacity: 1;
  }
  .header-area.header-sticky .nav li.search-icon a {
    width: 100%;
  }
  .header-area {
    background-color: #060606;
    padding: 0px 0px;
    height: 100px;
    box-shadow: none;
    text-align: center;
  }
  .header-area .main-nav .menu-trigger span{
	  background-color: #ebb82e;
	
  } 
  .header-area .main-nav .menu-trigger span::before, 
  .header-area .main-nav .menu-trigger span::after{
	background-color: #fff;
  }
	
	
	
  .header-area .container {
    padding: 0px;
	  max-width: 100%;
  }
  .header-area .logo {
    margin-left: 0px;
  }
  .header-area .menu-trigger {
    display: block !important;
  }
  .header-area .main-nav {
    overflow: hidden;
	  display: block;
  }
  .header-area .main-nav .nav {
    float: none;
    width: 100%;
    display: none;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
    margin-left: 0px;
  }
  .background-header .nav {
    margin-top: 80px;
  }
  .header-area .main-nav .nav li:first-child {
    border-top: 1px solid #eee;
  }
  .header-area.header-sticky .nav {
    margin-top: 100px;
  }
  .header-area .main-nav .nav li {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #e7e7e7;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .header-area .main-nav .nav li a {
    height: 50px !important;
    line-height: 50px !important;
    padding: 0px !important;
    border: none !important;
    background: #f7f7f7 !important;
    color: #191a20 !important;
  }
  .header-area .main-nav .nav li a:hover {
    background: #eee !important;
    color: #cf932a!important;
  }
 
}

/*
@media (min-width: 992px) {
  .header-area .main-nav .nav {
    display: flex !important;
  }
}
*/

/* 
---------------------------------------------
preloader
--------------------------------------------- 
*/

.js-preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    z-index: 9999;
    -webkit-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;
}

.js-preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@-webkit-keyframes dot {
    50% {
        -webkit-transform: translateX(96px);
        transform: translateX(96px);
    }
}

@keyframes dot {
    50% {
        -webkit-transform: translateX(96px);
        transform: translateX(96px);
    }
}

@-webkit-keyframes dots {
    50% {
        -webkit-transform: translateX(-31px);
        transform: translateX(-31px);
    }
}

@keyframes dots {
    50% {
        -webkit-transform: translateX(-31px);
        transform: translateX(-31px);
    }
}

.preloader-inner {
    position: relative;
    width: 142px;
    height: 40px;
    background: #fff;
}

.preloader-inner .dot {
    position: absolute;
    width: 16px;
    height: 16px;
    top: 12px;
    left: 15px;
    background: #d09329;
    border-radius: 50%;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-animation: dot 2.8s infinite;
    animation: dot 2.8s infinite;
}

.preloader-inner .dots {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    margin-top: 12px;
    margin-left: 31px;
    -webkit-animation: dots 2.8s infinite;
    animation: dots 2.8s infinite;
}

.preloader-inner .dots span {
    display: block;
    float: left;
    width: 16px;
    height: 16px;
    margin-left: 16px;
    background: #d09329;
    border-radius: 50%;
}



/* 
---------------------------------------------
Banner Style
--------------------------------------------- 
*/

.main-banner {
  
  padding: 100px 0px 0px 0px;
  position: relative;
  overflow: hidden;
	
}
.mainBanner{
	margin-top: 0px;
	background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
	background-image: url("../images/herobg.webp");
	display: flex;
	align-items: center;
/*	padding: 60px 0 80px;*/
}

.mainBanner.mbnr-pt{
    padding:0px;
}
/*
.main-banner:after {
  content: '';
  background-image: url(../images/banner-dec-left.png);
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 100px;
  width: 212px;
  height: 653px;
  z-index: -1;
}

.main-banner:before {
  content: '';
  background-image: url(../images/banner-dec-right.png);
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 100px;
  width: 1159px;
  height: 797px;
  z-index: -1;
}
*/
.popup {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
	z-index: 9;
/*  text-align: center;*/
}
.popup .popup__content {
/*  width: 80%;*/
  overflow: hidden;
  padding: 0px;
  background: white;
  color: black;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  max-width: 840px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 21px 41px -13px rgba(0, 0, 0, 0.18);
  -moz-box-shadow: 0px 21px 41px -13px rgba(0, 0, 0, 0.18);
  box-shadow: 0px 21px 41px -13px rgba(0, 0, 0, 0.18);
	z-index: 99;
}
.popup .popup__content .close {
  position: absolute;
  right: 15px;
  top: 20px;
  width: 20px;
  display: block;
}
.popup .popup__content .close span {
  cursor: pointer;
  position: fixed;
  width: 20px;
  height: 3px;
  background: #b3b3b3;
}
.popup .popup__content .close span:nth-child(1) {
  transform: rotate(45deg);
}
.popup .popup__content .close span:nth-child(2) {
  transform: rotate(135deg);
}

.contact-wrap{
	padding: 50px 20px 50px 0;
}

.popup-container {
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    transform: scale(1.3);
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(21, 17, 17, 0.61);
    display: flex;
    align-items: center;
}
.popup-content {
	position: relative;
    background-color: #fff;
    margin: auto;
    padding: 0px;
    border: 0px solid #888;
/*    width: 50%;*/
	max-width: 745px;
	 overflow: hidden;
	max-width: 745px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 21px 41px -13px rgba(0, 0, 0, 0.18);
  -moz-box-shadow: 0px 21px 41px -13px rgba(0, 0, 0, 0.18);
  box-shadow: 0px 21px 41px -13px rgba(0, 0, 0, 0.18);
}
.popup-content a.close{
    color: #aaaaaa;
    float: right;
    font-size: 18px;
    font-weight: 400;
    background: none;
    padding: 0;
    margin: 0;
    text-decoration:none;
	width: 30px;
  height: 30px;
  position: absolute;
  top: 5px;
  right: 5px;
  text-align: center;
  background: #fff;
  border-radius: 30px;
  line-height: 29px;
}

.popup-content a.close:hover{
  color:#333;
}
.popup-container:target{
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.wrapper {
  width: 100%;
 
}
.info-wrap{
	background-repeat:no-repeat;
	background-position: center;
	background-size: cover;
}
.popup-content .wrapper .row [class*=col-]{
	padding: 0px;
}
.contactForm .form-control {
  border: none;
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0;
	border-radius: 0;
	font-size: 15px;
	padding: 12px 0;

}
.contactForm .form-control:focus{
	box-shadow: none;
}
.contact-wrap h4{
	font-weight: 600;
	margin-bottom: 15px;
	padding-left: 10px;
}
.contactForm .btn-primary {
	display: inline-block;
  background-color: #eaba34;
  font-size: 16px;
  font-weight: 600;
  color: #060d1e;
  text-transform: uppercase;
  padding: 12px 25px;
  border-radius: 6px;
  letter-spacing: 0.25px;
  transition: all .3s;
	border-color: #eaba34;
	margin-top: 25px;
}
.contactForm .btn-primary:focus{
	box-shadow: none;
}
.gndtsHdr {
	margin-bottom: 50px;
}
.gndtBtn-row{
	margin-top: 50px;
}
.gndtbx img{
	border-radius: 10px;
}
.gdnt-mb-38{
	margin-bottom: 38px;
}

/* ---------------------------------------------- /*
 * Mouse animate icon
/* ---------------------------------------------- */
.mouse-icon {
  position: absolute;
  left: 50%;
  bottom: 20px;
  border: 2px solid #fff;
  border-radius: 16px;
  height: 40px;
  width: 24px;
  margin-left: -15px;
  display: block;
  z-index: 10;
  opacity: 0.6;
}
.mouse-icon .wheel {
  -webkit-animation-name: drop;
  -webkit-animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-play-state: running;
  -webkit-animation-name: drop;
          animation-name: drop;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.mouse-icon .wheel {
  position: relative;
  border-radius: 10px;
  background: #fff;
  width: 2px;
  height: 6px;
  top: 4px;
  margin-left: auto;
  margin-right: auto;
}
@-webkit-keyframes drop {
  0% {
    top: 5px;
    opacity: 0;
  }
  30% {
    top: 10px;
    opacity: 1;
  }
  100% {
    top: 25px;
    opacity: 0;
  }
}
@keyframes drop {
  0% {
    top: 5px;
    opacity: 0;
  }
  30% {
    top: 10px;
    opacity: 1;
  }
  100% {
    top: 25px;
    opacity: 0;
  }
}

.section{
	padding: 110px 0 90px;
}
/* 
---------------------------------------------
whychooseus Style
--------------------------------------------- 
*/
.serviceSection .itemCaption p{
	color:#fff;
	line-height:24px;
}
.secbgclr{
	background: #1d1d1c;
}
.chlwdc-sec{
	overflow: hidden;
	position: relative;
}
.chlwdcSec{
	max-width: 691px;
	margin: 0 auto;
	position: static;
}
.chlwdcSlider.owl-carousel{
	position: static;
}
.chlwdc-sec .owl-carousel .owl-stage-outer{
	overflow: visible;
}
.chlwdc-sec .owl-theme .owl-nav [class*="owl-"]{
	position: absolute;
	top: 50%;
	margin-top: -25px;
	background: #eaba34;
	color: #030303;
	font-size: 25px;
	width: 50px;
	height: 50px;
	line-height: 48px;
	text-align: center;
	border-radius: 50px;
}
.chlwdc-sec .owl-carousel .owl-nav button.owl-next{
	right: 20px;
}
.chlwdc-sec .owl-carousel .owl-nav button.owl-prev{
	left: 20px;
}
.chlwdc-sec .owl-theme .owl-nav [class*="owl-"]:hover {
  background: #ce9906;
  color: #030303;
  text-decoration: none;
}
.chlwdc-sec .owl-carousel .owl-item img{
	border-radius:15px;
	border: 0px solid rgba(255,255,255,0.3);
	width: auto;
}
.chlwdc-sec .owl-carousel .owl-item:not(.center) img{
	opacity: 0.25;
	
}


/* 
---------------------------------------------
Headtail Light Tinting
--------------------------------------------- 
*/
#headtaillighttinting{
	background-repeat: no-repeat;
  	background-position: center center;
  	background-size: cover;
	background-image: url("../images/htlt-bg.webp");
}
.hdltSlider{
	position: relative;
}
.headtaillighttinting .owl-theme .owl-nav [class*="owl-"],
.serviceSection .owl-theme .owl-nav [class*="owl-"]{
	position: static;
	top: 50%;
	margin-top: 0px;
	background: #eaba34;
	color: #030303;
	font-size: 25px;
	width: 50px;
	height: 50px;
	line-height: 48px;
	text-align: center;
	border-radius: 50px;
}
.headtaillighttinting .owl-carousel .owl-nav button.owl-next,
.serviceSection .owl-theme .owl-nav button.owl-next{
	right: 20px;
}
.headtaillighttinting .owl-carousel .owl-nav button.owl-prev,
.serviceSection .owl-theme .owl-nav button.owl-prev{
	left: 20px;
}
.headtaillighttinting .owl-theme .owl-nav [class*="owl-"]:hover,
.serviceSection .owl-theme .owl-nav [class*="owl-"]:hover{
  background: #fff;
  color: #030303;
  text-decoration: none;
}
.headtaillighttinting .owl-carousel .owl-item img{
	border-radius:15px;
	border: 1px solid rgba(255,255,255,0.3);
}

.serviceSection .owl-theme .owl-nav{
	margin: 0px;
}
.serviceSection .owl-theme .owl-nav [class*="owl-"]{
	opacity: 1;
	margin-top:15px;
}
.serviceSection .owl-theme .owl-nav [class*="owl-"]:hover{
	opacity: 0.4;
}
/* 
---------------------------------------------
Services Style
--------------------------------------------- 
*/

.vhclr-items img{
	border-radius: 15px;
	border: 1px solid rgba(255,255,255,0.3);
}
.vhclr-mb-31{
	margin-bottom: 31px;
}

/* 
---------------------------------------------
Our clients Style
--------------------------------------------- 
*/
#paintprotectionfilm{
	background-repeat: no-repeat;
  	background-position: center center;
  	background-size: cover;
	background-image: url("../images/paint-protection-film-bg.webp");
}
.ptptfSlider{
	max-width: 985px;
	margin: 0 auto;
	position: relative;
}

.ptptfSlider.owl-theme .owl-nav [class*="owl-"]{
	position: absolute;
	top: 50%;
	margin-top: -25px;
	background: #eaba34;
	color: #030303;
	font-size: 25px;
	width: 50px;
	height: 50px;
	line-height: 48px;
	text-align: center;
	border-radius: 50px;
}
.ptptfSlider.owl-carousel .owl-nav button.owl-next{
	right: -95px;
}
.ptptfSlider.owl-carousel .owl-nav button.owl-prev{
	left: -95px;
}
.ptptfSlider.owl-theme .owl-nav [class*="owl-"]:hover {
  background: #ce9906;
  color: #030303;
  text-decoration: none;
}
.ptptfSlider.owl-carousel .owl-item img{
	border-radius:15px;
	border: 1px solid rgba(255,255,255,0.3);
}




/* 
---------------------------------------------
contact
--------------------------------------------- 
*/
/*.decrome .row [class*=col-]{*/
/*	margin: 15px 0;*/
/*}*/

.decrome-items img{
	border-radius:15px;
	border: 1px solid rgba(255,255,255,0.3);
}



.errorPage .mainBanner{
	padding: 100px 0;
}
.errorPage .gndtsHdr h2 span{
	display:block;
	font-weight: 400;
	font-size: 24px;
	letter-spacing: 3px;
	color: #eaba34;
} 
.errorSec h3{
	font-size: 260px;
	font-weight: 700;
	color: #fff;
	line-height: 220px;
}
.errorSec h3 span{
	color: #eaba34;
}
.errorPage .gndtsHdr::after {
	display: none;
}
.errorSec p {
	font-size: 20px;
	color: #b3b3b3;
	margin-top: 30px;
}

.thankyouPage .mainBanner{
	padding-bottom: 90px;
}
.thankyouPage h3{
	font-size: 160px;
	font-weight: 700;
	color: #fff;
	line-height: 170px;
	position: relative;
}
.thankyouPage img{
	width: auto;
}
.thankyouPage p {
	font-size: 20px;
	color: #b3b3b3;
	margin-top: 30px;
}
/* 
---------------------------------------------
Footer Style
--------------------------------------------- 
*/
.footerContainer{
	background: #030404 url("../images/ftrBg.webp") no-repeat right center;
}
.contact-card{
  	background-position: center center;
	background-image: url("../images/pattern_bg.webp");
	display: grid;
  grid-template-columns: repeat(3, 1fr);
  background-repeat: repeat;
  background-size: auto;
  background-color: #212121;
	max-width: 1242px;
	margin: 0 auto;
	top: -40px;
  position: relative;
	border-radius:3px;
	border: 1px solid rgba(255,255,255,0.1);
}

.info-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
.style3.info-card {
  border-right: 1px solid #2E3341;
  gap: 15px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 55px 0;
}
.contact-card .info-card {
  padding: 20px 0;
  border: none !important;
}
.info-card_icon i {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background-color: #eaba34;
  color: inherit;
  font-size: 18px;
  text-align: center;
  border-radius: 50%;
}
.style3 .info-card_icon i {
  width: 45px;
  height: 45px;
  line-height: 45px;
  font-size: 16px;
  color: #030404;
}
.style3 .info-card_text {
  margin-bottom: 0px;
  font-size: 15px;
  color: #a2a2a2;
}
.style3 .info-card_link {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
.info-card_link:hover {
  color: #eaba34 !important;
}
.contact-card .info-card.active .info-card_icon i {
  background-color:#030404;
  color: #eaba34;
}
.contact-card .info-card.active {
  background-color: #eaba34;
  -webkit-clip-path: polygon(calc(100% - 50px) 0%, 100% 50%, calc(100% - 50px) 100%, 0% 100%, 50px 50%, 0% 0%);
  clip-path: polygon(calc(100% - 50px) 0%, 100% 50%, calc(100% - 50px) 100%, 0% 100%, 50px 50%, 0% 0%);
}
.contact-card .info-card.active .info-card_text, .contact-card .info-card.active .info-card_link {
  color: #030404 !important;
}









.ftrCopyRight{
	padding: 0px 0 25px;
	border-top: 0px solid #403d45;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
.socialIcon{
	margin-bottom: 30px;
}

.socialIcon a{
	width: 40px;
	height: 40px;
	display: inline-block;
  vertical-align: middle;
  text-align: center;
  line-height: 37px;
  border-radius: 38px;
  border: 1px solid #505050;
  color: #8f8f8f;
  font-size: 15px;
  transition: all 0.3s ease 0s;
  margin: 0 6px;

}
.socialIcon a:hover {
  border: 1px solid #ebb82e;
  color: #ebb82e;
}
.ftrCopyRight p{
	color: #fff;
	font-size: 16px;
}
.ftrCopyRight p a{
	color: #d09329;
}

#contactForm lable {
  display: none;
}

.srvSec{
	padding-bottom:80px;
}
.srvSec p,
.srvSec h2{
	color:#1d1d1c;
}
.srvSec h2{
	font-size:32px;
}
.srvSec p,
.srvSectp p{
	max-width:770px;
	margin:0 auto;
}
.elfstbox{
	height: 600px;
}

.srvSectp{
	background:#1d1d1c;
	padding:60px 0 80px;
}
.srvSec .gndtBtn-white{
	border:1px solid #1d1d1c;
}
.srvSec .gndtBtn-white:hover{
	border:1px solid #eaba34;
}
.srvSec .gndtBtn-yellow{
	border:1px solid #eaba34;
}
.srvSec .gndtBtn-yellow:hover{
  background-color: #fff !important;
  color: #060d1e !important;
	border:1px solid #060d1e;
}

body .gallery .row div[class*="col-"]{
  padding: 0 3px;
  display:block;
}

.gallerySlider{
	position: relative;
}
.gallerySlider .owl-theme .owl-nav [class*="owl-"]{
	position: static;
	top: 50%;
	margin-top: 0px;
	background: #eaba34;
	color: #030303;
	font-size: 25px;
	width: 50px;
	height: 50px;
	line-height: 48px;
	text-align: center;
	border-radius: 50px;
}
.gallerySlider .owl-carousel .owl-nav button.owl-next{
	right: 20px;
}
.gallerySlider .owl-carousel .owl-nav button.owl-prev{
	left: 20px;
}
.gallerySlider .owl-theme .owl-nav [class*="owl-"]:hover{
  background: #fff;
  color: #030303;
  text-decoration: none;
}
/* .gallerySlider .owl-carousel .owl-item img{
	border-radius:0px;
	border: 1px solid rgba(255,255,255,0.3);
} */

.serviceSection .owl-theme .owl-nav{
	margin: 0px;
}
.serviceSection .owl-theme .owl-nav [class*="owl-"]{
	opacity: 1;
	margin-top:15px;
}
.serviceSection .owl-theme .owl-nav [class*="owl-"]:hover{
	opacity: 0.4;
}






/* 
---------------------------------------------
responsive
--------------------------------------------- 
*/
@media (min-width: 1248px) and (max-width:1430px) {
	.header-area .main-nav .nav li{
		padding-left: 10px;
		padding-right: 10px;
	}
	.header-area .main-nav .nav li a{
		font-size: 16px;
	}
}
@media (min-width: 1200px) and (max-width:1247px) {
	
	.header-area .main-nav .nav li{
		padding-left: 6px;
		padding-right:6px;
	}
	.header-area .main-nav .nav li a{
		font-size: 15px;
	}
}

@media (min-width: 992px) and (max-width:1199px) {
  
	.mainBanner {
		min-height: 550px;
	}
	.header-area .main-nav .logo{
		margin-top: 0px;
	}
	.header-area .main-nav .nav li{
		padding-left: 6px;
		padding-right:6px;
	}
	.header-area .main-nav .nav li a{
		font-size: 14px;
	}
	.ptptfSlider {
  		max-width: 850px;
	}
	.ptptfSlider.owl-carousel .owl-nav button.owl-prev {
	  left: -65px;
	}
	.ptptfSlider.owl-carousel .owl-nav button.owl-next {
	  right: -65px;
	}
	.gdnt-mb-38 {
	  margin-bottom: 25px;
	}
.popup .popup__content {
  width: 80%;
	}
	
	
}
@media (min-width: 768px){
	.mobile-srvGlry{display:none;}
}
@media (min-width: 768px) and (max-width:991px) {
h1, h2 {
    font-size: 50px;
}	

	
	.mainBanner {
		min-height: 475px;
	}
	
	.background-header.header-area .main-nav .logo {
		margin-top: 5px;
		max-width: 94px;
	}
	
.style3 .info-card_link {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
}	
	.contact-card .info-card.active{
		clip-path:none;
	}	
.popup .popup__content {
  width: 80%;
	}	
	
.mble-btn{
    height: 100%;
  justify-content: end;
}	
.header-area .container-fluid,
.header-area .col-12{
    padding:0px;
}	
.header-area .row{
    margin:0;
}
.header-area .main-nav{
    padding:0 15px;
}

	
}
@media (min-width: 576px) and (max-width:767px) {

	
}
@media (max-width: 767px) {
	.popup-content{
		margin: auto 10px;
	}
   .header-area.background-header .main-nav .logo {
    margin-top: 4px;
    max-width: 94px;
  }
	.mnhdrSlider{display:none;}
	
.background-header .nav li a.active::after {

  height: 2px;
  bottom: 0px;
}
	.header-area .main-nav .nav li a {
		font-size: 16px;
	  }
	 .contact-wrap h4{
	     margin-bottom:0px;
	 }
	 .itemCaption h4{
	     font-size: 20px;
	 }
	
h1, h2 {
    font-size: 30px;
}	
.gdnt-mb-38 {
  margin-bottom: 13px;
}
.chlwdcSec {
  max-width: 500px;
  margin: 0 auto;
  position: static;
}	
	
.chlwdc-sec .owl-carousel .owl-stage-outer {
  overflow: hidden;
}	
	.chlwdc-sec .owl-carousel .owl-item img{
		width: 100%;
	}	
	
	.headtaillighttinting .owl-theme .owl-nav [class*="owl-"],
	.ptptfSlider.owl-theme .owl-nav [class*="owl-"],
	.chlwdc-sec .owl-theme .owl-nav [class*="owl-"]{
		font-size: 22px;
		width: 40px;
		height: 40px;
		line-height: 38px;
	}	
	.vhclr-mb-31 {
	  margin-bottom: 10px;
	}
.vhclr-items img {
  border-radius: 10px;
	}
.ptptfSlider {
  max-width: 460px;
	}
.ptptfSlider.owl-carousel .owl-nav button.owl-prev {
  left: -58px;
}	
.ptptfSlider.owl-carousel .owl-nav button.owl-next {
  right: -58px;
}	
 .vhclr-mb-31 {
    margin-bottom: 22px;
  }	
	.vehiclewrapping .row [class*=col]:first-child{
		margin-bottom: 22px;
	}	
	.contact-card{
		display: block;
	}	
	.contact-card .info-card.active{
		clip-path: none;
	}
.contact-card .info-card {
  padding: 20px 40px;
  border: none !important;
  justify-content: start;
}	
.popup .popup__content {
  width: 90%;
	}
	.popup .popup__content .close span{
		background: #424242;
	}
.contact-wrap {
  padding: 20px 20px 20px 20px;
}	
	.info-wrap{
		min-height: 0px;
	}	
	.contactForm textarea.form-control{
		height: 90px;
	} 	
	
.mble-btn{
    height: 100%;
  justify-content: end;
}	
	
.header-area .container-fluid,
.header-area .col-12{
    padding:0px;
}	
.header-area .row{
    margin:0;
}
.header-area .main-nav{
    padding:0 15px;
}
	
.mob-glry .owl-theme .owl-nav {
		margin-top:30px
	}	
	

}
@media (min-width: 767px) {
	
}
@media (max-width: 575px){

	h1, h2 {
		font-size: 26px;
	}
	.mbstye{
		display: flex;
	}
	.mbstye .gndtbx:first-child{
		padding-right: 13px;
		margin-top: 10px;
	}
	.mbstye .gndtbx:last-child{
		padding-left: 10px;
		margin-top: 10px;
	}
	.ftrCopyRight p {
    	justify-content: center;
		margin-top: 10px;
}
	.ftrCopyRight{
		text-align: center;
	}
	.ftr-about{
		text-align: center;
	}
.gndtBtn-row a {
  margin: 0 5px;
	font-size: 12px;
	padding: 12px 17px;
}	
.headtaillighttinting .owl-carousel .owl-nav button.owl-prev {
  left: 0;
}	
.headtaillighttinting .owl-carousel .owl-nav button.owl-next {
  right: 0px;
}	
 .ptptfSlider {
    max-width: 360px;
  }	
  .ptptfSlider.owl-carousel .owl-nav button.owl-prev {
    left: 0px;
  }
  .ptptfSlider.owl-carousel .owl-nav button.owl-next {
    right:0px;
  }
	.headtaillighttinting .owl-carousel .owl-item img{
		border-radius: 10px;
	}	
	
.errorSec h3 {
  font-size: 160px;
  line-height: 120px;
}	

.gndtBtn-yellow{
    font-size:12px;
}	
.style3 .info-card_link {
  font-size: 15px;	
}
.contactForm .form-control{
    padding: 6px 0;
}	

section.popup{
    z-index:999;
}
 .contact-wrap {
    padding: 20px 20px 8px 20px;
  }
.contactForm .btn-primary{
    font-size: 13px;
    padding: 11px 19px;
}

.gndtBtn-yellow{
    padding: 13px 15px;
}
.header-area .main-nav{
    display:flex;
}




	
}

@media (max-width: 419px){
	
	.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
}
}


