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

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


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



:root {
	--body-font: "PPMoriRegular", sans-serif;
	--body-color: #000;
	--primary-color: #055681;
	--secondary-color: #00A9CF;
	--tertiary-color: #E1F5FF;
	--quaternary-color:#B4DFEF;	
	--black: #000;
	--white: #fff;
	--grey: #DCDDDE;	
	--grey-light: #F8F8F8;
	--grey-dark: #6D6D6D;
	--font-light:'PPMoriExtralight';	 	 
	--font-bold:'PPMoriSemiBold';
 
}

body {
	font-family: var(--body-font);
	font-size: 16px;
	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); 
	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;
	transition: all 0.4s ease;
}

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

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

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;
	max-width:100%;
	display:block;
}

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 top right, var(--primary-color), var(--secondary-color));
	color:var(--white)!important;	 
}
.bg-primary {
	background: var(--primary-color)!important;	 
	color:var(--white)!important;	 
	 
}
.bg-secondary {
	background: var(--secondary-color) !important;	 
	color:var(--white)!important;	 
 
}

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

 
/*************** 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/hiiconnect-icon.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:80%;
	margin: -50px 0 0 -50px;
	 
}

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

.container {
	width: 1400px;
	margin: 0 auto;
}
.fullheight {
	width: 100%;
	height:100vh;
	overflow:auto;
} 
.fullwidth {
	width: 100%;
	display: block;
} 

.img-rounded{
	border-radius: 16px; 
 
	}
.corner-radius{
	border-radius: 50%;
	width: 100%;
	display:block;
	
	}	
 
/*************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;	 
	 z-index:5;
	 transition: all 0.4s ease;
	 border-bottom:1px solid rgba(0, 0, 0, 0.2);
}
 header.smaller {
	position: fixed;	 
	background-color:var(--white);
	box-shadow: 0px 10px 20px 0px rgba(123, 123, 123, 0.1);  
}

.header{
    width:100%;
	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
 .logo { 
	width:240px;
	position:relative;
	transition: all 0.4s ease; 
	/*filter: brightness(0) invert(1);*/
}
 
.logo img {
	width:100%;
	display:block;
}
header.smaller .logo {
	width:150px;
}
.nav-group, .header-right{
	display: flex;
    flex-wrap: wrap;
	align-items: center;
	gap:0 10px;
	} 
 
.top-info{
	display:flex;
	flex-wrap: wrap; 
	align-items: center;
	gap:0 10px;
	min-height:80px;
	font-size:14px;
	line-height:18px;
	padding:0 20px;
	font-family:var(--font-bold);
	border-right:1px solid rgba(0, 0, 0, 0.2);
 	border-left:1px solid rgba(0, 0, 0, 0.2);
	transition: all 0.4s ease;
}
 header.smaller .top-info{
 	min-height:60px;
	}
.top-info i{
	width:40px;
	height:40px;
	background-image: linear-gradient(to  left, var(--primary-color), var(--secondary-color));
	text-align:center;
	display:flex;
	justify-content: center;
	align-items: center;
	color:var(--white);
	border-radius: 50%;
}
/***********social ***********/
 
.link{}

.link a{
	display:inline-flex;	 
	justify-content: center;
	align-items: center;
	height:44px;
	color:var(--white);
	line-height:normal;
	font-size: 16px; 
	padding:0  50px 0 30px;
	font-style: normal;
	position: relative;
	overflow:hidden;
	margin:0;
	border-radius: 50px;
	background-image: linear-gradient(to  left, var(--primary-color), var(--secondary-color));
	font-family:var(--font-bold);
	transition: all 0.4s ease;
}
.link a:hover {
	background-image: linear-gradient(to  right, var(--primary-color), var(--secondary-color));
	
}

 .link a:after{
	width:25px;
	height:20px;
	position:absolute;
	top:10px;
	right:10px;
	content:'';
	z-index:2;
	background-image: url(../images/icons/arrow.svg);
	background-size:70%;
	background-repeat: no-repeat;
	background-position: center center;
 } 
 
