@charset "utf-8";

  
 
/*************** DEFAULT CSS ***************/
:root {
	--body-font:"Inter Tight", sans-serif;
	--body-color: #000;
	--primary-color: #11783C;
	--secondary-color: #D4B529;
	--tertiary-color: #0C3D20;
	--quaternary-color: #231F20;	
	--black: #000;
	--white: #fff;
	--grey: #F0F0F0;	
	--grey-light: #F8F8F8;
	--grey-dark: #6D6D6D;
	--font-weight-light:300;
	--font-weight-medium:500;	
	--font-weight-bold:600;	
 	--heading-font:"Bebas Neue", sans-serif;
 
 

}

body {

	font-family: var(--body-font);
	font-size: 18px;
	font-style: normal;
	line-height: 26px;
	/*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(--white);
	
	
	  transition: 0.3s ease-out;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  overscroll-behavior: none;

}

 
/* Scrollbar Styling */
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(--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 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-blue {
	color: var(--primary-color) !important;
}
  
.text-dark-blue {
	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(--white);
	z-index: 999999;
}

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

 

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

.container {
	width: 1410px;
	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:relative;
	 background-color:var(--white);
	 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:10px 0;
	position: fixed;
	 background-image:none;
	 background-color:var(--white);
	box-shadow: 0px 10px 20px 0px rgba(123, 123, 123, 0.1); 
}*/

.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:100px;
}

.nav-group{
	display: flex;
	align-items: center; 
 }
 
 
 
.call-bt {
	position:relative;
	padding:0 0 0 50px;
	font-weight:var(--font-weight-bold);
	line-height:25px;
	margin-left:25px;
}
.call-bt a{
	
}
.call-bt a:hover{
	background-color:var(--primary-color);
}
.call-bt i{
	position:absolute;
	left:0;
	top:5px;
	width:40px;
	height:40px;
	line-height:40px;
	display:block;
	font-size:14px;
	border-radius: 50%;
	background-color:var(--primary-color);
	color:var(--white);
	text-align:center;

}
 

/***********social ***********/
  
.link {}

.link a {
	
	color: var(--black);
	font-size: 14px; 
	font-family:var(--heading-font-semibold);
	padding: 10px 50px 10px 20px;
	font-style: normal;
	display: inline-block;
	position: relative;
	margin:0;
	border-radius: 50px;
	color:var(--white);
 	background-image: linear-gradient(to left, var(--primary-color), var(--secondary-color));
	 
	
}

.link a:before{
	width:44px;
	height:44px;
	position:absolute;	
	top:2px;
	right:0;
	content:'';
	z-index:2;
	background-image: url(../images/icons/arrow.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{
	background-image: linear-gradient(to right, var(--primary-color), var(--secondary-color));
 
}
 
 


.caps{
	text-transform:uppercase;
}
 
 
.heading{
	font-size:62px;
	line-height:normal;
	font-family:var(--heading-font);
	color:var(--primary-color);
}

 .heading span, .subheading span{
	 color:var(--secondary-color);}

.subheading {
	font-size:40px;
	line-height:50px;
	 
}
 
.subtitle{
	font-size: 22px;
	font-weight:normal;
	line-height:normal;
}
.bold, strong{
	font-family:var(--heading-font-bold);
}
.iight{
	font-weight:var(--font-weight-light) !important;
	}
.page-title{
	text-transform:uppercase;
	font-size:18px;
	line-height:normal;
	font-family:var(--heading-font);
	margin:0 0 20px 0 !important;

}

/****************************/
  
.pos-relative{
	position:relative;
}
   
 
 /*******categories grid***********/
 
.tpm, .btm{
	width:100%;
	height:15px;
	position:absolute;
	left:0;
	top:-5px;
	background-color:var(--white);
	z-index:2;
}
.btm{
	top:auto;
	bottom:-5px;
}

.lpm, .rtm{
	width:15px;
	height:100%;
	position:absolute;
	left:-5px;
	top:0;
	background-color:var(--white);
	z-index:2;
}

.rtm{
	left:auto;
	right:-5px;
	top:0;
}
 
.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***************/
  

/*******funfacts***********/


.funfacts, .funfacts ul{
	width:100%;
	display: flex;
	flex-wrap: wrap;
	margin:0;
	padding:0;
	position:relative;
}
.funfacts{
	background-image: linear-gradient(to top, var(--primary-color), var(--secondary-color));
	padding:70px;
	border-radius: 20px;
	overflow:hidden;
	color:var(--white);
}
.funfacts-head{
	font-size:22px;
	font-family:var(--heading-font-bold);
	line-height:normal;
	margin:-30px 0 0 -20px;
	position:relative;
}
.funfacts-head span{
	display:inline-block;
	position:relative;
	padding:0 100px 0 0;
}
.funfacts-head span:after{
	width:80px;
	height:1px;
	position:absolute;
	top:50%;
	right:0;
	content:'';
	background:var(--white);
}
.funfacts ul{ 
	list-style:none;
	margin:0;
	font-size:16px;
  
}

.funfacts ul li{
	flex: 0 0 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap; 
	margin:0;
	padding:20px 0;
	text-align:center;
	border-bottom:1px solid var(--white);
}
 .funfacts ul li:last-child{
 	border-bottom: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;
}
 /*********milestone*************/

   

 

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


 /*****************tab-conetne*********/
 .experties{
 	background-image: url(../images/backgrounds/bg1.jpg);
	border-radius: 20px;
	overflow:hidden;
	background-position: center  center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
 }
 .grid-row{
 	flex: 0 0 100%;
	display: flex;
	flex-wrap: wrap;
	position:relative;
	border-left:1px solid var(--white);	
 }
 .grid-row:before,  .grid-row:after{
 	width: 1px;
	height:100%;
	position:absolute;
	top:0;
	left:50%;
	background-color:var(--white);
	content:'';
	 
 } 
 .grid-row:after{
 	width: 100%;
	height:1px;
	top:50%;
	left:0;
 }
.grid-row-bx{
	flex: 0 0 50%;
	aspect-ratio: 1 / .8;
	padding:20px;
	color:var(--white);
	display:flex;
	flex-direction:column;
	position:relative;
	justify-content: space-between;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
 
}
.grid-row-bx:hover{
	padding:25px;
}
.grid-row-bx:after{
	width:100%;
	height:0;
	position:absolute;
	left:0;
	bottom:0;
	content:'';
	background-image: linear-gradient(to top, var(--primary-color), var(--secondary-color));
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
 
}
.grid-row-bx:hover:after{
	height:100%;
	top:0;
}
.icon-row{
	position:relative;
	z-index:2;
}
  .icon-row img{
	width:60px;
}
.grid-row-bx-footer{
		align-items: center;
		justify-content: space-between;
	    display:flex;
		flex-wrap: wrap;
		position:relative;
	    z-index:2;
	 
}	
.grid-row-bx-footer h2{
	font-size:24px;
	margin:0;
	line-height:normal;
	font-family:var(--heading-font-semibold);
} 	
/***********news style*****/
 
.news-single{
     width: 100%;
	 position: absolute;
     bottom:0px;
     left: 0;
	 padding: 30px;
}
.news-single-content{ 
	 display: flex;
	 flex-wrap: wrap;
	 flex-direction:column;
	 padding: 40px 50px;
	 line-height:normal;     
     color: var(--black);
	 background-color:var(--white);
	  border-radius: 15px;    
     -webkit-transition: all 300ms ease-in-out;
     -moz-transition: all 300ms ease-in-out;
     transition: all 300ms ease-in-out;
	         
}
.news-single-content h2,  .news-thumb-content h2{
	font-size:24px;
	line-height:34px;
	font-family:var(--heading-font-bold);
	margin:0 0 15px 0
}
.news-single-content p:last-child{
	margin:0;
}

 
.date{
	font-size:14px;
	color:var(--grey-dark);
	text-transform:uppercase;
	word-spacing:2px;
	margin:0 0 15px 0;
	line-height:normal;
	 
}
 
 .news-thumb-row{ 
    width: 100%;
    display: flex;
    flex-wrap: wrap;
	margin-bottom:40px;
	justify-content: space-between;
 
}
 .news-thumb{ 
    width: 40%;
	overflow:hidden;
       
}
 .news-thumb-content{ 
    width: 55%;	  
	line-height:normal;       
}
 
/*****************grid colums**********/
 
/*--------------------------------scroll-------------*/

.sideScroll-wrap{
	 background-color:var(--primary-color);
	 width:100%;
	 display:flex;
	 overflow:hidden;
 }

.sideScroll {
  
  white-space: nowrap;
  position: relative;
  color: white;
  display: inline-block;
  animation: sideScroll 20s linear infinite;
  padding:15px 0;
 
}

.sideScroll p{
  font-size: 22px;
  line-height:22px;
  color: var(--white);
  font-weight: 500;
  display: flex;
  align-items: center;
  margin:0;
}
.sideScroll p .sep {
	font-size: 22px;
	line-height:22px;
	display:inline-block;
	width:40px;
	text-align:center;
}

@keyframes sideScroll {
  100% {
    transform: translateX(-2000px);
  }
}

.sep{font-size: 70px;line-height: 59px;font-weight: 300;color: var(--white);width: 30px;/* height: 5px; */overflow: hidden;margin-top: -5px;}

.sidescroll-row{
    overflow: hidden;
    background-color: var(--dark-grey);
    padding: 1px 0;
}

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


 .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**********************/
 .boxy-style{
	 border-radius:20px;
	 padding:50px;
	 /*box-shadow: 0px 10px 20px 20px rgba(123, 123, 123, 0.1);*/
	 box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);  
 }
  .shadow{
	  border-radius:20px;
	  overflow:hidden;
	  box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);  
 }
 
 /*****************display-style**********/
 
.display-white-normal{
	background-color:var(--white);
	border-radius: 12px;
	overflow: hidden;	 
	}
.display-content{
	padding:40px;
}

.display-white-normal  h2{
	font-size:22px;
	line-height:normal;
	margin:0 0 10px 0;
 
}

/*************/
.display-style{      
     overflow: hidden;	 
	 position:relative;
	 border-radius: 12px;
	 padding:40px;
	 background: var(--grey);
	 -webkit-transition: all 300ms ease-in-out;
     -moz-transition: all 300ms ease-in-out;
     transition: all 300ms ease-in-out;
}
  
.display-style h2{
	font-size:22px;
	line-height:normal;
	margin:0 0 10px 0;
 
}
.display-style p:last-child{
	margin:0;
}


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


.iconic{
	width:100%;
	display:block;
	position:relative;
	padding:0 0 0 100px;
	 
}
.iconic:last-child{
	border-bottom:0;
}
.iconic h2{
	font-size:22px;
	line-height:normal;
	margin:0 0 10px 0;
	font-weight:var(--font-weight-medium); 
}

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


.webicon{	
	display: flex;
	justify-content: center;
	align-items: center;
	position:absolute;
	left:0;
	top:-5px;	
	width:70px;
	height:70px;
	text-align:center;
	color:var(--white);
	font-size:30px;
	vertical-align:middle;
	margin:0;
	padding:15px;
	 border-radius:50%; 
	 background-image: linear-gradient(to top, var(--primary-color), var(--secondary-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%;
}
 
.iconic p:last-child{
	margin:0;
	 
}  
/**********************news**********************/
  .bx-shadow{
	background-color:var(--white);	 
	overflow:hidden;
 	box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1); 
}

 
/*********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:80px  0;
	margin:0;
	background-color:#062B16;
	color:var(--white);
	font-size:16px;
	background-image: url(../images/footer-bg.png); 
}

.footer a , .footer-col a {
	color:var(--white);
}
.footer a:hover, .footer-col a:hover {
	color:rgba(255, 255 ,255, 0.5);
}
  
.footer h2{
	font-size:30px;
	line-height:normal;
	padding:0 0 10px 0;
	margin:0 0 10px 0;
	position:relative;
	font-family:var(--font-weight-medium);
 
 
 
} 
 

.footer-col ul, .footer-col ul li{
	margin:0;
	padding:0;
	list-style:none;
}
.footer-col ul li{
	padding:8px 0;
	line-height:normal;

	}

.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 var(--white);
	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;
}
 
.social {
 	 
 
}

.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(--tertiary-color);
	color:var(--white);
	overflow:hidden;
	padding:40px;
	border-radius: 12px;
	color:var(--white);
} 
 .address-box a{
	 color:var(--white);
} 
 .address-box a:hover  {	 
	color:var(--secondary-color);
 }
 
.add{
	width:100%;
	position:relative;
	padding:0 0 0 40px;
	min-height:30px;
	margin-bottom:10px;
	font-size:18px; 
	vertical-align:top;
	line-height:30px;
	 
}
.add p{
	padding:0 25px;
	
}
.add i{
	width:40px;
	height:40px;
	line-height:40px;
	background-color:var(--white);
	border-radius: 50%;
	color:var(--secondary-color);
	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:250px;
	overflow:hidden;	 
	display: flex;
	flex-direction:column;
	position: relative;
	align-items: center;
	justify-content: center;
	text-align:center;
	background-color:#062B16;
    background-image: url(../images/footer-bg.png); 
	 
	 
}
 
.banner h2 {
	color: var(--white);
	font-family:var(--heading-font);	
	font-size:40px;
	line-height:40px; 
	margin:0;
	padding:0;
	position:relative;
	z-index:2;
}


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

.breadcrumb-holder{
	width: 100%;
	padding:50px 0;
	display: flex;
	
}
 

.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);	
 
}
 .breadcrumb  span{
 	color:var(--secondary-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);
	color:var(--white);
}

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

 

/**********forms**************/

form {
	margin: 0;
	padding: 0;
}

*:focus {
	outline: none;
}

.fieldset {
	width: 100%;
	padding:20px 20px;
	border:1px solid var(--grey);
	background-color:var(--white);
	display: block;
	border-radius: 5px;
	margin: 0;
	color: var(--body-color);
	font-size: 16px;
 
}

.sendbutton {
	border-radius: 12px;
	color: var(--white);
	font-size: 30px;
	font-family:var(--heading-font);
	border:0;	 
	padding: 15px 30px;
	font-style: normal;
	display: inline-block;
	position: relative;
	margin:0;
	background-color:var(--primary-color);
	 
}

.sendbutton: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;
}
 

::-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;
 
 }

 

 

 

 
