@charset "utf-8";

 
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');
 @import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');

/*************** DEFAULT CSS ***************/
:root {
	--body-font:  "Inter Tight", sans-serif;
	--body-color: #343434;
	--primary-color: #213D7E;
	--secondary-color: #1D439C;
	--tertiary-color: #3483B3;
	--quaternary-color: #00AEEF;	
	--black: #000;
	--white: #fff;
	--grey: #E3E3E3;
	--heading-font:"Inter Tight", sans-serif;
	--font-weight-light:300;
    --font-weight-normal:400;
    --font-weight-semibold:600;
	--font-weight-bold: 700;

}

body {

	font-family: var(--body-font);
	font-size: 18px;
	font-style: normal;
	line-height: 28px;
	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;
}

* {
	-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: 30px 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:#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-white {
	background: var(--white)
}


/*************** PRELOADER ***************/
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color:var(--grey);
	z-index: 999999;
}

#status {
	width: 100px;
	height:  100px;
	position: absolute;
	/*background-color:var(--white);*/
	left: 50%;
	top: 50%;
	background-image: url(../images/meridian-icon.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:50px;
	margin: -50px 0 0 -50px;
}

 

/*************** BACK TO TOP ***************/
 
.column-reverse {
	flex-direction: none;
}

/************LOCOMOTIVE**************/
  
  
 
/*********************************/

.container {
	width: 1400px;
	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;
	}	
	
.img-style{
	width:100%;
	padding:0 0 0 50px;
	position:relative;
}
.img-style:before{
	width:50%;
	height:50%;
	position:absolute;
	left:0;
	bottom:-50px;
	content:'';
	background: url(../images/donts.png);
	background-color:var(--primary-color);
	z-index:-1;
}
/*************HOVER EFFECT*******/

.hover-effect{
	width:100%;
	position:relative;
	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: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: 0;
	width:100%;
	z-index:999;
}

.owl-demo5 .item{
	width:100%;
	float:left;
	padding:10px;
}
.owl-demo5 .item img{
	width:100%;
	display:block;
	border:1px solid #ccc;
	 
}
/*************** HOME PAGE CSS ***************/
 
/*************** FIXED HEADER ***************/

