@charset "utf-8";
 @import url('https://fonts.googleapis.com/css2?family=Noto+Kufi+Arabic:wght@100;200;300;400;500;600;700;800;900&display=swap'); 
@font-face {
    font-family: 'hectorregular';
    src: url('../fonts/hectorregular.eot');
    src: url('../fonts/hectorregular.eot') format('embedded-opentype'),
         url('../fonts/hectorregular.woff2') format('woff2'),
         url('../fonts/hectorregular.woff') format('woff'),
         url('../fonts/hectorregular.ttf') format('truetype'),
         url('../fonts/hectorregular.svg#hectorregular') format('svg');
}

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

/*************** DEFAULT CSS ***************/

:root {
	--body-font: "Questrial", sans-serif;
	--body-color: #000;
	--primary-color: #171717;
	--secondary-color: #E5FD2B;
	--tertiary-color: #FCC225;
	--quaternary-color:#E91A8C;
	
	--lime-yellow:#E5FD2B;
	--yellow:#FDD440;	
	--green:#23C370;	
	--blue:#77AAFF;
	--purple:#C28EFF;
	--orange:#F37A49;
		
	--off-yellow:#FFFBDF;
	--off-green:#EDFFE3;	
	--off-blue:#DEF0FF;
	--off-white:#F1F1EF;	

				
	--black: #171717;
	--white: #fff;
	--grey: #A5A8B0;	
	--grey-light: #E6E6E6;
	--grey-dark: #6D6D6D;
	--grey-deep: #494848;		 	 
	--font-light:300;
	--font-normal:400;
	--font-medium:500;	
	--font-bold:600;
	--font-heaavy:700;
	--heading-font:"hectorregular";
}

body {
	font-family: var(--body-font);
	font-size: 1.053em;
	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(--white); 
	background-attachment:fixed;
	overflow-x: hidden;
 
}


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

::-moz-selection {
	background: var(--secondary-color);
	/* Firefox */
	color:var(--black);
}

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(--seccondary-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);
}

.text-black {
	color: var(--black);
}

.text-lime-yellow {
	color: var(--lime-yellow) !important;
}
 .text-yellow {
	color: var(--yellow);
}
  .text-green {
	color: var(--green);
}
 .text-blue {
	color: var(--blue);
}
 
.text-center {
	text-align: center;
}
.text-left{
	text-align:left;
}
.text-right{
	text-align:right;
}

.text-justify {
	text-align: justify;
}

 

/*-----------background styles------------*/
.corner-round{
	overflow:hidden;
	border-radius:12px;
}
.corner-round-img{
	border-radius:100px 0 0 0;
}
.bg-gradient{
	background-image: linear-gradient(to top, var(--primary-color), var(--grey));
	color:var(--white)!important;	 
}
.bg-lime-yellow {
	background: var(--lime-yellow);
 
}
 .bg-yellow {
	background: var(--yellow);
 
}
 .bg-green {
	background: var(--green);
 
}
 .bg-blue {
	background: var(--blue);
 
}
 .bg-yellow {
	background: var(--yellow);
 
}

 .bg-black {
	background: var(--black);
	color:var(--white);
 
}
 .bg-purple {
	background: var(--purple);
 
}

 .bg-orange {
	background: var(--orange);
 
}

 .bg-off-white {
	background: var(--off-white);
 
}
 .bg-off-blue {
	background: var(--off-blue);
 
}
 .bg-off-green {
	background: var(--off-green);
 
}
 .bg-off-yellow {
	background: var(--off-green);
 
}
 .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: 150px;
	height: 150px;
	position: absolute;
	/*background-color:var(--white);*/
	left: 50%;
	top: 50%;
	background-image: url(../images/emirates-industries-logo.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:40%;
	margin: -75px 0 0 -75px;
}

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

.header-container {
	width: 1440px;
	margin: 0 auto;
}
.container {
	width: 1280px;
	margin: 0 auto;
}
.fullheight {
	width: 100%;
	height:100vh;
	 display: flex;
    flex-wrap: wrap;
	align-items: center;
} 
.fullwidth {
	width: 100%;
	display: block;
} 

.img-rounded{
	border-radius: 50%;
	overflow:hidden;
	}
.corner-radius{
	border-radius: 50%;
	}	
	
.img-outer{
	padding:25px;
	width:100%;
	display:block;
	position:relative;
 
	}
.img-style{
	position:relative;
}
 .img-style img{
	width:100%;
	display:block;
} 
.img-style:after, .img-style:before{
	position:absolute;
	right:15px;
	top:15px;
	width:100%;
	height:100%;
	content:'';
	border:1px solid var(--grey-light);	 
	z-index:-1;
	/*background-image: url(../../html/images/texture.png);*/
}
.img-style:before{
	right:7px;
	top:7px;
}
/*************HOVER EFFECT*******/

.hover-effect{
	width:100%;
	position:relative;
	overflow:hidden;
	/*border-radius: 12px; */
}

 .hover-effect i{
    width:50px;
    height:50px;
    background-color:var(--primary-color);
	border-radius: 50%;
    color:#fff;
    position:absolute;
    left:50%;
    top:-100px;
    z-index:1;
    line-height:50px;
    text-align:center;
    margin:0 0 0 -25px;
    -webkit-transition:all 300ms ease-in-out;
    -moz-transition:all 300ms ease-in-out;
    transition:all 300ms ease-in-out;
}
 .hover-effect:hover i{
    top:50%;
    margin:-25px 0 0 -25px;
}

 .hover-effect i:hover{
	background-color:var(--secondary-color);
	}

