@charset "utf-8";


  @font-face {
    font-family: 'GilroyRegular';
    src: url('../fonts/GilroyRegular.eot');
    src: url('../fonts/GilroyRegular.eot') format('embedded-opentype'),
         url('../fonts/GilroyRegular.woff2') format('woff2'),
         url('../fonts/GilroyRegular.woff') format('woff'),
         url('../fonts/GilroyRegular.ttf') format('truetype'),
         url('../fonts/GilroyRegular.svg#GilroyRegular') format('svg');
}
@font-face {
    font-family: 'GilroyMedium';
    src: url('../fonts/GilroyMedium.eot');
    src: url('../fonts/GilroyMedium.eot') format('embedded-opentype'),
         url('../fonts/GilroyMedium.woff2') format('woff2'),
         url('../fonts/GilroyMedium.woff') format('woff'),
         url('../fonts/GilroyMedium.ttf') format('truetype'),
         url('../fonts/GilroyMedium.svg#GilroyMedium') format('svg');
}
@font-face {
    font-family: 'GilroySemiBold';
    src: url('../fonts/GilroySemiBold.eot');
    src: url('../fonts/GilroySemiBold.eot') format('embedded-opentype'),
         url('../fonts/GilroySemiBold.woff2') format('woff2'),
         url('../fonts/GilroySemiBold.woff') format('woff'),
         url('../fonts/GilroySemiBold.ttf') format('truetype'),
         url('../fonts/GilroySemiBold.svg#GilroySemiBold') format('svg');
}


@font-face {
    font-family: 'GilroyBold';
    src: url('../fonts/GilroyBold.eot');
    src: url('../fonts/GilroyBold.eot') format('embedded-opentype'),
         url('../fonts/GilroyBold.woff2') format('woff2'),
         url('../fonts/GilroyBold.woff') format('woff'),
         url('../fonts/GilroyBold.ttf') format('truetype'),
         url('../fonts/GilroyBold.svg#GilroyBold') format('svg');
}

:root {
	--body-font: "GilroyMedium", sans-serif;
	--body-color: #000;
	--primary-color: #2A378C;
	--secondary-color: #45AADF;
	--tertiary-color: #3A7EBF;
	--quaternary-color:#2D4C9B;	
	--black: #000;
	--white: #fff;
	--grey: #ccc;	
	--grey-light: #F8F8F8;
	--grey-dark: #6D6D6D;
	--grey-bluesh:#F0F7FF;	 	 
	--font-light:'GilroyRegular';
	--font-medium:'GilroyMedium';
	--font-semi-bold:'GilroySemiBold';
	--font-bold:'GilroyBold';
}

body {
	font-family: var(--body-font);
	font-size: 18px;
	font-style: normal;
	line-height: 24px;
	/*letter-spacing: -.1em;*/
	/*font-weight: var(--font-normal);*/
	color: var(--body-color);
	text-decoration: none;
	margin: 0px;
	-webkit-font-smoothing: antialiased;
	padding: 0;
	background: var(--white); 
	 
}


/* *********Scrollbar Styling *************/

::-webkit-scrollbar {
    width: 5px;
}
 
::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-border-radius: 10px;
    border-radius: 10px;
 
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background:  var(--primary-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;
	transition: all 0.4s ease;
}

a:hover {
	color: var(--primary-color);
}

p {
	margin: 0px 0 30px 0;
	clear: left;
	padding: 0;
	 
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 10px 0;
	padding: 0;
	font-weight: normal;
}

.hr {
	margin: 30px 0;
	height: 1px;
	border: 0;
	border-top: 1px solid rgba(0, 0, 0 ,0.2);
	display: block;
	width: 100%;
	height:1px;
	position: relative;
}
 
img {
	border: 0;
	transition: all 0.4s ease;
}

a img {
	border: 0;
}

/*-----------text styles------------*/


.text-white {
	color: var(--white) !important;
}

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

.text-primary {
	color: var(--primary-color) !important;
}
  
 .text-secondary {
	color: var(--primary-color) !important;
}
 
.text-center {
	text-align: center;
}
.text-right{
	text-align:right;
}

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

 

/*-----------background styles------------*/
 
.bg-gradient{
	background-image: linear-gradient(to top right, var(--primary-color), var(--secondary-color));
	color:var(--white)!important;	 
}
.bg-primary {
	background: var(--primary-color);
	 
}
.bg-secondary {
	background: var(--secondary-color);
 
}

.bg-tertiary {
	background: var(--tertiary-color);	
	 
}
.bg-quaternary {
  background: var(--quaternary-color);
 
}
.bg-grey {
	background: var(--grey);
 
}
.bg-grey-light {
	background: var(--grey-light);
 
 }
.bg-grey-bluesh {
	background: var(--grey-bluesh);
 
 }

/*************** PRELOADER ***************/
 
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	z-index: 99999;
    display: flex;
	justify-content: center;
	align-items: center;
	transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

/* The Spinner */
.spinner {
	width: 100px;
	height: 100px;
	/*border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;*/
    border-radius: 50%;
	animation: spin 1s linear infinite;
	background-image: url(../images/loading.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:50%;
}

@keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

#preloader.hidden {
            opacity: 0;
            visibility: hidden;
        }


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

