@charset "utf-8";
  @import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap');
  /*
   font-family: "Instrument Sans", sans-serif;
   */
@font-face {
    font-family: 'ciguatera';
    src: url('../fonts/ciguatera.eot');
    src: url('../fonts/ciguatera.eot') format('embedded-opentype'),
         url('../fonts/ciguatera.woff2') format('woff2'),
         url('../fonts/ciguatera.woff') format('woff'),
         url('../fonts/ciguatera.ttf') format('truetype'),
         url('../fonts/ciguatera.svg#ciguatera') format('svg');
}

:root {
	--body-font: "Instrument Sans", sans-serif;
	--body-color: #000;
	--primary-color: #000;
	--secondary-color: #3A3A3A;
	--tertiary-color: #686868;
	--quaternary-color:#A0A0A0;	
	--black: #000;
	--white: #fff;
	--grey: #DCDDDE;	
	--grey-light: #F8F8F8;
	--grey-dark: #6D6D6D;		 	 
	--light:300;
	--medium:400;
	--semi-bold:500;
	--bold:600;
	--heading-font:"ciguatera", sans-serif;
	--gradient:linear-gradient(to top right, var(--primary-color), var(--secondary-color));
}

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


/* *********Scrollbar Styling *************/
* {
  scrollbar-width: thin;
  scrollbar-color: var(--black)  rgba(0, 0, 0, 0.7);  
}

 
 

::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 20px!important; 
  border: 2px solid var(--secondary-color);
}

::-webkit-scrollbar-thumb:hover {
  background-color: #000;    
}

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

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);
  color: var(--white);
  -webkit-text-fill-color: var(--white); /* important */
}

::-moz-selection {
  background: var(--primary-color);
  color: var(--white);
  -webkit-text-fill-color: var(--white);
}

a {
	color: var(--body-color);
	text-decoration: none;
	transition: all 0.4s ease;
}

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

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

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

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

a img {
	border: 0;
}

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


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

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

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

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

 

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

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

/*************** PRELOADER ***************/
 
    #preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	z-index: 9999999; /* Ensure it sits on top of everything */
	display: flex;
	justify-content: center;
	align-items: center;
	transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
	background-image: url(../images/Flolux-logo-black.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:80px;
        }

        /* The Spinner */
        .spinner {
            width: 120px;
            height: 120px;
            border: 1px solid var(--black);
            border-top: 1px solid var(--grey);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        /* Keyframes for rotation */
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Hide class to be added via JS */
        #preloader.hidden {
            opacity: 0;
            visibility: hidden;
        }


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

.container {
	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%;
	}	
 
 
 /*******image-style********/
 
.image-style{
	position:relative;
	padding:0 0 20px 20px;
}
.image-style img{
	width:100%;
	display:block;
}

.image-style:after{
	position:absolute;
	left:0;
	bottom:0;
	width:40%;
	height:50%;
	content:'';
	z-index:-1;
	background-color:var(--grey-light);
 
}
/*************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%;
	filter: grayscale(100%);
	-webkit-filter: grayscale(100%);	
 	-webkit-transition: all .5s;
    transition: all .5s;
}
.hover-effect:hover img {
    -webkit-transform: scale(1.09, 1.09);
    transform: scale(1.09, 1.09);     
    transition: all 0.4s ease;	 
	-webkit-filter: none;   
	filter: none;
}


 /*.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;
}*/
 
 
    canvas {
            display: block;
            width: 100%;
            height: 100%;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 9;
            pointer-events: none; /* CRITICAL: Allows clicking links and buttons underneath */
        }

 
		
		
section {
	width: 100%;
	display:block;
	position: relative;
}

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