header {
	width: 100%;
	z-index: 999;
	top: 0;
	left: 0px;
	position:absolute;	
	padding:0;
	display:flex;
	justify-content: space-between;
	align-items: center;
	border-bottom:1px solid rgba(255, 255 ,255, 0.2);
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
 header.smaller {
	background-color:var(--black);
	top: 0;
	left: 0px;
	position: fixed;
	border-bottom:0;
	/*-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 {
	height:80px;
	display:block;
}
header.smaller .logo img{
	width:150px;
}

.header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding:15px 0;
	position:relative;
	
}
 header.smaller .header {
	padding:10px 0;
	}

.head-group{
 	display: flex;
	}
	
.header-end{
	display: flex;
	align-items: center;
}
 
 /***********call-button ***********/
 .call-button{
	position:relative;
	padding:0 0 0 50px;
}
 .call-button a{ 
	color:var(--white);
 
}
 .call-button a{ 
	color:var(--secondary-color);
 
}		


.call-button i{
   width:50px;
   height:50px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size:16px;
   background-color:var(--white);
   color:var(--primary-color);
   text-align:center;
   position:absolute;
   left:0;
   top:0
   
   }
 
 .phone-number{
	 display: flex;
	 flex-wrap: wrap;
	 background-color:var(--primary-color);
	 color:var(--white);
	 font-size:16px;
	 line-height:20px;
 	 white-space: nowrap;
	 padding:5px 15px;
	 align-items: center;
 
 } 
 .phone-number span{
 
	 font-size:12px;
  }
/***********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:5px; 
	width:40px;
	height:40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius:50%;
	
}

.social a:hover  {
	color: rgba(255, 255 ,255, 0.5);
}
.fb{
	background-color:#3B579D;
}
.whatsapp{
	background-color:#2AB540;
}
.link {}

.link a {
	color: var(--body-color);
	font-size: 16px;
	line-height: normal;
	font-weight:600;
	padding: 15px 70px 15px 35px;
	line-height: 14px;
	font-style: normal;
	display: inline-block;
	border-radius:50px;
	border:1px solid var(--primary-color);
	position: relative;
	margin:0;
	background-image: url(../images/icons/arrow-blue.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-white.svg);
} 
 
.link-fill{
	background-color:transparent !important;
	border:1px solid #fff;
}

.section-title { 
	font-size: 14px;
	font-weight:400; 
	color: var(--body-color);
	position: relative;	
	margin:0 0 25px 0;
	line-height:normal;
	display:flex;

	
}


.section-title span {
	display:inline-block;
	padding:15px 0px 15px 20px;
	position:relative;
	border-bottom:1px solid var(--grey);
	line-height:normal;
	text-transform:uppercase;
	letter-spacing:6px;
}

.section-title span:before {
	content: '';
	position: absolute;
	top:50%;
	margin-top:-3px;
	left:0;
	width: 7px;
	height: 7px;
	background-color: var(--secondary-color);	 
}
.caps{
	text-transform:uppercase;
}
.heading {
	font-size: 50px;
	line-height: normal;
	color: var(--black);
	font-weight:700;
}
.heading span {
	color: var(--primary-color);
 
}

.subheading, .subtitle {
	font-size: 28px;
	font-weight:700;
	line-height:34px;
}
 
.subtitle{
	font-size: 24px;
 
	 
}
 

/****************************/
  
.pos-relative{
	position:relative;
}
 
.invisible{}
    
/*service-styl*/

.service-style{
	background-color:var(--white);
	font-weight:500;
	padding:40px;
	
}
.service-style a{
	color:var(--black);
	
}
.service-style a:hover{
	color:var(--secondary-color);
	
}
.service-style h2{
	font-size:24px;
	font-weight:500;
	margin:0;
	background-image: url(../images/icons/arrow.svg);
	background-repeat: no-repeat;
	background-position: right center;
	background-size:24px;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
 
}
.service-style h2:hover{
	background-position: 95% center;
 }
 
.display-style{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
	justify-content: center;
	text-align:center;
	padding:50px;
	background-color:#E9E9E9;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	}
.display-style:hover{
    background-image: linear-gradient(to left top,  var(--tertiary-color) , var(--secondary-color));
	color:var(--white);
	}	
.display-style h2{
	font-size: 24px;
	line-height:normal;
	font-weight:00;
}
.display-style p:last-child{
	margin:0;
}
.display-style  .material-symbols-outlined {
	font-size:60px; 
	background: -webkit-linear-gradient(var(--tertiary-color), var(--secondary-color));
 	 -webkit-background-clip: text;
 	 -webkit-text-fill-color: transparent;
	 	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

 .display-style:hover .material-symbols-outlined {
 	color:var(--white) !important;
	-webkit-text-fill-color: var(--white) !important;
	transform: rotate(90deg);
 
 }
 
 .number{
	 width:80px;
	 height:80px;
	 margin-bottom:25px;
	 display: flex;
	 justify-content: center;
	 border-radius: 50%;
	 align-items: center;
	 color:#fff;
	 font-size:24px;
 	 background-image: linear-gradient(to left top,  var(--tertiary-color) , var(--secondary-color));
 }
 
 .connection-hr{
 	width:100%;
 	height:1px;
 	background-color:var(--grey);
	position:absolute;
	left:0;
	top:40px;
	z-index:-1;
 }
/*******funfacts***********/

.funfacts{
	position:relative;
	z-index:2;
     
}
 .funfacts ul{
	justify-content: center;
    display: flex; 
	gap:30px 2%;
	list-style:none;
	margin:0;
	padding:30px 0;	
	color:var(--white);
	font-family:var(--heading-font);
	font-size:14px;
	text-transform:uppercase; 
}
.funfacts ul li{
	flex: 0 0 22%;
	margin:0;
	padding:0;
	border-right:1px solid rgba(255 ,255, 255, 0.2);
	text-align:center;
}
.funfacts ul li:last-child{
	border-right:0;
	}

.funfacts ul li h1{
	font-size:60px;
	line-height:normal;
	margin:0;
	font-weight:normal;		 
	text-align:center;
}	
.funfacts p{
	margin:0;
}
/*******funfacts end***********/

/*******img_grid***********/
.img_grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); /* Minimum width of 120px for each grid item */
    grid-gap: 25px; /* Gap between grid items */
  
 
}
.img_grid div{
    display: flex;
    overflow: hidden;
	position:relative;
    vertical-align: top;
    max-width: 100%;
    /*min-height: 200px;*/
    min-width: 0;
    background-color: var(--white);
	box-shadow: 0 5px 10px 0 rgba(0,0,0,0.111);
 
}
.img_grid div img{
	width:100%;
	display:block;
}
/*************** brand-logos***************/

.brand-logos{ 
    width: 100%;
    display: flex;
	justify-content: center;
	gap:10px 5px;
 
}
.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; 
	 
}
 .brand-logos ul li:hover{
	 
}
  .brand-logos ul li img{   
    width:100%;
	display:block;
	border:1px solid #ccc;
		-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%);  
  }
  