.link a:hover:before{
	 height:100%;
}
 .link a span{
 	position:relative;
	z-index:2;
	display:inline-block;
 }
 
.caps{
	text-transform:uppercase;
}
 
 .bold, strong{
 	font-family:var(--font-bold);
 }
 
.heading{
	font-size:50px;
	line-height:normal;
	 
}
.heading span{ 
	font-family:var(--medium);
	
}
.subheading {
	font-size: 30px;
	line-height:40px; 
 
}
 
.subtitle{
	font-size: 24px;
	line-height:34px;
	font-family:var(--font-bold);
 
}
 

.section-title{
	margin-bottom:20px;
	  
}
 .section-title span{
	font-size:16px;
	line-height:normal;
	font-family:var(--font-bold);
	background-image: url(../images/icons/abstract-circtle.svg);
	background-repeat: no-repeat;
	background-position: center center; 
	display:inline-block;
	text-align:center;
	background-size:100%;
	padding:30px 25px 25px;
}
 
/****************************/
  
.pos-rel{
	position:relative;
}
 
.intro-img{
	position:relative;
 	padding-left:280px;
 }
.inrto-text{
	position:absolute;
	left:0;
	top:50px;
}

.bottom-layer{
	width:50%;
	height:70%;
	position:absolute;
	background-image: linear-gradient(to top right, var(--primary-color), var(--secondary-color));
	right:0;
	bottom:0;
	z-index:-1
}


.keywords{
 }
.keywords ul{
	margin:0;
	padding:50px 0 0 0;
	list-style:none;
	display:flex;
	flex-wrap: wrap; 
	gap:0 15px;
	text-transform:uppercase;
	font-size:20px;
	font-family:var(--font-bold);
}
.keywords ul li{
	position:relative;
	padding:0 0 0 15px;
}
.keywords ul li:before{
	width:8px;
	height:8px;
	position:absolute;
	left:0;
	top:5px;
	content:'';
	background-color:var(--secondary-color);
	border-radius: 10px;
}

.facts{     
    display: flex;
    flex-wrap: wrap;
	padding:0 0 20px 0;
	margin:0 0 5px 0;
	border-bottom:1px solid var(--white);
	color:var(--white);
}
.facts:last-child{
	margin:0;
	border-bottom:0;
	padding:0;
}
.facts h2{
	margin:0;
	font-size:106px;
	line-height:normal;
	font-family:var(--font-bold);
}
.facts p{
	margin:0;
}
.facts .txt-sml{
	vertical-align:baseline;
	font-size:40px;
}


 

.brand-circle{
	width:200px;
	height:200px;
	border-radius: 50%;
	overflow:hidden;
	background-color:var(--white);
	 }

.brand-circle img{
	width:100%;
}

.boxy{
	background-color:var(--grey-light);
	border-radius: 16px;
	padding:40px;
}
.boxy-content{
	background-color:var(--white);
	border-radius: 12px;
	padding:40px;
	margin-bottom:25px;
	box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);  
}
/*************** ***************/

.overview{
	position:relative;
}

 .rotating-circle{
	width:190px;
	height:190px;
	display:inline-block;
	position:absolute;
	right:50px;
	top:50px;
	z-index:2;
	border-radius:50%;
	background-color:var(--white);
	box-shadow: 0px 10px 20px 0px rgba(123, 123, 123, 0.1);  
}
.rotating-circle:after {
	width:100%;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	content:'';
	border-radius:50%;
	background-image:url(../images/icons/rotation-text.svg);
	background-repeat: no-repeat;
	background-position: center  center;	 	 
	background-size:94%;
	-webkit-animation: rotation 20s infinite linear;

}
.rotating-circle:before{
	width:60%;
	height:60%;
	position:absolute;
	left:20%;
	top:20%;
	content:'';
	z-index:6;
	background-image:url(../images/hiiconnect-icon.svg);
	background-repeat: no-repeat;
	background-position: center  center;
	border-radius:50%;
	background-color:var(--white);
	/*-webkit-animation: rotation2 20s infinite linear;*/
	background-size:80%;
}
@-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);
		}
}

 /*******************/
 
 .certificates{     
    display: flex;
    flex-wrap: wrap;
	gap:10px;
	padding:10px 0;
}
 .certificates img{     
    width:200px;
	display:block;
	border:1px solid var(--grey);
	border-radius:10px;
	
}


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

