@charset "utf-8";

 
 
/* font-family: "Poppins", sans-serif;*/

/*************** DEFAULT CSS ***************/
:root {
	--body-font:"Poppins", sans-serif;
	--body-color: #3E3E3E;
	--primary-color: #1C1951;
	--secondary-color: #307AF6;
	--tertiary-color: #00FFFC;
	--quaternary-color: #FFB3C5;	
	--black: #000;
	--white: #fff;
	--grey: #DCDDDE;	
	--grey-light: #F8F8F8;
	--grey-dark: #6D6D6D;
	--font-weight-light:400;
	--font-weight-normal:400;
	--font-weight-medium:500;	
	--font-weight-bold:600;		 	 
	--heading-font:"Poppins", sans-serif;
 

}

body {

	font-family: var(--body-font);
	font-size: 18px;
	font-style: normal;
	line-height: 30px;
	/*letter-spacing: -.1em;*/
	font-weight: var(--font-weight-normal);
	color: var(--body-color);
	text-decoration: none;
	margin: 0px;
	-webkit-font-smoothing: antialiased;
	padding: 0;
	background: var(--white);

}


/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}
 
::-webkit-scrollbar-track {
    background-color: var(--primary-color);
    -webkit-border-radius: 10px;
    border-radius: 10px;
 
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: var(--secondary-color);
}

html {
	scroll-behavior: smooth;
	overflow-x:hidden;
}

* {
	-webkit-box-sizing: border-box;
	-mox-box-sizing: border-box;
	box-sizing: border-box;
}

::selection {
	background: var(--primary-color);
	/* Safari */
	color:var(--white);
}

::-moz-selection {
	background: var(--primary-color);
	/* Firefox */
	color:var(--white);
}

a {
	color: var(--body-color);
	text-decoration: none;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

a:hover {
	color: var(--secondary-color);
}

p {
	margin: 0px 0 30px 0;
	clear: left;
	padding: 0;
	font-weight: normal;
	font-size: 100%;
 
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 25px 0;
	padding: 0;
	font-weight: normal;
}

.hr {
	margin: 30px 0;
	height: 1px;
	border: 0;
	border-top: 1px solid rgba(0, 0, 0 ,0.2);
	display: block;
	width: 100%;
	height:1px;
	position: relative;
}
 
img {
	border: 0;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;

}

a img {
	border: 0;
}

/*-----------text styles------------*/


.text-white {
	color: var(--white) !important;
}

.text-black {
	color: var(--black) !important;
}

 
.text-blue {
	color: var(--secondary-color) !important;
}
 
.text-center {
	text-align: center;
}
.text-right{
	text-align:right;
}

.text-justify {
	text-align: justify;
}

 

/*-----------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-grey-light {
	background: var(--grey-light);
 
}
.bg-white {
	background: var(--white)
}


/*************** PRELOADER ***************/

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color:var(--white);
	z-index: 999999;
}

#status {
	width: 100px;
	height:  100px;
	position: absolute;
	/*background-color:var(--white);*/
	left: 50%;
	top: 50%;
	background-image: url(../images/al-osool-logo.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:100px;
	margin: -50px 0 0 -50px;
}

 

/***************listing ***************/
 
 .full-border{}
 
.full-border  ul li{ 
 	 border:0 !important;
	 outline:1px solid #494774 !important;
  }

 
 
 .info-col{ 
    width: 100%;	
    display: flex;
    flex-wrap: wrap; 
	background: var(--seondary-color);
	color:#fff;
}
 
.info-col ul, .info-col ul li{ 
    width: 100%;
    display: flex;
    flex-wrap: wrap;
	margin:0;
	padding:0;
	list-style:none;
 
}
.info-col ul li{ 
    width: 33.33333333333333%;
	aspect-ratio: 1 / 1;
	margin:0 !important;
	padding:100px 40px;
	position:relative;
	border-right:1px solid #494774;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;    
}
.info-col li:after{
	width:0;
	height:100%;
	right:0;
	top:0;
	background-color:rgba(0 ,0 ,0 ,0.2);
	content:'';
	z-index:-1;
	position:absolute;
	border-right: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; 
 	 
	}
	
.info-col li:hover:after{
	left:0;
 	width:100%;
 	 
	}
	
.info-col ul li:last-child{ 
	border-right:0;
    
}
.info-col h2{
	font-size:34px;
	line-height:normal;
	font-weight:var(--font-weight-bold);
}