.hero-section{
	position:relative;
	overflow:hidden;
}
.video-wrap{
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position:relative;
}
 .video-wrap:before{
	width:100%;
	height:100%;
	position:absolute;	
	left:0;
	top:0;
	content:'';
	z-index:2;
	background-color:rgba(0, 0, 0,0.5);
 
}
 
 
 
 video {
    /*position: absolute;*/
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-tagline{
	position:absolute;
	width:100%;
	text-align:center;
	left:0;
	bottom:50px;
	z-index:3;
	color:var(--white);
	padding:0 25px;
}
.video-tagline h1{	 
	font-size:48px;
	line-height:48px;
	font-family:var(--heading-font);	
	z-index:3;
	margin:0 0 10px 0;
}
.video-tagline h2{	 
	font-size:20px;
	line-height:24px;
	margin:0;
}
/*********************************************/ 
 
 
header{
    position:absolute;
    top:0;
    left:0;
    width:100%;
	color:var(--white);
    padding:15px 50px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:9;
    transition:
        transform .45s ease,
        background .45s ease,
        padding .45s ease,
        box-shadow .45s ease;
}
header.sticky{
    position:fixed;
    top:0;
    background:var(--black);
    padding:15px 50px;
}
header.hide {
    transform: translateY(-100%);
}

.head-group{
	width:100%;
	display:flex;
	align-items: center;
	flex-wrap: wrap; 
    justify-content:space-between;
	position:relative;
	}
 .logo { 
	width:170px;
	position:absolute;
	margin-left:-85px;
	left:50%;
	top:20px;
	transition: all 0.4s ease; 
}
 
.logo img {
	width:100%;
	display:block;
}
header.sticky .logo {
	width:100px;
	margin-left:-50px;
	top:15px;
}
.call{} 
.call a{
	align-items: center;
	display: flex;
	gap: 0 10px;
	border:1px solid var(--white);
	border-radius: 50px;
	color:var(--white);
	padding:5px 10px;
	font-size:12px;
}
 
 .call a:hover{
	 color:rgba(255, 255, 255, 0.5);
}
/***********social ***********/
 

.link {}

.link a {
	border-radius: 50px;
	color:var(--black);
	font-weight:var(--font-medium);
	font-size: 14px;
	height:46px;
	padding:0 70px 0 30px;
	display:inline-flex;
 	align-items: center;
	border:1px solid var(--grey-dark);
	position: relative;
	overflow:hidden;
	margin:0;	 
	font-family:var(--medium);
	transition: all 0.4s ease;

}
.link a:hover {
	color:var(--white);
}
.link a:before{
	width:50px;
	height:100%;
	position:absolute;
	top:0;
	right:0;
	content:'';
	z-index:2;
	transition: all 0.4s ease;	 
	background-image: url(../images/icons/arrow.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:20px;
 	transform: rotate(-45deg);

} 

.link a:hover:before{
	width:40px;
	transition: all 0.4s ease;
	filter: brightness(0) invert(1);
	}
 .link a:after{
 	width:0;
 	height:100%;
	position:absolute;
	left:0;
	top:0;
	background-color:var(--primary-color);
	content:'';
	z-index:0;
	transition: all 0.4s ease;
 
 }
 .link a:hover:after{
 	width:100%;
 }
 .link a span{
	 position:relative;
 	z-index:2;
 }
 
.caps{
	text-transform:uppercase;
}
 
.heading-font{
 	font-family:var(--heading-font)!important;
 }

.theme-heading{
	font-family:var(--heading-font)!important;
	line-height:88px;
	font-size:88px;
}
.heading{
	font-size:50px;
	line-height:normal;
	 
}
.heading span{ 
	font-family:var(--medium);
	
}
.subheading {
	font-size: 40px;
	line-height:normal; 
	font-family:var(--medium);
}
 
.subtitle{
	font-size: 22px;
	font-family:var(--font-bold);
 
}
.bold{
	font-weight:var(--font-bold);
}
strong{
	font-weight:var(--semi-bold);
}
.section-title{
	display: flex;
    flex-wrap: wrap;
	justify-content: center;	 
}
 .section-title span{
	display:flex;
	justify-content: center;
	text-align:center;
	font-family:var(--font-medium);
	font-size:16px;
	line-height:normal;
	position:relative;
	margin-bottom:20px;
	padding-bottom:20px;
}
 .section-title span:after{
 	width:50px;
	height:1px;
	background-color:var(--secondary-color);
	position:absolute;
	left:50%;
	bottom:0;
	margin-left:-25px;
	content:'';
 }
/****************************/
  
.pos-rel{
	position:relative;
}

/*********products card*****************/
.product-grid{
	display: grid;
	grid-gap:40px 20px;
	grid-template-columns: repeat(3, 1fr);
	}
.product-grid .item{}

.product-grid .item h2{
	font-size:20px;
	padding:20px 0;
	font-weight:var(--semi-bold);
}
.product-grid-two{
	grid-template-columns: repeat(2, 1fr);
	}
.product-grid-three{
	grid-template-columns: repeat(3, 1fr);
	}	
.product-grid p{
	margin:0;
}
/*********features grid*****************/

.features-grid{
	display: grid;
	grid-gap:5px;
	grid-template-columns: repeat(6, 1fr);
	}
.features-grid .item{
	background-color:var(--grey-light);	 
	text-align:center;
	transition: all 0.4s ease;
	font-size:14px;
	padding:40px 20px;
}
.features-grid .item:hover{
	background-color:var(--black);
	color:var(--white);
}
.features-grid .item h2{
	font-size:20px;
	line-height:normal;
	margin-bottom:10px;
	font-weight:var(--semi-bold);
}
.icon-row{
	display: flex;
	justify-content: center;
	margin-bottom:20px;
}

.icon-row .icon{
	width:70px;
	height:70px;
	display: flex;
	justify-content: center;
	align-items: center;
	border:1px solid var(--grey);
	border-radius:50%;
	padding:10px;
	transition: all 0.4s ease;
	
}
.icon-row .icon img{
	width:100%;
	display:block;
}
.features-grid .item:hover .icon{
	 filter: brightness(0) invert(1);
}



/***************facts***************/
.facts-bg{
	width:100%;
	height:100vh;
	position:relative;
	overflow:hidden;
	display: flex;
    flex-wrap: wrap;
	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/theme-bg1.jpg);
	background-attachment:fixed;
}

.scroll-words{
	 
}
.facts-wrap{
	width:100%; 
	z-index:2;align-self: end;
	padding-bottom:50px;
	/*position:absolute;
	left:0;
	bottom:50px;*/	
}
.facts{
	display: grid;
	grid-gap:20px;
	grid-template-columns: repeat(4, 1fr);
	justify-content: flex-end;
	 
}
.facts .item{
	font-size:16px;
	color:var(--white);
	text-align:center;
}
.facts .item h2{
	font-size:88px;
	line-height:88px;
	font-family:var(--heading-font);
	margin:0 0 20px 0;
}
/****************SCROLLING TEXT***************/
 
 
 
.scroll {
  width:100%;
  overflow:hidden !important;
  white-space: nowrap;
  margin: 0;
  padding:25px 0;
}

 
.scroll h2 {
  font-size: 38px;
  line-height:38px;
  color: var(--white);
  font-weight:normal;
  text-transform:uppercase;
  font-family:var(--heading-font);
  margin:0;
}
.scroll h2 span{
	width:74px;
	height:1px;
	background-color:var(--white); 
	display:inline-block;
	position:relative;
	margin:0 25px;
	vertical-align:middle
}
.RightToLeft {
  animation: RightToLeft 40s infinite linear;
}

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

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

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

 
 /**********************news**********************/
 
 
.news-widget{
  	padding:20px 0;
  	color:var(--body-color);
  }
 .news-widget h2{
  	font-size:22px;
  	line-height:normal;
 
  } 
.date{
	font-size:14px;
	line-height:14px;
	text-transform:uppercase;
	letter-spacing:1px;
	margin:0 0 15px 0;	
	vertical-align:middle;
}
.date i{
	font-size:16px;
	color:var(--secondary-color);
	vertical-align:middle;
	margin:-5px 10px 0 0; 
}
  .news-style p:last-child{
  	margin:25px 0 0 0;
  }
  /********************services scroller**********************/
  
.display-style{ 
     width: 100%;
	 aspect-ratio: 1 / 1;
     overflow: hidden;	 
	 position:relative;
	 z-index:2;
	 padding:40px;
	 transition: all 0.4s ease;
}
  
.shadow{	   
	  box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);  
 }
 