.container {
	width: 1400px;
	margin: 0 auto;
	 
}
.fullheight {
	width: 100%;
	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: 16px; */
}

 .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;
    transition: all 0.4s ease;
}
 .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%);
    transition: all 0.4s 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;
  transition: all 0.4s ease;
}

.hover-effect:hover:after {
	opacity: 0.1;
	width: 100%;
  	height: 100%;
	left: 0;
    bottom: 0;
}
 
section {
	width: 100%;
	display:block;
	position: relative;
}

.section-spacing{
   padding:100px 0;
 }
.sticky{
 	position: -webkit-sticky !important;
	position: sticky !important;
	top: 100px;
	width:100%; 
}

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

 header{
	 width:100%; 
	 position:absolute;
	 left:0;
	 top:0;
	 padding:0;
	 z-index:5;
	 transition: all 0.4s ease;
}
 header.smaller {
	padding:0;
	position: fixed;
	background-image:none;
	background-color:var(--white);
	box-shadow: 0px 10px 20px 0px rgba(123, 123, 123, 0.1);  
}

.header{
    width:100%;
	display: flex;
	padding:15px 0;
    flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	border-bottom:1px solid var(--black);
}
 header.smaller .header{
 	padding:10px 0;
	border-bottom:0;
 }
 .logo { 
	width:300px;
	position:relative;
	transition: all 0.4s ease; 
}
 
.logo img {
	width:100%;
	display:block;
}
header.smaller .logo {
	width:150px;
}
.nav-group{
	display: flex;
    flex-wrap: wrap;
	align-items: center;
	gap:0 20px;
	} 

.header-right{
	display: flex;
    flex-wrap: wrap;
	align-items: center;
	gap:0  10px;
	} 
	
.top-button{}
.top-buttont a{
	display:block;
	padding:0 20px;
	height:37px;
	color:var(--white);
	font-size:14px;
	font-family:var(--font-bold);
	line-height:normal;
	border:1px solid var(--black);
	border-radius:50px;
}  
.top-button a:hover{	 
	border:1px solid var(--primary-color);
	background-color:var(--primary-color);
}   
.call-button{}
.call-button a{
	height:37px;
	width:37px;
	border-radius:50%;
	display: flex;
	text-align:center;
	font-size:14px;
	justify-content: center;
	align-items: center;
	background-image: linear-gradient(to top right, var(--primary-color), var(--secondary-color));
	color:var(--white);	 
}
.call-button a:hover{
	background-image: linear-gradient(to top left, var(--primary-color), var(--secondary-color));
}


/**********info bar ***********/

.infobar{
	display: flex;
    flex-wrap: wrap;
	align-items: center;
 
	}
.infobar .item{
	width:25%;
	display: flex;
	flex-wrap: wrap;
	align-items: center; 
	justify-content: center;
	color:var(--white);	
	gap:5px 5px;
	padding:20px 10px;
	border-right:1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.4s ease;
	}
.infobar .item h2{
	font-size:18px;	
	font-family:var(--font-bold);
	line-height:normal;
	margin:0;
	padding:0;
	 
	}
.infobar .item:hover{
	background-image: linear-gradient(to top right, var(--primary-color), var(--secondary-color));
}
.infobar .item:first-child{
	border-left:1px solid rgba(255, 255, 255, 0.2);
	}
.infobar .item .icon{
	width:50px;
	height:50px;
	padding:10px;
	border-radius: 50%;
 	border:1px solid var(--secondary-color);
	transition: all 0.4s ease;
}
.infobar .item:hover .icon{
 	border:1px solid var(--white);
	background-color:var(--white);
}
.infobar .item .icon img{
	width:100%;
	display:block;
}

.infobar .item:hover .icon img{
	transform: rotate(360deg);
}

/*********************Fun fucats****************************/	 


.facts{     
    display: flex;
    flex-wrap: wrap;
	padding:0;
	justify-content: space-between;
}
 .facts .item{     
    width:30%;
	display:flex;
	justify-content: center;
	text-align:left;
	align-items: center;
	gap: 20px;
	padding:20px 0;
	flex-wrap: wrap; 
	border-bottom:1px solid var(--grey);
	font-size:16px;
	font-family:var(--font-bold);
	line-height:normal;
}
 
 .facts .item h2{
 	font-size:86px;
	margin:0;
	line-height:normal;
	background: -webkit-linear-gradient(var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
	}
	
 .facts .item p{
 	width:40%;
	margin:0;
 }   


.cta-section{
	width:100%;
	height:550px;
	padding:100px;
	display: flex;
	align-items: center;
    flex-wrap: wrap; 
	position:relative;
	z-index:2;
}
.cta-section .heading{
	color:var(--white);
	 
}


/**********service grid*****************/

.service-grid{   
    display: grid;
    grid-template-columns: repeat(3, 1fr);
	position:relative;
	overflow:hidden;
	
}
.service-grid .item{
	position:relative;
}
.item-inner{
	display: flex;
    flex-wrap: wrap;	
	position:relative;
	z-index:2;
	border:1px solid var(--grey);
	min-height:300px;
	margin: -1px 0 0 -1px;
	align-content: center;
	justify-content: space-between;
	flex-direction:column;
	transition: all 0.4s ease;
	
}
 


.item-inner .head{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	padding:25px;
}
.item-inner .head img{
	 width:70px;
	 transition: all 0.4s ease;
}
.item-inner:hover .head img{
	transform: rotate(360deg);
	filter: brightness(0) invert(1);
}

.item-inner .foot{
	padding:25px;
	transition: all 0.4s ease;
}
.item-inner .foot h2{
	font-size:24px;
	font-family:var(--font-bold);
	line-height:normal;
	
}
.item-inner:hover .foot{
	background-image: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,1));
	color:var(--white);
	padding:40px 25px;
	}