.hover-effect img {
 	display:block;
  	width:100%;
	-webkit-filter: none;
    filter: none;
 	-webkit-transition: all .5s;
    transition: all .5s;
}
.hover-effect:hover img {
     -webkit-transform: scale(1.09, 1.09);
    transform: scale(1.09, 1.09);
    -webkit-filter: brightness(70%);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
	/*-webkit-filter: brightness(70%);*/
	filter: grayscale(60%);
	-webkit-filter: grayscale(60%);
}


/*.hover-effect:after {
  background:#FFF;
  width:0;
  height: 0;
  position: absolute;
  left: 50%;
  bottom: 50%;
  content: '';
  opacity: 0.7;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.hover-effect:hover:after {
	opacity: 0.1;
	width: 100%;
  	height: 100%;
	left: 0;
    bottom: 0;

}
*/
 
section {
	width: 100%;
	display:block;
	position: relative;	 
}

.section-spacing{
	 padding:100px 0;
 }


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

 header{
	 width:100%; 
	 position:absolute;
	 left:0;
	 top:0;
	 padding:0;
	 z-index:5;
	 /*background-image: linear-gradient(to top, rgba(255,255,255,0), rgba(255,255,255,1));*/
	 -webkit-transition: all 300ms ease-in-out;
	 -moz-transition: all 300ms ease-in-out;
	 transition: all 300ms ease-in-out;
}
.header-normal{
	position:relative !important;
	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/hero-bg.jpg);
}
 header.smaller {
	padding: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%;
	position:relative;
	padding:40px 0;
	display: flex;
    flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
  header.smaller .header{
  	padding:10px 0;
  }





.logo { 	 
	position:absolute;
	left:0;
	top:40px;
	transition: all 0.4s ease;
 
}
header.smaller .logo{
	top:20px;
}
.logo-main{
	transition: all 0.4s ease;
	}
.logo-main img{
	width:200px;
	display:block;
	}
header.smaller .logo-main{
	display:none;
}

.logo-sticky{
	transition: all 0.4s ease;
	display:none !important;
	
}
.logo-sticky img{
	width:120px;
	display:block;
	}
header.smaller .logo-sticky{
	display:block !important;
}

 
  
.nav-menu{ 
	gap:20px 20px;
	justify-content: flex-end;
	padding:24px 0;
	display:none;
	visibility:hidden;
	transition: all 0.4s ease;
	 
	
} 
  header.smaller  .nav-menu{
  	display:block;
	visibility:visible;
	 
  }
/***********social ***********/
 
 
.link-grey, .link-black, .link-white, .link-yellow-outline, .link-black-ordinary, .link-ordinary, .link-lime-yellow{  
	color:var(--black);
	font-size: 16px; 
	padding: 8px 30px;
	font-style: normal;
	display: inline-block;	 
	position: relative;
	margin:0;
	border-radius: 50px;
	font-weight:var(--font-medium);
}

.link-grey{
	border:1px solid var(--grey);
	background-color:var(--grey);
	color:var(--white);
}

.link-grey:hover{ 
	color:var(--white);
	background-color:transparent;
	border:1px solid var(--black);
	color:var(--black);
}
.link-black{
	border:1px solid var(--black);
	background-color:var(--black);
	color:var(--lime-yellow);
}
.link-black:hover{
	border:1px solid var(--lime-yellow);
	background-color:var(--lime-yellow);
	color:var(--black);
}
.link-yellow-outline{
	border:1px solid var(--lime-yellow);
	color: var(--lime-yellow);
	 
}
.link-black-ordinary{
	border:1px solid var(--black);
	background-color:var(--black);
	color:var(--lime-yellow);
	}
	
 .link-black-ordinary:hover{
	color: var(--black);
	background-color:var(--white);
}
.link-white{
	border:1px solid var(--black);
	background-color:var(--white);
	color:var(--black);
	}
.link-white:hover{
	border:1px solid var(--lime-yellow);
	background-color:var(--lime-yellow);
 
	}  
.link-ordinary{

	border:1px solid var(--black);
	color:var(--black);
	} 
.link-ordinary:hover{
		background-color:var(--black);
	    color:var(--white);
	} 	
.link-lime-yellow{
	border:1px solid var(--lime-yellow);
	color:var(--lime-yellow);
 
}
.link-lime-yellow:hover{
	background-color:var(--lime-yellow);
	color:var(--black);
 
}	
 
/*************************************/	
.facny-bt{	 
 }	
 
.facny-bt a{
	font-size:20px;
	line-height:20px;
	padding:0  30px 0 0;
	color:var(--white);
	position:relative;
	display:inline-block;
	transition: all 0.4s ease;
 }
 .facny-bt a:hover, .card:hover  .facny-bt a{
 	/*padding:0  40px 0 0;
	letter-spacing:1px;*/
	color:var(--lime-yellow);
 }
 	
.facny-bt a:before{
	width:14px;
 	height:14px;
	border-radius: 100% 0 0 0;
	background-color:var(--white);
	position:absolute;
	right:0;
	top:2px;
	content:'';
	transition: all 0.4s ease;
 }
 .facny-bt a:hover:before, .card:hover  .facny-bt a:before{
	background-color:var(--lime-yellow);
 }
 
 
/*************************/


.caps{
	text-transform:uppercase;
}
 
.heading-font{
 	font-family:var(--heading-font);
 }
 
.heading{
	font-size:50px;
	line-height:54px;
}
.heading-small{
	font-size:46px;
	line-height:normal;
}
.heading span{ 
	color:var(--grey);
	
}
.subheading {
	font-size: 30px;
	line-height:normal;

}

/* .subtitle{
	font-size: 24px;
 
} */
 .subtitle{
	font-size: 22px;
 
}
.heading-font-small{
 	font-family:var(--heading-font);
	font-size: 24px;
	font-weight:normal;
 }
.bold, strong{
	font-weight:var(--font-bold);
}

.section-title{
	text-transform:uppercase;
	font-size:20px;
	line-height:normal;
	position:relative;
	margin-bottom:20px;
	font-weight:var(--font-bold);
	padding:0 0 0 30px;
	position:relative;
	display:flex;
}
 .section-title:before{
	width:15px;
 	height:15px;
	border-radius: 100% 0 0 0;
	background-color:var(--lime-yellow);
	border:1px solid var(--grey);
	position:absolute;
	left:0;
	top:0;
	content:'';
 }
 .effect{
 	position:relative;
	padding:40px;
	transition: all 0.4s ease;
	/*border:1px solid var(--grey-light);*/
	justify-content: space-between;
	flex-direction:column;
	align-items: stretch;
	display:flex;
	flex-wrap: wrap; 
	 
  }
  .effect:hover{
 	background-color:var(--off-white);
	
 }
  .effect:before{
 	width:100%;
	height:0;
	position:absolute;
	left:0;
	bottom:0;
	content:'';
	background-color:var(--off-white);
	z-index:-1;
	transition: all 0.4s ease;
	
	
 }
.effect:hover:before{
	height:100%;
 } 
  .desc_outer{
 	 display:flex;	 
	 flex-wrap: wrap; 
	 justify-content: center;	 
	 width:100%;
	 overflow-x:hidden;
 
 
 
 
 
 }
 .desc_text{
 	 display:flex;	 
	 padding:40px 0;
	 text-align:center;
	 color:var(--black);
	 justify-content: center;
	 align-items: center;
	 width:100%;
	 overflow-x:hidden;
	 display: flex;
	 font-size:50px;
	 line-height:normal;

 }
  .quote{
  	border:1px solid var(--grey-light);
  }
  .quote h2{
  	font-size: 16px; 
	font-weight:var(--font-bold);	 
 }
 
 .arabic-text{
 	direction: rtl;
	font-family:'Noto Kufi Arabic', sans-serif !important;
	line-height:normal;
	font-size:16px;
	}
  .arabic-text h2{
 	 
	font-size:18px;
	font-weight:600;
	}
 /***************/
 
.news{
  	border:1px solid var(--grey-light);
	display:flex;
	justify-content: flex-start
}
.news h2{
  	font-size: 20px; 
	font-weight:var(--font-bold);	 
 }
 
 
.date{
	font-size:14px;
	margin:20px 0;
} 

 
 /*******/
   
	
/****************************/
  
.pos-rel{
	position:relative;
}
   
.color-grid{  
    display: grid;
    grid-gap:20px;
    grid-template-columns: repeat(3, 1fr);
	place-items:center;
}
 .pop-grid{  
    grid-template-columns: repeat(2, 1fr);
	padding:0 160px;
	} 
 
/********************services scroller**********************/
  
.card{       
     aspect-ratio: 1 / 1;
	 display: flex;
     flex-wrap: wrap; 
	 /*justify-content: space-between;*/
	 /*align-items: stretch;*/
	 overflow: hidden;	 
	 position:relative;
	 z-index:2;
	 padding:30px;
	 border:1px solid transparent;
	 transition: all 0.8s ease;
}

	
.card:hover{
	background-color:var(--grey-deep);
	color:var(--white);
	border:1px solid #494848;
	 
}

.card-head, .card-middle, .card-footer{
    width: 100%;
    display: flex;
    flex-wrap: wrap; 
	}
.card-head img{
	width:60px;
}
.card:hover .card-head img {
	 filter: invert(1) brightness(2);
  
}

.card-middle{}
.card-footer{
	align-self: end;
	justify-content: flex-end;
}

.card-middle h2{
	font-size:30px;
	line-height:normal;
	margin:0;
	padding:0 0 20px 0;
	font-family:var(--heading-font);
}
.card-middle p{
	margin:0;
}
.card-middle h3{
	font-size:28px;
	line-height:normal;
}
.yellow-border{
	border:1px solid var(--lime-yellow);
	}
	
 .yellow-border:hover{
 	background-color:var(--lime-yellow);
	color:var(--black);
}

 .yellow-border:hover .link-yellow-outline{
	border:1px solid var(--black);
	color: var(--lime-yellow);
	background-color:var(--black);
	 
}
 .yellow-border:hover img{
 	filter: brightness(.1%) !important;
 }
 
 
 
 
 
 /*********************map*******************/
.map-poni-wrap{ display: flex;flex-wrap: wrap; }
.location-map-point-wrap {
    padding: 0px 0px;
    position: relative;
    margin-top: 0px;
    flex: 0 0 100%;
    margin-top: -350px;
}
.location-map-point-wrap img{
	width:100%;
}
.location{
	position:absolute;
	top:0;
	right: 0;
}
.location.location-1 {
    top: 18%;
    right: 14.4%;
}
.location.location-2 {
    top: 20.5%;
    right: 17.9%;
}
.location.location-3 {
    top: 23%;
    right: 18.6%;
}
.location.location-4 {
    top: 28.5%;
    right: 23.5%;
}
.location.location-5 {
    top: 43%;
    right: 34.5%;
}
.location.location-6 {
    top: 46%;
    right: 34%;
}
.location.location-7 {
    top: 52%;
    right: 23.4%;
}

.location-info {
    background-color: #dfe227;
    padding: 20px ;
    color: #000;
    z-index: 9999999999999;
    position: absolute;
    left: 0px;
    bottom: 140%;
    opacity: 0; /* Start hidden */
    transform: scale(0.8); /* Start slightly smaller */
    transition: all 0.4s ease; /* Smooth animation for scaling and fading */
    border-radius: 10px;
    width: 270px;
    visibility: hidden; /* Hidden by default */
}

.location:hover .location-info {
    visibility: visible;
    opacity: 1; /* Fade in */
    transform: scale(1); /* Scale to normal size */
}

.location .location-dot {
    position: unset;
    display: block;
    height: 10px;
    width: 10px;
    background-color: #dfe227;
    border-radius: 100%;
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s ease; /* Add transition for smooth hover effect */
}

.location.location-1:hover .location-info, 
.location.location-2:hover .location-info, 
.location.location-3:hover .location-info, 
.location.location-4:hover .location-info, 
.location.location-5:hover .location-info, 
.location.location-6:hover .location-info {
    visibility: visible;
    opacity: 1; /* Fade in */
    transform: scale(1); /* Pop in with scale */
}

.location-info p {
    font-size: 15px;
    line-height: 24px;
}

.location-info ul {   
    position: relative;
    padding: 0;
    margin: 0;
}

.location-info ul li {
    font-size: 14px;
    line-height: 22px;
    list-style: none;
	    display: flex;
}
.location-info ul li i{
	margin-right:8px;
	margin-top: 5px;
}
/* .map-caption{flex: 0 0 37%;} */

.map-caption{
	flex: 0 0 37%;
	position:relative;
	z-index:2;
}


.location-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25px;
  height: 25px;
  background-color: rgba(223, 226, 39, 0.3);
  border-radius: 100%;
  transform: translate(-50%, -50%);
  animation: ripple-small 1.2s infinite ease-in-out;
}
.location-1 .location-dot::before { animation-duration: 1.5s; }
.location-2 .location-dot::before { animation-duration: 1.2s; }
.location-3 .location-dot::before { animation-duration: 1.0s; }
.location-4 .location-dot::before { animation-duration: 1.8s; }
.location-5 .location-dot::before { animation-duration: 2.0s; }
.location-6 .location-dot::before { animation-duration: 1.3s; }



