@charset "utf-8";
  

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

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

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


 

/*************** DEFAULT CSS ***************/
:root {
	--body-font: "NuckleMedium", sans-serif;
	--body-color: #000;
	--primary-color: #105EAA;
	--secondary-color: #D71E35;
	--tertiary-color: #141743;
	--quaternary-color:#FFE2E5;	
	--black: #000;
	--white: #fff;
	--grey: #DCDDDE;	
	--grey-light: #F8F8F8;
	--grey-dark: #6D6D6D;		
	--font-semi-bold:"NuckleSemibold", serif;	 	 
	--heading-font:"NuckleBold", serif;
}

body {

	font-family: var(--body-font);
	font-size: 14px;
	font-style: normal;
	line-height: 26px;
	/*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); 
	overflow-x: hidden;
	 
}

 
/* 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;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

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

p {
	margin: 0px 0 30px 0;
	clear: left;
	padding: 0;
	font-weight: normal;
	font-size: 100%;
 
}

p:last-child{
	margin: 0px;
 
 
}
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: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-primary {
	color: var(--primary-color) !important;
}
  
 .text-secondary {
	color: var(--secondary-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 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) !important;	
	 
}
.bg-quaternary {
  background: var(--quaternary-color);
 
}
.bg-grey {
	background: var(--grey);
 
}
.bg-grey-light {
	background: var(--grey-light);
 }
 
.bg-white {
	background: var(--white);
 }
 
.container {
	width: 1480px;
	margin: 0 auto;
	padding:0 30px;
}
.fullheight {
	width: 100%;
	height:100vh;
	overflow:auto;
} 
.fullwidth {
	width: 100%;
	display: block;
} 
.img-rounded{
	border-radius: 50%;
	overflow:hidden;
	width:100%;
	display:block;
	}
.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;
    -webkit-transition:all 300ms ease-in-out;
    -moz-transition:all 300ms ease-in-out;
    transition:all 300ms ease-in-out;
}
 .hover-effect:hover i{
    top:50%;
    margin:-25px 0 0 -25px;
}

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

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


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

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

.section-spacing{
   padding:100px 0;
 }
.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;	
	 border-bottom:1px solid rgba(255, 255 ,255, 0.2);
}
.ad-gram-header{
	 display: flex;
     flex-wrap: wrap;
	 justify-content: space-between;
	 align-items: center;	  
} 
.logo { 
	width:140px;
	padding:20px;
	transition: all 0.4s ease;
	/*border-right:1px solid rgba(255, 255 ,255, 0.2)*/
 
}
 
.logo img {
	width:100%;
	display:block;
	filter: brightness(0) invert(1);
	transition: all 0.4s ease;
}
 .logo img:hover {
	filter: none;
}

.head-group{
	display:flex;
	padding:0;
	margin-right:80px;
	justify-content: space-between;
	align-items: center;
} 
 

/*****************video settings************************/

.mute-btn {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width:46px;
  height:46px;  
  border: none;
  cursor: pointer;
  background-color:transparent;
}

.icon, .sound-icon{
  width:46px;
  height:46px;
  border:1px solid var(--white);
  border-radius: 50%;
  background-image: url(../images/icons/unmute.svg);
  background-size:50%;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 0.4s ease;
 
}
.sound-icon{
	background-image: url(../images/icons/mute.svg);
	display:none;
}
.icon:hover, .sound-icon:hover{
	background-color:var(--secondary-color);
	border:1px solid var(--secondary-color);
}
/***/
.video-outer{
	width:100%;
	height:100vh;
	position:relative;
}
.video-wrap{
	width:100%;
	height:100%;
	position:fixed;
	z-index:-1;
	left:0;
	top:0;	 
}
.video-wrap:before{
	width:100%;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	content:'';
	z-index:2;
	background-color:rgba(0, 0, 0, 0.2);
}
 video {
    /*position: absolute;*/
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content{
	position:absolute;
	z-index:2;
	left:0;
	top:50%;
	color:var(--white);
	width:50%;
	padding:50px;
}
.hero-content h2, .hero-content h3{
	font-size:50px;
	font-family:var(--font-medium);
	line-height:normal;
}
.hero-content h3{
	font-size:20px;
	 
}
/**************scroll down**************************/ 
 
.scroll-downs {
  position: absolute;
  left:50px;  
  bottom:50px;  
  width :25px;
  height: 45px;
}
.mousey {
  width: 3px;
  padding: 5px 10px;
  height: 30px;
  border: 1px solid var(--white);
  border-radius: 25px;
  /*opacity: 0.75;*/
  box-sizing: content-box;
}
.scroller {
  width: 3px;
  height: 10px;
  border-radius: 25%;
  background-color: #fff;
  animation-name: scroll;
  animation-duration: 2.2s;
  animation-timing-function: cubic-bezier(.15,.41,.69,.94);
  animation-iteration-count: infinite;
}
@keyframes scroll {
  0% { opacity: 0; }
  10% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(15px); opacity: 0;}
}
 