.team-style{
	background-color:var(--grey-light);
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	 
}
.team-style:hover{
	background-color:var(--primary-color);
	color:var(--white);
	 
}
.team-style:hover h2, .team-style:hover h2 span{
	 
	color:var(--white);
	 
}
.team-style-content{
	padding:40px;
	 
}
.team-style h2{
	font-size:20px;
	line-height:22px;
	margin:0 0 10px 0;
	font-weight:var(--font-weight-bold); 
	color:var(--primary-color);
}
.team-style h2 span{
	font-size:14px;
	text-transform:uppercase;
	color:var(--body-color);
	margin-top:10px;
	display:inline-block;
	}
.team-style p:last-child{
	 
	font-size:14px;
	line-height:20px;
	}

.team-grid{
	justify-content:center;
	align-items:flex-start;
}
.team-grid .team-style{
	flex:0 1 380px;
	max-width:380px;
	display:flex;
	flex-direction:column;
	overflow:hidden;
}
.team-grid .hover-effect{
	height:360px;
	background-color:var(--grey);
}
.team-grid .hover-effect img{
	width:100%;
	height:100%;
	object-fit:cover;
	object-position:center top;
}
.team-grid .hover-effect img.team-photo-abdul{
	object-position:center 46%;
}
.team-grid .team-style-content{
	padding:28px 30px 32px;
	display:flex;
	flex-direction:column;
}
.team-grid .team-style h2{
	min-height:96px;
	margin-bottom:16px;
}
.team-grid .team-style h2 span{
	line-height:18px;
	text-transform:none;
}
.team-summary{
	min-height:96px;
	margin-bottom:20px;
	font-size:15px;
	line-height:24px;
}
.team-details{
	border-top:1px solid rgba(28, 25, 81, 0.16);
	padding-top:16px;
}
.team-details summary{
	color:var(--secondary-color);
	cursor:pointer;
	display:flex;
	align-items:center;
	justify-content:space-between;
	font-size:14px;
	font-weight:var(--font-weight-bold);
	line-height:20px;
	list-style:none;
}
.team-details summary::-webkit-details-marker{
	display:none;
}
.team-details summary:after{
	content:"+";
	width:24px;
	height:24px;
	border:1px solid currentColor;
	border-radius:50%;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	margin-left:15px;
	flex:0 0 24px;
}
.team-details[open] summary:after{
	content:"-";
}
.team-details-body{
	padding-top:18px;
}
.team-details-body p{
	font-size:14px;
	line-height:23px;
	margin-bottom:16px;
}
.team-details-body p:last-child{
	margin-bottom:0;
}
.team-style:hover .team-details{
	border-color:rgba(255, 255, 255, 0.28);
}
.team-style:hover .team-details summary{
	color:var(--white);
}
.team-style:hover .team-details summary:after{
	border-color:var(--white);
}

@media only screen and (max-width:640px) {
	.team-grid .team-style{
		flex:0 1 100%;
		max-width:420px;
	}
	.team-grid .hover-effect{
		height:320px;
	}
	.team-grid .team-style h2,
	.team-summary{
		min-height:0;
	}
}
/*********************************/

.container {
	width: 1360px;
	margin: 0 auto;
}
.fullheight {
	width: 100%;
	min-height:100vh;
	overflow:auto;
 
} 
.fullwidth {
	width: 100%;
	display: block;
} 

.img-rounded{
	border-radius: 50%;
	overflow:hidden;
	}
.corner-radius{
	border-radius: 50%;
	}	
 
/*************HOVER EFFECT*******/