/*************** 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: 1409.99px) {
.container {
	width: 100%;
	padding:0 25px;
	}
 
  
 }
/************************************* 1024px *************************************/
@media only screen and (max-width: 1023.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;
 }
.call-bt{
	margin:0 20px 0 0;
	line-height:18px;
	font-size:14px;
	padding:0 0 0 40px;
} 
 
 
.call-bt i{
	top:5px;
	width:30px;
	height:30px;
	line-height:30px;
	display:block;
	font-size:14px;
	 

}
  
 
.funfacts{
	padding:40px;
	border-radius: 12px;
	margin-bottom:20px;
 
}
.funfacts-head{
	font-size:20px;
	margin:0;
	 
}
.funfacts-head span{
	display:inline-block;
	position:relative;
	padding:0 50px 0 0;
}
.funfacts-head span:after{
	width:40px;
	 
}
 
 .facts h2{
	font-size:40px;
	line-height:40px;
 
 
}
 
 .facts p{
	margin:10px 0 0 0;
	font-size:16px;
 
}
 
.fun-icon img{
 
	width:40px;
}
.display-style{ 
      border-radius: 12px;
 
}
.display-style-cont{
	 padding: 20px;     
      
 
}
.display-style:hover .display-style-cont{ 
	padding: 20px;     
}

 .experties{
 
	border-radius: 12px;
	 
 }
 