/***********button ***********/
 
.button, .theme-button {}

.button a {
	border:1px solid var(--white);
	color:var(--white);
	font-size: 12px;
	letter-spacing:1px;
	padding: 10px  35px;
	font-style: normal;
	display: inline-block;
	position: relative;
	overflow:hidden;
	margin:0;
	border-radius: 50px;
	font-family:var(--heading-font);
	transition: all 0.4s ease;
	}
.button a:hover{	
	border:1px solid var(--secondary-color);
}
.button a:before{
	width:100%;
	height:0;
	border-radius: 50px;
	position:absolute;	
	background-color:var(--secondary-color);
	bottom:0;
	left:0;
	content:'';
	z-index:1;
	transition: all 0.4s ease;
	 	
} 
 
.button a:hover:before{
	 height:100%;
}
 .button a span{
 	position:relative;
	z-index:2;
	display:inline-block;
 }
 
.theme-button a{
	border:1px solid var(--black);
	color:var(--black);
	text-transform:uppercase;
	}
.theme-button a:hover{
	color:var(--white);
	}

.caps{
	text-transform:uppercase;
}
 
.heading-font{
 	font-family:var(--heading-font);
 }
 
.heading{
	font-size:40px;
	line-height:54px;
}
.heading span{ 
	color:var(--secondary-color);
	
}
.subheading {
	font-size: 30px;
	line-height:34px;
}
 
.subtitle{
	font-size: 24px;
	line-height:28px;
}
.question{
	font-size: 20px;
	line-height:28px;
	padding:0 0 20px 0;
	margin:0 0 25px 0;
	border-bottom:1px solid var(--black);
}
.bold, strong{
	font-family:var(--heading-font);
}

.section-title{
	text-transform:uppercase;
	font-size:16px;
	line-height:normal;
	color:#454545;
	position:relative;
	margin-bottom:20px;
	padding-bottom:25px;
	  
}
 
/****************************/
  
.pos-rel{
	position:relative;
}
.level-up{
	position:relative;
	z-index:3;
 
} 



/****************INDEX PAGE SETTINGS***************/

 
.intro{
	position:relative;
	z-index:2;
	padding-left:200px;
	top:-100px; 
}
 
.process-scection{
	background-color:var(--tertiary-color);
	padding:100px 0;
	color:var(--white);
}
.tm{
	font-size:16px;
	color:var(--white) !important;
	vertical-align:super;
}

.process-style{
 	height:75vh;
	background-color:var(--tertiary-color);
	transition: all 0.4s ease;
	color:#fff; 
	border-right:1px solid #3A4369;
	margin-left:-1px;
	border-left:1px solid #3A4369;
	padding:40px;
	display:flex;
	justify-content: space-between;
	flex-direction:column;
	}
	
.process-style:hover{
 	padding:20px 40px;
	/*background-color:rgba(215, 30, 53, 0.2);*/
	background-color:transparent;
}
.icon-head{}
.icon-head img{
	width:65px;
	display:block;	
	transition: all 0.4s ease;
}
.process-style:hover img{
	filter: brightness(0) invert(1);
}

.process-footer{}
.process-footer h2{
	margin:0 0 20px 0;
	font-size:24px;
	line-height:normal;
}
.process-footer h2 span{
	color:rgba(255, 255, 255, 0.2);
	display:inline-block;
	margin-right:10px;
}
 
 
 
 
 
/***************INDUSTRIES***************/
 
 
.sectors{	 
	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	padding:50px 0;
	border-top:1px solid var(--black);
	border-bottom:1px solid var(--black);
	transition: all 0.4s ease;
	margin-top:-1px;
}
 
.sectors:hover{
	background-color:var(--secondary-color);
	border-top:1px solid var(--secondary-color);
	border-bottom:1px solid var(--secondary-color);
	color:var(--white);
	padding:50px 25px;
}
.sectors-icon{}
.sectors-icon img{
	width:65px;
	display:block;	
	transition: all 0.4s ease;
}
.sectors:hover .sectors-icon img{
	filter: brightness(0) invert(1);
}
.sectors-content{
	width:60%;
	display:flex;
	gap:0 40px;	
	transition: all 0.4s ease;
}
 
.sub-text{
	font-size:14px;
	text-transform:uppercase;
	white-space:nowrap;
	
}
.main-text{
	font-size:24px;
	line-height:32px;
}

 /**********************news**********************/
 
 

