@charset "utf-8";

@font-face {
	font-family: 'GilroyRegular';
	src: url('../fonts/GilroyRegular.eot');
	src: url('../fonts/GilroyRegular.eot') format('embedded-opentype'),
		url('../fonts/GilroyRegular.woff2') format('woff2'),
		url('../fonts/GilroyRegular.woff') format('woff'),
		url('../fonts/GilroyRegular.ttf') format('truetype'),
		url('../fonts/GilroyRegular.svg#GilroyRegular') format('svg');
}

@font-face {
	font-family: 'GilroyMedium';
	src: url('../fonts/GilroyMedium.eot');
	src: url('../fonts/GilroyMedium.eot') format('embedded-opentype'),
		url('../fonts/GilroyMedium.woff2') format('woff2'),
		url('../fonts/GilroyMedium.woff') format('woff'),
		url('../fonts/GilroyMedium.ttf') format('truetype'),
		url('../fonts/GilroyMedium.svg#GilroyMedium') format('svg');
}

@font-face {
	font-family: 'GilroySemiBold';
	src: url('../fonts/GilroySemiBold.eot');
	src: url('../fonts/GilroySemiBold.eot') format('embedded-opentype'),
		url('../fonts/GilroySemiBold.woff2') format('woff2'),
		url('../fonts/GilroySemiBold.woff') format('woff'),
		url('../fonts/GilroySemiBold.ttf') format('truetype'),
		url('../fonts/GilroySemiBold.svg#GilroySemiBold') format('svg');
}

@font-face {
	font-family: 'GilroyBold';
	src: url('../fonts/GilroyBold.eot');
	src: url('../fonts/GilroyBold.eot') format('embedded-opentype'),
		url('../fonts/GilroyBold.woff2') format('woff2'),
		url('../fonts/GilroyBold.woff') format('woff'),
		url('../fonts/GilroyBold.ttf') format('truetype'),
		url('../fonts/GilroyBold.svg#GilroyBold') format('svg');
}

/* font-family: "Poppins", sans-serif;*/

/*************** DEFAULT CSS ***************/
:root {
	--body-font: "GilroyRegular";
	--body-color: #fff;
	--primary-color: #E8DCCF;
	--secondary-color: #191919;
	--tertiary-color: #BEA87B;
	--quaternary-color: #191919;
	--black: #000;
	--white: #fff;
	--grey: #DCDDDE;
	--grey-light: #F8F8F8;
	--grey-dark: #6D6D6D;
	--heading-font-bold: "GilroyBold";
	--heading-font-semibold: "GilroySemiBold";


}

body {

	font-family: var(--body-font);
	font-size: 18px;
	font-style: normal;
	line-height: 30px;
	/*letter-spacing: -.1em;*/
	font-weight: var(--font-weight-normal);
	color: var(--body-color);
	text-decoration: none;
	margin: 0px;
	-webkit-font-smoothing: antialiased;
	padding: 0;
	background: var(--black);
	background-image: url(../images/backgrounds/technology-bg.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: fixed;
	overflow-x: hidden;
}


/* Scrollbar Styling */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background-color: var(--primary-color);
	-webkit-border-radius: 10px;
	border-radius: 10px;

}

::-webkit-scrollbar-thumb {
	-webkit-border-radius: 10px;
	border-radius: 10px;
	background: var(--secondary-color);
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

* {
	-webkit-box-sizing: border-box;
	-mox-box-sizing: border-box;
	box-sizing: border-box;
}

::selection {
	background: var(--primary-color);
	/* Safari */
	color: var(--white);
}

::-moz-selection {
	background: var(--primary-color);
	/* Firefox */
	color: var(--white);
}

a {
	color: var(--body-color);
	text-decoration: none;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

a:hover {
	color: var(--primary-color);
}

p {
	margin: 0px 0 30px 0;
	clear: left;
	padding: 0;
	font-weight: normal;
	font-size: 100%;

}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 25px 0;
	padding: 0;
	font-weight: normal;
}

.hr {
	margin: 30px 0;
	height: 1px;
	border: 0;
	border-top: 1px solid rgba(0, 0, 0, 0.2);
	display: block;
	width: 100%;
	height: 1px;
	position: relative;
}

img {
	border: 0;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;

}

a img {
	border: 0;
}

/*-----------text styles------------*/


.text-white {
	color: var(--white) !important;
}

.text-black {
	color: var(--black) !important;
}

.text-ivory {
	color: var(--primary-color) !important;
}

.text-dark-gold {
	color: var(--secondary-color) !important;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.text-justify {
	text-align: justify;
}



/*-----------background styles------------*/
.corner-round {
	overflow: hidden;
	border-radius: 20px;
}

.bg-gradient {
	background-image: linear-gradient(to top, var(--primary-color), var(--secondary-color));
	color: var(--white) !important;
}

.bg-primary {
	background: var(--primary-color);
	color: #fff;
}

.bg-secondary {
	background: var(--secondary-color);
	color: #fff;
}

.bg-tertiary {
	background: var(--tertiary-color);
	color: #fff;
}

.bg-quaternary {
	background: var(--quaternary-color);
	color: #fff;
}

.bg-grey {
	background: var(--grey);

}

.bg-grey-light {
	background: var(--grey-light);

}

.bg-white {
	background: var(--white)
}


/*************** PRELOADER ***************/

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--black);
	z-index: 999999;
}

