@charset "utf-8";

@font-face {
	font-family: 'MontBook';
	src: url('../fonts/MontBook.eot');
	src: url('../fonts/MontBook.eot') format('embedded-opentype'),
		url('../fonts/MontBook.woff2') format('woff2'),
		url('../fonts/MontBook.woff') format('woff'),
		url('../fonts/MontBook.ttf') format('truetype'),
		url('../fonts/MontBook.svg#MontBook') format('svg');
}

@font-face {
	font-family: 'MontSemiBold';
	src: url('../fonts/MontSemiBold.eot');
	src: url('../fonts/MontSemiBold.eot') format('embedded-opentype'),
		url('../fonts/MontSemiBold.woff2') format('woff2'),
		url('../fonts/MontSemiBold.woff') format('woff'),
		url('../fonts/MontSemiBold.ttf') format('truetype'),
		url('../fonts/MontSemiBold.svg#MontSemiBold') format('svg');
}

@font-face {
	font-family: 'MontBold';
	src: url('../fonts/MontBold.eot');
	src: url('../fonts/MontBold.eot') format('embedded-opentype'),
		url('../fonts/MontBold.woff2') format('woff2'),
		url('../fonts/MontBold.woff') format('woff'),
		url('../fonts/MontBold.ttf') format('truetype'),
		url('../fonts/MontBold.svg#MontBold') format('svg');
}

/* font-family: "Poppins", sans-serif;*/

/*************** DEFAULT CSS ***************/
:root {
	--body-font: "MontBook";
	--body-color: #fff;
	--primary-color: #05331F;
	--secondary-color: #455A58;
	--tertiary-color: #2EC32E;
	--quaternary-color: #B5E700;
	--black: #000;
	--white: #fff;
	--grey: #DCDDDE;
	--grey-light: #F8F8F8;
	--grey-dark: #6D6D6D;
	--heading-font-bold: "MontBold";
	--heading-font-semibold: "MontSemiBold";


}

body {

	font-family: var(--body-font);
	font-size: 16px;
	font-style: normal;
	line-height: 28px;
	/*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(--primary-color);
	background-image: url(../images/bg-texture.png);
}


/* 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(--white);
	/* Safari */
	color: var(--primary-color);
}