.solution-info{     
	display: flex;
    flex-wrap: wrap;
	align-items: center;
	justify-content:space-between;
	gap:0 25px;
	margin-bottom:25px;
	border-radius: 16px;
	padding:40px;
	position: -webkit-sticky !important;
	position: sticky !important;
	top: 100px;
}
.brand-side{
	width:15%;
	
}
.brand-side img{
	width:100%;
	border-radius: 50%;
	display:block;
}
.brand-info{	 
	width:80%;
}
.default{
	align-items: flex-start;
	}
	
.opening{
	background-color:var(--primary-color);
	border-radius: 10px;
	color:var(--white);
	padding:25px;
	text-align:center;
	font-size:20px;
	line-height:28px;
	}
/****************SCROLLING TEXT***************/
 
 .scrolling-text-wrap {
  width:100%;
  overflow-x:hidden !important;
  overflow-Y:hidden !important;
  overflow:hidden !important;
 }
 
.scroll {
  white-space: nowrap;
  margin: 0;
}

.scroll div {
  display: flex;
    
}

.scroll h2 {
  font-size: 134px;
  line-height:134px;
  color: var(--quaternary-color);
  font-weight: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:30px 0;
  	color:var(--body-color);
  }
 .news-widget h2{
  	font-size:24px;
  	line-height:34px;
	font-family:var(--font-bold);
 
  } 
.date{
	font-size:14px;
	line-height:14px;
	text-transform:uppercase;
	letter-spacing:1px;
	margin:0 0 15px 0;	
	vertical-align:middle;
	color:var(--secondary-color);
}
 
  .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**********************/

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

.fs-18 {
    font-size: 18px;
    line-height: 27px;
}
.box-style {
    flex: 0 0 23.5%;
    padding: 25px;
    background-color: var(--primary-color);
    border-radius: 15px;
}
.box-style-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 2%;
}
.box-style h4 {
	color: var(--white);
}
.box-style p {
    color: var(--white);
    margin: 0;
    font-size: 15px;
    line-height: 24px;
}
.box-style h4 {
    color: var(--white);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 28px;
}
.line-heading {
    position: relative;
    font-size: 23px;
    font-weight: 400;
    padding: 0 20px;
    margin-bottom: 20px;
}
.line-heading:after {
    position: absolute;
    content: '';
    width: 87%;
    height: 1px;
	margin-right: 5px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border-bottom: 1px solid var(--secondary-color);
}

.outcome-main {
	padding: 30px;
	border-radius: 20px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	margin-top: 60px;
}
.outcome-bg1 {
	background-image: url(../images/outcome-bg1.jpg);
}
.outcome-bg2 {
	background-image: url(../images/outcome-bg2.jpg);
}
.outcome-bg3 {
	background-image: url(../images/outcome-bg3.jpg);
}
.outcome-bg4 {
	background-image: url(../images/outcome-bg4.jpg);
}
.cont-box {
	padding: 60px 50px;
	background-color: var(--secondary-color);
	color: var(--white);
	width: 40%;
	border-radius: 15px;
}
.cont-box p {
	margin: 0;
}
.cont-box .heading {
    font-size: 36px;
	margin-bottom: 15px;
}

/********************************************/
.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 0 0;
	margin:0;
	background-color:var(--black);
	color:var(--white);
	font-size:14px;
}

.footer a {
	color:var(--white);
}
 .footer a:hover  {
	color:rgba(255, 255, 255, 0.5);
}  
.footer-row-outer{
	border-top:1px solid rgba(255, 255, 255, 0.2);
	border-bottom:1px solid rgba(255, 255, 255, 0.2);
	margin-top:50px;
	}