.news-widget{
  	 
  }
.news-widget a{
  	padding:20px 20px;
  	color:var(--body-color);
	border-bottom:1px solid var(--black);
	transition: all 0.4s ease;
	display:flex;
	width:100%;
	flex-direction:column;
  }
  
.news-widget a:hover{
  	color:var(--white);
	border-bottom:1px solid var(--secondary-color);
	background-color:var(--secondary-color);
}


 
.date{
	font-size:40px;
	line-height:40px;
	vertical-align:text-top;
	color:var(--secondary-color);
	 
}
.date span{
	font-size:16px;
	line-height:normal;
	display:inline-block;
	margin-left:5px;
	vertical-align:super;
	color:var(--grey-dark);
	 }
 .news-widget p:last-child{
  	margin:25px 0 0 0;
  }
  
 .news-widget a:hover .date,  .news-widget a:hover .date span,  .news-widget a:hover{
 	color:var(--white);
 }
/****************SCROLLING TEXT***************/
 
 .scrolling-text-wrap {
  width:100%;
  overflow-x:hidden !important;
  overflow-Y:hidden !important;
  overflow:hidden !important;
 }
 
.scroll {
  white-space: nowrap;
  
}

.scroll div {
  display: flex;
    
}

.scroll h2 {
  font-size: 100px;
  line-height:normal;
  color: var(--white);
  font-family:var(----heading-font);
  margin:0;
   
}
.scroll h2 span{
	width:6px;
	height:6px;
	background-color:var(--secondary-color);
	outline-offset: 4px;
	outline:1px solid var(--secondary-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%);
  }
}

 

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


 
  
  
/**********************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{
	 -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
 
}
.float:hover i{
	 -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
	transform: rotate(0.12turn);
}
.float:hover{
	color:#FFF;
	 
} 
.float h5 {
    width: 100px;
    top: 8px;
	right:50px;
    background-color:var(--white);
	color:var(--grey-dark);
	 box-shadow: 0px 0px 5px gray;
	line-height:12px;
    border-radius: 5px;
	font-size:12px;
	padding:10px;
	position:absolute;
	z-index:-1;
	margin:0;
	-webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
	opacity:0;
}
.float:hover h5{
	 opacity:9;
	 right:60px;
}
 
  


/*************** footer CSS ***************/
 
.footer {
	padding:80px 0 0 0;
	margin:0;
	background-color:var(--tertiary-color);
	color:var(--white);
}

.footer a {
	color:var(--white);
}
 .footer a:hover  {
	color:rgba(255, 255, 255, 0.5);
}  


.footer-logo{
	 display: flex;
	 gap:0 50px;
	 font-size:24px;
	 line-height:28px;
	 
}
.footer-logo img{
	 width:100px;
	 display:block;
	 filter: brightness(0) invert(1);
	 transition: all 0.4s ease;
}

 
.footer-info{
	 display: flex;
	 gap:0 50px;
	 font-size:14px; 
}
.footer-info h2{
	  color:var(--secondary-color);
	  font-family:var(--heading-font);
	  font-size:16px;
	  line-height:normal;
	  margin:0 0 20px 0;
}
.footer-info ul, .footer-info ul li{
	  margin:0;
	  padding:0;
	  list-style:none;
}
.footer-info ul li a{
	display:block;
	padding:5px 0;
	line-height:normal;
 }
 
 
 
 
 .lower-footer{
 	border-top:1px solid rgba(255, 255, 255 ,0.2);
	padding:30px 0;
 }
 .footer-social{
 	font-size:12px;
	display:flex;
	gap:0 10px;
 }
  /***********social ***********/
.social {
 	padding:10px 0;
	display:flex;
	gap:0 5px;
 
}
.social a  {
	width:40px;
	height:40px;
	display:flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	text-align:center;
	color:var(--secondary-color);
	font-size:20px;  
	text-align:center;
	background-color:var(--white);

}
.social a:hover  {
	background-color:rgba(255, 255, 255, 0.5);

}

.brand-row{
	width: 100%;
    display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	box-shadow: 0px 10px 20px 0px rgba(123, 123, 123, 0.1); 
	padding:50px;
	margin-bottom:50px;
	border-bottom:4px solid var(--secondary-color);
	border-radius:12px;
}  
  
 /**********************/
 .address-box{
	 padding:50px;
	 background-color:var(--grey-light);
	 
	} 
.add{
	width:100%;
	position:relative;
	padding:0 0 0 60px;
	min-height:30px;
	margin-bottom:20px;
	font-size:16px; 
	vertical-align:top;
	line-height:24px;
	 
}
 .add h2{
 	font-size:18px;
	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(--secondary-color);
	border-radius: 50%;
	color:var(--white);
	font-size:14px;
	margin:0;
	position:absolute;
	left:0;
	top:0;
	text-align:center;
 
	
}
 .google-map{
     overflow: hidden;
     width: 100%;
	 height:450px;
	 margin:0;
	 padding:0;
	 outline:none;
	 border:0;
	 display:block;
}

