@charset "utf-8";
  
@font-face {
    font-family: 'ITCAvantGardeStdMd';
    src: url('../fonts/ITCAvantGardeStdMd.eot');
    src: url('../fonts/ITCAvantGardeStdMd.eot') format('embedded-opentype'),
         url('../fonts/ITCAvantGardeStdMd.woff2') format('woff2'),
         url('../fonts/ITCAvantGardeStdMd.woff') format('woff'),
         url('../fonts/ITCAvantGardeStdMd.ttf') format('truetype'),
         url('../fonts/ITCAvantGardeStdMd.svg#ITCAvantGardeStdMd') format('svg');
}
@font-face {
    font-family: 'ITCAvantGardeStdDemi';
    src: url('../fonts/ITCAvantGardeStdDemi.eot');
    src: url('../fonts/ITCAvantGardeStdDemi.eot') format('embedded-opentype'),
         url('../fonts/ITCAvantGardeStdDemi.woff2') format('woff2'),
         url('../fonts/ITCAvantGardeStdDemi.woff') format('woff'),
         url('../fonts/ITCAvantGardeStdDemi.ttf') format('truetype'),
         url('../fonts/ITCAvantGardeStdDemi.svg#ITCAvantGardeStdDemi') format('svg');
}
@font-face {
    font-family: 'ITCAvantGardeStdBold';
    src: url('../fonts/ITCAvantGardeStdBold.eot');
    src: url('../fonts/ITCAvantGardeStdBold.eot') format('embedded-opentype'),
         url('../fonts/ITCAvantGardeStdBold.woff2') format('woff2'),
         url('../fonts/ITCAvantGardeStdBold.woff') format('woff'),
         url('../fonts/ITCAvantGardeStdBold.ttf') format('truetype'),
         url('../fonts/ITCAvantGardeStdBold.svg#ITCAvantGardeStdBold') format('svg');
}
 

:root {
	--body-font: "ITCAvantGardeStdMd", sans-serif;
	--body-color: #515151;
	--primary-color: #1B488B;
	--secondary-color: #FF0004;
	--tertiary-color: #D8E8FF;
	--quaternary-color:#FFE7E7;	
	--black: #000;
	--white: #fff;
	--grey: #DCDDDE;	
	--grey-light: #F8F8F8;
	--grey-bluesh: #EBEFF5;
	--grey-dark: #6D6D6D;		 	 
	--font-light:300;
	--font-medium:'ITCAvantGardeStdDemi';
	--font-bold:'ITCAvantGardeStdBold';
}

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); 
	background-attachment:fixed;
	overflow-x: hidden;
	background-image: url(../images/backgrounds/bg.webp);
	background-repeat: no-repeat;
	background-position: center center;
}


/* *********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;
	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%;
}

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;
            right: 0;
            bottom: 0;
            background-color: var(--primary-color);
            z-index: 999999;
            /* Add transition for smooth fade out */
            transition: opacity 0.6s ease-out;
            opacity: 1;
        }

        #status {
            width: 100px;
            height: 100px;
            position: absolute;
            left: 50%;
            top: 50%;
            background-image: url(../images/bionex-icon.svg); 
            background-repeat: no-repeat;
            background-position: center center;
            background-size: 80%;
            margin: -50px 0 0 -50px;
            animation-name: spin;
            animation-duration: 3000ms;
            animation-iteration-count: infinite;
            animation-timing-function: linear;
            transition: opacity 0.4s ease-out;
            opacity: 1;
        }

        @keyframes spin {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

 
/*********************************/

.container {
	max-width: 1480px;
	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: 14px;
	 
}

 .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;
	overflow:hidden;
    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 {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #222529;
    opacity: 0;
    transition: opacity 0.3s, background 0.3s, transform 0.3s
}
 .hover-effect:before {
 	content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #fff;
    opacity: 0.2;
    transition: opacity 0.5s ease, transform 0.5s ease
	}
	
 .hover-effect:hover:after,
 .hover-effect:hover:before {
    opacity: 0;
    transform: none
}

 .hover-effect:after {
    transform: translateX(-100%);
    background-color: #fff;
    opacity: 0.5;
    transition: transform 0.9s ease, opacity 0.9s ease
}

 .hover-effect:before {
    transform: translateX(100%);
    transition: transform 0.9s ease, opacity 0.9s ease
}

/*****************************/
 
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(255, 255, 255, 0.2);
}
 header.smaller {
	position: fixed;
	background-image:none;
	background-color:var(--primary-color);
	border-bottom:0;
	box-shadow: 0px 10px 20px 0px rgba(123, 123, 123, 0.1);  
}

