@charset "utf-8";
  
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
 /**
font-family: "Zalando Sans Expanded", sans-serif;
 ***/

:root {
	--body-font: "DM Sans", sans-serif;
	--body-color: #000;
	--primary-color: #70C8D1;
	--secondary-color: #197582;
	--tertiary-color: #E9FDFF;
	--quaternary-color:#C3EEF3;	
	--black: #000;
	--white: #fff;
	--grey: #DCDDDE;	
	--grey-light: #F8F8F8;
	--grey-dark: #6D6D6D;
	--font-light:300;		 	 
	--font-normal:400;
	--font-medium:500;
	--font-semi-bold:500;
	--font-bold:600;
}

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); 
	 
}


/* *********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(--primary-color);
	text-decoration: none;
	transition: all 0.4s ease;
}

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

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

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

.hr {
	margin: 50px 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;
}
.img-fluid{
	width:450px;
 
}
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: 9999; 
            display: flex;
            justify-content: center;
            align-items: center;
            transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
        }

        /* The Spinner */
        .spinner {
            width: 70px;
            height:70px;
			position:relative;
            border: 2px solid var(--primary-color);
            border-top: 2px solid var(--secondary-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
			background-image: url(../images/phomi-brand-icon.svg);
			background-repeat: no-repeat;
			background-position: center center;
			background-size:70%;

        }
	   
        /* 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%;
	}	
 
/*************HOVER EFFECT*******/

.hover-effect{
	width:100%;
	position:relative;
	overflow:hidden;
	--cut: 50px;

  -webkit-clip-path: polygon(
    0 0,
    calc(100% - var(--cut)) 0,
    100% var(--cut),
    100% 100%,
    0 100%
  );

  clip-path: polygon(
    0 0,
    calc(100% - var(--cut)) 0,
    100% var(--cut),
    100% 100%,
    0 100%
  );
 
}

 .hover-effect i{
    width:50px;
    height:50px;
    background-color:var(--primary-color);
	border-radius: 50%;
    color:#fff;
    position:absolute;
    left:50%;
    top:-100px;
    z-index:1;
    line-height:50px;
    text-align:center;
    margin:0 0 0 -25px;
    transition: all 0.4s ease;
}
 .hover-effect:hover i{
    top:50%;
    margin:-25px 0 0 -25px;
}

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

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


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

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

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

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

 header{
	 width:100%; 
	 position:absolute;
	 left:0;
	 top:0;
	 padding:40px 0 20px;
	 z-index:5;
	 transition: all 0.4s ease;
	 border-bottom:1px solid rgba(255, 255, 255 ,0.4);
}
 header.smaller {
	padding:30px 0;
	position: fixed;
	background-image:none;
	background-color:var(--black);
	border-bottom:0;
	/*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:200px;
	position:relative;
	transition: all 0.4s ease; 
}
 
.logo img {
	width:100%;
	display:block;
}
header.smaller .logo {
	width:120px;
}
.nav-group{
	display: flex;
    flex-wrap: wrap;
	align-items: center;
	gap:0 50px;
	} 
.contact-bt{}
.contact-bt a{
	display:block;
	padding:12px 20px;
	color:var(--white);
	font-size:16px;
	line-height:normal;
	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(--black);
	font-size: 16px; 
	padding: 0  70px 0 30px;
	height:50px;
	font-style: normal;
	display: flex;
	align-items: center;
	position: relative;
	overflow:hidden;
	margin:0;
	transition: all 0.4s ease;
	border:1px solid var(--black);

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


.link a:hover:before{
	 width:100%;
	 left:0;
	 right:auto;
}
 .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:60px;
	line-height:normal;
	 
}
.heading span{ 
	font-family:var(--medium);
	
}
.subheading {
	font-size:34px;
	line-height:normal; 
	font-family:var(--medium);
}
 
.subtitle{
	font-size: 24px;
	line-height:normal; 
	font-family:var(--font-bold);
 
}
.bold, strong{
	font-weight:var(--font-bold);
}

.section-title{
	display: inline-block;
    
  
}
 .section-title span{
	display:flex;  
	font-weight:var(--font-medium);
	font-size:16px;
	line-height:normal;
	position:relative;
	margin-bottom:20px;
	padding-bottom:20px;
	border-bottom:1px solid var(--primary-color);
}
 
/****************************/
  
.pos-rel{
	position:relative;
}


 /************rotating circle************/
 
 
 .rotating-circle{
	width:200px;
	height:200px;
	display:inline-block;
	position:absolute;
	top:0;
	right:0;
	z-index:2;
	border-radius:50%;
 
}
.rotating-circle:after {
	width:100%;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	content:'';
	background-image:url(../images/rotating-text.svg);
	background-repeat: no-repeat;
	background-position: center  center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	-webkit-animation: rotation 20s infinite linear;

}
.rotating-circle:before{
	width:130px;
	height:130px;
	position:absolute;
	left:35px;
	top:35px;
	content:'';
	z-index:6;
	background-color:var(--primary-color);
	background-image: url(../images/phomi-brand-icon-white.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:70%;
	border-radius:50%;
	outline:1px dashed var(--grey-dark);
    outline-offset: 5px;
	/*-webkit-animation: rotation2 20s infinite linear;*/
 
}
@-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%;
  overflow-x:hidden !important;
  overflow-Y:hidden !important;
  overflow:hidden !important;
  
 }
 
.scroll {
  white-space: nowrap;
  background-color:var(--black);
  padding:20px 0;
  margin: 0;
}

.scroll div {
  display: flex;
    
}

.scroll h2 {
  font-size: 30px;
  line-height:30px;
  color: var(--primary-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%);
  }
}


/***********home page styles***********/
  
.intro{ 
    width:100%;
	display: flex;
    flex-wrap: wrap;
	position:relative;
	justify-content: space-between;
	padding-right:220px;
 
}
 .innovations{
 	display: grid;
    grid-gap:20px;
    grid-template-columns: repeat(4, 1fr);
	}
 .innovations .item{
	 position:relative;
	 padding:40px;
	 text-align:center;
	 font-size:24px;
	 line-height:normal;
	 background-color:var(--grey-light);
	 align-items: center; 
	 display:flex;
	 flex-wrap: wrap;
	 flex-direction:column; 
	 justify-content: center;
	 transition: all 0.4s ease;
 
}
 .innovations .item:hover{
 	background-color:var(--primary-color);
	color:var(--white);
 }
 .innovations .phomi-icon{
 	width:80px;
 	height:80px;
	border-radius: 50%;
	padding:15px;
	border:1px solid var(--primary-color);
	transition: all 0.4s ease;
 
}
 .innovations .item:hover .phomi-icon{
 	transform: rotate(360deg);
	filter: brightness(0) invert(1);
	 
 }
  .innovations .phomi-icon img{
 	width:100%;
	display:block;
}
 .innovations p{
 	margin:25px 0 0 0;
	 
 }
 /*********intro-products-grid*********/
 
  .intro-products-grid{   
    display: grid;
    grid-gap:20px;
    grid-template-columns: repeat(3, 1fr);
	padding:0 10%;
	margin-top:100px;
    }

.intro-products-grid .item{
	position:relative;
	transition: all 0.4s ease; 
}
.intro-products-grid .foot{
	position:relative;
	padding:20px 0;
	border-bottom:1px solid var(--black);
	transition: all 0.4s ease; 
}
.intro-products-grid .item:hover .foot{
	padding:20px 20px;
	border-bottom:1px solid var(--primary-color);
} 
.intro-products-grid .item a{
	color:var(--black);
	display:block;
	transition: all 0.4s ease; 
}
.intro-products-grid .item a:hover{
	background-color:var(--primary-color);
	color:var(--white);
}
.intro-products-grid .item h2{
	margin:0;
	line-height:normal;
	font-size:18px;
	padding:;
	}
 
	

.arrow-bt{
	width:40px;
	height:40px;
	position:absolute;
	bottom:8px;
	right:0; 
	z-index:2;
	content: "";
	transform: rotate(45deg);
	background-image: url(../images/icons/arrow.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:50%;
	transition: all 0.4s ease;
 
}
.intro-products-grid .item:hover .arrow-bt {
	transform: rotate(-0deg);
	filter: brightness(0) invert(1); 
	
}	
.intro-products-grid .item:nth-child(2) {
	/*margin-top:100px;*/
}
.intro-products-grid .item:nth-child(3) {
	/*margin-top:200px;*/
}

/****************cirtificates***********************/

 .cirtificates{   
    display: grid;
    grid-gap:20px;
    grid-template-columns: repeat(6, 1fr);
    }
 .cirtificates .item{
	 padding:15px;
	 background-color:var(--white);
}
 .cirtificates .item img{
	 width:100%;
	 display:block;
}		
/*****************video settings************************/

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

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

 .slogan{
 	 width:100%;
	 height:100%;
	 position:absolute;
	 left:0;
	 top:50px;
	 display:flex;	 
	 flex-wrap: wrap; 
	 /*align-items: center;*/
	 z-index:2;
}

.slogan h2{
  font-family:var(--heading-font);
  font-weight:var(--font-bold);
  font-size:40px;
  line-height:40px;
  margin:0 0 25px 0;  
  color:var(--white);
  padding-left:25px;
  border-left:4px solid var(--primary-color);
   
}
.slogan h2 span{
	-webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: white;
  -webkit-text-fill-color: transparent;  

}
.slogan p{
	font-size:26px;
	width:40%;
	line-height:normal;
}

/***************** funfacts **********************/

.facts{   
    display: grid;
    grid-gap:40px;
    grid-template-columns: repeat(4, 1fr);
	margin:80px 0;
}
.facts .item{   
    display: flex;
    flex-wrap: wrap;
	transition: all 0.4s ease;
	align-self: flex-start;
	background-color:var(--grey-light);
	position:relative;
	aspect-ratio: 1 / 1;
	padding:40px;
   
  
}
.facts .item:before{
	width:4px;
	height:100px;
	position:absolute;
	left:-4px;
	top:0;
	content:'';
	background-color:var(--primary-color);
}


.fact-head{
	display:flex;
	flex-wrap: wrap; 
	flex-direction:column;
	 
	
	 
  }
.fact-head h2 {
 	font-size:50px;
	line-height:50px;
	color:var(--primary-color);
	font-weight:var(--bold);
	margin:0 0 15px 0;
 } 
 
.fact-head h3{
 	font-size:20px;
	color:var(--black);
	margin:0;
 
 } 
 .facts .item .foot{
	 align-self: flex-end;
   
  }
/**********************news**********************/
 
 
.news-widget{
  	padding:40px 0;
  	color:var(--body-color);
	border-bottom:1px solid var(--black);
  }
 .news-widget h2{
  	font-size:22px;
  	line-height:normal;
	margin:0;
	padding:0;
 
  } 
.date{
	font-size:14px;
	line-height:14px;
	color:var(--primary-color);
	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-widget p:last-child{
  	margin:25px 0 0 0;
  }
  /********************services scroller**********************/
  
  .clip-path{
  	/*overflow:hidden;
    
    -webkit-clip-path: polygon(
        0 60px,
        60px 0,
        100% 0,
        100% 100%,
        0 100%
    );
    clip-path: polygon(
        0 60px,
        60px 0,
        100% 0,
        100% 100%,
        0 100%
    );*/
	
	/* -webkit-clip-path: polygon(
        0 0,
        100% 0,
        100% calc(100% - 80px),
        calc(100% - 80px) 100%,
        0 100%
    );
    clip-path: polygon(
        0 0,
        100% 0,
        100% calc(100% - 80px),
        calc(100% - 80px) 100%,
        0 100%
    );*/
	
--cut: 50px;

  -webkit-clip-path: polygon(
    0 0,
    calc(100% - var(--cut)) 0,
    100% var(--cut),
    100% 100%,
    0 100%
  );

  clip-path: polygon(
    0 0,
    calc(100% - var(--cut)) 0,
    100% var(--cut),
    100% 100%,
    0 100%
  );
}
 
 .boxy-content{
 	padding:40px;
 	background: var(--tertiary-color);	
	 
 }
.boxy{
  	padding:40px;
	background-color:var(--white);
  }

 
.boxy p:last-child{
	margin:0;
}


.display-style{ 
     width: 100%;
	 /*aspect-ratio: 1 / 1;*/
     overflow: hidden;	 
	 position:relative;
	 z-index:2;
	 padding:20px;
	 transition: all 0.4s ease;
	 background-color:var(--white);
}
 .pro-title{
	 margin:0;
	 padding:20px 40px 0 0;
	 font-size:24px;
	 font-weight:var(--font-medium);
	 position:relative;
	 transition: all 0.4s ease;
	 line-height:normal;
 	}
  .pro-title span{
 	 color:var(--grey-dark);
	  font-size:16px;
	  display:inline-block;
 
  }
 .pro-title::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20px;
    width: 20px;
    height: 20px;
    background: url('../images/icons/arrow.svg') no-repeat center;
    background-size: contain;
    transform: rotate(45deg);
	transition: all 0.4s ease;
}
 .display-style:hover  .pro-title::after {
 	  transform: rotate( 0deg);
 }

 .pro-description
 {
	font-size: 15px;
    line-height: 1.6;
    color: #666;
    font-weight: 400;
}
.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-weight:var(--font-bold);
	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;
	background-color:var(--primary-color);
	/*border-radius:50%;*/
	/*background-image: linear-gradient(to top, var(--primary-color), var(--secondary-color));*/
	/*background-color:var(--primary-color);*/
	transition: all 0.4s ease; 
    --cut: 30px;

    -webkit-clip-path: polygon(
        0 0,
        calc(100% - var(--cut)) 0,
        100% var(--cut),
        100% 100%,
        0 100%
    );
    clip-path: polygon(
        0 0,
        calc(100% - var(--cut)) 0,
        100% var(--cut),
        100% 100%,
        0 100%
    );
}
.webicon img{
	display:block;
	width:100%;
}
.webicon:hover{
	background-color:var(--secondary-color);
}
.iconic p:last-child{
	margin:0;
}
 

.underlined{
	padding-bottom:40px;
	margin-bottom:25px;
	border-bottom:1px solid var(--grey);
} 
  
  
/**********************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 CSS ***************/
 
.footer {
	padding:80px 0 0 0;
	margin:0;
	background-color:var(--primary-color);
	color:var(--white);
	font-size:14px;
}

   

.footer-left{
	width:25%;
}

.footer-right{
	width:65%;
}

.footer-right-menu{
	/*display: grid;
    grid-gap:0 20px;
    grid-template-columns: repeat(3, 1fr);*/
	 display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	gap:0 10px;
}
.footer-right-menu .item{}
.footer-right-menu .item h2{
	font-size:18px;
	font-weight:var(--font-bold);
	line-height:normal;
	margin:0 0 25px 0;
	padding:0;
}
.footer-right-menu .item ul, .footer-right-menu .item ul li{
	margin:0;
	padding:0;
	list-style:none;
}
.footer-right-menu .item ul li a{
	padding:5px 0;
	line-height:normal;
	display:block;
	color:var(--white);
}
.footer-right-menu .item ul li a:hover{
	color:var(--black);
}
 .footer-logo {
	 margin-bottom:25px;
 
}
 .footer-logo  img{ 
	width:150px;
	filter: brightness(0) invert(1);
}

.lower-footer{
	padding:25px 0;
	border-top:1px solid rgba(255, 255, 255, 0.5);
	margin-top:50px;
}


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

 /**********************/
 .address-box{
	padding:30px;
	background-color:var(--primary-color);
	--cut: 50px;

  -webkit-clip-path: polygon(
    0 0,
    calc(100% - var(--cut)) 0,
    100% var(--cut),
    100% 100%,
    0 100%
  );

  clip-path: polygon(
    0 0,
    calc(100% - var(--cut)) 0,
    100% var(--cut),
    100% 100%,
    0 100%
  );
	 
	} 
.add{
	width:100%;
	position:relative;
	padding:0 0 0 60px;
	min-height:30px;
	margin-bottom:20px;
	vertical-align:top;
	line-height:24px;
	color:var(--white);
	 
}
 .add h3{
 	font-size:24px;
	line-height:24px;
	font-weight:var(--font-bold);
	margin:0 0 5px 0;
	line-height:normal;
 }
  .add h3 span{
 	font-size:18px;
	line-height:18px;
 
 }
.add i{
	width:35px;
	height:35px;
	line-height:35px;
	background-color:var(--tertiary-color);
	color:var(--primary-color);
	font-size:14px;
	margin:0;
	position:absolute;
	left:0;
	top:0;
	text-align:center;
 
	
}
 .google-map{
     overflow: hidden;
     width: 100%;
	 height:450px;
	 margin:0;
	 padding:0;
	 outline:none;
	 border:0;
	 display:block;
}

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

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

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

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

.award-list{
	margin:0;
	padding:0;
	list-style:none;
}
.award-list li{
	margin:5px 0;
	padding:10px;
	color:var(--white);
	background-color:var(--primary-color);
	list-style:none;
}
.award-list li:nth-child(even) {
	background-color:var(--secondary-color);
}
.award-list li i{
	margin-right:15px;
}
/*****************************/
 
 
.table-wrap{
	width:100%;
	position:relative;
	display:flex;
 
} 
table { 
	min-width:100%;
	width:900px;
	border-collapse: collapse;
	border:1px solid var(--grey);
	
	}

/* Zebra striping */
tr:nth-of-type(odd) { 
	background-color:var(--grey-light);
	}

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

td, th { 
	padding: 8px 15px !important; 
	border:1px solid var(--grey);
	text-align: left; 
	font-size: 16px;
	} 

table h5{
	font-size:20px;
	color:var(--primary-color);
	font-weight:var(--font-bold);
}
/******************************team-style*****************/

 
 

/*************** INNER BANNER ***************/
.banner { 
	width: 100%;
	height:70vh;
	overflow:hidden;	 
	display: flex;
	flex-direction:column;
	padding-bottom:50px;
	position: relative;
	/*align-items: center; */
	justify-content: flex-end;
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-image: url(../images/backgrounds/banner.jpg);
	
      --cut: 50px;

  -webkit-clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - var(--cut)),
    calc(100% - var(--cut)) 100%,
    0 100%
  );

  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - var(--cut)),
    calc(100% - var(--cut)) 100%,
    0 100%
  );
 
}
.banner:after{
	width: 100%;
	height:50%;
	position:absolute;
	left:0;
	top:0;
	content:'';
	z-index:1;
	background-image: linear-gradient(to top, rgba(0,0,0,0), rgba(0,0,0,0.5));
 
}
.banner h2 {
	color:var(--white);	
	font-family:var(--font-medium);
	font-size:30px;
	line-height:34px;
	padding:0;
	position:relative;
	z-index:2;
}
 