.hover-effect{
	width:100%;
	position:relative;
	overflow:hidden;
	/*border-radius: 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: 100px;
	width:100%;
 
}

 
 
 
 
/*********************************************/ 
 
	
header{
	 width:100%; 
	 background-color:var(--white);
}
 

.header{
    width:100%;
	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	background-color:var(--white);
	align-items: center;
	position:relative;
	left:0;
	top:0;
	z-index:3;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
 
 
header.smaller .header {
	position:fixed;
	background-color:var(--grey-light); 
	}
	
.nav-group{
	 display: flex;
	 align-items: center;
	 gap: 0 20px;

 }
 
header.smaller .nav-group{
	 display: flex;
	 
	 } 
.logo { 
	padding:0 0 0 100px;
	
}

.logo img {
	width:150px;
	display:block;
}
header.smaller .logo img{
	width:120px;
}


.top-info{
	position:relative;
	z-index:2;
	display: flex;
	align-items: center;
	color:var(--white);
	padding:40px 50px;
	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;
} 
.top-info:hover{
	color:var(--white);
	background-color:var(--secondary-color);
}
.top-info a{
	color:var(--white);
}
.top-info a:hover{
	color:var(--white);
	 
}
header.smaller .top-info{
	padding:20px 50px;
}
.phone{
	font-size:14px;
	font-weight:var(--font-weight-medium);
} 
.phone i{
	 margin-right:10px;
} 
/***********social ***********/

.bordered{}
.bordered a{
	border:1px solid var(--white);
	}
.bordered a:hover{
	border:1px solid var(--primary-color);
	}
.link {}

.link a {
	/*border-radius: 50px;*/
	color: var(--white);
	font-size: 14px;
	line-height:54px;
	height:54px;
	letter-spacing:1px;
	font-weight:var(--font-weight-bold);
	padding: 0 70px 0 30px;
	font-style: normal;
	display: inline-block;
	position: relative;
	margin:0;
	background-color:var(--secondary-color);
	
}

.link a:before{
	width:50px;
	height:100%;
	position:absolute;	
	top:0;
	right:10px;
	content:'';	 
	background-image: url(../images/icons/arrow-right-white.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:20px;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
 
	
} 
 
.link a:hover:before{
	right:5px;
}
 
.link a:hover {
 		background-color:var(--primary-color); 
	 
} 

.caps{
	text-transform:uppercase;
}
 
.heading , .subheading{
	line-height:normal;
	color:var(--black);	
	letter-spacing: -.05em; 
}
.heading{
	font-size:50px;
	line-height:70px;
}
.heading span , .subheading span{
	color:var(--secondary-color);
}
.bold, strong{
	font-weight:var(--font-weight-bold);
}

.subheading {
	font-size: 26px;
}
 
.subtitle{
	font-size: 22px;
	font-weight:normal;
	line-height:normal;
}

.page-title{
	text-transform:uppercase;
	letter-spacing:5px;
	font-size:14px;
	line-height:18px;
	font-weight:var(--font-weight-bold);
	margin:0 0 20px 0 !important;

}

/****************************/
  
.pos-relative{
	position:relative;
}
 
.invisible{}
	.leve2{
	position:relative;
	z-index:2;
	} 
 /*******categories grid***********/
 
 
.brands-listing{} 


.brands-listing ul li img{   
	width:100% !important;
	display:block;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
  }
 
.brands-listing ul li:hover img{
    
	filter: grayscale(100%);
  }
  
.brands-listing ul li{ 
	flex: 0 0 16.66666666666667% !important;
	height:auto !important;
	padding:30px !important;
	}
/****************SCROLLING TEXT***************/

 .scrolling-text-wrap {
  width:100%;
  padding:50px 0;
  overflow-x:hidden;
  background-color:var(--secondary-color);
  border-top:1px solid rgba(255 ,255 ,255 ,0.2);
 
 }

.scroll {
  white-space: nowrap;
  margin: 0;
}

.scroll div {
  display: flex;
  gap: 2em;
  
  
}

.scroll h2 {
  font-size: 50px;
  line-height: 70px;
  letter-spacing: -.05em; 
  color: var(--white);
  font-weight: var(--font-weight-bold);
  margin:0;
}
.scroll h2 span{
	font-weight: var(--font-weight-light);
	display:inline-block;
	margin:0 20px;
	position:relative;
	top:7px;
	}
.RightToLeft {
  animation: RightToLeft 20s infinite linear;

  
}

@keyframes  RightToLeft {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}

.LeftToRight {
  animation: LeftToRight 20s infinite linear;
}

@keyframes  LeftToRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0%);
  }
}

  

/*******funfacts***********/


 
.funfacts, .funfacts ul{
	width:100%;
	display: flex;
	flex-wrap: wrap;
	margin:0;
	padding:0;
}

.funfacts ul{ 
	list-style:none;
	margin:0;
	font-size:16px;
  
}