.cover-img{
	width:100%;
	height:100%;
	position:absolute;
	left:0;
	bottom:0;	 
	z-index:1;
	opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
 
.service-grid .item:hover .cover-img{
	opacity: 1;
    visibility: visible;
}

.cover-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cover-line{
	position:absolute;
	z-index:3;
	background-color:var(--grey-bluesh)
}
.cv-l, .cv-r{
	width:5px;
	height:100%;
	left:0;
	top:0;
}
.cv-r{
	left:auto;
	right:0;
}
.cv-t, .cv-b{
	width:100%;
	height:5px;
	left:0;
	top:0;
}
.cv-b{
	top:auto;
	bottom:0;
}

/***********social ***********/
  
.link, .link-white {}

.link a,  .link-white a {
	color:var(--black);
	font-size: 16px;
	padding:0  50px 0 25px;
	height:40px;
	font-style: normal;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow:hidden;
	margin:0;
	border-radius: 50px;
	border:1px solid var(--grey-dark);
	font-family:var(--font-bold);
	transition: all 0.4s ease;
	/*background-color:var(--white);*/
}

.link a:hover {
	color:var(--white);
}
.link-white a {
	border:1px solid var(--whtie);
	background-color:var(--white);
}
.link a:before{
	width:0;
	height:100%;
	border-radius: 0;
	position:absolute;	
	background-color:var(--primary-color);
	bottom:0;
	left:0;
	content:'';
	z-index:1;
	transition: all 0.4s ease;
} 
 
.link a:hover:before{
	 width:100%;
	 left:auto;
	 right:0;
	 border-radius: 50px;
}
.link a:after{
	width:37px;
	height:37px;
	position:absolute;
	top:0px;
	right:5px;
	z-index:2;
	content: "";
	transform: rotate(-45deg);
	background-image: url(../images/icons/arrow.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:20px;
	transition: all 0.4s ease;
}
.link a:hover:after{
	transform: rotate(-0deg);
	filter: brightness(0) invert(1);
}

 .link a span{
 	position:relative;
	z-index:2;
	display:inline-block;
 }
.caps{
	text-transform:uppercase;
}
 
.heading-font{
 	font-family:var(--font-bold);
 }
 
.heading{
	font-size:70px;
	line-height:normal;
	 
}
.heading span{ 
	font-family:var(--medium);
	
}
.subheading {
	font-size: 40px;
	line-height:normal; 
	font-family:var(--medium);
}
 
.subtitle{
	font-size: 26px;
	line-height:normal;
	 
 
}
.bold, strong{
	font-family: 'GilroyBold';
}
.medium{
	font-family: 'GilroyMedium';
}
.light{
	 font-family: 'GilroyRegular';
}

.section-title{ 
	font-size:14px;
	text-transform:uppercase;
	letter-spacing:6px;
	font-family:var(--font-bold);
	text-transform:uppercase;
 
}
 /*******TEAM STYLE**********/
 .team-info{
	 padding:20px 0;
	 border-bottom:1px solid var(--grey);
	 font-size:14px;
	 line-height:normal;
	 text-align:center;
}
 .team-info h2{
 	font-size:22px;
	line-height:normal;
	font-family:var(--font-bold);
 }
  .team-info p:last-child{
  	margin:0;
  }
/****************************/
  
.pos-rel{
	position:relative;
}
 
.tint{
	width:100%;
	height:250px;
	left:0;
	bottom:0;
	position:absolute;
	background-color:var(--grey-bluesh);
	z-index:-2;
}
/****************SCROLLING TEXT***************/
 
 .scrolling-text-wrap {
	width:100%;
	position:absolute;
	left:0;
	bottom:22%;
	z-index:-1;
	padding:100px 0;
	overflow-x:hidden !important;
	overflow-Y:hidden !important;
	overflow:hidden !important;
	background-image: linear-gradient(to top right, var(--primary-color), var(--secondary-color));
	
 }
 
.scroll {
  white-space: nowrap;
  margin: 0;
}

.scroll div {
  display: flex;
    
}

.scroll h2 {
  font-size: 50px;
  line-height:50px;
  color:rgba(255, 255, 255, 0.3);	
  font-family:var(--font-bold);
  margin:0;
}
.scroll h2 span{
	width:6px;
	height:6px;
	background-color:var(--primary-color);
	outline-offset: 4px;
	outline:1px solid var(--primary-color);
	border-radius: 50%;
	display:inline-block;
	position:relative;
	margin:0 25px;
	vertical-align:middle
 
	}
.RightToLeft {
  animation: RightToLeft 20s infinite linear;
}

/***********/
 
/*********/
@keyframes  RightToLeft {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}

.LeftToRight {
  animation: LeftToRight 20s infinite linear;
}

@keyframes  LeftToRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0%);
  }
}

 
 /**********************news**********************/
 
 