.footer-row{
	padding:0;
	display: flex;
    flex-wrap: wrap; 	
	justify-content: space-between;
}

.footer-left{
	width:20%;
	}
.footer-right{
	width:70%;
	display:flex;
	flex-wrap: wrap; 
	justify-content: space-between;
}


.footer-col{
	border-left:1px solid rgba(255, 255, 255, 0.2);
	padding:30px 25px;
}
.footer-col h2{
	font-size:18px;
	color:var(--secondary-color);
	font-family:var(--font-bold);
	margin:0 0 20px 0;
}

.footer-col ul, .footer-col ul li{
	margin:0;
	list-style:none;
	padding:0;
}
.footer-col ul li a{
	padding:7px 0;
	line-height:normal;
	display:block;
}

 .footer-logo { 
	width:240px;
	margin:25px 0;
	position:relative;
	transition: all 0.4s ease; 
	filter: brightness(0) invert(1); 
}
 
.footer-logo img {
	width:100%;
	display:block;
}


.lower-footer{
    display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.copy{}
 
.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:12px;
	background-image: linear-gradient(to top right, var(--primary-color), var(--secondary-color));
	color:var(--white);
	 
	} 
.add{
	width:100%;
	position:relative;
	padding:0 0 0 60px;
	min-height:30px;
	margin-bottom:20px;
	vertical-align:top;
	line-height:24px;
	 
}
 .add h2{
 	font-size:18px;
	line-height:24px;
	font-family:var(--font-bold);
	margin:0;
	line-height:normal;
 }
.add i{
	width:35px;
	height:35px;
	line-height:35px;
	background-color:var(--white);
	border-radius: 50%;
	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: 28px;
	position: relative;
}

ul.list li:before {
	/*content: "\f111";*/
	content: "\f138";
	position: absolute;
	top: 4px;
	left: 0;
	font-family: "FontAwesome";
	color: var(--secondary-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;
	} 

 


/*************** INNER BANNER ***************/
canvas {
	 
	position:absolute;
	left:0;
	top:0;
	z-index:-1;
	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 { 
	width: 100%;
	height:50vh;
	padding-bottom:25px;
	overflow:hidden;	 
	display: flex;
	flex-direction:column;
	position: relative;
	/*align-items: center;*/
	justify-content: flex-end;
	border-radius: 0 0 80px 80px; 

}
.banner .container{
	position:relative;
	z-index:4;
}
.banner:after{
	width: 100%;
	height:50%;
	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));
 
}

 

.banner h2 {
	color:var(--white);	
	font-weight:normal;
	font-family:var(--heading-font);
	font-size:40px;
	line-height:40px;
	margin:50px 0 0 0;
	padding:0;
	position:relative;
	z-index:2;
}
/*************************banners ***************/
 
 /*****************************/

.breadcrumb {   
    display: flex;
	color:var(--white);
	margin:0;
	position:relative;
	z-index:2;
	 

}
 
.breadcrumb ul {
	display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 20px 0 0 0;
    padding: 5px 20px;
	background-color:var(--primary-color);
	border-radius: 50px;
}
.breadcrumb li {
    margin: 0;
	font-size:12px;
	text-transform:uppercase;
	color:var(--white);
	font-weight:var(--font-bold);
	cursor:default;
 
	 
}    
.breadcrumb li:not(:last-child)::after {
    display: inline-block;
    margin: 0 15px;
    /*content: " → "; */
	 content: " / "; 
	 
}
 .breadcrumb a{
  color:var(--white);
}
 .breadcrumb a:hover{
   color:var(--tertiary-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**************/
 
 /*********file chosen style**************/

input.file{
    display: none;
}

.fa-upload{
	margin:0 15px 0 0;
}
.custom-file-upload {
	 border-radius: 12px;
	border: 0;
    display: inline-block;
    padding: 16px 20px;
    color: #fff;
    cursor: pointer;
    background-color: var(--primary-color);
    /*border-radius: 6px;*/
    border: 1px solid var(--primary-color);
}
.select-box {
    appearance: none;
    -webkit-appearance: none;
    background-image: url(../images/icons/icon5.svg);
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 14px;
}

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

*:focus {
	outline: none;
}

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

.sendbutton {
	border-radius: 16px;
	color: var(--white);
	font-size: 30px;
	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);
}
 
/*************** 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(--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: 1480px) {
.container {
	width: 100%;
	padding:0 25px;
	}
 
 .footer-logo{
 	width:150px;
 }
 .footer-right{
	width:80%;
 
}
  
}
/************************************* 1024px *************************************/
@media only screen and (max-width: 1024px) {

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

}

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

 .footer-row{
 	flex-direction: column-reverse;
	padding:25px 0 0 0;
	 
 }
 .footer-left{
	width:100%;
	
	}
.footer-right{
	width:100%;
}
.footer-col{
	border-left:0;
	width:50%;
	padding:10px;
}

.lower-footer{
	 margin-top:25px;
 }
}

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

 
}

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