.funfacts ul li{
	flex: 0 0 25%;
	margin:0;
	padding:50px 30px;
	text-align:center;
	border-right:1px solid rgba(255 ,255 ,255 ,0.2);
}
 	
    
.funfacts ul li:last-child{ 
	border-right:0;
    
}
.funfacts ul li h2{
	font-size:50px;
	line-height:50px;
	margin:0;
	font-weight:var(--font-weight-bold);		 
 
}	
.funfacts p{
	font-weight:var(--font-weight-bold);
	margin:0 0 15px 0;
	line-height:normal;
}
 
 
 
 
 
/*****************grid colums**********/


.display-style{
	box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);	 
	display:block;
	position:relative;
	background-color:var(--white);
	
}
.display-style:after{
	width:100%;
	height:2px;
	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:0;
	right:0;
	left:auto;
}

.display-style a{
  color:var(--body-color);
	 
}
 
 .display-style a:hover{
 	color:var(--body-color);
	 
}

.display-style h2{
	margin:0;
	padding:0 0 25px 0;
	font-size:16px;
	text-align:center;
}
/****service style*********/  


.service-style-holder{
	width: 100%;
    display: flex;
    flex-wrap: wrap;
	margin:0 0 100px 0;
	align-items: center;
 
}
.service-style-holder(even){
     flex-direction: column-reverse;
}
.service-img{
	width: 25%;
	position:relative;
     
}
.service-img:before, .service-img:after{
	width: 100px;
	height:50px;
	position:absolute;
	top:0;
	right:0;
	content:'';
	background-color:var(--white);
	z-index:5;
	
}
 .service-img:after{
	width: 50px;
	height:100px;
	 
	
}
.service-content{
	width: 75%;
	padding:0 80px;
 

}
.service-content h2{	 
    line-height:normal;
	letter-spacing: -.05em;
	color:var(--secondary-color);  
	font-size: 26px;
	color:var(--black);	
	font-weight:var(--font-weight-bold);
}

.service-content h3{
  	font-size: 18px;
	line-height:2px;
  	margin-bottom: 10px;
  	font-weight:var(--font-weight-bold);
	color:var(--secondary-color);
	 
  }
/*--------------------------------scroll-------------*/

.sideScroll-wrap{
	 background-color:var(--primary-color);
	 width:100%;
	 display:flex;
	 overflow:hidden;
 }

.sideScroll {
  
  white-space: nowrap;
  position: relative;
  color: white;
  display: inline-block;
  animation: sideScroll 20s linear infinite;
  padding:15px 0;
 
}

.sideScroll p{
  font-size: 22px;
  line-height:22px;
  color: var(--white);
  font-weight: 500;
  display: flex;
  align-items: center;
  margin:0;
}
.sideScroll p .sep {
	font-size: 22px;
	line-height:22px;
	display:inline-block;
	width:40px;
	text-align:center;
}

@keyframes sideScroll {
  100% {
    transform: translateX(-2000px);
  }
}

.sep{font-size: 70px;line-height: 59px;font-weight: 300;color: var(--white);width: 30px;/* height: 5px; */overflow: hidden;margin-top: -5px;}

.sidescroll-row{
    overflow: hidden;
    background-color: var(--dark-grey);
    padding: 1px 0;
}

/**********/


 .rotating-circle{
	width:200px;
	height:200px;
	display:inline-block;
	position:absolute;
	left:-100px;
	top:100px;
	z-index:2;
	border-radius:50%;
 
}
.rotating-circle:after {
	width:100%;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	content:'';
	background-image:url(../images/rotation-text.png);
	background-repeat: no-repeat;
	background-position: center  center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	-webkit-animation: rotation 20s infinite linear;

}
.rotating-circle:before{
	width:100%;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	content:'';
	z-index:6;
	background-image:url(../images/b2b.png);
	background-repeat: no-repeat;
	background-position: center  center;
	border-radius:50%;
	/*-webkit-animation: rotation2 20s infinite linear;*/
	background-size:50%;
}
@-webkit-keyframes rotation {
		from {
				-webkit-transform: rotate(0deg);
		}
		to {
				-webkit-transform: rotate(359deg);
		}
}

@-webkit-keyframes rotation2 {
		from {
				-webkit-transform: rotate(0deg);
		}
		to {
				-webkit-transform: rotate(-359deg);
		}
}

 
  
 /**********************news**********************/
  
 /**********************news**********************/
 
