@charset "utf-8";
 @import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');
 
@font-face {
    font-family: 'PPMoriRegular';
    src: url('../fonts/PPMoriRegular.eot');
    src: url('../fonts/PPMoriRegular.eot') format('embedded-opentype'),
         url('../fonts/PPMoriRegular.woff2') format('woff2'),
         url('../fonts/PPMoriRegular.woff') format('woff'),
         url('../fonts/PPMoriRegular.ttf') format('truetype'),
         url('../fonts/PPMoriRegular.svg#PPMoriRegular') format('svg');
}

@font-face {
    font-family: 'PPMoriSemiBold';
    src: url('../fonts/PPMoriSemiBold.eot');
    src: url('../fonts/PPMoriSemiBold.eot') format('embedded-opentype'),
         url('../fonts/PPMoriSemiBold.woff2') format('woff2'),
         url('../fonts/PPMoriSemiBold.woff') format('woff'),
         url('../fonts/PPMoriSemiBold.ttf') format('truetype'),
         url('../fonts/PPMoriSemiBold.svg#PPMoriSemiBold') format('svg');
}



@font-face {
    font-family: 'DomaineDispNarRegular';
    src: url('../fonts/DomaineDispNarRegular.eot');
    src: url('../fonts/DomaineDispNarRegular.eot') format('embedded-opentype'),
         url('../fonts/DomaineDispNarRegular.woff2') format('woff2'),
         url('../fonts/DomaineDispNarRegular.woff') format('woff'),
         url('../fonts/DomaineDispNarRegular.ttf') format('truetype'),
         url('../fonts/DomaineDispNarRegular.svg#DomaineDispNarRegular') format('svg');
}




/*font-family: 'Mulish', sans-serif;*/

/*************** DEFAULT CSS ***************/
:root {
	--body-font:  'PPMoriRegular', sans-serif;
	--body-color: #16252D;
	--primary-color: #00A756;
	--secondary-color: #16252D;
	--tertiary-color: #4FDF99;
	--quaternary-color: #AAF097;	
	--black: #000;
	--white: #fff;
	--grey: #E3E3E3;
	--dark-grey: #767676;
	--heading-font: 'DomaineDispNarRegular';
	--font-bold: 'PPMoriSemiBold', sans-serif;
	 

}

body {

	font-family: var(--body-font);
	font-size: 16px;
	font-style: normal;
	line-height: 30px;
	font-weight: normal;
	color: var(--body-color);
	text-decoration: none;
	margin: 0px;
	-webkit-font-smoothing: antialiased;
	padding: 0;
	background: var(--white);

}

html {
	scroll-behavior: smooth;
	overflow-x:hidden;
}

 ::selection {
     background: var(--primary-color);
    /* Safari */
     color:#fff;
}
 ::-moz-selection {
     background: var(--primary-color);
    /* Firefox */
     color:#fff;
}
 ::-webkit-scrollbar {
     width: 10px;
}
 ::-webkit-scrollbar-track {
     background: rgba(255, 255, 255, 0.02);
     padding:1px ;
}
 ::-webkit-scrollbar-thumb {
     background: var(--secondary-color);
     border-radius: 40px;
}

* {
	-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;
 
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 25px 0;
	padding: 0;
	font-weight: normal;
}

.hr {
	margin: 100px 0;
	height: 1px;
	border: 0;
	border-top: 1px solid rgba(0, 0, 0 ,0.2);
	display: block;
	width: 100%;
	height:1px;
	position: relative;
}
/*.hr:before{
	content: '';
	position: absolute;
	top:0;
	left:0;
	width: 50px;
	height: 1px;
	z-index:2;
	background-color: var(--primary-color)
}*/
img {
	border: 0;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;

}

a img {
	border: 0;
}

/*-----------text styles------------*/
.text-white {
	color: var(--white) !important;
}

.text-black {
	color: var(--black) !important;
}

.text-green {
	color: var(--primary-color) !important;
}

 
.text-center {
	text-align: center;
}
.text-right{
	text-align:right;
}

.text-justify {
	text-align: justify;
}