header,  header.smaller{
	position:relative;
	background-color:var(--white);
	box-shadow: none;
	border-bottom:0;
}
header .container{
	padding:0;
}

.logo{
	width:100%;
	display: flex;
	padding:20px;
}
.logo img{
	width:200px;
	}
	
.nav-group {
	width:100%;
	gap:0;
 
}
.header-right{
	justify-content: space-between;
	width:100%;
	gap:0;
	border-top:1px solid rgba(0, 0, 0, 0.2);
	padding:0 20px 0  0;
	}
.top-info{
	min-height:auto;
	padding:15px;
 	border-left:0;
}

.intro-img{
 	padding-left:0;
 
 }
 
.keywords ul{
	padding:20px 0;
	text-transform:uppercase;
	font-size:14px;
	color:var(--white);
}

.inrto-text{
	position:relative;
	display:flex;
	left:auto;
	top:auto;
	flex-direction:column;
	margin-bottom:25px;
}

.bottom-layer{
	width:100%;
	height:70%;
	 
}
.box-style {
    flex: 0 0 48%;
}
.line-heading:after {
    width: 60%;
}
}

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

}
 
.subtitle{
	font-size: 20px;
}
	
 
.banner { 
	height:250px;
	border-radius: 0 0 16px 16px; 	 
}
.banner h2 {
	font-size:20px;
}
 
.breadcrumb li {
	font-size:10px;
}   
 
.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;
	 
}
.top-info{
 
	gap:0 8px;
	min-height:50px;
	font-size:12px;
	line-height:14px;
	padding:0 10px;
	 
}
 header.smaller .top-info{
 	min-height:50px;
	}
.top-info i{
	width:30px;
	height:30px;
	 
}
.link a{
	height:30px;	 
	font-size:12px;
	line-height:normal;
	padding:0  40px 0 15px;	 
} 
 .link a:after{
	top:5px;
	right:10px;
 }
 
 .keywords ul{
	padding:20px 0;	 
	gap:0;
	justify-content: space-between;
	 
	 
}
.keywords ul li{
	padding:0 0 0 20px;

}
.keywords ul li:before{
	top:6px;
}

.facts{     
	padding:0;
	margin:0 0 15px 0; 
}
.facts:last-child{
	margin:0;
	border-bottom:0;
	padding:0;
}
.facts h2{
	font-size:50px;
}


.boxy{
	border-radius: 12px;
	padding:20px;
}
.boxy-content{
	padding:20px;
	border-radius: 10px;
 
}
.rotating-circle{
	width:140px;
	height:140px;
	right:20px;
	top:20px;
	 
}
 .certificates img{     
    width:100px;
 
}

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

.solution-info{     
	gap:15px 0;
	flex-direction:column;
	text-align:center;
	padding:20px;
}
.brand-side{
	width:150px;
	
}
.brand-info{	 
	width:100%;
}
.cont-box {
	width: 100%;
	padding: 20px;
}
}

/************************************* 480px *************************************/
@media only screen and (max-width: 480px) {
	.box-style {
		flex: 0 0 100%;
		padding: 20px;
	}
}

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

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