.iconic{
	width:100%;
	display:block;
	position:relative;
	padding:0 0 0 120px;
	 
}
.iconic:last-child{
	border-bottom:0;
}
.iconic h2{
	font-size:24px;
	margin:0 0 15px 0;
	line-height:30px;
	font-weight:var(--font-weight-bold);
 
 
}
.webicon{	
	position:absolute;
	left:0;
	top:-5px;	
	width:100px;
	height:100px;
	padding:10px;
	border-radius:50%;
	background-color:var(--white);
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.webicon img{
	display:block;
	width:100%;
}
.webicon:hover{
	background-color:var(--tertiary-color);
}
 
 /*********services style****/
 .service-style {
    width: 100%;
    height: 100%;
    position: absolute;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
    z-index: 1;
    left: 0;
    top: 0;
	color:var(--white);
	padding:30px 30px;        
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 2.4em 2em
}
 .service-style:hover{   
   background-color:rgba(28, 25, 81, 0.8);
}
 .service-style .inner{
 	width: 100%;
	position:absolute;
	left:0;
	bottom:0;
	z-index:2;
	padding:50px;
	background-image: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,1));
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out; 
  }

.service-style:hover.service-style .inner{   
   padding:80px 50px;
   
}
 .service-style .inner  h2{
  	font-size: 22px;
	line-height:30px;
  	margin-bottom: 10px;
  	font-weight:var(--font-weight-bold);
	 
  }
 .service-style .inner p{
  	margin:0;
	
  }
  .service-style .inner p span{
  	font-size:14px;
	padding:0 40px 0 0;
	background-image: url(../images/icons/arrow-right-white.svg);
	background-repeat: no-repeat;
	background-position: right center;
	background-size:20px;
	display:inline-block;
  }
  

/**********************news**********************/
  .bx-shadow{
	background-color:var(--white);	 
	overflow:hidden;
 	box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1); 
}

.gen-desc{
	padding: 40px 40px;
    color: var(--body-color);
	background-color:var(--white);
	position:relative;
	z-index:1;	
	width:100%;
}
 
.date{
    font-size: 14px;
	color:#666;
	margin:0 0 10px 0;
 
}
.date i{
	margin:0 10px 0 0;
}
.gen-desc h2{
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 20px;
  color: var(--body-color);
  font-weight:var(--font-weight-bold);
 
 
}
.article-content .gen-desc h1{
  font-size: 34px;
  line-height: 44px;
  margin-bottom: 25px;
  color: var(--primary-color);
  font-weight:var(--font-weight-bold);
}
.article-content .gen-desc h2.subheading{
  margin-top: 25px;
}
.article-list{
  margin: 0 0 30px 20px;
  padding: 0;
}
.article-list li{
  margin-bottom: 12px;
}
.article-table{
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 30px 0;
  font-size: 16px;
  line-height: 26px;
}
.article-table th,
.article-table td{
  border: 1px solid rgba(28, 25, 81, 0.16);
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}
.article-table th{
  background: var(--primary-color);
  color: var(--white);
  font-weight: var(--font-weight-bold);
}
.article-note{
  font-size: 15px;
  line-height: 24px;
  color: var(--grey-dark);
  border-top: 1px solid rgba(28, 25, 81, 0.16);
  padding-top: 20px;
}
.gen-desc p:last-child{
    margin-bottom:0;
}
 

/*****innerpage products************/
.inner-product{
	border:1px solid #e5e5e5;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.inner-product:hover{
	border:1px solid var(--primary-color);
}

.bluestrip{
	background-color:var(--secondary-color);
	position:relative;
	padding:80px;
	color:var(--white);
	outline: 1px solid rgba(255, 255 ,255 ,0.3);
  	outline-offset: -15px;
}
.bluestrip h2{
	font-size:50px;
	line-height:70px;
	font-family:var(--heading-font);
	font-weight:var(--font-weight-bold );
	letter-spacing: -.05em;
	margin:0 0 10px 0;
}
.bluestrip p{
	font-size:30px;
	line-height:40px;
	font-family:var(--heading-font);
	font-weight:var(--font-weight-medium );
	letter-spacing: -.05em;
	margin:0;
}
.horizontal-strip{
	position:relative;
}
.horizontal-strip:after{
	width:100%;
	height:40%;
	position:absolute;
	left:0;
	bottom:0;
	content:'';
	z-index:-1;
	background-color:var(--primary-color);
}
/*************** footer CSS ***************/
 .footer-logo{
 	width:120px;
	filter: brightness(10000%);
 }