.header{
	display:flex;
	justify-content: space-between;
    align-items: center;
} 
 .logo { 
	width:180px;
	padding:30px 20px;
	position:relative;
	transition: all 0.4s ease;
	background-color:var(--white);
	/*clip-path: polygon(0% 100%, 90% 100%, calc(100% + 20%) 0%, 0% 0% );*/
}

.logo:after{
  	position:absolute;
  }
.logo img {
	width:100%;
	display:block;
}
header.smaller .logo {
	width:100px;
}
.nav-group{
	display: flex;
    flex-wrap: wrap;
	align-items: center;
	gap:0 40px;
	} 
.contact-bt{
	margin-right:20px;
}
.contact-bt a{
	display:block;
	padding:8px 20px;
	color:var(--white);
	font-size:12px;
	line-height:normal; 
	text-transform:uppercase;
	border:1px solid var(--white);
	border-radius:50px;
 
}  
.contact-bt a:hover{	 
	border:1px solid var(--secondary-color);
	background-color:var(--secondary-color);
}   
 
/***********social ***********/
 
.link {}

.link a {
	
	color:var(--white);
	font-size: 12px; 
	padding: 10px  50px 10px 25px;
	font-style: normal;
	display: inline-block;
	position: relative;
	overflow:hidden;
	margin:0;
	border-radius: 50px;
	background-color:var(--primary-color);
	font-family:var(--font-medium);
	transition: all 0.4s ease;

}
.link a:hover {
	color:var(--white);
	background-color:var(--secondary-color);
	
}
.link a:before{
	width:20px;
	height:20px;
	position:absolute;
	top:10px;
	right:15px;
	content:'';
	z-index:1;
	transition: all 0.4s ease;
	background-image: url(../images/icons/button-arrow.svg);
	background-repeat: no-repeat;
	background-position: center center;	 	
} 
 
.link a:hover:before{
	 transform:rotate(360deg);
}
 .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:50px;
	line-height:normal;
	color:var(--black)
	 
}
.heading span{ 
	font-family:var(--font-bold);
	
}
.subheading {
	font-size: 34px;
	line-height:normal; 
	font-family:var(--medium);
	color:var(--black)
}
 
.subtitle{
	font-size: 22px;
	font-family:var(--font-bold);
 
}
.bold, strong{
	font-family:var(--font-bold);
}

.section-title{
	margin-bottom:20px;
	 
}
 .section-title span{
	display:inline-flex;
	padding:7px 20px 7px 35px;
	line-height:normal;
	border-radius: 50px;
	font-size:14px;
	color:var(--white);
	background-color:var(--primary-color);
	position:relative;
 
}
 .section-title span:after{
 	width:8px;
	height:8px;
	background-color:var(--secondary-color);
	position:absolute;
	left:14px;
	top:50%;
	content:'';
	margin-top:-4px;
	border-radius: 50%;
 }
/****************************/
  
.pos-rel{
	position:relative;
}
 

 .rotating-circle{
	width:154px;
	height:154px;
	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:90%;
	-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/Bionex.svg);
	background-repeat: no-repeat;
	background-position: center  center;
	border-radius:55%;
	background-color:var(--primary-color);
	/*-webkit-animation: rotation2 20s infinite linear;*/
	background-size:50%;
}
@-webkit-keyframes rotation {
		from {
				-webkit-transform: rotate(0deg);
		}
		to {
				-webkit-transform: rotate(359deg);
		}
}

@-webkit-keyframes rotation2 {
		from {
				-webkit-transform: rotate(0deg);
		}
		to {
				-webkit-transform: rotate(-359deg);
		}
}
/****************SCROLLING TEXT***************/
 
 .scrolling-text-wrap {
  width:100%;
  padding:15px 0;
  overflow-x:hidden !important;
  overflow-Y:hidden !important;
  overflow:hidden !important;
   border-top:1px solid var(--grey-bluesh);
 
 
 }
 
.scroll {
  white-space: nowrap;
  margin: 0;
}

.scroll div {
  display: flex;
    
}