.grid-row{
	border-left:0;
	gap:10px 3.5%;
	padding:20px;	
 }
 .grid-row:before,  .grid-row:after{
 	display:none;
	 
 } 
 
.grid-row-bx{
	flex: 0 0 48%;
	aspect-ratio: 1 / 1;
	padding:10px;
	border:1px solid var(--white);
	 
 
}
.grid-row-bx:hover{
	padding:10px;
}
 .icon-row img{
	width:40px;
}
 	
.grid-row-bx-footer h2{
	font-size:16px;
 
}

.atrow-bottom{ 
	height:30px;
	width:30px;	 
	bottom:20px;
	right:45px;
	background-size:20px;
 
	  
}  
}
/************************************* 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*****/
 
.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,  .news-thumb-content h2{
	font-size:20px;
	line-height:24px;
 
}
  
 
 .news-thumb{ 
    width: 30%;
 
       
}
 .news-thumb-content{ 
    width: 65%;	  
       
}
.footer-logo{
	width:150px;
}
.footer-left{
	width:100%;
	margin-bottom:20px;
}
.footer-col{
	margin-bottom:20px;
}
.footer-bottom {	 
    
	padding:20px 0 0 0 ;
	margin-top:20px;
 
}
.footer-bottom-border{
	padding:10px 0;
	}

 
 
.banner h2 {
	font-size:30px;
	line-height:40px; 
}
.boxy-style{
	 border-radius:12px;
	 padding:20px;
	 margin-bottom:20px;
 
 }
.iconic{
	padding:0 0 0 100px;
	 
}
 
.iconic h2{
	font-size: 20px;
	line-height:24px;
 
 
}
.webicon{	
	width:70px;
	height:70px;
	font-size:18px;
 
}
   

}

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

 
}

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

 
}

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

body{
	font-size:16px;
}
.address-box, .address-box2{ 
	border-radius: 12px;
 } 

.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: 18px;
	line-height:24px;
	}
 
.scrolling-text-wrap {
	padding:20px 0;   
 }

.scroll h2 {
  font-size: 40px;
  line-height: 40px;
   
}
 
.RightToLeft {
  animation: RightToLeft 5s infinite linear;  
}
 

}

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

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

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