footer {
	padding:100px 0 0 0;
	background-color:var(--primary-color); 
	color:var(--white);
	font-size:80%;
}

footer a , .footer-col a {
	color:var(--white);
}
.footer a:hover, .footer-col a:hover {
	color:var(--secondary-color);
}


.footer-col { 
	flex: 0 0 25%;
	padding:0 20px;
	 
	 
}
 
.footer-col h2{
	font-size:20px;
	line-height:normal;
	padding:0 0 20px 0;
	margin:0 0 20px 0;
	position:relative;
	font-weight:var(--font-weight-bold);
 
} 
 

.footer-col ul, .footer-col ul li{
	margin:0;
	padding:0;
	list-style:none;
}
.footer-col ul li{
	padding:5px 0 5px 30px;
	line-height:normal;
	border-bottom:1px solid rgba(255, 255 ,255, 0.2);
	background-image: url(../images/icons/arrow-right-white.svg);
	background-repeat: no-repeat;
	background-position: left center;
	background-size:15px;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	}
.footer-col ul li:hover{
	padding:5px 0 5px 20px;
}
.footer-bottom {	 
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding:30px 0 ;
	margin-top:50px;
	color:var(--white);
	border-top:1px solid rgba(255, 255 ,255, 0.2);
 
}
 
.footer-bottom a {	 
	color:var(--white);
}
 .footer-bottom a:hover {	 
	color:rgba(255, 255 ,255, 0.8);
}
 
.copy {
	 
}
.footer-logo{}
.footer-logo img{
	width:170px;
	display:inline-block;
	margin-bottom:20px;
}
 
 
 
.social {
 	display:flex;
	vertical-align:middle;
 
}

.social a  {
	width:40px;
	height:40px;
	line-height:40px;
	border-radius: 50%;
	text-align:center;
	color:var(--white);
	font-size:16px;
	margin:5px; 
	display:inline-block;
	text-align:center;
	border:1px solid rgba(255, 255, 255 ,0.5);
 
	 
}

.social a:hover  {
	color: var(--secondary-color);
 
}
 
.address-box, .address-box2{
	padding:40px;
	background-color: var(--primary-color);
	color:var(--white);
} 
 
.address-box2{
	background-color: var(--secondary-color);
	} 
.add{
	width:100%;
	position:relative;
	padding:0 0 0 70px;
	line-height:normal;
	min-height:70px;
	margin-bottom:20px;
	vertical-align:top;
	 
}

.add i{
	width:40px;
	height:40px;
	line-height:40px;
	border:1px solid rgba(255, 255, 255 ,0.5);
	border-radius: 50%; 
	color:var(--white);
	font-size:14px;
	margin:0;
	position:absolute;
	left:0;
	top:4px;
	text-align:center;
	
}
.ext{
	display:inline-block;
	margin-top:10px;
}
 .google-map{
     overflow: hidden;
     width: 100%;
	 height:450px;
	 margin:0;
	 padding:0;
	 outline:none;
	 border:0;
}
/******************************/
 


 
 
ul.list {
	margin: 0;
	padding: 0;
	margin-bottom: 30px;
}

ul.list li {
	list-style: none;
	padding: 2px 7px 10px 30px;
	line-height: normal;
	position: relative;
 
 
 
}

ul.list li:before {
	/*content: "\f111";*/
	content: "\f138";
	position: absolute;
	top: 4px;
	left: 0;
	font-family: "FontAwesome";
	color: var(--primary-color);
	font-size: 16px;
}
 

 

  
/*****************************/



.table-div { 
	overflow-x:auto;
	margin-bottom: 50px;
	}
.table-div td {
  text-transform: uppercase;
}
.table-div h4{
	font-size:20px;
	color:var(--secondary-color);
	font-family:var(--heading-font);
	text-transform:uppercase;
}
table { 
	min-width:100%;
	width:900px;
	border-collapse: collapse; 
	
	}

/* Zebra striping */
tr:nth-of-type(odd) { 
	background: #eee; 
	}

th { 
	background:var(--secondary-color);
	color: var(--white);
	
	}

td, th { 
	padding: 8px 15px !important; 
	border: 1px solid #ccc; 
	text-align: left; 
	font-size: 14px;
	}
 