.boxy{
	margin-bottom:25px;
	background-color:var(--black);
	padding:20px;
	width:100%;
	color:var(--white);
	transition: all 0.4s ease;
}
.boxy h2{
	font-size:14px;
	line-height:14px;
	margin:0;
}

 .boxy:hover{
 	background-color:var(--grey-dark);
 }

.boxy .link {}

.boxy .link a {
	 
	font-size: 10px;
	height:30px;
	padding:0  20px;
	display:inline-flex;
 	align-items: center;
	border:1px solid var(--grey-dark);
	position: relative;
	overflow:hidden;
	color:var(--white);
	margin:0;	 
 

}
 
.boxy .link a:before{
	display:none;

} 
 
 
 
.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; 
	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(--black);
	font-size:30px;
	vertical-align:middle;
	margin:0;
	padding:15px;
	border:1px solid var(--grey);	 
	transition: all 0.4s ease;
}
.webicon img{
	display:block;
	width:100%;
}
.webicon:hover{
	background-color:var(--primary-color);
	color:var(--white);
}
.iconic p:last-child{
	margin:0;
}

.pro-spec-box{
	padding:20px;
	border:1px solid var(--black);
	border-radius: 5px;
}
 
  .pro-spec-box .webicon{	
  	border-radius: 50%;
	border:1px solid var(--black);
  }
  
  .pro-spec-box .iconic{
	min-height:auto;
}

  .pro-spec-box .webicon:hover img{
  	filter: brightness(0) invert(1);
  }