.news-widget{
  	padding:20px 0;
  	color:var(--body-color);
  }
 .news-widget h2{
  	font-size:22px;
  	line-height:normal;
 
  } 
.date{
	font-size:14px;
	line-height:14px;
	text-transform:uppercase;
	letter-spacing:1px;
	margin:0 0 15px 0;	
	vertical-align:middle;
}
.date i{
	font-size:16px;
	color:var(--secondary-color);
	vertical-align:middle;
	margin:-5px 10px 0 0; 
}
  .news-style p:last-child{
  	margin:25px 0 0 0;
  }

  
  /********************services scroller**********************/
  
.display-style{ 
     width: 100%;
	 aspect-ratio: 1 / 1;
     overflow: hidden;	 
	 position:relative;
	 z-index:2;
	 padding:40px;
	 transition: all 0.4s ease;
}
  
.shadow{	   
	  box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);  
 }
  
.iconic{
	width:100%;
	display:block;
	position:relative;
	padding:0 20px 0 120px;
	min-height:100px;
}
.iconic:last-child{
	border-bottom:0;
}
.iconic h2{
	font-size: 24px;
	font-family:var(--heading-font-medium);
	margin:0 0 15px 0;
	line-height:30px;
}
.webicon{	
	display: flex;
	justify-content: center;
	align-items: center;
	position:absolute;
	left:0;
	top:0;	
	width:80px;
	height:80px;
	text-align:center;
	color:var(--white);
	font-size:30px;
	vertical-align:middle;
	margin:0;
	padding:15px;
	border-radius:50%;
	/*background-image: linear-gradient(to top, var(--primary-color), var(--secondary-color));*/
	background-color:var(--secondary-color);	 
	transition: all 0.4s ease;
}
.webicon img{
	display:block;
	width:100%;
}
.webicon:hover{
	background-color:var(--primary-color);
}
.iconic p:last-child{
	margin:0;
}


 
  
  
/**********************Reviews**********************/
 
 
.m0-p0{
	margin:0 !important;
	padding:0 !important;
}
/*********whatsa app*/ 
.float{
	position:fixed;
	width:50px;
	height:50px;
	bottom:80px;
	line-height:50px;
	right:20px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50%;
	text-align:center;
    font-size:30px;
	/*box-shadow: 2px 2px 3px #999;*/
    z-index:4;
}
.float i{
	transition: all 0.4s ease;
 
}
.float:hover i{
	transform: rotate(0.12turn);
}
.float:hover{
	color:#FFF;
	 
} 
.float h5 {
    width: 100px;
    top: 8px;
	right:50px;
    background-color:var(--white);
	color:var(--grey-dark);
	 box-shadow: 0px 0px 5px gray;
	line-height:12px;
    border-radius: 5px;
	font-size:12px;
	padding:10px;
	position:absolute;
	z-index:-1;
	margin:0;
	transition: all 0.4s ease;
	opacity:0;
}
.float:hover h5{
	 opacity:9;
	 right:60px;
}
 
/*************** footer CSS ***************/
 
.footer {
	padding:80px 0;
	margin:0;
	background-color:var(--quaternary-color);
	color:var(--white);
}

.footer a {
	color:var(--white);
}
 .footer a:hover  {
	color:rgba(255, 255, 255, 0.5);
}  
 
.social {
 	padding:10px 0;
	display:flex;
	vertical-align:middle;
 
}
.social a  {
	width:40px;
	height:40px;
	line-height:40px;
	border-radius: 50%;
	text-align:center;
	color:var(--white);
	font-size:18px;
	margin:5px; 
	display:inline-block;
	text-align:center;
}
.social a:hover  {
	color:var(--white);
	background-color:var(--secondary-color);
}

 /**********************/
 .address-box{
	padding:30px;
	border-radius:20px;
	border-bottom:4px solid var(--secondary-color);
	/*background-image: linear-gradient(to top right, var(--primary-color), var(--secondary-color));*/
	box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);  
	} 
.add{
	width:100%;
	position:relative;
	padding:0 0 0 60px;
	min-height:30px;
	margin-bottom:20px;
	font-size:20px; 
	vertical-align:top;
	line-height:24px;
	 
}
 .add h2{
 	font-size:20px;
	line-height:24px;
	font-weight:var(--font-bold);
	color:var(--primary-color);
	margin:0;
	line-height:normal;
 }
.add i{
	width:35px;
	height:35px;
	line-height:35px;
	background-color:var(--tertiary-color);
	border-radius: 5px;
	color:var(--primary-color);
	font-size:14px;
	margin:0;
	position:absolute;
	left:0;
	top:0;
	text-align:center;
 
	
}
 .google-map{
     overflow: hidden;
     width: 100%;
	 height:450px;
	 margin:0;
	 padding:0;
	 outline:none;
	 border:0;
	 display:block;
}

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

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-wrap{
	width:100%;
	position:relative;
	display:flex;
	overflow-x:scroll;
} 
table { 
	min-width:100%;
	width:900px;
	border-collapse: collapse; 
	
	}

/* Zebra striping */
tr:nth-of-type(odd) { 
	background: #eee; 
	}