.uppercase {
	text-transform: uppercase;
}

/*-----------background styles------------*/

.bg-primary {
	background: var(--primary-color);
	color:var(--white) !important;
}
.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-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: 100px;
	height:  100px;
	position: absolute;
	/*background-color:var(--white);*/
	left: 50%;
	top: 50%;
	background-image: url(../images/emmay-logistics-brand.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:100px;
	margin: -50px 0 0 -50px;
}

 

/*************** BACK TO TOP ***************/
 
 
  
  
 
/*********************************/

.container {
	width: 1320px;
	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: 20px;
	}	
	
 .content-bx{
	border-radius: 20px;
	padding:50px;
	}	
	
/*************HOVER EFFECT*******/

.hover-effect{
	width:100%;
	position:relative;
	border-radius:14px;
	overflow:hidden;
	/*border-radius: 15px;*/	
}

 .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 h2{
	position:absolute;
	left:0;
	bottom:0;
	z-index:2;
	margin:0;
	padding:40px;
	font-family:var(--heading-font);
	color:var(--white);
	font-size:32px;
	background-image: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.5));
	width:100%;
 
}
.fslarg{
	font-size:60px !important;
}
.hover-effect h2:before{
	background-image: url(../images/icons/arrow-right-white.svg);
	width:30px;
	height:30px;
	position:absolute;
	right:40px;
	bottom:20px;
	z-index:3;
	background-repeat: no-repeat;
	background-position: center center;
	background-size:20px;
	content:'';
	}

/*.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;
	 
}
  
 .sticky{
 	position: -webkit-sticky !important;
	position: sticky !important;
	top: 100px;
	width:100%;
	 
}

/*************** HOME PAGE CSS ***************/
 
/*************** FIXED HEADER ***************/

header {
	width:100%;
	z-index: 999;
	top: 0;
	left: 0px;
	background-color:var(--white);	 
	padding:10px 0;
	display:flex;
	justify-content: space-between;
	align-items: center;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
 header.smaller {
 	padding:5px 0;
	position: fixed;
	-webkit-box-shadow: 0px 1px 5px 0px rgba(50, 50, 50, 0.41);
	-moz-box-shadow: 0px 1px 5px 0px rgba(50, 50, 50, 0.41);
	box-shadow: 0px 1px 5px 0px rgba(50, 50, 50, 0.41);
	/*-moz-box-shadow: 0px 4px 20px #00000059;*/
	
}
 
.logo { 
	padding:0;
}

.logo img {
	width:320px;
	display:block;
}
header.smaller .logo img{
	width:150px;
	 
}

.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position:relative;
 
}


.head-group{
 	display: flex;
	justify-content: space-between;
	}
	
 
 
 /***********call-button ***********/
 .call-button{
	position:relative;
	padding:0 0 0 40px;
	margin-top:5px;
	 border-radius: 5px;
	border:2px solid var(--grey);
}
 
 .call-button a{ 
	color:var(--white);
 
}
 .call-button a{ 
	color:var(--secondary-color);
 
}		


.call-button i{
   width:34px;
   height:34px;
   border-radius: 5px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size:14px;
   background-color:var(--primary-color);
   color:var(--white);
   text-align:center;
   position:absolute;
   left:10px;
   top:8px;
   
   }
 
 .phone-number{
	 display: flex;
	 flex-wrap: wrap;
	 color:var(--body-color);
	 font-size:16px;
	 line-height:20px;
 	 white-space: nowrap;
	 padding:5px 15px;
	 align-items: center;
 
 } 
 .phone-number span{
	 font-size:14px;
	 color:var(--dark-grey);
  }
/***********social ***********/

.social {
 	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-left:20px;
}

.social a  {
	color:var(--white);
	font-size:18px;
	padding:0;
	margin:10px; 
}

.social a:hover  {
	color: var(--secondary-color);
}

.link {}