@keyframes ripple-small {
    0% {
        transform: translate(-50%, -50%) scale(0); /* Start from scale 0 */
        opacity: 1;
    }
    60% {
        transform: translate(-50%, -50%) scale(1.8); /* Expanded size */
        opacity: 0.5; /* Fade slightly */
    }
    100% {
        transform: translate(-50%, -50%) scale(1.8); /* Maintain end scale */
        opacity: 0; /* Fade out */
    }
}


























 
 
 /*****************************/
 .flex-card-container {
  display: flex;
  gap:0 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  min-width:100%;
  /*justify-content: center;*/
  /* Hide scrollbar - Webkit browsers */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.flex-card-container::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

.flex-card-item {
   min-width: 75%;
   box-sizing: border-box;    
   display:flex;
}
 
 
 
 
 
 
 
 
 
 
 
/*************model popup******************/

 .title-icon{
 	vertical-align:middle;
 	display:inline-block;
	margin-right:20px;
 }
.res-container{}
.res-45{}
/***********/
 .section-to-stick {
  padding: 0;
  transition: all 0.3s ease;
}

.sticky {
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  position: -webkit-sticky !important;
  position: sticky !important;
  position: fixed;
 
}
 

/********************popu content**********************/
 .v-gap{
 	width:100%;
	height:30vh;
 }
 .h-scroller {  	
	width: 100%;	
    display: flex;
    flex-wrap: wrap;
	gap:30px 3.5%;
	 }
  
  
.sticky-bar{
 	position: -webkit-sticky !important;
	position: sticky !important;
	top: 200px;
	width:100%;
	min-height:350px;
} 
 
 
.v-scroller:hover .notification,
.v-scroller:focus-within .notification {
  /*overflow-y: auto;*/
}
 .v-scroller {  	
	width: 100%;
	/*height:250px;*/
	/*height:1000px;
	position: sticky;
 	top: 0;
	overflow: hidden;
	*/
    display: flex;
    flex-wrap: wrap;
	flex-direction:row;
	row-gap: 10px;
	scrollbar-width: none; 
    -ms-overflow-style: none;
}

   
 .v-scroller::-webkit-scrollbar {
  display: none;
  background: transparent; 
}
 

.notification{
	width: 100%;
	height:25vh;
	/*height: max-content;*/
	display: flex;
	scroll-behavior: smooth;
    flex-wrap: wrap;
	flex-direction:column-wrap;
	justify-content: center;
	background-color:#F8F8F8;
	border:1px solid var(--grey-light);
	padding:40px 20px;
	position:relative;
	text-align:center;
	position: -webkit-sticky !important;
	position: sticky !important;
	top:200px;
	margin-bottom:100px;
	transition: all 0.4s ease;
	}
.notification h2{
	font-family:var(--heading-font);
	font-size:26px;
	line-height:40px;
	margin:0 0 20px 0;
	position:relative;
	z-index:2;
}
.notification p{
	margin:0;
	padding:0  10%;
	position:relative;
	z-index:2;
	font-size:20px;
}
.number{
	position:absolute;
	left:20px;
	bottom:0;
	font-size:150px;
	line-height:150px;
	color:#EBEBEB;
	font-family:var(--heading-font);
}
.res-free-gap{
	width:100%;
	height:50vh;
}
.notification-blank{
	height:50vh !important;
	margin-bottom:250px !important;
	background-color:transparent !important;	 
	border:0 !important;
	position:relative !important;
}

 /********************************/ 
.shadow{	   
	  box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);  
 }
 
 