/****************SCROLLING TEXT***************/

.scroll-head{
	background-color:var(--secondary-color);
	color:#fff;
	padding:35px 20px;
	font-size:24px;
	text-align:center;
}
 .scrolling-text-wrap {
    width:85%;
    overflow-x:hidden;
  	background-color:var(--white);
	color:var(--body-color);
    display: flex;
	position:absolute;
	bottom:0;
	right:0;
	z-index:2;
	justify-content: center;
	align-items: center;
}


.scroll {
  white-space: nowrap;
  margin: 0;
  overflow:hidden;
   
}

.scroll div {
  display: flex;
  gap: 2em;
  
  
}

.scroll h2 {
  font-size: 18px;
  color: var(--body-color);
  font-weight: normal;
  margin:0;
  line-height:normal;
 
}

.RightToLeft {
  animation: RightToLeft 30s infinite linear;

  
}

@keyframes  RightToLeft {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}


 .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**********************/
 
.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**********************/

.shadow-bx{
	box-shadow: 0 15px 80px 0 rgba(0,0,0,0.17);
}
.shadow-bx p{
	margin:0 0 10px 0;
	line-height:normal;
}

.shadow-bx p strong{
	color:var(--primary-color);
	font-weight:600;
}

 .news-style{
	background-color:var(--white);	 
	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: 14px;
	color:#666;
	margin:0 0 10px 0;
 
}
.date i{
	margin:0 10px 0 0;
}
.news-desc h2{
  font-size: 26px;
  line-height: 30px;
  margin-bottom: 20px;
  color: var(--body-color);
  font-family:var(--heading-font);
 
}
.news-desc p:last-child{
    margin-bottom:0;
}
.news-desc a{
	 color: var(--body-color);
}

/*****************/

/*************** footer CSS ***************/

.footer-col { 
	flex: 0 0 25%;
	border-left: 1px solid rgba(255, 255, 255, 0.2);
	padding:50px 40px;	 
}
 .footer-col:last-child{
 	border-right: 1px solid rgba(255, 255, 255, 0.2);
	text-align:center;
 }
.footer-col h2{
	font-size:18px;
	line-height:normal;
	margin:0 0 25px 0;
	font-weight:700;
 
} 
.footer-col ul, .footer-col ul li{
	margin:0;
	padding:0;
	list-style:none;
}
.footer-col ul li{
	padding:5px 0;
	}

.footer-col p{
	margin:0 0 10px 0;
} 
footer {
	background-image: linear-gradient(to left top,  var(--tertiary-color) , var(--secondary-color));
	color:var(--white);
	padding:0;	 
}

footer a, .footer-bottom  a, .footer-col a {
	color:var(--white);
}
.footer a:hover, .footer-bottom  a:hover, .footer-col a:hover {
	color: rgb(255, 255, 255, 0.7);
}


 
.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	padding:30px 0 ;
 
 
}
 
 
.copy {
	 
}
.footer-logo{}
.footer-logo img{
	width:170px;
	display:inline-block;
	margin-bottom:20px;
}
 
 
 
 
 
 
.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: normal;
	position: relative;
	color:var(--primary-color);
 
 
}

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:100vh;
	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/banners/banner.jpg);
	
}

.banner h2 {
	color: var(--white);
	font-weight: normal;
	line-height: normal;
	margin:0;
	padding:0;
	font-size:40px;
	position:relative;
	z-index:4;
	font-weight:700;
}

/************/
  .breadcrumb {
    width: 100%;
    display: flex;
	color:var(--white);	
	margin:0 0 50px 0;
	align-self: end;
	position:relative;
}
  .breadcrumb:after{
	width:100%;
  	height:1px;
	position:absolute;
	left:0;
	top:50%;
	content:'';
	background-color:rgba(0, 0, 0, 0.1);
	z-index:-1;
  }

.breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 15px 25px;
	background-color:var(--primary-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;
} 
.banner1 {
	background: url(../images/banners/banner1.jpg);
}
.banner2 {
	background: url(../images/banners/banner2.jpg);
}

.banner3 {
	background: url(../images/banners/banner3.jpg);
}