.link a {
	color: var(--body-color);
	font-size: 16px;
	line-height: normal;
	font-weight:normal;
	font-family:var(--font-bold);
	border-radius:50px;
	padding: 20px 70px 20px 35px;
	line-height: 14px;
	font-style: normal;
	display: inline-block;
	border:1px solid var(--primary-color);
	position: relative;
	margin:0;
	background-image: url(../images/icons/arrow-right.svg);
	background-repeat: no-repeat;
	background-position: 85% center;
	background-size:20px;
 
}
 
 
 
.link a:hover {
	color: var(--white);
	background-position: 90% center;
	background-color:var(--primary-color);
	background-image: url(../images/icons/arrow-right-white.svg);
} 
 
.link-fill{
	background-color:transparent !important;
	border:1px solid #fff;
}

.section-title { 
	font-size: 18px;
	font-weight:normal; 
	color: var(--primary-color);
	position: relative;	
	margin:0 0 25px 0;
	line-height:normal;
	letter-spacing:2px;
	text-transform:uppercase;
	font-family:var(--font-bold);
	
}


 
.caps{
	text-transform:uppercase;
}
.heading {
	font-size: 96px;
	line-height: normal;
	color: var(--black);
	font-weight:normal;
	font-family:var(--heading-font);
}
.heading span {
	color: var(--primary-color);
	 
}

.subheading {
	font-size: 44px;
	line-height:normal;
	font-weight:normal;
	font-family::var(--font-bold);
}
 
.subtitle{
	font-size: 24px;
	line-height:34px;
	 
}

.telnumber{
	display:inline-block;
	padding:15px 25px;
	border:1px solid var(--white);
	font-size:30px;
	font-family:var(--font-bold);
	border-radius:50px;
}
.telnumber i{
	margin-right:10px;
	font-size:24px;
}
a .telnumber{
	color:var(--white);
}
a:hover .telnumber{
	color:rgba(255, 255, 255, 0.8);
}
/****************************/
  
.pos-rel{
	position:relative;
}
 
.invisible{}
    

/*******funfacts***********/

.funfacts{
	position:relative;
	z-index:2;
	width:100%;
	padding:50px 0 0 0;
	margin-top:50px;
	border-top:1px solid var(--white);
     
}
 .funfacts ul{
	justify-content: center;
    display:flex; 
	gap:30px 2%;
	list-style:none;
	margin:0;
	padding:30px 0;	
	color:var(--white);
	font-size:14px;
	text-transform:uppercase; 
}
.funfacts ul li{
	flex: 0 0 22%;
	margin:0;
	padding:0;
	border-right:1px solid var(--white);
	text-align:center;
}
.funfacts ul li:last-child{
	border-right:0;
	}

.funfacts ul li h2{
	font-size:60px;
	line-height:normal;
	font-weight:normal;	
	font-family:var(--font-bold);	 
	text-align:center;
	margin:0;
	
}	
.funfacts p{
	margin:0;
}
/*******funfacts end***********/


/*************** brand-logos***************/

.brand-logos{ 
    width: 100%;
    display: flex;
	justify-content: center;
 
}
.brand-logos ul{
	width:100%;
	display: flex;
	flex-wrap: wrap; 
	margin:0;
	padding:0;
	list-style:none;
	justify-content: center;
	gap:0 4%;
 
}
.brand-logos ul li{
	flex: 0 0 16.8%;
	padding:0;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	text-align:center;
	justify-content: center; 
	border-bottom:2px solid var(--black);
}
 .brand-logos ul li:hover{
	 
}
  .brand-logos ul li img{   
    width:100%;
		-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
  }
 
  .brand-logos ul li:hover img{
    filter: grayscale(100%);  
  }



/****************BRAND SCROLLING SETTINGS***************/

.brandscroll{
	background-color:var(--white);
	position:relative;
	z-index:2;
	margin-top:-40px;
	padding:0 40px;
}


/****************BRAND SCROLLING SETTINGS***************/

  