th { 
	background:var(--secondary-color);
	color: var(--white);
	
	}

td, th { 
	padding: 8px 15px !important; 
	border: 1px solid #ccc; 
	text-align: left; 
	font-size: 14px;
	} 

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

 
 

/*************** INNER BANNER ***************/
.banner { 
	width: 100%;
	height:400px;
	padding-bottom:25px;
	overflow:hidden;	 
	display: flex;
	flex-direction:column;
	position: relative;
	/*align-items: center;*/
	justify-content: flex-end;
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-image: url(../images/backgrounds/banner.jpg);
	
}
.banner:after{
	width: 100%;
	height:5%;
	position:absolute;
	left:0;
	top:0;
	content:'';
	z-index:1;
	background-image: linear-gradient(to top, rgba(255,255,255,0), rgba(255,255,255,1));
	opacity:0.5;
}
.banner h2 {
	color:var(--white);	
	font-weight:var(--font-bold);
	text-transform:uppercase;	
	font-size:40px;
	line-height:40px;
	margin:50px 0 0 0;
	padding:0;
	position:relative;
	z-index:2;
}
 
 
 /*****************************/

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

.breadcrumb li {
    margin: 0;
	font-size:12px;
	text-transform:uppercase;
	color:var(--grey-dark);
	font-weight:var(--font-bold);
 } 
    
.breadcrumb li:not(:last-child)::after {
    display: inline-block;
    margin: 0 15px;
    /*content: " → "; */
	 content: " / "; 
	 
}
 .breadcrumb a{
   color:var(--grey-dark);	
}
 .breadcrumb a:hover{
   color:var(--secondary-color);	
 
}
 
 
 
 
 
/*************** JARALLAX ***************/
.cover {
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
 
/**************************/
 
 .bg1 {
	background-image: url(../images/backgrounds/bg1.jpg);
	background-attachment:fixed;
	}
 
/**********forms**************/
 
 input.file{
    display: none;
}

.fa-upload{
	margin:0 15px 0 0;
}
.custom-file-upload {
    border: 0;
    display: block;
    padding: 16px 20px;
    color: #fff;
    cursor: pointer;
    background-color: var(--primary-color);
    /*border-radius: 6px;*/
    border: 1px solid var(--primary-color);
}

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

*:focus {
	outline: none;
}

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

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

.sendbutton:hover {	
	background-color:var(--primary-color);
 
}
 
::-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);
}

/****************************/
.ftr-frm-box .fieldset::-webkit-input-placeholder {
	color: var(--white);
}

.ftr-frm-box .fieldset:-moz-placeholder {
	/* Firefox 18- */
	color: var(--white);
}

.ftr-frm-box .fieldset::-moz-placeholder {
	/* Firefox 19+ */
	color: var(--white);
}