/**********************Reviews**********************/
 
 .keywords{
	display: flex;
    flex-wrap: wrap; 
	gap:5px;
	}
 .keywords span{
 	padding:5px 10px;
	border:1px solid var(--grey);
	border-radius: 50px;
	font-size:12px;
 }
.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 0 0;
	margin:0;
	background-color:var(--black);
	color:var(--white);
}

.footer a {
	color:var(--white);
}
 .footer a:hover  {
	color:rgba(255, 255, 255, 0.5);
}  
 .footer-top{     
    display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
}
.footer-info{
}
.footer-info h2{
	font-size:38px;
	line-height:normal;
	margin:0 0 15px 0;
	font-family:var(--heading-font);
}

.footer-info h3{
	font-size:20px;
	line-height:normal;
	margin-bottom:25px;
	 
}
.whatsapp-now{
	padding:10px 20px 10px 60px;
	border:1px solid var(--white);
	position:relative;
	border-radius: 80px;
	font-size:20px;
	display:inline-block;
	line-height:18px;
	position:relative;
	font-weight:var(--semi-bold);
}
.whatsapp-now i{
	position:absolute;
	left:20px;
	top:10px;
	font-size:30px;
	color:#00FF00;
}
.whatsapp-now span{
	font-size:14px;
}
.footer-logo{
	display:flex;
	position:absolute;
	left:50%;
	top:100px;
	margin-left:-75px;
  
	}
.footer-logo img{
	width:150px;
	}
.footer-links{}
.footer-links ul, .footer-links ul li{
	margin:0;
	padding:0;
	list-style:none;
}


 .footer-links ul li a{
 	width:100%;
	 display:block;
	 padding:5px 0;
 }
 
.lower-footer{
	padding:25px 0;
	border-top:1px solid rgba(255, 255, 255, 0.2);
	margin-top:50px;
}
.foot-info{
	justify-content: space-between;
	display: flex;
	align-items: center;
	font-size:12px;
	}
	
.foot-social{
	align-items: center;
	display: flex;
	gap:0 20px;
	line-height:normal;
	}