/*************BANNERS*****************/ 
.ecovering{
	background-image: url(../images/backgrounds/econiclay-transformed.webp)!important;
}
.ebipv{
	background-image: url(../images/backgrounds/ebipv.webp)!important;
}
.nature-stone{
	background-image: url(../images/backgrounds/nature-stone.jpg)!important;
}

.products{
	background-image: url(../images/backgrounds/products.jpg)!important;
}
.projects{
	background-image: url(../images/backgrounds/projects.jpg)!important;
}
.edisplay{
	background-image: url(../images/backgrounds/eDisplay-Curtain.webp)!important;
}
 /*****************************/

.breadcrumb {   
    display: flex;
	color:var(--white);
	margin:0;
	position:relative;
	z-index:2;
}
 
.breadcrumb ul {
 
	display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin:0;
    padding:0;
 
}

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

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

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

*:focus {
	outline: none;
}

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

.sendbutton {
	color: var(--white);
	font-size: 30px;
	font-weight:var(--font-bold);
	background-color:var(--primary-color);
	border:0;
	padding: 20px 30px;
	font-style: normal;
	display: inline-block;
	position: relative;
	margin:0;
		--cut: 20px;

  -webkit-clip-path: polygon(
    0 0,
    calc(100% - var(--cut)) 0,
    100% var(--cut),
    100% 100%,
    0 100%
  );

  clip-path: polygon(
    0 0,
    calc(100% - var(--cut)) 0,
    100% var(--cut),
    100% 100%,
    0 100%
  );
	 
}