.ftr-frm-box .fieldset:-ms-input-placeholder {
	color: var(--white);
}






 
/*************** backToTop *************/
 .progress-wrap {
     position: fixed;
     right: 10px;
     bottom: 10px;
     height: 45px;
     width: 45px;
     cursor: pointer;
     display: block;
     border-radius: 50px;
    /* box-shadow: inset 0 0 0 2px rgb(0 0 0 / 100%);
    */
     z-index: 99;
     opacity: 0;
     visibility: hidden;
     transform: translateY(15px);
     -webkit-transition: all 200ms linear;
     transition: all 200ms linear;
}
 .progress-wrap.active-progress {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
}
 .progress-wrap::after {
     position: absolute;
     content: "\f062";
     font-family: 'Font Awesome 5 Free';
     font-weight: 900;
     text-align: center;
     line-height: 45px;
     font-size: 20px;
     color:var(--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(--black);
     stroke-width: 4;
     box-sizing:border-box;
     -webkit-transition: all 200ms linear;
     transition: all 200ms linear;
}

.why-choose-img{
    display: flex;
    align-items: center;
}
.why-choose-icon{
    position: absolute;
    left: 0px;
    top: auto;
}
.why-choose-list{
    display: flex;
    gap: 6%;
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.why-choose-list span{
    flex: 0 0 63px;
    height: 63px;
    background-image: linear-gradient(to top right, var(--primary-color), var(--secondary-color));
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-family: var(--font-light);
    color: var(--white);
}
.why-choose-list-cnt h6{
    font-size: 22px;
    color: #231f20;
	font-family: var(--font-semi-bold);
}
.why-choose-list-cnt p{
    font-size: 16px;
    color: #231f20;
    margin-bottom: 0px;
}
.why-choose-list:last-child{ border-bottom: none; padding-bottom: 0px; margin-bottom: 0px;}
.expert-claim{
    background-image: url(../images/backgrounds/bg2.jpg);
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px;
}
.expert-claim:after{position:absolute;content:'';left: 0px;top: 0px;background-color: var(--black);opacity: .5;width: 100%;height: 100%;}
.expert-claim .heading{
    position: relative;
    z-index: 1;
    color: var(--white);
}
.expert-claim p{ position:relative; z-index:1;}
.news-box{
    border-bottom: 1px solid #dbdbdb;
    display: block;
}
.news-cnt{
    padding: 30px 0px;
}
.news-cnt h6{
    font-size: 14px;
    text-transform: uppercase;
    color: #231f20;
    margin-bottom: 20px;
    font-family: var(--font-light);
}
.news-cnt h3{
    font-size: 24px;
    font-family: var(--font-light);
    line-height: normal;
}
footer{
    background-image: linear-gradient(to top right, var(--primary-color), var(--secondary-color));
    padding-top: 100px;
}
.footer-wrap{
    display: flex;
    gap: 30px 2%;
    justify-content: space-between;
}
.footer-form{
    flex: 0 0 50%;
    padding-right: 100px;
}
.footer-form .heading{
    color: var(--white);
}
.ftr-form-wrap{
    display: flex;
    flex-wrap: wrap;
    gap: 12px 3%;
}
.ftr-frm-box{
    flex: 0 0 48.5%;
}
.ftr-frm-box .fieldset{
    background-color: transparent;
    color: var(--white);
    border: none;
    border-bottom: 1px solid var(--white);
    border-radius: 0px;
    padding: 0px;
    font-size: 14px;
}
.ftr-frm-box textarea.fieldset{
    height: 60px;
}
.ftr-frm-box-full{
    flex: 0 0 100%;
}
.footer-form .sendbutton{
    background-color: var(--white);
    color: var(--body-color);
    font-size: 14px;
}
.footer-form .sendbutton:hover{ background-color: var(--black); color: var(--white);}
.ftr-head{
    color: var(--white);
    font-size: 20px;
    font-family: var(--font-bold);
    margin-bottom: 20px;
}
.ftr-list{
    margin: 0px;
    padding: 0px;
}
.ftr-list li{
    list-style: none;
    margin-bottom: 6px;
}
.ftr-list li a{
    color: var(--white);
    font-size: 18px;
    font-family: var(--font-medium);
}
.ftr-list li a:hover{padding-left: 5px; color: var(--black);}
.ftr-col p{
    color: var(--white);
}
.ftr-call-mail{
    display: flex;
    gap: 4%;
    margin-bottom: 20px;
}
.ftr-call-mail i{
    flex: 0 0 58px;
    height: 58px;
    display: flex;
    color: var(--primary-color);
    background-color: var(--white);
    border-radius: 50px;
    justify-content: center;
    align-items: center;
}
.ftr-call-mail span h6{
    font-size: 18px;
    margin-bottom: 4px;
    color: var(--white);
    font-family: var(--font-bold);
}
.ftr-call-mail span h4{
    color: var(--white);
    font-size: 24px;
    font-family: var(--font-bold);
}
.copyright{
    margin-top: 50px;
    background-color: rgba(0, 0, 0, .4);
    padding: 20px 0px;
}
.copyright-wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px 1%;
}
.ftr-logo img{
    width: 200px;
}
.copyright-wrap p{
    font-size: 14px;
    color: var(--white);
    margin-bottom: 0px;
}
.copyright-wrap p a{
    color: var(--white);
}
.exprt-serv-wrap{
    margin: 70px 0px 0;
    display: flex;
    background-color: var(--grey-bluesh);
    border-radius: 35px;
    border: 1px solid #d0dce9;
}
.exprt-serv-box{
    flex: 0 0 50%;
    padding: 50px;
}
.exprt-serv-box:first-child{
    border-right: 1px solid #d0dce9;
}
.exprt-serv-box h3{
    font-family: var(--font-bold);
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 15px;
    line-height: normal;
}
.exprt-serv-box p{
    margin-bottom: 0px;
}
.aproch-abt-bg{ position: relative; background-image:url(../images/backgrounds/bg3.jpg); background-position: center; background-repeat: no-repeat; background-size: cover; background-attachment: fixed;}
.aproch-abt-box{
    background-color: rgba(42, 55, 140, .8);
    padding: 50px;
    border-radius: 50px;
}
.aproch-abt-box h3{
    color: var(--white);
    font-family: var(--font-bold);
    font-size: 32px;
    line-height: normal;
    margin-bottom: 20px;
}
.aproch-abt-box p{
    color: var(--white);
}
.msn-vsn-wrap{
     margin-bottom: 50px;
    display: flex;
}
.msn-vsn-box{
    flex: 0 0 50%;
    padding: 50px;
    background-image: linear-gradient(to top right, var(--primary-color), var(--secondary-color));
    border-radius: 0 0 50px 50px;
}
.msn-vsn-box:first-child{
    border-right: 1px solid #fff;
}
.msn-vsn-box h3{
    color: var(--white);
    font-family: var(--font-bold);
    font-size: 32px;
    line-height: normal;
}
.msn-vsn-box p{
    color: var(--white);
    margin-bottom: 0px;
}
.core-valu-wrap{
    display: flex;
    flex-wrap: wrap;
    gap: 35px 3%;
    justify-content: center;
}
.core-valu-box{

flex: 0 0 31.33333333333333%;

/* border: 1px solid #e2e2e2; */

border-radius: 20px;

padding: 30px;

box-shadow: 0px 6px 24px rgba(0, 0, 0, .15);
}
.core-valu-box h4{
    font-family: var(--font-bold);
    font-size: 24px;
    line-height: normal;
}
.core-valu-box p{
    margin-bottom: 0px;
}
.contact-page-frm-wrap{ display: flex; gap: 30px 4%;}

 .contactstyle {
      width: 100%;
      display: inline-block;
      position: relative;
      margin: 0 0 12px;
      padding: 30px 20px;
      background-color: var(--primary-color);
      border-radius: 15px;
  }
  
  


  .coic, .contactstyle a:hover, .label-style {
      color: var(--secondary-color)
  }
  .coic {
      position: absolute;
      left: 0;
      top: 0;
      width: 40px;
      background-color: var(--secondary-color);
      font-size: 16px;
      border-radius: 50px;
      -moz-border-radius: 50px;
      -webkit-border-radius: 50px;
      -ms-border-radius: 50px;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  .coic, .out-inn-links a {
      line-height: 41px;
      height: 40px;
      color: var(--white);
  }
  .contactstyle h4 {
      font-size: 20px;
      margin-bottom: 6px;
      color: var(--white);
      font-family: var(--font-bold);
      line-height: normal;
  }
  .contactstyle p {
      margin-bottom: 0;
      font-size: 18px;
      color: var(--white);
  }
  .contactstyle p a{color:var(--white)}
  .contact-left {
      flex:0 0 34%
  }
  .cont-inn-box{position: relative;padding: 0 0 12px 60px;margin-bottom: 12px;border-bottom: 1px solid #44509d;}
  .cont-inn-box:last-child{margin-bottom:0px;border-bottom: none;padding-bottom: 0px;}
  .contactstyle h3{
      font-size: 24px;
      border-bottom: 1px solid #44509d;
      padding-bottom: 10px;
      margin-bottom: 15px;
      color: var(--white);
      line-height: normal;
      font-family: var(--font-bold);
  }
.contact-right{flex:0 0 62%;}
.contact-right .heading{margin-top:0px;margin-bottom: 25px;font-family: var(--font-bold);font-size: 45px;}
.map{ display: flex; width: 100%; margin-top: 30px;  }
.contact-right .form-group{margin-bottom: 26px;}
.label-style {
    position: absolute;
    top: -11px;
    left: 16px;
    font-size: 16px;
    background-color: #fff;
    padding: 0 5px;
    color: var(--primary-color);
    z-index: 1;
}.form-group{ position: relative; }
.contact-form{
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
}
.contact-form .form-group{
    flex: 0 0 49%;
}
.contact-form .form-group-full{ flex: 0 0 100%;}
.contact-form .form-group .fieldset{height: 55px;}
.contact-form .form-group textarea.fieldset{
    height: 135px;
    padding-top: 15px;
}
.news-blogs-inn-wrap{
    display: flex;
    flex-wrap: wrap;
    gap: 30px 2%;
}
.news-blogs-inn-wrap .news-box{
    flex: 0 0 23.5%;
}
.news-blogs-inn-wrap .news-box .news-cnt h3{
    font-size: 18px;
}
.news-blogs-inn-wrap .news-box .news-cnt h6{ margin-bottom: 10px;}
.news-blogs-dtl-wrap{
    display: flex;
    gap: 25px 3%;
}
.news-blogs-dtl-left{
    flex: 0 0 40%;
}
.news-blogs-dtl-right{
    flex: 0 0 57%;
}
.news-blogs-dtl-right h2{
    font-family: var(--font-bold);
    font-size: 30px;
    line-height: normal;
}
.min-h-165 {
	min-height: 165px;
}
.team-pop-box .subtitle {
	display: block;
    color: var(--black);
	margin-bottom: 20px;
}
.seperator {
	width: 100%;
	height: 1px;
	display: block;
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--grey);
}
.bold.spec-title {
    font-size: 28px;
    margin-bottom: 20px;
}
.mb-0 {
	margin-bottom: 0 !important;
}
.contact-info a i {
	color: var(--secondary-color);
}
.contact-info a {
    font-size: 16px;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    border-right: 2px solid #ccc;
    padding-right: 15px;
}
.contact-info a:last-child {
	border: 0;
	padding-right: 0;
}
.contact-info {
    display: flex;
    gap: 18px;
}


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

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


@media only screen and (max-width: 1180px) {
	.contact-left {
    flex: 0 0 42%;
}
.contact-right {
    flex: 0 0 54%;
}
}



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

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

}

/************************************* 980px *************************************/
@media only screen and (max-width: 980px) {
 
 .contact-form{ flex-direction: column;}
 .contact-right .heading { font-size: 34px;}
 .contactstyle p {
    font-size: 16px;}
 .news-blogs-inn-wrap .news-box {
    flex: 0 0 32%;
}
}

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

 .infobar .item{
	width:50%;
	border:0!important;
	outline-offset: -10px;
	outline: 1px solid rgba(255, 255, 255, 0.2);
}
.heading{
	font-size:40px; 
}
.subtitle{
	font-size:18px;
	line-height:24px;
}
.service-grid{   
    grid-template-columns: repeat(2, 1fr);
}
.news-cnt h3 {
    font-size: 18px;}
	.footer-form { padding-right: 0;}
.copyright-wrap{ flex-direction: column; text-align: center;}
.bold.spec-title {  font-size: 23px;}
}

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

 header,
 header.smaller{
	 position:relative;
	 left:auto;
	 top:auto;	 
}
 header.smaller {
	position: fixed;
	left:0;
	top:0;
}
header,  header.smaller .header{
  	padding:10px 0;
	border-bottom:0;
}
 
