@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: #000;
	--primary-color: #00AFFF;
	--secondary-color: #93C519;
	--tertiary-color: #00267B;
	--quaternary-color: #0B1D45;	
	--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(--white);

}


/* 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(--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/pelican-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%;
	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;
	 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:250px;
	display:block;
}
header.smaller .logo img{
	width:150px;
}

.nav-group{
	display: flex;
	align-items: center; 
 }
 
.top-button-group{
     display: flex;
	 align-items: center; 
	 gap: 0 10px;
 	 }
 
.call-bt {}
.call-bt a{
	width:48px;
	height:48px;
	line-height:48px;
	display:block;
	font-size:14px;
	border-radius: 50%;
	background-color:var(--secondary-color);
	color:var(--white);
	text-align:center;
}
.call-bt a:hover{
	background-color:var(--primary-color);
}
.call-bt i{
	margin:0;
}

.quote-button{
	 
}
.quote-button a{
	color:var(--white);
	background-color:var(--primary-color);
	font-family:var(--heading-font-semibold);
	font-size:16px;
	line-height:48px;
	height:48px;
	padding:0px 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;
}
.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(--black);
	font-size: 16px; 
	font-family:var(--heading-font-semibold);
	padding: 10px 70px 10px 20px;
	font-style: normal;
	display: inline-block;
	position: relative;
	margin:0;
	border:1px solid var(--grey);
	border-radius: 50px;
	font-family:var(--heading-font-semibold);
	 
	
}

.link a:before{
	width:44px;
	height:44px;
	position:absolute;	
	top:5px;
	right:2px;
	content:'';
	z-index:2;
	transform: rotate(45deg); 
	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:after{
	width:40px;
	height:40px;
	position:absolute;	
	top:5px;
	right:5px;
	border-radius: 50%;
	content:'';	
	background-image: linear-gradient(to top, var(--primary-color), var(--secondary-color));
}
.link a:hover:before{
	transform: rotate(0deg); 
 
}
 
.link a:hover { 		 
		color:var(--white);
		background-color:var(--black);
		border:1px solid var(--black);
	 
} 


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

 

.subheading {
	font-size: 30px;
	font-family:var(--heading-font-semibold);
}
 
.subtitle{
	font-size: 22px;
	font-weight:normal;
	line-height:normal;
}
.bold, strong{
	font-family:var(--heading-font-bold);
}

.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{
	  flex: 0 0 18.7%;
	  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 17px 4px rgba(123, 123, 123, 0.3);
	-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%);
	transform: scale(1.02);
  }
  

/****************SCROLLING TEXT***************/

 .scrolling-text-wrap {
  width:100%;
  overflow-x:hidden;
 }

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

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

.scroll h2 {
  font-size: 70px;
  line-height: 70px;
  color: var(--primary-color);
  -webkit-text-stroke: 1px #698398;
  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;

  
}

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

   
/*****************display-style**********/
 

.display-style{ 
     width: 100%;
     overflow: hidden;	 
	 position:relative;
	 border-radius: 20px;
	 -webkit-transition: all 300ms ease-in-out;
     -moz-transition: all 300ms ease-in-out;
     transition: all 300ms ease-in-out;
}
.display-style img{ 
     width: 100%;
	 display:block;
}

.display-style-cont{
     width: 100%;
	 position: absolute;
     bottom:0px;
     left: 0;
	 display: flex;
	 flex-wrap: wrap;
	 justify-content: space-between;
	 padding: 20px 50px;     
     color: var(--white);
	 font-size:18px;
     background-image: linear-gradient(to bottom, 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;
 
}
.display-style:hover .display-style-cont{ 
	padding: 30px 50px;        
}
.display-style-cont h2{
	font-size:24px;
	line-height:normal;
	margin:0;
	font-family:var(--heading-font-semibold);
}
.display-style-cont p{
	margin:0;
}

.atrow-bottom{ 
	height:56px;
	width:56px;
	display: inline-block;
	bottom:30px;
	right:45px;
	z-index:2;
	background-image: url(../images/icons/arrow-right-white.svg);
	background-repeat: no-repeat;
	background-position: center center;
	transform: rotate(45deg);
	background-size:40px;
	-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(-0deg);	 
	}

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


 /*****************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**********************/
  
 /**********************news**********************/
 .boxy-style{
	 border-radius:20px;
	 padding:50px;
	 /*box-shadow: 0px 10px 20px 20px rgba(123, 123, 123, 0.1);*/
	 box-shadow: 0px 4px 27px 4px rgba(123, 123, 123, 0.3);  
	 margin-bottom: 30px;
 }
  .shadow{
	  border-radius:20px;
	  overflow:hidden;
	  box-shadow: 0px 4px 27px 4px rgba(123, 123, 123, 0.3);  
 }
.iconic{
	width:100%;
	display:block;
	position:relative;
	padding:0 0 0 120px;
	 
}
.iconic:last-child{
	border-bottom:0;
}
.iconic h2{
	font-size: 30px;
	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%;
	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%;
}
.webicon:hover{
	background-color:var(--tertiary-color);
}
.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);
} 
 
 
 .gutter{
 	padding: 15px;
 }