/********************/

 
.display-style{
	width:100%;
	padding:50px;
	display:block;
	position:relative;
}
.display-style:after{
	width:0;
	height:4px;
	position:absolute;
	left:0;
	bottom:0;
	content:'';
	background-color:var(--primary-color);
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.display-style:hover:after{
	width:100%;
}

.display-style a{
  color:var(--body-color);
	 
}
.display-style:hover{
	 box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
	
	 
}
 .display-style a:hover{
 	color:var(--body-color);
	 
} 
 .shadow-box{
	box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
	}
	
/*--------------------------------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;
}

/**********/

.dummy-layer{}

 .rotating-circle{
	width:180px;
	height:180px;
	display:inline-block;
	background-color:var(--white);
	position:relative;
	z-index:2;
	border-radius:50%;
 
}
.rotating-circle:after {
	width:100%;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	content:'';
	background-image:url(../images/rotation-text.svg);
	background-repeat: no-repeat;
	background-position: center  center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	-webkit-animation: rotation 20s infinite linear;

}
.rotating-circle:before{
	width:100%;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	content:'';
	z-index:6;
	background-image:url(../images/emmay-icon.svg);
	background-repeat: no-repeat;
	background-position: center  center;
	border-radius:50%;
	/*-webkit-animation: rotation2 20s infinite linear;*/
	background-size:70%;
}
@-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**********************/

.ms-icon{
	margin:0;
	padding:0;
	vertical-align:middle;
	font-size:70px;
} 
.iconic{
	width:100%;
	display:block;
	position:relative;
	padding:0 0 0 110px;
	border-bottom:1px solid rgba(0, 0, 0,0.1);
}
.iconic:last-child{
	border-bottom:0;
}
.iconic h2{
	font-size:20px;
	margin:0 0 15px 0;
	line-height:30px;
	color:var(--primary-color);
 
}
.webicon{	
	position:absolute;
	left:0;
	top:-5px;	
	width:80px;
	height:80px;
	padding:10px;
	border-radius:50%;
	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(--secondary-color);
}
 
/**********************news**********************/
 .news-style{
	background-color:var(--white);	 
	border-radius:14px;
	overflow:hidden;
	box-shadow: 0 15px 80px 0 rgba(0,0,0,0.17);
} 
.news-desc{
    padding: 40px 40px;
    color: var(--body-color);
	background-color:var(--white);
	z-index:1;
}
.date{
    font-size: 12px;
	color:#666;
	margin:0 0 10px 0;
	letter-spacing:2px;
 
}
.date i{
	margin:0 10px 0 0;
}
.news-desc h2{
  font-size: 20px;
  line-height: 34px;
  margin-bottom: 20px;
  color: var(--body-color);
 
 
}
.news-desc p:last-child{
    margin-bottom:0;
}
.news-desc a{
	 color: var(--body-color);
}

/*******GALLERY GRID*******/

.gallery-grid, .gallery-grid ul{ 
    width: 100%;
    display: flex;
    flex-wrap: wrap;
	margin:0;
	padding:0;
	list-style:none;
}

.gallery-grid ul li{ 
    width: 25%;
	padding:15px;
}

/*************** footer CSS ***************/
.google-map {
	width:100%;
	height:450px;
	border:0;
	margin:0;
	outline:0;
	outline:none;
}

.footer {
	background-color:var(--secondary-color);
	color:var(--white);
	padding:50px 0;
}

.footer-col { 
		 
}


.footer a {
	color:var(--white);
}
.footer a:hover{
	color: rgb(255, 255, 255, 0.7);
}

 
 
.copy {
	 
}
.footer-logo{}
.footer-logo img{
	width:150px;
	display:inline-block;
 
}
 
 
 
 
 
 
.add{
	width:100%;
	position:relative;
	padding:0 0 20px 60px;
	min-height:40px;
}

.add i{
	width:37px;
	height:37px;
	line-height:37px;
	background-color:var(--white);
	color:var(--primary-color);
	font-size:16px;
	margin:0;
	border-radius: 50%;
	position:absolute;
	left:0;
	top:4px;
	text-align:center;
	
}

/******************************/
 


 
 
ul.list {
	margin: 0;
	padding: 0;
	margin-bottom: 30px;
}

ul.list li {
	list-style: none;
    padding: 2px 7px 10px 30px;
    line-height: 26px;
    position: relative;
    color: var(--body-color);
    font-size: 16px;
 
 
}

ul.list li:before {
	/*content: "\f111";*/
	content: "\f138";
	position: absolute;
	top: 1px;
	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:400px;
	border-radius: 20px;
	overflow:hidden;
	display: flex;
	flex-direction:column;
	position: relative;
	align-items: center;
	justify-content: center;
	text-align:center;
	 
}
.banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
		border:0;
		display:block;
}
  