.scroll h2 {
  font-size: 60px;
  line-height: 60px;
  color: var(--grey-bluesh);
  font-family:var(--font-bold);
  margin:0;
}
.scroll h2 span{
	font-family:var(--font-medium);
	font-weight:normal;
}

.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%);
  }
}

 
 
 /****************HOME PAGE SETTINGS***********************/
 
 .border-bottom{
 	border-bottom:1px solid var(--grey);
 }
  .border-right{
 	border-right:1px solid var(--grey);
 }
  .res-border-bottom{
 	border-bottom:1px solid var(--grey);
 }
 .features{   
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    }
 .features .item{   
    display:flex;
    flex-wrap: wrap; 
	gap:0 20px;
	align-items: center;
	border-left:1px solid var(--grey);
	padding:30px 20px;
	transition: all 0.4s ease;
	justify-content: center;
    }
 .features .item:last-child{
 	border-right:1px solid var(--grey);
 }
 	
 .features .item .icon{
 	width:65px;
	height:65px;
	border-radius:50%;
	background-color:var(--secondary-color);
	padding:12px;
	transition: all 0.4s ease;
 }	
  .features .item:hover .icon{
  	background-color:var(--primary-color);
	}
 .features .item .icon img{
 	display:block;
	transition: all 0.9s ease;
 }
  .features .item:hover .icon img{
  	transform: rotate(360deg);
  }
  
  .features .item h2{
	  font-size:20px;
	  font-family:var(--font-medium);
	  line-height:normal;
	  color:var(--primary-color);
	  margin:0;
}
.apps{
	display: flex;
	gap:0 10px;
    flex-wrap: wrap;
}
 
 /************video************/
 
  
 .video-container{
 	position:fixed;
	left:0;
	top:0;
	z-index:0;
	width: 100%;
    height: 100%;
	display:flex;
	z-index:-2;
}
 .video-overlayer{
 	position:absolute;
	width:100%;
	height:100%;
	background-color:rgba(255, 255, 255, 0.5);
	left:0;
	top:0;
	z-index:1;
	 
}
	
 video {
    /*position: absolute;*/
    width: 100%;
    height: 100%;
    object-fit: cover; 
	position:relative;
}
 

.intro-content{
	 
	padding:100px 0;
}

.intro-content:before{
	position:absolute;
	width:100%;
	height:auto;
	content:'';
	background-color:rgba(255, 255, 255, 0.7);
	left:0;
	top:0;
	z-index:0;
}
.level-up{
	position:relative;
	z-index:3;
}
 /*************************/
.intro-img{
	position:relative;
}


.funfacts{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
	margin-bottom:25px;
	}
	
.funfacts .item{
	font-size:14px;
}
.funfacts .item h2{
	font-size:48px;
	line-height:normal;
	margin:0;
	color:var(--secondary-color);
}
.funfacts .item h2 span{
	font-family:var(--font-bold);
 
}

/********************************************/