.iconic{
	width:100%;
	display:block;
	position:relative;
	padding:0 20px 0 120px;
	min-height:100px;
}
.iconic:last-child{
	border-bottom:0;
}
.iconic h2{
	font-size: 24px;
	font-family:var(--heading-font-medium);
	margin:0 0 15px 0;
	line-height:30px;
}
.webicon{	
	display: flex;
	justify-content: center;
	align-items: center;
	position:absolute;
	left:0;
	top:0;	
	width:80px;
	height:80px;
	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));*/
	background-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(--primary-color);
}
.iconic p:last-child{
	margin:0;
}


 
  
 
 
 
.m0-p0{
	margin:0 !important;
	padding:0 !important;
 
	}
/*********whatsa app*/ 
.float{
	position:fixed;
	width:50px;
	height:50px;
	bottom:80px;
	line-height:50px;
	right:20px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50%;
	text-align:center;
    font-size:30px;
	/*box-shadow: 2px 2px 3px #999;*/
    z-index:4;
}
.float i{
	 -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
 
}
.float:hover i{
	 -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
	transform: rotate(0.12turn);
}
.float:hover{
	color:#FFF;
	 
} 
.float h5 {
    width: 100px;
    top: 8px;
	right:50px;
    background-color:var(--white);
	color:var(--grey-dark);
	 box-shadow: 0px 0px 5px gray;
	line-height:12px;
    border-radius: 5px;
	font-size:12px;
	padding:10px;
	position:absolute;
	z-index:-1;
	margin:0;
	-webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
	opacity:0;
}
.float:hover h5{
	 opacity:9;
	 right:60px;
}
 
 .popup-content{ 
    width: 100%;
    display: flex;
    flex-wrap: wrap; 
	justify-content: space-between;
} 
 .popup-text, .popup-slider{ 
    width: 45%;
 
}
/*************************09-oct-2025 **/


 .brand-logos{   
    display: grid;
    grid-gap:20px;
    grid-template-columns: repeat(6, 1fr);
    }
 .brand-logos .item{
	 padding:20px 20px;
	 /*border:1px solid var(--grey-light);*/
	 box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1); 
	 transition: all 0.4s ease;
}
 .brand-logos .item:hover{
	 transform: scale(1.03);
	
}

 .brand-logos .item img{
	 width:100%;
	 display:block;
	 filter: grayscale(100%);
	 transition: filter 260ms ease-in-out, transform 260ms ease-in-out;
     will-change: filter, transform;
}
 .brand-logos .item img:hover{
	filter: grayscale(0%);              /* reveal original color */
    transform: translateY(-1px); 
}