.header{
	border-bottom:0; padding: 0px;
}
.nav-group{
	gap:0 10px;
	flex-direction: row-reverse;
	}
.header-right{
	gap:0  8px;
	} 
 .logo { 
	width:140px;
 
} 

.link a {
	font-size: 10px;
	padding:0  30px 0 10px;
	height:30px;
}
.link a:after{
	width:30px;
	height:30px;
	right:0px;
	background-size:15px;
}
.call-button a{
	width:30px;
	height:30px;
}

 .facts .item{     
	gap: 10px;
	font-size:14px;
}
 .facts .item h2{
 	font-size:40px; 	 
	}
.footer-wrap{ flex-wrap: wrap;}	
.footer-form{ flex: 0 0 100%;}
.expert-claim{ padding: 50px;}
.exprt-serv-wrap{ flex-direction: column;}
.exprt-serv-box:first-child {
    border-bottom: 1px solid #d0dce9;
	border-right: none;
}
.exprt-serv-box, .aproch-abt-box{ padding: 35px;}
.msn-vsn-wrap{ flex-direction: column;}
.msn-vsn-box:first-child {
    border-bottom: 1px solid #fff;
	border-right: none;
	border-radius: 0px;
}
.core-valu-box {
    flex: 0 0 48.5%;}
	.core-valu-wrap { gap: 30px 3%;}
	.aproch-abt-bg { background-position: right center;}