.ext{
	display:inline-block;
	padding-top:10px;
}
.add a{
	color:var(--black);
	}
.add a:hover{
	color:var(--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:50vh;
	padding-bottom:25px;
	overflow:hidden;	 
	display: flex;
	flex-direction:column;
	position: relative;
	/*align-items: center;*/
	justify-content: flex-end;
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-image: url(../images/backgrounds/banner.jpg);
	border-radius: 0 0 50px 50px;
}
.banner: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;
}
 
 
 /*****************************/
.page-title{
	 
}
.page-title span{
	font-size: 18px;
	font-family:var(--font-semi-bold);
	color:var(--secondary-color);
	line-height:28px;
	display:inline-block;
	padding:0 0 10px 0;
	line-height:normal;
	border-bottom:1px solid var(--secondary-color);
}
.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);	
 
}
 
 
 /********************services*********************/
 
 .services{
    display: grid;
    grid-gap:20px;
    grid-template-columns: repeat(3, 1fr);
    }
 
  .services .item{
	  padding:50px 50px 50px 100px;
	  background-color:var(--grey-light);
	  position:relative;
    }

  .services .item h2{
  	font-family:var(--heading-font);
	font-size:20px;
	line-height:normal;
	color:var(--tertiary-color);
	margin:0 0 15px 0;
	}
	
  .services .item  i{
	color:var(--secondary-color);
	position:absolute;
	left:50px;
	top:50px;
	font-size:30px; 
	}
	
  .services .item ul{
	margin:0;
  	padding:0;
  }
  
.services .item ul li{
	margin:0 0 0 15px;
  	padding:0;
	font-size:16px;
  }
/*************** 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**************/
 
 

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

*:focus {
	outline: none;
}

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

.sendbutton {
	 
	color: var(--white);
	font-size:20px;
	font-family:var(--heading-font);
	background-color:var(--secondary-color);
	border:0;
	padding: 20px 50px;
	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);
}
 
/*************** 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;
}


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

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

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

 .section-spacing{
	 padding:40px 0;
 }
 
  .services{ 
    grid-template-columns: repeat(2, 1fr);
    }
   

}

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

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

 
}

/************************************* 767px *************************************/
@media only screen and (max-width: 768px) {
 
.sectors{	 
	padding:40px 0;
 
}
.sectors:hover{
	padding:30px 25px;
}
 
.sectors-content{
	width:70%;
	gap:0 30px;	
}
 .intro{
	 display:none;
} 
.process-scection{ 
	padding:50px 0;
	 
}
 
}

/************************************* 640px *************************************/
@media only screen and (max-width: 640px) {
 
body {
	font-size: 16px;
	line-height:24px;
	}


 header{
	 position:relative;
	 background-color:var(--tertiary-color);
	 left:auto;
	 top:auto;
	  
}
.ad-gram-header{
	 display: flex;
     flex-wrap: wrap;
	 justify-content: space-between;
	 align-items: center;	  
} 
.logo { 
	width:100px;
}
 .hero-content{
	top:25%;	 
	width:80%;
	padding:20px;
}
.hero-content h2{
	font-size:20px;
	line-height:28px;
	margin:0 0 10px 0;
 
}
.hero-content h3{
	font-size:14px;
	 
}
.scroll-downs {
	display:none;
}
.video-outer{
	height:40vh;
}
.video-wrap{
	position:absolute; 
}
 
 
.banner { 
	height:250px;	 
	border-radius: 0 0 12px 12px;
}
.banner h2 {
	font-size:20px;
	 
}
 
.scroll h2 {
  font-size:40px;
  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;
}
.sectors{	 
	padding:30px 0;
 
}
.sectors-content{
	gap:20px 0;
	justify-content: center;
	flex-direction:column;
	display:flex;
}
 
.main-text{
	font-size:18px;
	line-height:20px;
}
.heading{
	font-size:24px;
	line-height:28px;
}

.footer-logo{
	 gap:0 20px;
	 margin-bottom:25px;
	 font-size:18px;
}
.footer-info{
	gap:0 20px;
}
.process-style:hover{
 	background-image: url(../images/backgrounds/abstract-bg.svg);
	background-color:var(--tertiary-color)!important;
}
}

/************************************* 480px *************************************/
@media only screen and (max-width: 480px) {
  .services{ 
    grid-template-columns: repeat(1, 1fr);
    }	 
 
}

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

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