.foot-social i{
	font-size:16px;
}
.social {
 	padding:0;
	display:flex;
	vertical-align:middle;
	padding:0 40px;
	gap:0 5px;
 
}
.social a  {
	width:40px;
	height:40px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	text-align:center;
	color:var(--white);
	font-size:18px;
	display:inline-flex;
	border:1px solid var(--grey);
}
.social a:hover  {
	color:var(--white);
	background-color:var(--secondary-color);
}
.address{
	padding:50px;
}
.address p{
	margin:0 0 10px 0;
}
 /**********************/
 .address-box{
	padding:30px;
	background-color:var(--black);
	color:var(--white);	 
	} 
.add{
	width:100%;
	position:relative;
	padding:0 0 0 60px;
	min-height:30px;
	margin-bottom:20px;
	vertical-align:top;
 
}
 .add h2{
 	font-size:18px;
	line-height:20px;
	font-weight:var(--bold);
	margin:0;
	line-height:normal;
 }
.add i{
	width:35px;
	height:35px;
	line-height:35px;
	border-radius: 50%;
	color:var(--white);
	border:1px solid 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(--white);
	}
.add a:hover{
	color:var(--tertiary-color);
	}
/******************************/

ul.list {
	margin: 0;
	padding: 0;
	margin-bottom: 30px;
}

ul.list li {
	list-style: none;
	padding: 2px 7px 10px 30px;
	line-height: normal;
	position: relative;
}

ul.list li:before {
	/*content: "\f111";*/
	content: "\f138";
	position: absolute;
	top: 4px;
	left: 0;
	font-family: "FontAwesome";
	color: var(--primary-color);
	font-size: 16px;
}

/*****************************/
 
 
.table-wrap{
	width:100%;
	position:relative;
	display:flex;
	overflow-x:scroll;
} 
table { 
	min-width:100%;
	width:900px;
	border-collapse: collapse; 
	
	}

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

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

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

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

 
 

/*************** INNER BANNER ***************/
.banner { 
	width: 100%;
	height:70vh;	 
	overflow:hidden;
	display: flex;
	flex-direction:column;
	position: relative;
	align-items: center; 
	justify-content: flex-end;
	padding-bottom:50px;
	text-align:center;
	background-attachment:fixed !important;
 
}
.banner:after{
	width: 100%;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	content:'';
	z-index:1;
	background-color:rgba(0, 0, 0, 0.5);
	opacity:0.5;
}
.banner h2 {
	color:var(--white);	
	font-weight:var(--bold);
	font-family:var(--heading-font);	
	font-size:40px;
	line-height:normal;
	padding:0;
	position:relative;
	z-index:2;
}
 
 
 /*****************************/

.breadcrumb {   
    display: flex;
	color:var(--grey-dark);
	margin:0;
	position:relative;
	z-index:2;
	margin-top:20px;
	 
}
 
.breadcrumb ul {    
	display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
	color:var(--white);
	justify-content: center;
	width:100%;
}

.breadcrumb li {
    margin: 0;
	font-size:14px;
	color:var(--white);
}
    
.breadcrumb li:not(:last-child)::after {
    display: inline-block;
    margin: 0 15px;
    /*content: " → "; */
	 content: " / "; 
	 
}
 .breadcrumb a{
   color:var(--white);
}
 .breadcrumb a:hover{
   color:rgba(255, 255, 255, 0.5);
 
}
 
 
 
 
 
/*************** 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**************/
 
 .contact-wrap{
 	max-width:1024px;
 	margin:0 auto;
	background-color:var(--grey-light);
	padding:40px;
}
 
 
 input.file{
    display: none;
}

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

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

*:focus {
	outline: none;
}

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

.sendbutton {
	width:100%;
	color: var(--white);
	font-size: 20px;
	font-weight:var(--bold);
	background-color:var(--black);
	border:0;
	padding: 20px 30px;
	font-style: normal;
	display: inline-block;
	position: relative;
	text-align:left;
	margin:0;
	background-image: url(../images/icons/arrow-white.svg);
	background-repeat: no-repeat;
	background-position: 98% center;
	background-size:20px;
	transition: all 0.4s ease; 
}