.contact-page-frm-wrap, .news-blogs-dtl-wrap{ flex-direction: column;}
    .news-blogs-inn-wrap .news-box {
        flex: 0 0 49%;
    }
.min-h-165 {
    min-height: auto;
}
}

/************************************* 640px *************************************/
@media only screen and (max-width: 640px) {
 
body {
 
	}
 
.banner { 
	height:180px;	 

}
.banner h2 {
	font-size:20px;
	 
}
 
.scroll h2 {
  font-size:50px;
  line-height: 50px;
   
}
 
.RightToLeft {
  animation: RightToLeft 5s infinite linear;  
}
 
.iconic{
	padding:0 0 0 70px;	 
}
.iconic:last-child{
	border-bottom:0;
}
.iconic h2{
	font-size: 20px;
	line-height:28px;
}
.webicon{		 
	width:50px;
	height:50px;
	padding:10px;
	 
} 
.infobar {
	padding:20px 0;
	}
.infobar .item{
	width:50%;
	gap:5px 20px;
	min-height:130px;
	padding:20px 10px;
	flex-direction:column;
	text-align:center;
		outline-offset: -5px;
	outline: 1px solid rgba(255, 255, 255, 0.2);
}
 .infobar .item h2{
	font-size:14px;	
}
 .facts .item{
	 width:100%;
	 justify-content: start;
	 justify-content: space-between;
 }
 .service-grid{   
    grid-template-columns: repeat(1, 1fr);
}
.item-inner{	 
	min-height:200px;
}

.cta-section{
	 background-position: right center !important;
	height:44vh;
	padding:20px;
 
}
.scrolling-text-wrap {
  bottom: 24%;
  padding: 25px 0;}
  .cover-img{ opacity: 1; visibility: visible;}
  .item-inner .foot h2, .item-inner .foot{ color: var(--white);}
  .item-inner .foot {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
    color: var(--white);
    padding: 40px 25px;
}
    .heading {
        font-size: 30px;
    }
}

/************************************* 480px *************************************/
@media only screen and (max-width: 575px) {
.team-info h2 {
    font-size: 18px;}	 
 .team-info p{ font-size: 13px;}
 .ftr-list li a, .ftr-col p {
  font-size: 14px;}
  .ftr-call-mail i {
    flex: 0 0 32px;
    height: 32px;
    font-size: 14px;}
	.ftr-call-mail span h6 {
    font-size: 14px; margin-bottom: 0px;}
	
.ftr-call-mail span h4 {

    font-size: 18px;
}
.ftr-call-mail{ margin-bottom: 6px;}
.ftr-list li {
 
    margin-bottom: 3px;}
	footer{ padding-top: 50px;}
.msn-vsn-box{ padding: 40px;}
.core-valu-wrap{ flex-direction: column;}
}

/************************************* 360px *************************************/
@media only screen and (max-width: 480px) {
    .heading {
        font-size: 26px;
    }
.why-choose-list span {
    flex: 0 0 45px;
    height: 45px; font-size: 22px;}
	.why-choose-list-cnt h6 {
    font-size: 20px;
	}
.exprt-serv-box h3, .aproch-abt-box h3, .msn-vsn-box h3 { font-size: 28px;}
.news-blogs-inn-wrap{ flex-direction: column;}
.contact-info a { border-right: 0; padding-right: 0;}
.contact-info { flex-direction: column;gap: 8px;}
}

/************************************* 360px *************************************/
@media only screen and (max-width: 360px) {
header .link a:after{ display: none;}
header .link a { padding: 0 10px 0 10px;}
header .logo, header.smaller .logo {
    width: 125px;
}
    .exprt-serv-box, .aproch-abt-box {
        padding: 20px;
    }
	.msn-vsn-box{ padding: 30px;}
}