/************************/
.table-wrap{
	width:100%;
	position:relative;
	display:flex;
	overflow-x:scroll;
} 
/******************************team-style*****************/

 
 

/*************** INNER BANNER ***************/
.banner { 
	width: 100%;
	height:70vh;
	overflow:hidden;
	display: flex;
	flex-direction:column;
	position: relative;
	align-items: center;
	justify-content: center;
	text-align:center;
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-image: url(../images/backgrounds/banner.jpg);
}
.banner:after{
	width: 100%;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	content:'';
	z-index:1;
	background-color:rgba(28, 25, 81, 0.5);
	background-image: url(../images/a-icon.svg);
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size:20%;
}
.banner h2 {
	color: var(--white);
	font-weight:var(--font-weight-bold);
	letter-spacing: -.05em;
	font-size:50px;
	line-height:70px; 
	margin:0;
	padding:0;
	position:relative;
	z-index:2;
}


/*****************************/

.breadcrumb-holder{
	width: 100%;
	padding:50px 0;
	display: flex;
	
}



.breadcrumb {
    
    display: flex;
	color:var(--body-color);	
	margin:0;
	position:relative;
	
}
 

.breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 10px 0;
	border-bottom:1px solid var(--secondary-color);
 
}
.breadcrumb li {
    margin: 0;
	font-size:14px;
	text-transform:uppercase;
}    
.breadcrumb li:not(:last-child)::after {
    display: inline-block;
    margin: 0 15px;
    content: " → ";
 
}
 .breadcrumb a{
    color:var(--body-color);
}
 .breadcrumb a:hover{
   color:var(--secondary-color);	
 
}
 .breadcrumb  span{
 	color:var(--secondary-color);	
}

 
/*.banner:after{ position: absolute; content: ''; width: 100%; height: 100%; left: 0px; top: 0px; background-color:#000; opacity: .5; }*/
 
 
/*************** JARALLAX ***************/
.jarallax, .cover {
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
} 

 
.bg1 {
	background: url(../images/parallax/bg1.jpg);
}

.bg2 {
	background: url(../images/parallax/bg2.jpg);
}

.bg3 {
	background: url(../images/parallax/bg3.jpg);
	color:#fff;
}

.white-strip{
	width:100%;
	height:200px;
	position:absolute;
	left:0;
	top:0;
	z-index:1;
	background-color:var(--white);
	}
	
/*********file chosen style**************/

input.file{
    display: none;
	}


.fa-upload{
	margin:0 15px 0 0;
}
.custom-file-upload {
    border: 0;
    display: inline-block;
    padding: 14px 20px;
    color: #fff;
    cursor: pointer;
    background-color: var(--primary-color);
    /*border-radius: 6px;*/
    border: 0;

}

.custom-file-upload:hover{
	background-color: var(--secondary-color);
	}
.select-box {
    appearance: none;
    -webkit-appearance: none;
    background-image: url(../images/icons/icon5.svg);
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 14px;
}

/**********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: 25px 50px;
	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;
    /* box-shadow: inset 0 0 0 2px rgb(0 0 0 / 100%);
    */
     z-index: 99;
     opacity: 0;
     visibility: hidden;
     transform: translateY(15px);
     -webkit-transition: all 200ms linear;
     transition: all 200ms linear;
}
 .progress-wrap.active-progress {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
}
 .progress-wrap::after {
     position: absolute;
     content: "\f062";
     font-family: 'Font Awesome 5 Free';
     font-weight: 900;
     text-align: center;
     line-height: 45px;
     font-size: 20px;
     color:var(--secondary-color);
     left: 0;
     top: 0;
     height: 45px;
     width: 45px;
     cursor: pointer;
     display: block;
     z-index: 1;
     -webkit-transition: all 200ms linear;
     transition: all 200ms linear;
}
 .progress-wrap svg path {
     fill: none;
}
 .progress-wrap svg.progress-circle path {
     stroke: var(--secondary-color);
     stroke-width: 4;
     box-sizing:border-box;
     -webkit-transition: all 200ms linear;
     transition: all 200ms linear;
}


 
/************************************* 1400px *************************************/

@media only screen and (max-width: 1360px) {
.container {
		width: 100%;
		padding:0 20px;
	}
 
 
	}