#status {
	width: 200px;
	height: 200px;
	position: absolute;
	/*background-color:var(--white);*/
	left: 50%;
	top: 50%;
	background-image: url(../images/zylogic-Logo.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100%;
	margin: -100px 0 0 -100px;
}




/*********************************/

.container {
	width: 1360px;
	margin: 0 auto;
}

.fullheight {
	width: 100%;
	height: 100vh;
	overflow: auto;

}

.fullwidth {
	width: 100%;
	display: block;
}

.img-rounded {
	border-radius: 50%;
	overflow: hidden;
}

.corner-radius {
	border-radius: 50%;
}

/*************HOVER EFFECT*******/

.hover-effect {
	width: 100%;
	position: relative;
	overflow: hidden;
	border-radius: 12px;
}

.hover-effect i {
	width: 50px;
	height: 50px;
	background-color: var(--primary-color);
	border-radius: 50%;
	color: #fff;
	position: absolute;
	left: 50%;
	top: -100px;
	z-index: 1;
	line-height: 50px;
	text-align: center;
	margin: 0 0 0 -25px;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.hover-effect:hover i {
	top: 50%;
	margin: -25px 0 0 -25px;
}

.hover-effect i:hover {
	background-color: var(--secondary-color);
}



.hover-effect img {
	display: block;
	width: 100%;
	-webkit-filter: none;
	filter: none;
	-webkit-transition: all .5s;
	transition: all .5s;
}

.hover-effect:hover img {
	-webkit-transform: scale(1.09, 1.09);
	transform: scale(1.09, 1.09);
	-webkit-filter: brightness(70%);
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	-ms-transition: all 1s ease;
	transition: all 1s ease;
	/*-webkit-filter: brightness(70%);*/
	filter: grayscale(60%);
	-webkit-filter: grayscale(60%);
}


/*.hover-effect:after {
  background:#FFF;
  width:0;
  height: 0;
  position: absolute;
  left: 50%;
  bottom: 50%;
  content: '';
  opacity: 0.7;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.hover-effect:hover:after {
	opacity: 0.1;
	width: 100%;
  	height: 100%;
	left: 0;
    bottom: 0;

}
*/
section {
	width: 100%;
	display: blocx;
	position: relative;

}

.section-spacing {
	padding: 100px 0;
}

.sticky {
	position: -webkit-sticky !important;
	position: sticky !important;
	top: 100px;
	width: 100%;

}

/*********************************************/


header {
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	padding: 20px 0;
	z-index: 5;
	background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

header.smaller {
	padding: 15px 0;
	position: fixed;
	background-image: none;
	background-color: var(--quaternary-color);
	box-shadow: 0px 10px 20px 0px rgba(123, 123, 123, 0.1);
	background-image: none;
}

.header {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}



.logo {
	padding: 0;
}

.logo img {
	width: 260px;
	display: block;
}

header.smaller .logo img {
	width: 160px;
}

.nav-group {
	display: flex;
	align-items: center;
	padding-right: 41px;
}

.top-button-group {
	display: flex;
	align-items: center;
	gap: 0 10px;
}

.call-bt {
	position: relative;
	padding: 13px 0 0 60px;
	color: var(--white);
	font-family: var(--heading-font-bold);
	font-size: 18px;
	line-height: 22px;

}

.call-bt a {
	color: var(--white);
	text-align: center;
}

.call-bt a:hover {
	background-color: var(--primary-color);
}

.call-bt i {
	background-color: var(--primary-color);
	width: 46px;
	height: 46px;
	line-height: 46px;
	display: flex;
	text-align: center;
	justify-content: center;
	color: var(--black);
	font-size: 14px;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 0;
}


/***********social ***********/

/* .link {} */

.link,
.but-normal {}

.link a,
.but-normal a {

	color: var(--black);
	font-size: 16px;
	padding: 10px 60px 10px 30px;
	font-style: normal;
	display: inline-block;
	position: relative;
	margin: 0;
	border-radius: 50px;
	background-color: var(--primary-color);
}


.link a {

	color: var(--black);
	font-size: 16px;
	padding: 10px 60px 10px 30px;
	font-style: normal;
	display: inline-block;
	position: relative;
	margin: 0;
	border-radius: 50px;
	background-color: var(--primary-color);
}

.link a:before {
	width: 44px;
	height: 44px;
	position: absolute;
	top: 5px;
	right: 2px;
	content: '';
	z-index: 2;
	transform: rotate(0deg);
	background-image: url(../images/icons/arrow-right-black.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 18px;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.link a:hover:before {
	transform: rotate(45deg);
}

.link a:hover {
	background-color: var(--tertiary-color);
}

.but-normal a:before {
	display: none;
}



.caps {
	text-transform: uppercase;
}

.heading,
.subheading {
	line-height: normal;


}

.heading {
	font-size: 48px;
	line-height: normal;
}



.subheading {
	font-size: 28px;
}

.subtitle {
	font-size: 20px;
	font-weight: normal;
	line-height: normal;
}

.bold,
strong {
	font-family: var(--heading-font-bold);
}

.section-title {
	text-transform: uppercase;
	font-size: 14px;
	line-height: normal;
	letter-spacing: 2px;
	font-family: var(--heading-font-bold);
	margin: 0 0 20px 0 !important;
	padding: 0 0 20px 0;
	color: var(--tertiary-color);
	position: relative;
}

.section-title:before {
	width: 30px;
	height: 1px;
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	margin-left: -15px;
	background-color: var(--tertiary-color);
}

/****************************/

.pos-relative {
	position: relative;
}

/***************gallery grid*************************/

.four-col-grid {
	display: grid;
	grid-gap: 40px;
	grid-template-columns: repeat(4, 1fr);
}

/*******categories grid***********/

.brands-listing {}

.brands-listing ul {
	flex: 0 0 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	list-style: none;
	margin: 0;
	padding: 0;
	justify-content: center;
}

.brands-listing ul li {
	display: flex;
	width: 200px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.brands-listing ul li img {
	width: 100%;
	border-radius: 10px;
	display: block;
	box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.brands-listing ul li:hover img {
	filter: grayscale(100%);
}


/****************SCROLLING TEXT***************/

.scrolling-text-wrap {
	width: 100%;
	overflow-x: hidden !important;
	overflow-Y: hidden !important;
	overflow: hidden !important;
	position: absolute;
	left: 0;
	top: -80px;
	z-index: -1;
}

.scroll {
	white-space: nowrap;
	margin: 0;
}

.scroll div {
	display: flex;
	gap: 2em;
}

.scroll h2 {
	font-size: 100px;
	line-height: 100px;
	color: var(--black);
	text-transform: uppercase;
	-webkit-text-stroke: 1px #313131;
	font-family: var(--heading-font-bold);
	margin: 0;
}

.scroll h2 span {
	width: 6px;
	height: 6px;
	background-color: var(--tertiary-color);
	outline-offset: 4px;
	outline: 1px solid var(--tertiary-color);
	border-radius: 50%;
	display: inline-block;
	position: relative;
	margin: 0 25px;
	vertical-align: middle
}

.RightToLeft {
	animation: RightToLeft 20s infinite linear;


}

.usericon {
	display: none;
}

@keyframes RightToLeft {
	from {
		transform: translateX(0%);
	}

	to {
		transform: translateX(-50%);
	}
}

.LeftToRight {
	animation: LeftToRight 20s infinite linear;
}

@keyframes LeftToRight {
	from {
		transform: translateX(-50%);
	}

	to {
		transform: translateX(0%);
	}
}



/*******funfacts***********/


.funfacts,
.funfacts ul {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
	position: relative;
}

.funfacts ul {
	gap: 10px 2%;
	justify-content: center;
}

.funfacts ul li {
	flex: 0 0 18.40%;
	background-color: var(--quaternary-color);
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	margin: 0;
	padding: 30px;
	font-family: var(--heading-font-semibold);
	border-radius: 12px;
	position: relative;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.funfacts ul li:hover {
	background-color: var(--primary-color);
	color: var(--black);
}

.funfacts ul li:after {
	width: 22px;
	height: 30px;
	position: absolute;
	top: 0;
	right: 20px;
	content: '';
	background-image: url(../images/icons/ribbon.svg);
	background-repeat: no-repeat;
	background-position: right top;
	background-size: 18px;

}

.funfacts ul li h2 {
	font-size: 34px;
	line-height: normal;
	margin: 0 0 18px 0;

}

.funfacts p {
	margin: 0;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 1px;
}


/********process*************/
.steps,
.steps ul {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
	position: relative;
	justify-content: center;
}

.steps:before {
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0;
	top: 50px;
	content: '';
	z-index: -2;
	border-top: 1px dashed var(--primary-color);
}



/**********************************/
.steps ul li {
	flex: 0 0 18.40%;
	flex-direction: column;
	align-items: center;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	font-size: 14px;
}

.steps ul li p {
	margin: 15px 0 0 0;
	text-transform: uppercase;

}

.steps .icon {
	display: flex;
	text-align: center;
	justify-content: center;
	align-items: center;
	width: 90px;
	height: 90px;
	font-size: 30px;
	background-color: var(--primary-color);
	border-radius: 50%;
	color: #000;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;

}

.steps .icon i {
	margin: 0;
}

.steps ul li:hover .icon {
	background-color: var(--tertiary-color);
	transform: rotate(360deg);
	color: var(--white);
}

/*****************display-style**********/


.display-style {
	width: 100%;
	overflow: hidden;
	position: relative;
	border-radius: 12px;
	padding: 20px;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.display-style h2 {
	font-family: var(--heading-font-semibold);
	line-height: normal;
	margin: 0;
	padding: 20px 0;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.display-style:hover h2 {
	padding: 20px;
}

.display-style:hover {
	background-color: var(--tertiary-color);
}

/***********news style*****/


.news-single {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	padding: 40px 0;
	line-height: normal;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;

}

.news-single h2 {
	font-size: 20px;
	line-height: 24px;
	font-family: var(--heading-font-semibold);
	margin: 0 0 15px 0
}

.news-single p:last-child {
	margin: 0;
}


.news-single .date {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0 0 15px 0;
	color: var(--primary-color);
	line-height: normal;
	font-family: var(--heading-font-semibold);

}


/**********/


.rotating-circle {
	width: 200px;
	height: 200px;
	display: inline-block;
	position: absolute;
	left: -100px;
	top: 100px;
	z-index: 2;
	border-radius: 50%;

}

.rotating-circle:after {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	content: '';
	background-image: url(../images/rotation-text.png);
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	-webkit-animation: rotation 20s infinite linear;

}

.rotating-circle:before {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	content: '';
	z-index: 6;
	background-image: url(../images/b2b.png);
	background-repeat: no-repeat;
	background-position: center center;
	border-radius: 50%;
	/*-webkit-animation: rotation2 20s infinite linear;*/
	background-size: 50%;
}

@-webkit-keyframes rotation {
	from {
		-webkit-transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(359deg);
	}
}

@-webkit-keyframes rotation2 {
	from {
		-webkit-transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(-359deg);
	}
}



/**********************news**********************/

/**********************news**********************/

.boxy-style {
	background: var(--secondary-color);
	border-radius: 12px;
	padding: 20px;
}


.shadow {
	box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);
}

.iconic {
	width: 100%;
	display: block;
	position: relative;
	padding: 0 0 0 120px;

}

.iconic:last-child {
	border-bottom: 0;
}

.iconic h2 {
	font-size: 20px;
	font-family: var(--heading-font-bold);
	margin: 0 0 15px 0;
	line-height: 30px;


}

.webicon {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	left: 0;
	top: -5px;
	width: 80px;
	height: 80px;
	text-align: center;
	color: var(--white);
	font-size: 30px;
	vertical-align: middle;
	margin: 0;
	padding: 10px;
	border-radius: 12px;
	/*background-image: linear-gradient(to top, var(--primary-color), var(--secondary-color));*/
	background-color: var(--primary-color);
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.webicon img {
	display: block;
	width: 100%;
}

.webicon:hover {
	background-color: var(--tertiary-color);
}

.iconic p:last-child {
	margin: 0;

}

/**********************news**********************/


/*********whatsa app*/
.float {
	position: fixed;
	width: 50px;
	height: 50px;
	bottom: 80px;
	line-height: 50px;
	right: 20px;
	background-color: #25d366;
	color: #FFF;
	border-radius: 50%;
	text-align: center;
	font-size: 30px;
	/*box-shadow: 2px 2px 3px #999;*/
	z-index: 100;
}

.float i {
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	transition: .3s ease-in-out;

}

.float:hover i {
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
	transform: rotate(0.12turn);
}

.float:hover {
	color: #FFF;

}

.float h5 {
	width: 100px;
	top: 8px;
	right: 50px;
	background-color: var(--primary-color);
	color: var(--black);
	line-height: 12px;
	border-radius: 5px;
	font-size: 12px;
	padding: 10px;
	position: absolute;
	z-index: -1;
	margin: 0;
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
	opacity: 0;
}

.float:hover h5 {
	opacity: 9;
	right: 60px;
}

/*************** footer CSS ***************/

footer {
	padding: 50px 0;
	margin: 0;
	background-color: var(--secondary-color);
	color: var(--white);
	font-size: 16px;

}

footer a,
.footer-col a {
	color: var(--white);
}

footer a:hover {
	color: rgba(255, 255, 255, 0.5);
}


.footer-logo {}

.footer-logo img {
	width: 260px;
}

.footer-menu {
	text-align: right;
	font-size: 12px;
	line-height: 14px;


}

.footer-menu p:first-child {
	word-spacing: 4px;
	text-transform: uppercase;
	font-family: var(--heading-font-semibold);
}

.footer-menu p:last-child {
	line-height: 30px;
	font-size: 14px;

}

.footer-menu p:last-child span {
	font-size: 10px;
	text-transform: uppercase;
	margin: 0;
}

.footer-menu p {
	margin: 10px 0;

}

.social {
	padding: 10px 0;
	display: flex;
	vertical-align: middle;

}

.social a {
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 50%;
	text-align: center;
	color: var(--white);
	font-size: 16px;
	margin: 5px;
	display: inline-block;
	text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.5);


}

.social a:hover {
	color: var(--white);
	background-color: var(--primary-color);
	border: 1px solid var(--primary-color);

}

.address-box {
	background-color: var(--secondary-color);
	color: var(--white);
	overflow: hidden;
	padding: 30px;
	border-radius: 12px;
	color: var(--white);
}

.address-box a {
	color: var(--white);
}

.address-box a:hover {

	color: var(--primary-color);
}

.add {
	width: 100%;
	position: relative;
	padding: 0 0 0 60px;
	min-height: 30px;
	margin-bottom: 10px;
	font-size: 16px;
	vertical-align: top;
	line-height: 24px;

}

.add h2 {
	font-size: 20px;
	color: var(--primary-color);
	font-family: var(--heading-font-bold);
	margin: 0 0 15px 0;
	line-height: normal;
}

.add i {
	width: 40px;
	height: 40px;
	line-height: 40px;
	background-color: var(--grey-dark);
	border-radius: 5px;
	color: var(--white);
	font-size: 14px;
	margin: 0;
	position: absolute;
	left: 0;
	top: 0;
	text-align: center;


}

.google-map {
	overflow: hidden;
	width: 100%;
	height: 450px;
	margin: 0;
	padding: 0;
	outline: none;
	border: 0;
}

.ext {
	display: inline-block;
	padding-top: 10px;
}

/******************************/

ul.list {
	margin: 0;
	padding: 0;
	margin-bottom: 30px;
}

ul.list li {
	list-style: none;
	padding: 2px 7px 10px 30px;
	line-height: normal;
	position: relative;
}

ul.list li:before {
	/*content: "\f111";*/
	content: "\f138";
	position: absolute;
	top: 4px;
	left: 0;
	font-family: "FontAwesome";
	color: var(--primary-color);
	font-size: 16px;
}

/*****************************/



.table-div {
	overflow-x: auto;
	margin-bottom: 50px;
}

.table-div td {
	text-transform: uppercase;
}

.table-div h4 {
	font-size: 20px;
	color: var(--secondary-color);
	font-family: var(--heading-font);
	text-transform: uppercase;
}

table {
	min-width: 100%;
	width: 900px;
	border-collapse: collapse;

}

/* Zebra striping */
tr:nth-of-type(odd) {
	background: #eee;
}

th {
	background: var(--secondary-color);
	color: var(--white);

}

td,
th {
	padding: 8px 15px !important;
	border: 1px solid #ccc;
	text-align: left;
	font-size: 14px;
}

/************************/
.table-wrap {
	width: 100%;
	position: relative;
	display: flex;
	overflow-x: scroll;
}

/******************************team-style*****************/




/*************** INNER BANNER ***************/
.banner {
	width: 100%;
	height: 100vh;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	position: relative;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-image: url(../images/backgrounds/banner.jpg);
}

.banner:after {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	content: '';
	z-index: 1;
	background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
	opacity: 0.4;
}

.banner h2 {
	color: var(--white);
	font-family: var(--heading-font-bold);
	font-size: 60px;
	line-height: 60px;
	margin: 0;
	padding: 0;
	position: relative;
	z-index: 2;
}

/*************************banners ***************/
.services {
	background-image: url(../images/backgrounds/services.jpg);
}

.warranty {
	background-image: url(../images/backgrounds/warranty.jpg);
}

.branches {
	background-image: url(../images/backgrounds/branches.jpg);
}

.gallery {
	background-image: url(../images/backgrounds/gallery.jpg);
}

.contact {
	background-image: url(../images/backgrounds/contact.jpg);
}

/*****************************/

.breadcrumb {
	display: flex;
	color: var(--body-color);
	margin: 0;
	position: relative;
}

.breadcrumb ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 10px 0;
	border-bottom: 1px solid var(--secondary-color);
}

.breadcrumb li {
	margin: 0;
	font-size: 14px;
	text-transform: uppercase;
}

.breadcrumb li:not(:last-child)::after {
	display: inline-block;
	margin: 0 15px;
	content: " → ";
}

.breadcrumb a {
	color: var(--body-color);
}

.breadcrumb a:hover {
	color: var(--secondary-color);

}






/*************** JARALLAX ***************/
.jarallax,
.cover {
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.bg1 {
	background-image: url(../images/backgrounds/bg1.jpg);
}

.bg2 {
	background-image: url(../images/backgrounds/bg2.svg);
}

.bg3 {
	background-image: url(../images/backgrounds/bg3.svg);
	position: relative;
}

.bottom-banner {
	background-image: url(../images/backgrounds/bottom-banner.jpg);
	border-radius: 12px;
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	padding: 130px;
	overflow: hidden;
}

.bottom-banner h2 {
	font-size: 80px;
	line-height: 80px;
	font-family: var(--heading-font-bold);

}

.bottom-banner h3 {
	font-size: 48px;
	line-height: normal;
}

/*********file chosen style**************/

input.file {
	display: none;
}

.fa-upload {
	margin: 0 15px 0 0;
}

.custom-file-upload {
	border: 0;
	display: inline-block;
	padding: 14px 20px;
	color: #fff;
	cursor: pointer;
	background-color: var(--primary-color);
	/*border-radius: 6px;*/
	border: 0;
	border-radius: 6px;
}

.custom-file-upload:hover {
	background-color: var(--secondary-color);
}

.select-box {
	appearance: none;
	-webkit-appearance: none;
	background-image: url(../images/icons/icon5.svg);
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: 14px;
}

/*********call back rquest**************/
.call-back-holder {
	width: 100%;
	display: flex;
	padding-bottom: 10px;
	gap: 0 10px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/**********forms**************/

form {
	margin: 0;
	padding: 0;
}

*:focus {
	outline: none;
}

.fieldset {
	width: 100%;
	padding: 20px 20px;
	border: 1px solid var(--grey-dark);
	background-color: var(--black);
	color: var(--white);
	display: block;
	border-radius: 5px;
	margin: 0;
	font-size: 16px;

}

.sendbutton {
	border-radius: 12px;
	color: var(--black);
	font-size: 19px;
	font-family: var(--heading-font-bold);
	background-color: var(--primary-color);
	border: 0;
	padding: 15px 25px;
	font-style: normal;
	display: inline-block;
	position: relative;
	margin: 0;
}

.sendbutton:hover {
	background-color: var(--white);
}

.select-box {
	appearance: none;
	-webkit-appearance: none;
	background-image: url(../images/icons/icon5.svg);
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: 14px;
}


::-webkit-input-placeholder {
	color: var(--body-color);
}

:-moz-placeholder {
	/* Firefox 18- */
	color: var(--body-color);
}

::-moz-placeholder {
	/* Firefox 19+ */
	color: var(--body-color);
}

:-ms-input-placeholder {
	color: var(--body-color);
}


/*************** backToTop *************/
.progress-wrap {
	position: fixed;
	right: 10px;
	bottom: 10px;
	height: 45px;
	width: 45px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	/* box-shadow: inset 0 0 0 2px rgb(0 0 0 / 100%);
    */
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.progress-wrap::after {
	position: absolute;
	content: "\f062";
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	text-align: center;
	line-height: 45px;
	font-size: 20px;
	color: var(-white);
	left: 0;
	top: 0;
	height: 45px;
	width: 45px;
	cursor: pointer;
	display: block;
	z-index: 1;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.progress-wrap svg path {
	fill: none;
}

.progress-wrap svg.progress-circle path {
	stroke: var(--grey);
	stroke-width: 4;
	box-sizing: border-box;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}



/************************************* 1400px *************************************/

@media only screen and (max-width: 1359.99px) {
	.container {
		width: 100%;
		padding: 0 25px;
	}


}

/************************************* 1024px *************************************/
@media only screen and (max-width: 1199.99px) {

	header,
	header.smaller {
		position: relative;
		left: auto;
		top: auto;
		padding: 10px 0;

	}

	header.smaller {
		position: fixed;
		left: 0;
		top: 0;
	}

	.logo img,
	header.smaller .logo img {
		width: 100px;
		display: block;
	}

	.nav-group {
		flex-direction: row-reverse;
		padding-right: 0px;
	}

	.top-button-group {
		margin-right: 20px;
	}

	.call-bt {
		padding: 13px 0 0 50px;
		font-size: 14px;
		line-height: 18px;
	}

	.call-bt i {
		background-color: var(--primary-color);
		width: 34px;
		height: 34px;
		line-height: 34px;
		font-size: 12px;
	}

}

/************************************* 1024px *************************************/
@media only screen and (max-width: 1024px) {


	body {
		font-size: 14px;
		line-height: 24px;
	}

	.heading {
		font-size: 30px;
		line-height: 30px;
	}

	.subheading {
		font-size: 24px;
		line-height: 28px;
	}

	.section-spacing {
		padding: 40px 0;
	}


	.hover-effect {
		border-radius: 12px;
	}


	/***********news style*****/

	.footer-logo {
		width: 150px;
	}


	.banner h2 {
		font-size: 30px;
		line-height: 40px;
	}

	.iconic {
		padding: 0 0 0 70px;

	}

	.iconic h2 {
		font-size: 20px;
		line-height: 24px;


	}

	.webicon {
		width: 50px;
		height: 50px;
		font-size: 18px;

	}


}

/************************************* 980px *************************************/
@media only screen and (max-width: 980px) {

	.funfacts ul {
		gap: 10px 2%;
	}

	.funfacts ul li {
		padding: 20px;
	}

	.funfacts ul li:after {
		width: 20px;
		height: 30px;
		background-size: 16px;

	}

	.funfacts ul li h2 {
		font-size: 24px;
		margin: 0 0 15px 0;
	}

	.funfacts p {
		font-size: 12px;
		letter-spacing: 0;
	}


	/********process*************/

	.steps:before {
		top: 25px;
	}

	.steps ul li {
		font-size: 14px;
	}

	.steps ul li p {
		margin: 15px 0 0 0;
		text-transform: uppercase;

	}

	.steps .icon {
		width: 50px;
		height: 50px;
		font-size: 18px;
	}


	.bottom-banner {
		padding: 50px;

	}

	.bottom-banner h2 {
		font-size: 50px;
		line-height: 50px;


	}

	.bottom-banner h3 {
		font-size: 30px;

	}
}

/************************************* 900px *************************************/
@media only screen and (max-width: 900px) {}

/************************************* 767px *************************************/
@media only screen and (max-width: 768px) {

	.brands-listing ul li {
		width: 100px;
	}

	.brands-listing ul li img {
		border-radius: 7px;
	}

	.usericon {
		display: block;
	}
}

@media only screen and (max-width: 900px) {
	.fieldset {
		width: 100%;
		padding: 20px 20px;
		border: 1px solid var(--grey-dark);
		background-color: var(--black);
		color: var(--white);
		display: block;
		border-radius: 5px;
		margin: 0;
		font-size: 16px;
	}

	.fieldset.mobile {
		margin-left: -157px;
		/* margin-right: 43px; */
		width: 349px;
	}

	.col {
		margin-left: -144px;
	}

	.fieldset.servbook {
		margin-left: -61px;
		margin-right: 41px;
		width: 344px;
	}

	/* .linkmobile {
   
    font-size: 16px;
    padding: 10px 60px 10px 30px;
   
} */

	.linkmobile a {
		font-size: 16px;
		padding-left: 46px;
		display: inline-block;
		/* margin-left: 21px; */
		width: 314px;
	}

	.sendbutton {
		margin-left: -18px;
	}

	.heading {
		font-size: 26px;
		line-height: 30px;
	}

	.servcol {
		margin-left: -59px;
	}

	/* .call-bt i {
        background-color: var(--primary-color);
        width: 34px;
        height: 34px;
        line-height: 36px;
        font-size: 12px;
        margin-left: -27px;
    } */
	.top-button-group {
		margin-right: 59px;
	}



	.profile-img{
    left: 168px;
    /* right: -163px; */
    height: 20px;
    top: 4px !important;
    width: 20px;
}
.c-box {
    margin: 0 0px !important ;
}
}

.radio-label {
	margin-left: -14px;
	width: -14px;
	display: flex;
	align-items: center;
	cursor: pointer;
	position: relative;
	padding-left: 30px;
	user-select: none;
}

/************************************* 640px *************************************/
@media only screen and (max-width: 640px) {

	body {
		font-size: 16px;
		line-height: 24px;
	}

	.scrolling-text-wrap {
		padding: 20px 0;
	}

	.scroll h2 {
		font-size: 40px;
		line-height: 40px;

	}

	.RightToLeft {
		animation: RightToLeft 5s infinite linear;
	}

	/*******/
	.display-style {
		padding: 10px;
	}

	.display-style h2 {
		padding: 10px 0;
	}

	.display-style:hover h2 {
		padding: 10px;
	}

	.steps:before {
		display: none;
	}


	.bottom-banner {
		padding: 20px;

	}

	.bottom-banner h2 {
		font-size: 30px;
		line-height: 30px;


	}

	.bottom-banner h3 {
		font-size: 24px;

	}


	footer {
		padding: 25px 0;
	}

	.footer-logo,
	.footer-menu {
		width: 100%;
		display: flex;
		justify-content: center;
		text-align: center;
		flex-wrap: wrap;
		flex-direction: column;

	}

	.footer-logo img {
		width: 100px;
	}

	.four-col-grid {
		grid-gap: 20px;
		grid-template-columns: repeat(2, 1fr);
	}




}

.dropdown {
	position: relative;
	display: inline-block;
}

.dropdown-toggle {
	cursor: pointer;
}

.profile-img {
	width: 20px;
	height: 20px;
	/* border-radius: 50%; */
	object-fit: cover;
	POSITION: relative;
	top: 28px;
	right: 14px;
}

.dropdown-content {
	display: none;
	position: absolute;
	top: 120%;
	right: 0;
	background-color: #fff;
	min-width: 200px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	border: 1px solid #ccc;
}

.dropdown-content a {
	display: block;
	padding: 10px 15px;
	text-decoration: none;
	color: #333;
}

.dropdown-content a:hover {
	background-color: #ccc;
	color: #000 !important;
}

.dropdown.show .dropdown-content {
	display: block;
}

.dropdown-toggle::after {
	display: none;
}

.vg-nav-main-container .dropdown {
	position: relative;
	/* display: flex !important; */
}

.short {
	height: 65vh;
}

.login {
	background-image: url(../images/backgrounds/login.jpg);
}

/************************************* 480px *************************************/
@media only screen and (max-width: 480px) {}

/************************************* 360px *************************************/
@media only screen and (max-width: 360px) {}

/************************************* 320px *************************************/
@media only screen and (max-width: 320px) {}