/*************************23-oct-2025 **/


.get-intouch{
	width:45%;
	background-color:#000000;
	position:absolute;
	right:0;
	top:80px;
	z-index:2;
	padding:60px;
	color:var(--white);
	
}

.get-intouch h2{
	font-family:var(--heading-font);
	line-height:normal;
	font-size:40px;
}
.get-intouch h2 span{
	color:var(--lime-yellow);
}
.get-intouch h3{
	font-family:var(--heading-font);
	line-height:normal;
	font-size:24px;
}

.get-intouch .link a{ 	 
	color:var(--black);
	background-color:var(--lime-yellow);
	 
}
.get-intouch .link a:hover{
	background-color:var(--white);
	}
.get-intouch a{
	color:var(--white);
}
.get-intouch a:hover{
	color:var(--lime-yellow);
}


/******************scroll grid column*****/

.flex-grid-wrap{   
    display: grid;
    grid-gap:20px;
    grid-template-columns: repeat(3, 1fr);
	justify-content: center;
	margin:100px 0;
	
	
}
/*********brand box************/

.brand-box{       
	/*aspect-ratio: 1 / 1;*/
	height:250px;
	display: flex;
	flex-wrap: wrap;
	background-color:#F4F4F4;
	justify-content: space-between;
	align-content: center; 
	flex-direction:column;  
	position:relative;
	padding:20px 40px;	 
	transition: all 0.8s ease;
	border: 10px solid var(--white);
	  outline: 1px solid #F4F4F4;
	 outline-offset: 0;

}
.brand-box:hover{
   outline: 1px solid #F4F4F4;

}

.brand-box-head{
   width: 100%;
   display: flex;
   align-items: center;
   gap:0 20px;
	
}
	
.brand-box-head h2{
   font-size:28px;
   line-height:normal;
   margin:0;
   padding:0;
   font-family:var(--heading-font);
   font-weight:500;
}	
.brand-box-footer{
   width: 100%;
   display: flex;
   flex-wrap: wrap;
	align-content: end;
   justify-content:flex-end;
	   -webkit-transition: all 300ms ease-in-out;
   -moz-transition: all 300ms ease-in-out;
   transition: all 300ms ease-in-out;

}
.brand-box:hover .brand-box-footer{
   padding-bottom:5px;
}

.logo-row{
	margin:0;
}
.logo-row img{
	display:block;
}

.circle-button{
	width:42px;
	height:42px; 
	background-image: url(../images/arrow-right-white.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:65%;
	border-radius:50%;
	transition: all 0.8s ease;
	border:1px solid var(--black);
	display:block;
	transition: all 0.4s ease;
	}
	
.brand-box:hover .circle-button{
	 -webkit-transform: rotate(360deg);
	 background-color: var(--white);
	 border:1px solid var(--white);
	}
	
.link{
	 
}
.link a{
	padding:0 20px;
	font-size:16px;
	/*border:1px solid var(--black);*/
	background-color:var(--black);
	color:var(--lime-yellow);
	border-radius:50px;
	padding: 10px 20px;
	line-height:normal;
	display:inline-block; 
	/*font-weight:var(--font-bold);*/
}
.link a:hover{
	background-color:var(--lime-yellow);
	color:var(--black);
 
}	
.bg1{
	background-image: url(../images/backgrounds/bg1.jpg);
}
.bg2{
	background-image: url(../images/backgrounds/bg2.jpg);
}

.bg3{
	background-image: url(../images/backgrounds/bg3.jpg);
}

.bg4{
	background-image: url(../images/backgrounds/bg4.jpg);
}

.bg5{
	background-image: url(../images/backgrounds/bg5.jpg);
}

.bg6{
	background-image: url(../images/backgrounds/bg6.jpg);
}


.counts {   
    display: grid;
    grid-gap:20px;
    grid-template-columns: repeat(5, 1fr);
    }
	
  .counts div{
    border:1px solid var(--grey-light);
	padding:20px;
	text-align:center;
	font-size:14px;
   }
   
  .counts div h2{
  	font-size: 24px;
	line-height:normal;
	margin:0;
	font-family:var(--heading-font);
	}


.boxy-text {
  border: 1px solid var(--grey-light);
  padding: 20px;
}

.bg-pattern {
  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/bg.svg);
}