.banner h2 {
	color: var(--white);
	font-weight: normal;
	font-family:var(--heading-font);
	line-height: normal;
	margin:0;
	padding:0;
	font-size:60px;
	position:relative;
	z-index:4;
}
.banner .row-flex{
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	z-index:2;
	text-align:center;
	justify-content: center;
	align-items: center;
}
/************/
  .breadcrumb {
    width: 100%;
    display: flex;
	color:var(--white);	
	margin:20px 0 0 0;
	align-self: end;
	position:relative;
	justify-content: center;
	font-size:12px;
	text-transform:uppercase;
	letter-spacing:2px;
}
 

.breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 10px 25px;
	background-color:var(--secondary-color);
 
}
    
.breadcrumb li:not(:last-child)::after {
    display: inline-block;
    margin: 0 15px;
    content: " → ";
 
}
 .breadcrumb a{
    color:var(--white);	
}
 .breadcrumb a:hover{
   color:rgba(255, 255 ,255, 0.7);
 
}
 .breadcrumb  span{
 color:var(--white);	
}

 
/*.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: url(../images/parallax/bg1.jpg);
}

.bg2 {
	background: url(../images/parallax/bg2.jpg);
}

.bg3 {
	background: url(../images/parallax/bg3.jpg);
}


/*********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: 1px solid var(--primary-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;
}

/**********forms**************/
form {
	margin: 0;
	padding: 0;
}

*:focus {
	outline: none;
}

.fieldset {
	width: 100%;
	padding:20px 0;
	background-color: none;
	background-color: transparent;
	display: block;
	border: 0;
	box-shadow: 0 1px 0 0 #000;
	margin: 0;
	color: var(--body-color);
	font-size: 16px;
 
}

.sendbutton {
	width: auto;
	height: auto;
	border: 0;
	outline: 0;
	margin: 0;
	display: inline-block;
	color:var(--white);
	font-size: 30px;
	cursor: pointer;
	vertical-align: top;
	padding: 15px 30px;
	 border-radius: 10px;
	text-align: center;
	background-color: var(--primary-color);
	text-transform: uppercase;
	font-weight: normal;
	font-family:var(--heading-font);
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

.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);
}

 

 