::-moz-selection {
	background: var(--white);
	/* Firefox */
	color: var(--primary-color);
}

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(--secondary-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 10px 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-green {
	color: var(--tertiary-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(--primary-color);
	z-index: 999999;
}

#status {
	width: 200px;
	height: 200px;
	position: absolute;
	/*background-color:var(--white);*/
	left: 50%;
	top: 50%;
	background-image: url(../images/stark-logo-white.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100%;
	margin: -100px 0 0 -100px;
}




/*********************************/

.container {
	width: 1250px;
	margin: 0 auto;
}

.fullheight {
	width: 100%;
	min-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: 20px;
}

.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;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

header.smaller {
	padding: 0;
	position: fixed;
	background-image: none;
	background-color: var(--white);

}

.header {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	background-color: var(--white);
	border-radius: 20px;
	padding: 15px 20px;
}



.logo {
	padding: 0;
}

.logo img {
	width: 190px;
	display: block;
}

header.smaller .logo img {
	width: 100px;
}

.nav-group {
	display: flex;
	align-items: center;
}

.top-button-group {
	display: flex;
	align-items: center;
	gap: 0 10px;
}


.quote-button {}

.quote-button a {
	color: var(--white);
	background-color: var(--primary-color);
	font-family: var(--heading-font-semibold);
	font-size: 14px;
	line-height: 40px;
	height: 40px;
	padding: 0px 50px 0 25px;
	display: block;
	border-radius: 50px;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	background-image: url(../images/icons/arrow-right-white.svg);
	background-repeat: no-repeat;
	background-position: 90% center;
	background-size: 15px;
}

.quote-button a:hover {
	background-color: var(--secondary-color);
}

/***********social ***********/
.shadow-button {
	box-shadow: 0px 10px 20px 0px rgba(123, 123, 123, 0.1);
	padding: 10px 25px;
	border-radius: 10px;

}

.link {}

.link a {

	color: var(--white);
	font-size: 14px;
	padding: 10px 50px 10px 25px;
	font-style: normal;
	display: inline-block;
	position: relative;
	margin: 0;
	border: 1px solid var(--white);
	border-radius: 50px;
	font-family: var(--heading-font-semibold);


}

.link a:before {
	width: 44px;
	height: 44px;
	position: absolute;
	top: 3px;
	right: 2px;
	content: '';
	z-index: 2;
	transform: rotate(0deg);
	background-image: url(../images/icons/arrow-right-white.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(--secondary-color);
	border: 1px solid var(--secondary-color);

}


.caps {
	text-transform: uppercase;
}


.heading {
	font-size: 58px;
	line-height: normal;
	font-family: var(--heading-font-bold);
}

.heading-big {
	font-size: 80px;
	line-height: 80px;
	font-family: var(--heading-font-bold);
	margin-left: 20px;
}

.subheading {
	font-size: 28px;

}

.heading,
.subheading {
	line-height: normal;


}

.subtitle {
	font-size: 20px;
	font-weight: normal;
	line-height: normal;
}

.bold,
strong {
	font-family: var(--heading-font-bold);
}



/****************************/

.pos-relative {
	position: relative;
}


/*******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;
	background-color: var(--black);
	padding: 20px 0;
}

.scroll {
	white-space: nowrap;
	margin: 0;
}

.scroll div {
	display: flex;
	gap: 2em;
}

.scroll h2 {
	font-size: 72px;
	line-height: 72px;
	color: var(--black);
	-webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
	font-family: var(--heading-font-bold);
	margin: 0;
}

.scroll h2 span {
	width: 6px;
	height: 6px;
	background-color: var(--secondary-color);
	outline-offset: 4px;
	outline: 1px solid var(--secondary-color);
	border-radius: 50%;
	display: inline-block;
	position: relative;
	margin: 0 25px;
	vertical-align: middle
}

.RightToLeft {
	animation: RightToLeft 20s infinite linear;


}

@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%);
	}
}

/*******features***********/

.features {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.features ul {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	list-style: none;
	align-items: center;
}

.features ul li {
	flex: 0 0 16%;
	padding: 10px 30px 10px 100px;
	border-right: 1px solid rgba(255, 255, 255, 0.2);
	background-repeat: no-repeat;
	background-position: 20px center;
	background-size: 70px;
	font-size: 18px;
	line-height: normal;
	font-family: var(--heading-font-semibold);
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;

}

.features ul li:hover {
	color: var(--tertiary-color);
	background-size: 65px;
	background-position: 25px center;

}

.features ul li:last-child {
	border-right: 0;
}

.features ul li:nth-child(1) {
	background-image: url(../images/icons/1.svg);
}

.features ul li:nth-child(2) {
	background-image: url(../images/icons/2.svg);
}

.features ul li:nth-child(3) {
	background-image: url(../images/icons/3.svg);
}

.features ul li:nth-child(4) {
	background-image: url(../images/icons/4.svg);
}

.features ul li:nth-child(5) {
	background-image: url(../images/icons/5.svg);
}

.features ul li:nth-child(6) {
	background-image: url(../images/icons/6.svg);
}

/*******intro***********/

.intro {
	background-image: url(../images/backgrounds/stark-intro.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	border-radius: 20px;
	overflow: hidden;
}

.stark-intto {
	width: 50%;
	padding: 100px;
}

.save-tree {}

.video-bt {
	position: relative;
}

.gi-sticker {
	position: absolute;
	bottom: 35%;
	right: 50px;
	z-index: 5;
	width: 170px;

}

.gi-sticker img {
	width: 100%;
	display: block;
}

/*******funfacts***********/
.stark-index {
	width: 90%;
	border-radius: 20px;
	background-color: var(--secondary-color);
	position: relative;
	z-index: 2;
	margin-top:70px;
	overflow: hidden;
}

/************************/

.funfacts,
.funfacts ul {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	position: relative;
}

.funfacts {
	width: 100%;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.funfacts h2 {
	font-family: var(--heading-font-bold);
	font-size: 80px;
	line-height: 80px;
	color: var(--tertiary-color);
	margin: 0;

}

.funfacts ul {
	list-style: none;
	margin: 0;
	font-size: 16px;

}

.funfacts ul li {
	flex: 0 0 33.33333333333333%;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	flex-wrap: wrap;
	margin: 0;
	padding: 50px;
	font-family: var(--heading-font-semibold);
	text-transform: uppercase;
	font-size: 16px;
	text-align: center;
	border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.funfacts ul li:last-child {
	border-right: 0;
}

.facts {
	text-align: left;
}

.facts h2 {
	font-size: 60px;
	line-height: 60px;
	margin: 0;
	font-family: var(--heading-font-bold);

}

.facts p {
	margin: 0;
	line-height: normal;
	font-size: 18px;
	font-family: var(--heading-font-semibold);
	text-transform: uppercase;
}

.fun-icon {}

.fun-icon img {
	vertical-align: middle;
	width: 60px;
}

.big-font {
	position: absolute;
	left: 0;
	top: 100px;
	z-index: -1;
	width: 100%;
	overflow: hidden;
	line-height: 420px;
	text-align: center;
	font-size: 420px;
	color: rgba(0, 0, 0, 0.2);
	font-family: var(--heading-font-bold);

}

/*****************quotes *****************/

.quotes-wrap {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	flex-direction: row;
	position: relative;
}

.quotes-wrap:before {
	width: 1px;
	height: 100%;
	position: absolute;
	left: 50%;
	top: 0;
	content: '';
	background-color: rgba(255, 255, 255, 0.2);
}

.quotes-wrap-item {
	width: 50%;

}

.big-head {
	padding: 50px 100px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.testimonials {
	width: 100%;
	padding: 50px 130px;
	position: relative;
	font-size: 18px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonials:before {
	width: 30px;
	height: 30px;
	content: '';
	position: absolute;
	left: 50px;
	top: 50px;
	background-image: url(../images/icons/q-left.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 30px;
}

.testimonials:after {
	width: 30px;
	height: 30px;
	content: '';
	position: absolute;
	right: 50px;
	bottom: 50px;
	background-image: url(../images/icons/q-right.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 30px;
}

.customer-info {
	font-size: 14px;
	line-height: 20px;
	padding: 50px;

}

.customer-info span {
	font-size: 20px;
	color: var(--tertiary-color);
	font-family: var(--heading-font-bold);
}

/*****************display-style**********/
.display-main {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	border-radius: 20px;
	overflow: hidden;
	background-color: var(--white);
	position: relative;

}

.display-main:before {
	width: 50%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	content: '';
	/*background-image: linear-gradient(to top left, rgba(2,151,73,0), rgba(2,151,73,1));*/
	/*background-color:#153121;*/
	background-image: url(../images/bg-texture2.png);
	box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
}

.display-main-content {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	z-index: 2;
	align-items: center;
}

.door,
.category-content {
	width: 50%;
	position: relative;
	z-index: 2;
}

.category-content {
	padding: 100px;
	color: var(--black);
}

.category-content h2 {
	font-size: 80px;
	line-height: 80px;
	font-family: var(--heading-font-bold);
}

.bordered-bx {
	border-radius: 20px;
	border: 2px solid var(--white);
	padding: 40px;
}






/*****************display-main**********/

.grid-row {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 20px 1.5%;
}

.product-col {
	flex: 0 0 23.87%;
	overflow: hidden;
	position: relative;
	/*border-radius: 10px;*/
	border: 1px solid rgba(255, 255, 255, 0.4);
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.product-col:before {
	width: 100%;
	height: 0;
	position: absolute;
	left: 0;
	top: 0;
	content: '';
	background-color: rgba(255, 255, 255, 0.1);
	z-index: -1;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.product-col:hover:before {
	height: 100%;
	bottom: 0;
	top: auto;
}

.product-img {
	width: 100%;
	padding: 20px;
}

.product-col-des {
	width: 100%;
}

.product-col-des a {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	color: var(--white);
	padding: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.4);


}

.product-col-des a:hover {
	color: var(--tertiary-color);

}

.more-bt-row {
	padding: 10px 0;
}

.more-bt {
	display: inline-block;
	padding: 5px 20px;
	line-height: normal;
	font-size: 12px;
	text-transform: uppercase;
	background-color: var(--white);
	border-radius: 50px;
	color: var(--black);
	font-family: var(--heading-font-semibold);
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.more-bt:hover {
	background-color: var(--tertiary-color);
	color: var(--white);
}

.product-col-des h2 {
	font-size: 16px;
	line-height: normal;
	margin: 0;
	font-family: var(--heading-font-semibold);
}

/**************/

.atrow-bottom {
	height: 60px;
	width: 60px;
	border: 1px solid var(--grey);
	display: inline-block;
	border-radius: 50%;
	right: 45px;
	z-index: 2;
	background-image: url(../images/icons/arrow-right.svg);
	background-repeat: no-repeat;
	background-position: center center;
	transform: rotate(-0deg);
	background-size: 25px;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;


}

.atrow-bottom:hover {
	transform: rotate(45deg);
}

/************************************/

/***********news style*****/

.news-single {
	width: 100%;

}

.news-single-content {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	padding: 30px 0;
	line-height: normal;
	color: var(--white);
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;

}

.news-single-content a {
	color: var(--white);
}

.news-single-content a:hover {
	color: var(--tertiary-color);
}

.news-single-content h2 {
	font-size: 20px;
	line-height: 28px;
	margin: 0 0 15px 0
}

.news-single-content p:first-child {
	margin: 0;
}


.date {
	font-size: 12px;
	text-transform: uppercase;
	color: var(--primary-color);
	background-color: var(--white);
	border-radius: 50px;
	text-transform: uppercase;
	word-spacing: 2px;
	margin: 0 0 15px 0;
	padding: 8px 20px;
	line-height: normal;
	display: inline-block;
	font-family: var(--heading-font-semibold);

}


/*****************grid colums**********/



/**********/


.rotating-circle {
	width: 110px;
	height: 110px;
	position: absolute;
	left: 0;
	top: -8px;
	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.svg);
	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/icons/play-button.svg);
	background-repeat: no-repeat;
	background-position: center center;
	border-radius: 50%;
	/*-webkit-animation: rotation2 20s infinite linear;*/
	background-size: 60%;
}

@-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**********************/

.shadow {
	border-radius: 20px;
	overflow: hidden;
	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: 50%;
	border: 1px solid var(--white);
	-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: 80%;
}

.webicon:hover {
	border: 1px solid var(--tertiary-color);
	background-color: var(--tertiary-color);
}

.iconic p:last-child {
	margin: 0;

}

/**********************news**********************/



/*********whatsa app*/
.float {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 40px;
	line-height: 60px;
	right: 40px;
	background-color: #25d366;
	color: #FFF;
	border-radius: 50%;
	text-align: center;
	font-size: 30px;
	/*box-shadow: 2px 2px 3px #999;*/
	z-index: 100;
}

.float:hover {
	color: #FFF;
	transform: rotate(0.12turn);
}



/*************** footer CSS ***************/

footer {
	padding: 100px 0 0 0;
	margin: 0;
	background-image: url(../images/backgrounds/footer-bg.svg);
	color: var(--white);
	font-size: 16px;

}

footer a,
.footer-col a {
	color: var(--white);
}

.footer a:hover,
.footer-col a:hover {
	color: rgba(255, 255, 255, 0.5);
}

.footer-left {
	width: 40%;
}

footer-col {
	padding: 20px;

}

.footer-col h2 {
	font-size: 16px;
	line-height: normal;
	text-transform: uppercase;
	padding: 0 0 10px 0;
	margin: 0 0 10px 0;
	position: relative;
	font-family: var(--heading-font-bold);



}


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

.footer-col ul li {
	padding: 8px 0;
	line-height: normal;
	font-size: 14px;

}

.footer-bottom {
	width: 100%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 30px 0 0 0;
	margin-top: 20px;
	color: var(--white);
}

.footer-bottom-border {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 20px 0;
}

.footer-bottom a {
	color: var(--white);
}

.footer-bottom a:hover {
	color: rgba(255, 255, 255, 0.8);
}

.copy {
	line-height: normal;
	padding: 10px 0;
	font-size: 14px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.footer-logo {
	width: 150px;
	margin-right: 25px;

}



.social {
	padding: 10px 0;
	display: flex;
	vertical-align: middle;

}

.social a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	border-radius: 50%;
	text-align: center;
	color: var(--primary-color);
	font-size: 16px;
	margin: 5px;
	display: inline-block;
	text-align: center;
	background-color: var(--white);



}

.social a:hover {
	color: var(--white);
	background-color: var(--primary-color);


}

.address-box {
	padding: 0 20px 20px 20px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.address-box:hover {
	background-color: rgba(255, 255, 255, 0.2);
}

.address-box h2 {
	font-family: var(--heading-font-semibold);
	text-transform: uppercase;
	margin-bottom: 20px;
}

.address-box h2 span {
	font-size: 16px;
	line-height: 16px;
	border-radius: 50px;
	display: inline-block;
	padding: 10px 30px;
	position: relative;
	top: -15px;
	z-index: 2;
	background-color: var(--tertiary-color);
}

.add {
	width: 100%;
	position: relative;
	padding: 0 0 0 50px;
	min-height: 30px;
	margin-bottom: 10px;
	vertical-align: top;
	font-size: 16px;

}

.add i {
	width: 30px;
	height: 30px;
	line-height: 30px;
	background-color: var(--grey-dark);
	border-radius: 50%;
	color: var(--white);
	font-size: 12px;
	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;

}

.add a {
	color: var(--white);
}

.add a:hover {
	color: var(--tertiary-color);
}

/******************************/





ul.list {
	margin: 0;
	padding: 0;

}

ul.list li {
	list-style: none;
	padding: 8px 0 8px 30px;
	line-height: normal;
	position: relative;
	font-family: var(--heading-font-semibold);
	font-size: 20px;




}

ul.list li:before {
	/*content: "\f111";*/
	content: "\f138";
	position: absolute;
	top: 12px;
	left: 0;
	font-family: "FontAwesome";
	color: var(--quaternary-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: 80vh;
	overflow: hidden;
	display: flex;
	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: 250px;
	position: absolute;
	left: 0;
	bottom: 0;
	content: '';
	z-index: 1;
	background-image: url(../images/homeslider/sloider-bottom-shape.png);
	background-repeat: no-repeat;
	background-position: center bottom;
}

.banner h2 {
	color: var(--white);
	font-family: var(--heading-font-bold);
	font-size: 40px;
	line-height: 50px;
	text-transform: uppercase;
	margin: 0;
	padding: 0;
	position: relative;
	z-index: 2;
}


/*****************************/

.breadcrumb {
	display: flex;
	color: var(--body-color);
	position: relative;
	padding: 20px 0;
	width: 100%;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}


.breadcrumb ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 10px 0;


}

.breadcrumb li {
	margin: 0;
	font-size: 14px;
	font-family: var(--heading-font-semibold);

}

.breadcrumb li:not(:last-child)::after {
	display: inline-block;
	margin: 0 15px;
	content: " → ";

}

.breadcrumb a {
	color: var(--body-color);
}

.breadcrumb a:hover {
	color: var(--tertiary-color);

}



/*.banner:after{ position: absolute; content: ''; width: 100%; height: 100%; left: 0px; top: 0px; background-color:#000; opacity: .5; }*/


/*************** 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);
	background-repeat: no-repeat;
	background-position: center top;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	min-height: 100vh;
	padding-top: 300px;

}


.bg2 {
	background-image: url(../images/backgrounds/bg2.svg);


}

.bg3 {
	background-image: url(../images/backgrounds/bg3.svg);
	position: relative;

}

/*********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 rgba(255, 255, 255, 0.2);
	background-color: transparent;
	display: block;
	margin: 0;
	color: var(--body-color);
	font-size: 14px;

}


.sendbutton {
	border-radius: 50px;
	color: var(--white);
	font-size: 24px;
	font-family: var(--heading-font-bold);
	border: 0;
	background-color: var(--tertiary-color);
	padding: 10px 30px;
	font-style: normal;
	display: inline-block;
	position: relative;
	margin: 0;

}

.sendbutton:hover {
	background-color: var(--white);
	color: var(--black);
}

.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);
}

/**********/
.field-secondary {
	width: 100%;
	padding: 20px 0;
	background-color: none;
	background-color: transparent;
	display: block;
	border: 0;
	box-shadow: 0;
	margin: 0;
	color: var(--white) !important;
	font-size: 16px;

}

.call-back-holder ::-webkit-input-placeholder {
	color: var(--white);
}

.call-back-holder :-moz-placeholder {
	/* Firefox 18- */
	color: var(--white);
}

.call-back-holder ::-moz-placeholder {
	/* Firefox 19+ */
	color: var(--white);
}

.call-back-holder :-ms-input-placeholder {
	color: var(--white);
}

/*************** 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(--secondary-color);
	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(--secondary-color);
	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;
	}


	.features ul {
		gap: 5px;
	}


	.features ul li {
		flex: 0 0 32%;
		padding: 20px 30px 20px 110px;
		margin: -1px 0 0 -1px;
		border: 1px solid var(--secondary-color) !important;
		background-size: 50px;
	}


}

/************************************* 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;
	}

	.header {

		border-radius: 12px;
		padding: 10px 20px;
	}

	.logo img,
	header.smaller .logo img {
		width: 100px;
		display: block;
	}

	.nav-group {
		flex-direction: row-reverse;
	}

	.top-button-group {
		margin-right: 20px;
	}

	.call-bt a {
		width: 30px;
		height: 30px;
		line-height: 30px;
		display: inline-block;
		font-size: 12px;
	}


	.quote-button a {
		height: 30px;
		line-height: 30px;
		padding: 0px 40px 0 15px;
		display: inline-block;
		font-size: 10px;

	}

	.stark-index {
		border-radius: 12px;
		margin-top: 50px;
	}

	.funfacts h2 {
		font-size: 40px;
		line-height: 40px;
	}

	.funfacts ul {
		font-size: 14px;

	}

	.funfacts ul li {
		justify-content: center;
		flex-direction: column;
		font-size: 14px;
	}

	.big-head {
		padding: 30px;
		margin: 0;
		line-height: 30px;
		font-size: 30px;

	}

	.testimonials {
		font-size: 14px;

	}
}

/************************************* 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;
	}

	.bg1 {
		min-height: auto;
		padding: 20px 0;
	}

	.heading-big {
		font-size: 30px;
		line-height: 40px;
	}


	.hover-effect {
		border-radius: 12px;
	}

	.features ul li {
		width: 48%;
		padding: 20px 30px 20px 110px;
		background-size: 70px;
		margin: 1%;
	}

	.features ul li:last-child {
		border-right: 0;
	}

	.stark-intto {
		padding: 50px;
	}

	.big-font {
		top: 100px;
		line-height: 320px;
		font-size: 320px;
	}

	.category-content {
		padding: 50px;

	}

	.category-content h2 {
		font-size: 40px;
		line-height: 40px;

	}

	.funfacts ul li {
		padding: 20px;

	}

	.quotes-wrap-item {
		width: 100%;

	}

	.quotes-wrap:before {
		display: none;
	}

	.testimonials {

		padding: 30px 20px;

	}

	.testimonials:before {
		width: 20px;
		height: 20px;
		left: 20px;
		top: 0;
		background-size: 20px;
	}

	.testimonials:after {
		width: 20px;
		height: 20px;
		right: 20px;
		bottom: 0;
		background-size: 20px;
	}

	.customer-info {
		padding: 20px 20px;

	}

	.product-col {
		flex: 0 0 32.33%;

	}

	/***********news style*****/

	.news-single {
		position: relative;
		bottom: auto;
		left: auto;
		padding: 0;
		display: flex;
	}

	.shadow .news-single-content {
		padding: 20px;


	}

	.news-single-content {
		padding: 20px 0;


	}

	.news-single-content h2 {
		font-size: 18px;
		line-height: 28px;

	}

	footer {
		padding: 40px 0 0 0;


	}

	.footer-logo {
		width: 100px;
	}

	.footer-left {
		width: 100%;
		margin-bottom: 20px;
	}

	.footer-col {
		width: 100%;
		margin-bottom: 20px;
	}

	.footer-bottom {
		padding: 0;
		margin-top: 0;

	}

	.footer-bottom-border {
		padding: 10px 0;
	}


	.footer-col ul li {
		padding: 4px 0;
		line-height: normal;

	}

	.banner h2 {
		font-size: 22px;
		line-height: 30px;
	}

	.iconic {
		padding: 0 0 0 70px;

	}

	.iconic h2 {
		font-size: 20px;
		line-height: 24px;


	}

	.webicon {
		width: 50px;
		height: 50px;
		font-size: 18px;

	}

	.gi-sticker {
		display: none;

	}
}

/************************************* 980px *************************************/
@media only screen and (max-width: 980px) {}

/************************************* 900px *************************************/
@media only screen and (max-width: 900px) {
	ul.list li {

		padding: 8px 0 8px 30px;
		font-size: 14px;
	}

	.bordered-bx {
		border-radius: 12px;
		padding: 20px;
	}
}

/************************************* 767px *************************************/
@media only screen and (max-width: 768px) {

	body {
		font-size: 16px;
	}


	.brands-listing ul li {
		width: 100px;
	}

	.brands-listing ul li img {
		border-radius: 7px;
	}

}

/************************************* 640px *************************************/
@media only screen and (max-width: 640px) {

	body {
		font-size: 16px;
		line-height: 22px;
	}

	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		margin: 0 0 20px 0;
		padding: 0;
		font-weight: normal;
	}

	.scrolling-text-wrap {
		padding: 20px 0;
	}

	.scroll h2 {
		font-size: 40px;
		line-height: 40px;

	}

	.RightToLeft {
		animation: RightToLeft 5s infinite linear;
	}

	.features ul li {
		flex: 0 0 47.28%;
		padding: 10px 10px 20px 50px;
		background-size: 40px;
		font-size: 14px;
		background-position: 10px center;
	}

	.features ul li {
		padding: 10px 10px 10px 70px;
	}

	.stark-intto {
		padding: 40px;
		width: 100%;
	}

	.intro {
		border-radius: 12px;
	}

	.big-font {
		top: 50px;
		line-height: 120px;
		font-size: 120px;
	}

	.display-main {
		border-radius: 12px;
	}

	.display-main:before {
		display: none;
	}


	.door,
	.category-content {
		width: 100%;
	}

	.door {
		/* background-image: linear-gradient(to top left, rgba(2, 151, 73, 0), rgba(2, 151, 73, 1)); */
		background-color: #d2d3d5;
	}

	.category-content {
		padding: 20px;

	}

	.category-content h2 {
		font-size: 30px;
		line-height: 30px;

	}

	.funfacts ul li {
		flex: 0 0 33%;
		font-size: 14px;

	}

	.funfacts ul li:last-child {
		border-bottom: 0;
	}

	.grid-row {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		gap: 20px 4%;
	}

	.product-col {
		flex: 0 0 48%;

	}

}

/************************************* 480px *************************************/
@media only screen and (max-width: 480px) {}

/************************************* 360px *************************************/
@media only screen and (max-width: 360px) {}

/************************************* 320px *************************************/
@media only screen and (max-width: 320px) {}

/* new style */
.warranty-page .tabs {
	display: flex;
	cursor: pointer;
}

.warranty-page .tab {
	padding: 10px 20px;

}

.warranty-page .tab.active {
	background: #fff;
	border-bottom: none;
	color: #0b4013;
	font-weight: 700;
	border-radius: 10px 10px 0px 0px;
}

.warranty-page .content {
	display: none;
	padding: 50px 30px;
	border-top: .5px solid #ccc;
}

.warranty-page .content.active {
	display: block;
}

.warranty-page .form-control-1 {
	width: 100%;
	padding: 20px 20px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background-color: transparent;
	display: block;
	margin: 0;
	color: var(--body-color);
	font-size: 14px;
	margin-bottom: 30px;
}

.warranty-page select option {
	background-color: #fff !important;
	color: #05331F !important;
	font-size: 14px;
	width: 100%;
	padding: 20px 20px;

}

.warranty-page .content option:hover {
	outline: none;
	border-color: #05331F;
	color: #fff;
}

.warranty-page .comment-form-author .form-control {
	width: 100%;
	padding: 20px 20px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background-color: transparent;
	display: block;
	margin: 0;
	color: var(--body-color);
	font-size: 14px
}

.warranty-page label {
	font-size: 14px;
	line-height: 50px;
}

.warranty-page .btn.btn-success {
	background-color: red;
	color: #eee;
	border: none;
	padding: 5px 10px;
	margin-top: 20px;
}

.warranty-page .btn.btn-danger {
	border-radius: 50px;
	color: var(--white);
	font-size: 24px;
	font-family: var(--heading-font-bold);
	border: 0;
	background-color: var(--tertiary-color);
	padding: 10px 30px;
	font-style: normal;
	display: inline-block;
	position: relative;
	margin: 0;
	margin-top: 20px;

}

.warranty-page .line-gap {
	margin-bottom: 10px;
}

.s-btn {
	display: flex;
	align-items: center;
	justify-content: center;
}