/*************** footer CSS ***************/
 footer{
 	padding:150px 0 0 0;
	 
}
 .footer-logo{
 	width:25%;
 }
  .footer-moble-logo{
 	width: 100%;
    flex-wrap: wrap;
	display:none !important;
 }
 .footer-logo img,   .footer-moble-logo img{
 	width:100%;
 	display:block;
 }
 .footer-right{
 	width:35%;
	display:flex;
    flex-wrap: wrap;
	gap:0 20px;
	justify-content: space-between;
 }
 
 .footer-col{}
 
  .footer-col h2{
  	font-size:20px;
	font-weight:var(--font-bold);
	line-height:normal;
	margin:0 0 25px 0;
  }
 
 .footer-col ul,  .footer-col u li{
 	margin:0;
	padding:0;
	list-style:none;
 } 
  .footer-col a{
  	color:var(--black);
	}
  .footer-col a:hover{
  	color:var(--grey);
	} 
 .lower-footer{ 
    width: 100%;
    display: flex;
    flex-wrap: wrap;
	padding:30px 0;
	margin-top:100px;
	font-size:18px;
	font-weight:var(--font-bold); 
	border-top:1px solid var(--black);
}

.copy{}
.social {
 	padding:10px 0;
	display:flex;
	vertical-align:middle;
 
}
.social a  {
	width:33px;
	height:33px;
	line-height:33px;
	border-radius: 50%;
	text-align:center;
	color:var(--white);
	font-size:14px;
	margin:5px; 
	display:inline-block;
	text-align:center;
	background-color:var(--primary-color);

}
.social a:hover  {
	color:var(--black);
	background-color:var(--secondary-color);

}
  
/********************************/
.aside{
	width:30%;
}
.summary{
	width:60%;
}  
 
  .order-section{
  border-top:1px solid var(--grey-light);
  border-bottom:1px solid var(--grey-light);
padding: 180px 0px;}

.order-section2{
  border-top:1px solid var(--grey-light);
  /* border-bottom:1px solid var(--grey-light); */
  padding: 180px 0px 25px  0;
  }
 /**********************/
 .address-box{
	padding:40px;
	/*background: var(--off-white);*/
	border:1px solid var(--grey-light);
	 border-bottom:4px solid var(--lime-yellow);}
 
.add{
	width:100%;
	position:relative;
	padding:0 0 0 60px;
	min-height:30px;
	margin-bottom:20px;
	font-size:14px; 
	vertical-align:top;
	line-height:24px;
	
	 
}
 .add h2{
 	font-size:18px;
	line-height:24px;
	margin:0 0 35px 0;
	color:var(--primary-color);
	margin:0;
	line-height:normal;
 }
.add i{
	width:35px;
	height:35px;
	line-height:35px;
	background-color:var(--black);
	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;
	 display:block;
}

.ext{
	display:inline-block;
	padding-top:10px;
}
.add a{
	color:var(--black);
	}
.add a:hover{
	color:var(--grey);
	}
/******************************/

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

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

/*************mission vison****************/
.mission-vision {
    padding: 30px 25px;
    border-radius: 15px;
    background-color: var(--white);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

/*****************************/
  /************************/
.table-wrap{
	width:100%;
	position:relative;
	display:flex;
	overflow-x:scroll;
} 
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;
	}
 

/******************************team-style*****************/

 
 

/*************** INNER BANNER ***************/
.banner { 
	width: 100%;
	height:50vh;
	padding-bottom:25px;
	overflow:hidden;	 
	display: flex;
	flex-direction:column;
	position: relative;
	/*align-items: center;*/
	justify-content: flex-end;
	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);*/
	border-radius: 0 0 50px 50px;
}
 
.banner h2 {
	color:var(--white);	
	font-weight:var(--font-bold);
	text-transform:uppercase;	
	font-size:40px;
	line-height:40px;
	margin:50px 0 0 0;
	padding:0;
	position:relative;
	z-index:2;
}
/*************************banners ***************/
 
 /*****************************/

.breadcrumb {   
    display: flex;
	color:var(--grey-dark);
	margin:0;
	position:relative;
	z-index:2;
	 

}
 
.breadcrumb ul {
     border-radius: 50px;
	display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 20px 0 0 0;
    padding: 5px 20px;
	background-color:var(--white);
 

}
.breadcrumb li {
    margin: 0;
	font-size:12px;
	text-transform:uppercase;
	color:var(--grey-dark);
	font-weight:var(--font-bold);
 
	 
}    
.breadcrumb li:not(:last-child)::after {
    display: inline-block;
    margin: 0 15px;
    /*content: " → "; */
	 content: " / "; 
	 
}
 .breadcrumb a{
   color:var(--grey-dark);	
}
 .breadcrumb a:hover{
   color:var(--secondary-color);	
 
}
 

 
 
 
/*************** 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;
}
  
video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*********/