/*************** backToTop *************/
 .progress-wrap {
     position: fixed;
     right: 10px;
     bottom: 10px;
     height: 45px;
     width: 45px;
     cursor: pointer;
     display: block;
     border-radius: 50px;
	 background-color:var(--white);
    /* 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(--primary-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(--primary-color);
     stroke-width: 4;
     box-sizing:border-box;
     -webkit-transition: all 200ms linear;
     transition: all 200ms linear;
}
 
h2.thanku-head {
    font-size: 45px;
    font-weight: 800;
    font-family: var(--heading-font);
    display: block;
    width: 100%;
	position: relative;
	margin-bottom: 20px;
}
.thank-page p {
    text-align: center;
    width: 100%;
    font-size: 18px;
}
.thank-page img {
	width: 55px;
	margin-bottom: 35px;
}
.thank-page {
	justify-content: center;
	position: relative;
}

/************************************* 1400px *************************************/
@media only screen and (max-width: 1320px) {
	.container {
		width: 100%;
		padding:0 20px;
	}
	
	
header,
header.smaller {
	align-items: center;
	padding:10px 0;

			 
}

 
 
.logo{
	 
 
}
.logo img , header.smaller .logo img{
	width:150px;
	}
  
.head-group {
	gap:0 20px;
	align-items: center;
	flex-direction: row-reverse;
}

 
	
.call-button{ 
	padding:0;
	border:0;
}
.call-button i{
   width:30px;
   height:30px;
   font-size:14px;
   position:relative;
   left:auto;
   top:auto;
   }
 

.phone-number{
  display:none;
  } 
 
 
 
  
}

/************************************* 1024px *************************************/
@media only screen and (max-width: 1024px) {
 
 
 

}

/************************************* 980px *************************************/
@media only screen and (max-width: 980px) {
.gallery-grid ul li{ 
    width: 33.333333333333%;
	padding:10px;
}
 
}

/************************************* 900px *************************************/
@media only screen and (max-width: 900px) {
body {

	line-height: 24px;

}


 .funfacts{
	 
	 }

 .funfacts ul{
	gap:0;
	padding:20px 0;	
	font-size:12px; 
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.funfacts ul li{
	flex: 0 0 50%;
	padding:20px;
	margin:-1px 0 0 -1px;
	line-height:20px;
	border:1px solid #fff !important;
 
}
 
.funfacts ul li h2{
	font-size:24px;
 
}
 	
.brand-logos ul li{
	flex: 0 0 31%;
	 
 
}

 
.display-style{ 
	padding:20px;

}
.telnumber{	 
	font-size:20px; 
}

.telnumber i{
	font-size:20px;
}
.heading {
  font-size: 30px;
 
}
  
.subheading{
	font-size:28px;
}
.subtitle{
	font-size:20px;
	}
.hover-effect h2{
	padding:20px;
	font-size:20px;
}
.hover-effect h2:before{
	right:20px;
	}
.fslarg{
	font-size:20px !important;
}	
.footer-col, .footer-logo { 
	width:100%;
	text-align:center;
		 
}

}

/************************************* 767px *************************************/
@media only screen and (max-width: 768px) {

body{
	font-size:14px;
}
 

hr {
	margin: 20px 0;

	}
	



.link a {
 
	line-height: 14px;
	font-size: 14px;
	 
 
}
 
.footer {
	padding:20px 0;
} 	
.footer-col { 
	padding:15px 0;
	width:100%;
}
 
 
.footer-logo img{
	width:100px; 
}
 
 
.scroll-head{
	padding:10px 20px;
	font-size:18px;
	
 
}
 .scrolling-text-wrap {
    width:100%;
	position:relative;
	left:auto;
	bottom:auto;
	display:block;
}
.scroll h2 {
  font-size: 14px;
  padding:15px 20px;
  background: url(../images/donts/png);
  background-color:var(--primary-color);
  color:var(--white);
}

.RightToLeft {
  animation: RightToLeft 8s infinite linear;
}

.banner { 
	 height: 150px;
	}
	
.banner h2 {
	font-size:30px;
}

.breadcrumb {
	margin:0 0 20px 0;
	font-size:14px;
}


.breadcrumb ul {
    padding: 8px 15px;
}

 
.head-style{
	padding:15px 20px;
	font-size:14px;
}
  
 
 
.display-style{ 
	padding:20px;

}
.gallery-grid ul li{ 
    width: 50%;
	padding:5px;
}
  .content-bx{
	border-radius: 10px;
	padding:20px;
	}	
.hr {
	margin: 40px 0;
 
}	
}

/************************************* 640px *************************************/
@media only screen and (max-width: 640px) {
 
 .iconic{
	padding:0 0 20px 90px;
	 
}

.webicon{	
	width:60px;
	height:60px;
	padding:10px;
	top:0;
 
}	
 
.sendbutton {
	 
	font-size: 20px;
	padding: 15px 20px;
	 
} 
/****************BRAND SCROLLING SETTINGS***************/

 .news-desc {
  padding: 30px;
 
}
}

/************************************* 480px *************************************/
@media only screen and (max-width: 480px) {
	 
 
 
 .rotating-circle{
	width:100px;
	height:100px;
	 
}
 
 

}

/************************************* 360px *************************************/
@media only screen and (max-width: 360px) {}

/************************************* 320px *************************************/
@media only screen and (max-width: 320px) {}