.certificates{
	background-color:var(--grey-bluesh);
	display: flex;
    flex-wrap: wrap;
	padding:20px;
	border-radius: 14px;
	position:relative; 
	margin:20px 0 0 0;
 }
 .credentials{
	display: flex;
    flex-wrap: wrap;
	gap:0 10px;
	 
}
 .credentials img{
 	width:280px;
 }
 /**********************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:20px;
	 transition: all 0.4s ease;
	 border-radius: 14px;
	 background-color:var(--white);
}
.display-style:hover{
	background-color:var(--primary-color);
	 
}
.item-info{
	padding:20px 30px 0 0;
	display: flex;
	justify-content: space-between;
	position:relative;
}
.item-info h2{
 	font-size:16px;
	text-transform:uppercase;
	line-height:normal;
	color:var(--primary-color);
	margin:0;
}
.display-style:hover h2{
	color:var(--white);
}
.item-info:before{
	width:30px;
	height:30px;
	border-radius:50%;
	position:absolute;
	top:15px;
	right:0;
	content:'';
	z-index:1;
	transition: all 0.4s ease;
	background-image: url(../images/icons/button-arrow.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-color:var(--primary-color);
	background-size:50%;
	transition: all 0.4s ease;	
} 
 .display-style:hover .item-info:before{
	background-color:var(--secondary-color);
	transform:rotate(360deg);
}
 
.shadow{	   
	  box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);  
 }
  
.iconic{
	width:100%;
	display:block;
	position:relative;
	padding:20px 20px 020px 100px;
	min-height:100px;
	border-radius: 14px;
	background-color:var(--white);
}
.iconic:last-child{
	border-bottom:0;
}
.iconic h2{
	font-size: 20px;
	font-family:var(--font-bold);
	margin:0 0 15px 0;
	line-height:30px;
}
.webicon{	
	display: flex;
	justify-content: center;
	align-items: center;
	position:absolute;
	left:20px;
	top:20px;
	width:50px;
	height:50px;
	text-align:center;
	color:var(--white);
	font-size:20px;
	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;
}


 .boxy{	   
	  box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);
	  padding:40px;
	  background-color:var(--grey-light); 
 }
  
  
/**********************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:100px 0;
	margin:0;
	font-size:14px;
	color:var(--white);
}

.footer a {
	color:var(--white);
}
 .footer a:hover  {
	color:rgba(255, 255, 255, 0.5);
}  
 .footer-row{     
    display: flex;
    flex-wrap: wrap;
	 
}

.footer-col{
	width:25%;
}

.footer-col ul, .footer-col ul li{
	margin:0;
	padding:0;
	list-style:none;
}

.footer-col ul li a{
	display:block;
	padding:5px 0;
	line-height:normal;
	}

.footer-col h2{
	font-family:var(--font-bold);
	font-size:14px;
	line-height:normal;
	margin:0 0 30px 0;
	text-transform:uppercase;
	}

.lower-footer{
    display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	border-top:1px solid rgba(255, 255, 255 ,0.2);
	padding:50px 0 0 0;
	margin-top:50px;
	align-items: center;
}

.copy{}
.footer-logo{}
.footer-logo img{
	width:160px;
}
.social {
 	padding:10px 0;
	display:flex;
	vertical-align:middle;
 
}
.social a  {
	width:35px;
	height:35px;
	line-height:35px;
	border-radius: 50%;
	text-align:center;
	color:var(--white);
	font-size:16px;
	margin:5px; 
	display:inline-block;
	text-align:center;
	background-color:var(--secondary-color);
}
.social a:hover  {
	color:var(--primary-color);
	background-color:var(--tertiary-color);
}
 /**********************/
 .address-box{
	padding:40px;
	background-color:var(--primary-color);
	color:var(--white);
	border-radius: 16px;
	
 
	} 
.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:18px;
	font-family:var(--font-bold);	 
	margin:0;
	line-height:normal;
 }
.add i{
	width:35px;
	height:35px;
	line-height:35px;
	background-color:var(--secondary-color);
	color:var(--white);
	font-size:14px;
	margin:0;
	position:absolute;
	left:0;
	top:0;
	text-align:center;
	border-radius: 50%;
 
	
}
 .google-map{
     overflow: hidden;
     width: 100%;
	 height:100vh;
	 margin:0;
	 padding:0;
	 outline:none;
	 border:0;
	 display:block;
	  
}
 .map-container {
  width: 100%;
  height:60vh;
  overflow: hidden;
  filter: grayscale(100%); /* Make map grayscale */
  -webkit-filter: grayscale(100%);
  border: none;
  background-color:var(--white);
}
.ext{
	display:inline-block;
	padding-top:10px;
}
.add a{
	color:var(--whiite);
	}
.add a:hover{
	color:var(--primary-color);
	}
/******************************/

ul.list {
	margin: 0;
	padding: 0;

}

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(--secondary-color);
	font-size: 16px;
}
ul.list li h2{
	font-size:16px;
	line-height:normal;
	font-family:var(--font-bold);
	margin:0 0 10px 0;
	
}
/*****************************/
 
 
.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*****************/

 
 

.banner { 
	width: 100%;
	height:50vh; 
	overflow:hidden;	 
	display: flex;
	justify-content: center;
	flex-direction:column;
	text-align:center;
	position: relative;
	align-items: center; 
	background-image: url(../images/backgrounds/banner.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;

}
.banner .container{
	position:relative;
	z-index:4;
	 
}
 
 
.banner h2 {
	 
	 
	color:var(--white);
	text-align:center;
	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;
}
 
 
 /*****************************/

.breadcrumb {   
    display: flex;
	color:var(--white);
	margin:0;
	position:relative;
	z-index:2;
	width:100%;
	justify-content: center;
	 

}
 
.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;
}
.fix-bg{
	background-attachment:fixed !important;
}
/**************************/
 
 .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 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: 12px;
	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(--black);
     stroke-width: 4;
     box-sizing:border-box;
     -webkit-transition: all 200ms linear;
     transition: all 200ms linear;
}


 
/************************************* 1400px *************************************/