.hero-section{
	width:100%;
	height:100vh;
	display: flex;
    flex-wrap: wrap; 
	justify-content: center;
	align-items: center;
	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;
	background-image: url(../images/backgrounds/hero-bg.jpg);
}
 .hero-content{ 
    width: 100%;
    display: flex;
    flex-wrap: wrap; 
	justify-content: center;
	flex-direction:column;
	text-align:center;
	position:relative;
	z-index:3;
}
.hero-section:after {
    position: absolute;
    content: '';
    width: 100%;
    left: 0px;
    height: 100%;
    top: 0px;
    background-color: #fff;
    z-index: 0;
    opacity: .6;
}
 .hero-content h1{
	 font-size:80px;
	 line-height:90px;
	 margin:0;
	 font-family:var(--heading-font);
     
}
 .hero-content h1 span{
	  transition: all 0.4s ease;
}
 .hero-content h1 span:hover{
	/* color:var(--grey);*/
}

 .hero-content h2{
 	padding:50px 27%;
	margin:0;
	 font-size:24px;
	 line-height:34px;
 }
 
/********MOBILE SETTINGS************/
.desktop-pd{
	padding:0 120px;
}
.desktop, .mobile-pad{	 
	} 
.mobile{
	display: none !important;
	}
	
.pad-mobile{
	padding:0 21%;
}
 /*************/
 
.button-row{ 
    width: 100%;
    display: flex;
    flex-wrap: wrap;
	gap: 10px 10px;
	justify-content: center;
}

 .bg1 {
	background-image: url(../images/backgrounds/bg1.jpg);
	background-attachment:fixed;
	}
 
 /******form style******/
 
 

.formstyle{}
 
form {
	margin: 0;
	padding: 0;
}

*:focus {
	outline: none;
}

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

.sendbutton {
 
	color: var(--white);
	font-size: 20px;
	font-family:var(--font-bold);
	font-family:var(--heading-font);
	background-color:var(--black);
	border:0;
	padding: 15px 40px;
	font-style: normal;
	display: inline-block;
	position: relative;
	margin:0;
	border-radius:50px;
	 
}

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

 
 

::-webkit-input-placeholder {
	color:var(--body-color);
}

:-moz-placeholder {
	/* Firefox 18- */
	color: var(--body-color);
}

::-moz-placeholder {
	/* Firefox 19+ */
	color: var(--body-color);
}

:-ms-input-placeholder {
	color: var(--body-color);
}
 
 /*********/
 
 
 
/*************** backToTop *************/
 .progress-wrap {
	position: fixed;
	right: 10px;
	bottom: 50px;
	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;*/
	 background-color:var(--white);
     -webkit-transition: all 200ms linear;
	transition: all 200ms linear;
	transition: all 0.4s ease;
	transform: rotate(180deg);
}
 .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(--black);
     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(--black);
     stroke-width: 4;
     box-sizing:border-box;
     -webkit-transition: all 200ms linear;
     transition: all 200ms linear;
}
.why-us p {
	line-height: 24px;
	 
}

.locate-btn {
    padding: 5px 10px;
    border: 1px solid #000000;
    font-weight: 500;
    border-radius: 5px;
    margin-top: 15px;
    margin-left: auto;
    font-weight: 700;
    letter-spacing: 1px;
}
.locate-btn:hover {
    background: #f9ff00;
}




@media only screen and (max-width: 1440px) {
.header-container {
	width: 100%;
	padding:0 25px;
}
}
 
/************************************* 1400px *************************************/

@media only screen and (max-width: 1280px) {

.container {
	width: 100%;
	padding:0 30px;
	}
 
 
 
 
.card-head img{
	width:50px;
} 

.card-middle h2, .heading{
	font-size:30px;
	line-height:30px;
}
 
.card-middle h3{
	font-size:18px;
}
 .section-spacing{
	 padding:50px 0;
 }
 
  .order-section{

padding: 150px 0px;}
  
} 
/************************************* 1024px *************************************/
@media only screen and (max-width: 1024px) {
 
 .flex-grid-wrap{   
    grid-template-columns: repeat(2, 1fr);
}


}

/************************************* 980px *************************************/
@media only screen and (max-width: 980px) {
 
 .map-poni-wrap{ flex-direction: column;}
 .location-map-point-wrap { margin-left: 0;margin-top: 0;}
 
 
}

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

 
}