/*************** footer CSS ***************/
 
footer {
	padding: 80px 0 0 0;
	margin:0;
	background-image: url(../images/backgrounds/footer-bg.jpg);
	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:50%;
	margin-top: -10px;
}
.footer-left p{
	margin-bottom: 15px;
	}
.footer-left img{
	max-height: 80px;
	width: auto;
	}
.footer-col {
 	padding:20px 0 0 0;

}
 
.footer-col h2{
	font-size:20px;
	line-height:normal;
	padding:0 0 10px 0;
	margin:0 0 10px 0;
	position:relative;
	font-family:var(--heading-font-bold);
	color:var(--primary-color);
 
 
} 
 

.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;
}
 
.footer-logo{
	width:250px;
}
 
 
 
.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(--tertiary-color);
	color:var(--white);
	overflow:hidden;
	padding:40px;
	border-radius: 20px;
	color:var(--white);
} 
 .address-box a{
	 color:var(--white);
} 
 .address-box a:hover  {
	 
	color:var(--secondary-color);
 }
  .address-box .add i{
	background-color:var(--white);
	color:var(--primary-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;
	margin-bottom: 11px;
}
.add i{
	width:40px;
	height:40px;
	line-height:40px;
	background-color:var(--grey-dark);
	border-radius: 50%;
	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:50vh;
	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;
}


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

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

.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);
	background-color:var(--white);
	display: block;
	border-radius: 5px;
	margin: 0;
	color: var(--body-color);
	font-size: 16px;
	/*margin-bottom: 10px;*/
 
}

.sendbutton {
	border-radius: 5px;
	color: var(--white);
	font-size: 30px;
	font-family:var(--heading-font-bold);
	border:0;
	background-image: linear-gradient(to top, var(--primary-color), var(--secondary-color));
	padding: 20px 30px;
	font-style: normal;
	display: inline-block;
	position: relative;
	margin:0;
	 
}

.sendbutton:hover {	
	 
background-image: linear-gradient(to bottom, var(--primary-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;
 
 }

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

.whtsapp-link h5{float:left;width: 150px;position:absolute;left:11px;opacity:0;color:#6d6d6d;font-size: 15px;font-weight:500;margin:10px 0 0 0;background-color:#e8e8e8;padding:10px;border-radius:5px;line-height:18px;z-index:0;-webkit-transition:all 300ms ease-in-out;-moz-transition:all 300ms ease-in-out;transition:all 300ms ease-in-out;}
.whatsapp-icon{
    width: 61px;
    height: 61px;
    background: #2db742;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    box-shadow: 0px 6px 8px 2px rgba(0,0,0,0.14);
    -webkit-box-shadow: 0px 6px 8px 2px rgba(0,0,0,0.14);
    -moz-box-shadow: 0px 6px 8px 2px rgba(0,0,0,0.14);
    text-align: center;
    line-height: 58px;
    float: right;
    margin-left: 0;
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.whatsapp-icon img{width:36px !important;-webkit-transition:all 300ms ease-in-out;-moz-transition:all 300ms ease-in-out;transition:all 300ms ease-in-out;top: 0;position: relative;}
.whtsapp-link:hover h5{left: -155px;opacity:1}
.whtsapp-link {
    position: fixed;
    right: 20px;
    bottom:5% ;
    z-index: 9;
}

 
/************************************* 1400px *************************************/

@media only screen and (max-width: 1366px) {
	.container {
		width: 100%;
	padding:0 25px;
	}

	.navigation {
		padding-right: 30px !important;
	}
	.vg-nav>ul>li {
		padding: 5px 15px !important;
	}

 }
/************************************* 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;
 }
 .top-button-group{ 
	 margin-right:10px;
 	 }
 
.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:0 20px;
	display:inline-block;
	font-size:10px;
 
}
 
  
 
.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;
  margin-top: 20px;
} 
 
.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 70px;
	 
}
 
.iconic h2{
	font-size: 20px;
	line-height:24px;
 
 
}
.webicon{	
	width:50px;
	height:50px;
	font-size:18px;
 
}
.brands-listing ul li {
    flex: 0 0 17.7%;
}

}

/************************************* 980px *************************************/
@media only screen and (max-width: 980px) {
.brands-listing ul li {
    flex: 0 0 23%;
}
 
}

/************************************* 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 img{   
 
	border-radius: 7px;
 
  }
  .brands-listing ul li {
    flex: 0 0 31%;
}
.banner {
    height: 350px;
}
.navigation {
	padding-right: 0px !important;
}
}

/************************************* 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;  
}
   .brands-listing ul li {
    flex: 0 0 30%;
}
.banner {
    height: 160px;
}
.address-box {
    margin-bottom: 25px;
}
form.wpcf7-form.init .gutter {
	padding: 10px 0;
}
.smd30 .sticky {
    margin-bottom: 25px;
}
}

/************************************* 480px *************************************/
@media only screen and (max-width: 480px) {
	 
 .brands-listing ul li {
        flex: 0 0 46%;
    }
}

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

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