.sendbutton:hover {	
	background-color:var(--secondary-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(--black);
     left: 0;
     top: 0;
     height: 45px;
     width: 45px;
     cursor: pointer;
     display: block;
     z-index: 1;
     -webkit-transition: all 200ms linear;
     transition: all 200ms linear;
}
 .progress-wrap svg path {
     fill: none;
}
 .progress-wrap svg.progress-circle path {
     stroke: var(--black);
     stroke-width: 4;
     box-sizing:border-box;
     -webkit-transition: all 200ms linear;
     transition: all 200ms linear;
}


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

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

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

 
   

}


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

 .section-spacing{
	 padding:40px 0;
 }
 
 
.facts{    
    grid-gap:20px;
    grid-template-columns: repeat(2, 1fr);
 
}
.facts .item{   
	aspect-ratio: inherit;
}  
.display-style{ 
 	 padding:15px;
 
}
}

/************************************* 980px *************************************/
@media only screen and (max-width: 980px) {
 
.innovations{
    grid-gap:10px;
    grid-template-columns: repeat(2, 1fr);
	}
 
.footer-left, .footer-right{
	width:100%;
}

 .footer-right{
 	margin-top:40px;
	padding-top:50px;
	border-top:1px solid rgba(255, 255, 255, 0.5);
 
 }
 
}

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

 
}

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