/************************************* 767px *************************************/
@media only screen and (max-width: 768px) {
  body {
    font-size:0.813em;
	line-height:24px;
  }
 
 .header,   header.smaller .header{
	justify-content: space-between;
	padding:10px 0;
	}
 header.smaller .header{
 	background-color:var(--white);
	}
	
.logo { 	 
	position:relative;
	left:auto;
	top:auto; 
}

.logo-main img{
	width:150px;
	display:block;
	}
 header.smaller .logo{
 	 top:auto;
  }
 .logo-sticky img{
	width:50px;
	display:block;
	} 
.hero-section{ 
	height:70vh;
	align-items: center;
	 
}
  .hero-content{
  	margin-top:50px;
  }
  .hero-content h1{
	 font-size:36px;
	 line-height:40px;
	 padding:0 2%;
}
  .hero-content h2{
 	padding:30px 0; 
	font-size:16px;
	line-height:20px;
 }
 .heading{
	font-size:30px;
	line-height:35px;
 
}
.heading-small{
	font-size:26px;
 
}
.heading-font-small{
		font-size:18px;
		}
.link-grey, .link-black, .link-white, .link-grey, .link-black, .link-white, .link-yellow-outline, .link-black-ordinary, .link-ordinary, .link-lime-yellow{  
	font-size: 12px;
	line-height:12px;
	padding: 8px 15px;
}
.color-grid{  
    grid-gap:10px;
    grid-template-columns: repeat(2, 1fr);
 
}

  
.card{       
     /*aspect-ratio: 1 / 1;*/
	 display: flex;
     flex-wrap: wrap; 
	 /*justify-content: space-between;*/
	 /*align-items: stretch;*/
	 overflow: hidden;	 
	 position:relative;
	 z-index:2;
	 padding:10px;
	 border:1px solid transparent;
	 transition: all 0.8s ease;
}
.card-head img{
	width:25px;
} 
.card-middle h3{
	font-size:18px;
 
}
.card-middle h2{
	font-size:24px;
	line-height:normal;
}
.facny-bt a{
	font-size:14px;
	line-height:14px;
	padding:0  20px 0 0;
 
 }
 
 	
.facny-bt a:before{
	width:8px;
 	height:8px;
	right:0;
	top:3px;
 
 }
 
.yellow-border{
	border:1px solid var(--lime-yellow) !important;
	}
.card-middle p{
	line-height:18px;
}
 /****************/
.aside, .summary{
	width:100%;
}
.summary{
	 margin-top:15px;
}
.faq{
	text-align:center;
	padding:0 18%;
}
.why-us {
	flex: 0 0 46% !important;
	padding:0 !important;
}
/********/
.primary-content{
	padding:20px;
	margin:15px 0;
}
.res-container .container{
	padding:0;
}
.res-45{
	padding:0 30px !important;
}
 .v-scroller {
	height:130px;  	
	overflow-y:scroll;
	margin:50px 0;
	padding:0 30px;
}
.notification{
	height: max-content; 
	/*height:320px !important;  */
	padding:20px 20px;
	height: max-content;
	margin-bottom:0; 
	position:relative !important;
	top:0;
}
.notification-blank{
	display:none  !important;
}
.notification h2{
	font-size:18px;
	line-height:22px;
	margin:0 0 10px 0;
}
.notification p{
	padding:0 5%;
	font-size:12px;
	
}
.number{
	left:15px;
	bottom:15px;
	font-size:70px;
	line-height:70px; 
}
.res-free-gap{
	height:0;
}

.section-title{
	font-size:14px;
	}
	

.section-title{
	padding:0 0 0 20px;
 
}
 .section-title:before{
	width:10px;
 	height:10px;
 
 }
 
 .desc_text{	  
	 font-size:16px;
	 padding:0 0 10px 0;
}



 .outer{
 	width:100%;
	 overflow:hidden;
 }
 

.effect{
	padding:20px;
 
 }
 .news{
 margin-top:20px;
 
  	 
  }
.news h2{
  	font-size: 18px; 
 
 }
  
 /*****************************/
 .flex-container {
  display: flex;
  gap:0 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  min-width:100%;
  /*justify-content: center;*/
  /* Hide scrollbar - Webkit browsers */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.flex-container::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

.flex-item {
   min-width: 80%;
   /*flex-shrink: 0;*/
   box-sizing: border-box;
   padding: 25px;
   border:1px solid var(--grey-light);
   justify-content: space-between;
   flex-direction:column;
   align-items: stretch;
   display:flex;
}
.flex-item h2{
  	width:100%;
	margin:0;
	font-size: 16px; 
	font-weight:var(--font-bold);
	}
	
.flex-item  p{
	  white-space: nowrap;
	  line-height:14px !important;
  }
	
.pop-grid{  
     grid-template-columns: repeat(2, 3fr) !important;
	 grid-gap:10px  !important;
	 padding:0   30px 0 10px ;
	}
	
 
	
 .v-gap{
 
	height:0;
 }	
/***********************/
.desktop{
	 display: none !important;
	} 
.mobile{
	display: block !important;
	}
 .popup-content{ 
    width: 100%;
	padding:25px 50px;
    
} 
 .popup-text, .popup-slider{ 
    width: 100%;
 
}
.pad-mobile{}
.news{
  	border:0;
	padding:0;
  }
 /*************/
 
 footer{
 	padding:50px 0 0 0;
	 
}
 .footer-logo{
 	display:none  !important;
	
	 
 }
  
 .footer-right{
 	width:100%;
	display:flex;
    flex-wrap: wrap;
	gap:0 20px;
	justify-content: space-around;
	flex-direction: row-reverse;
 }
 
 .footer-col {
 	text-align:center;
 }
   .footer-col h2{
  	font-size:16px;
	margin: 0 0 15px 0;
	line-height:normal;
 
  }
 .lower-footer{
 	text-align:center; 
	justify-content: center;
	padding:20px 0;
	margin-top:10px;	 
	border-top:0;
	font-size:12px;
 }

.footer-moble-logo{
    display: flex !important;
    
 }
 
 .rs-break{}
 
 .rs-break span{
 	width:100%;
	display:flex;
 }
 .formstyle{
	 margin-bottom:25px;
 }
.formstyle .flex-gap{
	gap:10px 0;
	}
.formstyle .fieldset {
	padding:15px 20px;
}
.sticky-bar{
	position:relative !important;
	position: elative !important;
	top: 0;
	min-height:auto;
}
  .section-to-stick {
  padding: 0;
  transition: all 0.3s ease;
  position: -webkit-sticky !important;
  position: sticky !important;
  position: fixed;
}

.sticky {
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  position: -webkit-sticky !important;
  position: sticky !important;
  position: fixed;
 
}
.order-section{
    padding: 100px 0px;
}


 .brand-logos{    
    grid-gap:10px;
    grid-template-columns: repeat(4, 1fr);
    }
 .brand-logos .item{
	 padding:15px;
 
}

 .flex-grid-wrap{   
    grid-template-columns: repeat(2, 1fr);
}

 }

/************************************* 640px *************************************/
@media only screen and (max-width: 640px) {
 .brand-logos{    
    grid-gap:5px;
    grid-template-columns: repeat(3, 1fr);
    }

	.counts {   
		grid-gap:10px;
		grid-template-columns: repeat(1, 1fr);
		}

		 .flex-grid-wrap{   
    grid-template-columns: repeat(1, 1fr);
} 
 

}

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

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

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