@media only screen and (max-width: 1400px) {
.container {
	width: 100%;
	padding:0 25px;
	}
 header,  header.smaller{
	border-bottom:0;
	position:relative;
	left:auto;
	top:auto;
	padding:10px 0;
	background-color:var(--white);
	box-shadow: none; 
} 

  
 
.logo{
	width:130px;
	padding:10px 15px;
}
 .nav-group{
	gap:0 20px;
	flex-direction: row-reverse;
	margin-right:20px;
	} 
.contact-bt{
	margin-right:0;
}
.contact-bt a{
	display:block;
	border:1px solid var(--grey-dark);
	color:var(--black);
	font-size:10px;
	padding:8px 12px;
	line-height:normal;
}

}

/************************************* 1280px *************************************/
@media only screen and (max-width: 1280px) {
.heading{
	font-size:30px;
	line-height:normal;
	color:var(--black)
	 
}
.heading span{ 
	font-family:var(--font-bold);
	
}
.subheading {
	font-size: 24px;
	line-height:normal; 
	font-family:var(--medium);
	color:var(--black)
}

.funfacts{
	margin-bottom:15px;
	}
	
 
.funfacts .item h2{
	font-size:38px;
}
}
}
/************************************* 1024px *************************************/
@media only screen and (max-width: 1024px) {

 .section-spacing{
	 padding:40px 0;
 }
 
 
.funfacts .item h2{
	font-size:34px;
 
}
   

}

/************************************* 980px *************************************/
@media only screen and (max-width: 980px) {
 
 .funfacts{
    grid-template-columns: repeat(1, 1fr);
} 
 .funfacts .item{
	border-bottom:1px solid var(--grey);
	padding:10px 0;
	display: flex;
    flex-wrap: wrap;
	gap:0 15px;
	align-items: center;
} 
 
}

/************************************* 900px *************************************/
@media only screen and (max-width: 900px) {
.footer-col{
	width:50%;
}
 
}

/************************************* 767px *************************************/
@media only screen and (max-width: 768px) {
 
 .border-right{
 	border-right:0;
 }
 /************video************/
 

.intro-content{
	position:relative;
	padding:50px 0;
}

 
 
 .rotating-circle{
	right:10px;
	top:10px;
}
 
 
 
}

/************************************* 640px *************************************/
@media only screen and (max-width: 640px) {
 
body {
}


.features{   
    grid-template-columns: repeat(1, 1fr);
	padding:25px 0 0 0;
	
    }
 .features .item{   
	gap:0 15px;
	border-left:0;
	border-bottom:1px solid var(--grey);
	padding:10px 0;
	justify-content: flex-start;
}
.features .item:last-child{
	border-right:0;
}

 .features .item .icon{
 	width:45px;
	height:45px; 
	padding:8px;
 }	
 
  .features .item h2{
	  font-size:16px;
}

.res-border-bottom{
 	border-bottom:0;
 }
.heading{
	font-size:30px;
} 
 
.scroll h2 {
  font-size:50px;
  line-height: 50px;
   
}
 
.RightToLeft {
  animation: RightToLeft 5s infinite linear;  
}
 .display-style{  
	 padding:10px;
}
.item-info h2{
 	font-size:14px;
}

.apps{
	 width:100%;
}
.apps img{
	width:100px;
}

.copy, .footer-logo{
	width:100%;
}
.footer-logo{
	margin-bottom:20px;
}
 
 .boxy{	   
	  padding:20px;
 }
 .subheading{
 	font-size:20px;
 }
 .footer-col{
	width:100%;
}
 .credentials{
 
	margin-bottom:15px;
 }
 .credentials img{
 	width:200px;
 }
}

/************************************* 480px *************************************/
@media only screen and (max-width: 480px) {
 
}

/************************************* 360px *************************************/
@media only screen and (max-width: 360px) {}

/************************************* 320px *************************************/
@media only screen and (max-width: 320px) {}