.intro-products-grid{   
	padding:0;
}
 
}

/************************************* 640px *************************************/
@media only screen and (max-width: 640px) {
 
body {
 
	}
	
 header, header.smaller{	 
	 position:relative;
	 left:auto;
	 top:auto;
	 padding:15px 0;	 
	 border-bottom:0;
	 background-color:var(--black);
}
 
.logo { 
	width:150px; 
}

.intro{ 
	padding:200px 0 0 0;
}

.rotating-circle{
	top:0;
	right:50%;
	margin-right:-75px;
	width:150px;
	height:150px;
 
}
 .rotating-circle:before{
	width:90px;
	height:90px;
	position:absolute;
	left:30px;
	top:30px;
}
.heading{
	font-size:28px;
}

 
.subheading {
	font-size:22px;
}
 
.subtitle{
	font-size:20px;
}
 


.video-wrap{
	height:40vh;
}

.innovations{
    grid-gap:10px 0;
    grid-template-columns: repeat(1, 1fr);
	}
.innovations .item{
	 padding:30px;
	 font-size:20px;
	 
}

.intro-products-grid{   
    grid-template-columns: repeat(1, 1fr);
}
.intro-products-grid .item:nth-child(2), .intro-products-grid .item:nth-child(3) {
	margin-top:0;
}
 	
.banner { 
	height:40vh;	 
	 
}
.banner h2 {
	font-size:20px;
	 
}
 
.scroll h2 {
  font-size:20px;
  line-height: 20px;
   
}
 
.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;
	 --cut: 10px;
}
 

.facts{    
    grid-template-columns: repeat(1, 1fr);
	gap:10px 0;
 
}
 
 .facts .item{    
    padding:25px;
 
}  
.fact-head h2{
	font-size:40px;
	line-height:normal;
}
.display-style{ 
 	 padding:10px;
 
}

  .clip-path, .hover-effect{
 --cut: 30px;

 
}

.table-wrap{
	 
	overflow-x:scroll;
} 
.img-fluid{
	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) {}