.banner4 {
	background: url(../images/banners/banner4.jpg);
}

.banner5 {
	background: url(../images/banners/banner5.jpg);
}

.banner6 {
	background: url(../images/banners/banner6.jpg);
}

 

.banner7 {
	background: url(../images/banners/banner7.jpg);
}

/*************************/ 
.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: 20px;
	cursor: pointer;
	vertical-align: top;
	padding: 15px 30px;
	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(--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;
}
 

::-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);
}

 

 

 

/************************************* 1400px *************************************/
@media only screen and (max-width: 1400px) {
	.container {
		width: 100%;
		padding:0 20px;
	}
	
	
header,
header.smaller {
	background-color:var(--black);
	align-items: center;
	border:0;

			 
}

 
.header {
	padding:0;
	align-items: center;
		 
}
.logo{
	padding:10px 0;
 
}
.logo img , header.smaller .logo img{
	height:40px;
	}
  
.head-group {
	border-bottom:0;
	align-items: center;
	gap:0 10px;
	flex-direction:row-reverse; 
}

.header-end{
	padding:0;
	gap:0 5px;

	}
 .call-button{ 
	padding:0;
}
.call-button i{
   width:30px;
   height:30px;
   font-size:14px;
   position:relative;
   left:auto;
   top:auto;
   border-radius:50%;
   }
 

.phone-number{
  display:none;
  } 
 
  .social {
	padding-left:0;
 
}
 .social a  {
	font-size:16px;
	margin:5px; 
	width:30px;
	height:30px;

	
}
  
}

/************************************* 1024px *************************************/
@media only screen and (max-width: 1024px) {
 
 
 

}

/************************************* 980px *************************************/
@media only screen and (max-width: 980px) {

 
}

/************************************* 900px *************************************/
@media only screen and (max-width: 900px) {



 .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;
	border:1px solid #963164 !important;
 
}
.funfacts ul li img{
	width:80px;
}
.funfacts ul li h1{
	font-size:20px;
 
}
 	
.brand-logos ul li{
	flex: 0 0 31%;
	 
 
}
}

/************************************* 767px *************************************/
@media only screen and (max-width: 768px) {

body{
	font-size:14px;
}
 
.column-reverse {
	flex-direction: column-reverse;
	}

hr {
	margin: 20px 0;

	}
	

.banner { 
	 height: 150px;
	}

.link a {
	padding: 10px 40px 10px 15px;
	line-height: 12px;
	font-size:12px;
	background-repeat: no-repeat;
	background-position:90% center;
 
}
 
footer {
	padding:50px 0 0 0;
	line-height:24px;

}
 
.footer-bottom {
	padding:20px 0 ;
	margin-top:20px;
 
}	
.footer-col { 
	flex: 0 0 100%;
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding:20px;	 
 
 
}
 .footer-col ul li{
	padding:5px 0;
	line-height:normal;
	}
.footer-col p{
	margin:0 0 10px 0;
} 
 
.copy {
	flex: 0 0 100%; 
	text-align:center;
	 
}
 	
.footer-logo img{
	width:100px;
	margin:25px 0 20px 0;
}
 
 


 .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;
}
  .breadcrumb {
	margin:0 0 20px 0;
	font-size:14px;
}


.breadcrumb ul {
    padding: 8px 15px;
}

 
.head-style{
	padding:15px 20px;
	font-size:14px;
}
.heading-big{
	font-size:30px;
}

 .flex-grid-four {
	gap:30px 1%;
}

.flex-grid-four .col {
  flex: 0 0 49%;
 
}
 
.gallery .hover-effect img {
   height: 150px;
   
}
.heading {
	font-size: 30px;
}
 
 .connection-hr{
 display:none;
 }
 
}

/************************************* 640px *************************************/
@media only screen and (max-width: 640px) {
 
 .iconic{
	padding:0 0 20px 90px;
	 
}

.webicon{	
	width:60px;
	height:60px;
	padding:10px;
	top:0;
 
}	
 
.owl-demo5 .item{
 
	padding:5px;
}  

}

/************************************* 480px *************************************/
@media only screen and (max-width: 480px) {
	 
 
 
 .rotating-circle{
	width:100px;
	height:100px;
	left:50%;
	top:20px;
	margin:-50px 0 0 -50px;
}
 
 

}

/************************************* 360px *************************************/
@media only screen and (max-width: 360px) {}

/************************************* 320px *************************************/
@media only screen and (max-width: 320px) {}