.sendbutton:hover {	
	background-color:var(--secondary-color);
	background-position: 96% center;
 
}
 
::-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;
	}
 
 
  
}
/************************************* 1024px *************************************/
@media only screen and (max-width: 1024px) {

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

}

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

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

 
}

/************************************* 767px *************************************/
@media only screen and (max-width: 768px) {
 
 .theme-heading{ 
	line-height:40px;
	font-size:40px;
}
.heading{
	font-size:30px;
	line-height:normal;
	 
}

.product-grid{
	grid-gap:10px;
	grid-template-columns: repeat(2, 1fr);
	}
	
.features-grid{
	grid-template-columns: repeat(2, 1fr);
	}
.facts{
	grid-gap:10px;
	grid-template-columns: repeat(2, 1fr); 
}
}

/************************************* 640px *************************************/
@media only screen and (max-width: 640px) {
 
body {
 
	}
	
.video-wrap{
	height: 40vh;
}
 
 header, header.sticky{    
    padding:10px 20px;
	position:relative;
	left:auto;
	top:auto;
	background-color:var(--black);
}
 
.head-group{
	width:auto;
	gap:0 15px;
	 
}	
 .logo { 
	width:100px;
	position:relative;
	margin-left:0;
	left:auto;
	top:auto;
	transition: all 0.4s ease; 
}
 
.logo img {
	width:100%;
	display:block;
}
header.sticky .logo {
	width:100px;
	margin-left:-50px;
	top:30px;
}

.video-tagline{
	bottom:20px;
	 
}
.video-tagline h1{	 
	font-size:24px;
	line-height:28px;
 
}
.video-tagline h2{	 
	display:none;
 
}
 
.banner { 
	height:40vh;	 
	 
}
.banner h2 {
	font-size:20px;
	 
}
 
.scroll h2 {
  font-size:50px;
  line-height: 50px;
   
}
 
.RightToLeft {
  animation: RightToLeft 5s infinite linear;  
}
 
.iconic{
	padding:0 0 0 70px;	 
}
.iconic:last-child{
	border-bottom:0;
}
.iconic h2{
	font-size: 20px;
	line-height:28px;
}
.webicon{		 
	width:50px;
	height:50px;
	padding:10px;
	 
} 

.product-grid, .product-grid-two{
	grid-gap:30px 10px;
	grid-template-columns: repeat(1, 1fr);
	}
.product-grid .item h2{
	font-size:18px;
	line-height:18px;
	margin:0;
}
 
.features-grid{
	grid-template-columns: repeat(2, 1fr);
	}
	
.heading{
	font-size:28px;
	}

 .subheading{
	font-size:22px;
	}

.facts-bg{
	background-image: url(../images/backgrounds/theme-bg-mobile.jpg);
	 
}
.facts{
	grid-gap:10px;
	grid-template-columns: repeat(2, 1fr);
	 
}
.facts-wrap{
	position:relative;
	left:auto;
	bottom:auto;
	padding:50px 0 25px 0;
}
.facts .item{
	font-size:14px;
}
.facts .item h2{
	font-size:28px;
	line-height:28px;
	margin:0 0 10px 0;
}	

 
.scroll h2 {
  font-size: 28px;
  line-height:28px;
  
}
 
.RightToLeft {
  animation: RightToLeft 50s infinite linear;
}
.footer-logo{
	position:relative;
	left:auto;
	top:auto;
	margin:0;
	
  
	}
 .footer-top{     
    flex-direction:column;
	gap:25px 0;
}
.foot-info{
	flex-direction:column;
	gap:15px 0;
}
.copy{
	width:100%;}
.foot-social{
	width:100%;
}
.social {  
	width:100%;
	padding:0 20px;
 
}

.address{
	padding:20px 20px;
	font-size:14px;
	width:100%;
 
}
}	

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

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

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