@media only screen and (max-width: 1199.98px) {

 
	
 .logo{
	 padding: 10px 20px;
	 width:100%;
	 display: flex;
	 justify-content: center; 
 }
 
.logo img, header.smaller .logo img{
	width:120px;
}
 
 
 .header, header.smaller .header  {
	position:relative;
	left:auto;
	top:0;
	justify-content: center;
	background-color:var(--white); 
	} 
 
 
.nav-group, header.smaller .nav-group{
	width:100%;
	padding:10px 20px;
	justify-content: space-between;
	display: flex;
	flex-wrap: wrap; 
	background-color:var(--primary-color);
	flex-direction: row-reverse;
 
 }
 
 
	 
.top-info, header.smaller .top-info{
	gap: 0;
	padding:0 10px;
	background-color:var(--primary-color);
} 
.phone{
	font-size:16px;
 
} 
}

/************************************* 1024px *************************************/
@media only screen and (max-width: 1024px) {
 
}

/************************************* 980px *************************************/
@media only screen and (max-width: 980px) {

 
 
}

/************************************* 900px *************************************/
@media only screen and (max-width: 900px) {


 
 
	
}

/************************************* 767px *************************************/
@media only screen and (max-width: 768px) {

body{
	font-size:16px;
} 
.heading {
  font-size: 30px;
  line-height:40px;
 
}
.subheading {
  font-size: 20px;
  line-height:30px;
 
}
.bluestrip{
	padding:20px;
 
}
.bluestrip h2{
	font-size: 30px;
  line-height:40px;
}
.bluestrip p{
	font-size:20px;
	line-height:30px;
	margin:0 0 20px 0;
 }


 .service-style .inner  h2, .gen-desc h2{
  	font-size: 20px;
	line-height:28px; 
  } 
.article-content .gen-desc h1{
	font-size: 26px;
	line-height:34px;
}

.gen-desc{
	padding: 20px; 
}
 
 
 
hr {
	margin: 20px 0;

	}
	
.link a {
	line-height:40px;
	height:40px;
	padding: 0 60px 0 30px;	 
}

.link a:before{
	width:40px;	
} 

.info-col ul li{ 
    width: 100%;
	margin:10px 0 !important;
	padding:20px;
	border-right:0;
	border:1px solid rgba(255 ,255 ,255 ,0.2);
    
}
.info-col h2{
	font-size:24px;
	line-height:24px;
	margin:0 0 15px 0;
}
.funfacts{
	 padding:30px 0;
}
.funfacts ul li{
	flex: 0 0 47%;
	padding:20px;
	margin:5px;
	border:1px solid rgba(255 ,255 ,255 ,0.2);
}
 .funfacts ul li h2{
	font-size:30px;
	line-height:40px;
}	
 .scrolling-text-wrap {
  padding:30px 0;
 }
.scroll h2 {
  font-size:30px;
  line-height: 40px;
  
}
footer {
	padding:50px 0 0 0;
 
}
.footer-col { 
	flex: 0 0 100%;
	margin-bottom:25px;
 
}
 
 .footer-col h2{
	font-size:18px;
	line-height:18px;
	padding:0 0 10px 0;
	margin:0 0 10px 0;
}
.footer-bottom {	 
	padding:20px 0 ;
	margin-top:20px;
}
.copy ,.social{
	width:100%;	 
}
.social a  {
	width:30px;
	height:30px;
	line-height:30px;
	font-size:12px;
	 
}
.add{
	width:100%;
	padding:0 0 0 50px;
	min-height:40px;
	 
}
.add i{
	width:30px;
	height:30px;
	line-height:30px;
	font-size:12px;
 }

.banner { 
	height:50vh;
}
 
.banner h2 {	 
	font-size:30px;
	line-height:40px; 
 
}
}

/************************************* 640px *************************************/
@media only screen and (max-width: 640px) {
 
body {
	font-size: 18px;
	line-height:24px;
	}
.service-style-holder{
	margin:0 0 20px 0;
	align-items: flex-start;	
}
 
.service-img{
	width: 100%;
     
}
.service-content{
	width: 100%;
	padding:20px;
 

}
.service-content h2{	   
	font-size: 20px;
 
}

   
 
}

/************************************* 480px *************************************/
@media only screen and (max-width: 480px) {
	 
 
  

}

/************************************* 360px *************************************/
@media only screen and (max-width: 360px) {}

/************************************* 320px *************************************/
@media only screen and (max-width: 320px) {}
