@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,700;1,300;1,400&display=swap');
:root {
    /* --main-color:rgb(55, 85, 139); */
	--main-color: #ea4636;
	/* --main-color: #3586ff; */
}
html{
    overflow-x: hidden;
}
#html{
	overflow-y: hidden;
}
body{ 
	line-height: 1.5;
	font-family: 'Poppins', sans-serif;
	/* font-family: 'Raleway', sans-serif;    */
	font-weight: 400;
	overflow-x: hidden;
	overflow-y: hidden;
	background-color: #e2e2e2;
}
*{
	margin:0;
	box-sizing: border-box;
}
:before,:after{
	box-sizing: border-box;
}
.container{
	max-width: 92%;
	margin:auto;
}
.row{
	display: flex;
	flex-wrap: wrap;
}
.v-center{
	align-items: center;
}
ul{
	list-style: none;
	margin:0;
	padding:0;
}
a{
	text-decoration: none;
}
/* header */
.header{
	display: block;
	width: 100%;
	position: fixed;
	z-index: 99;
	padding:0.1vw;
	transition: all 0.5s ease;	
}
.header .logo{
	padding-left: 1.1vw;
	padding-right: 2.8vw;
	max-width: fit-content;
	z-index: 1;
}

.header .logo img{
	filter: brightness(0) invert(1);
	margin-top: 1vh;
	max-width: 250px;
	transition: all 0.8s ease;
}
.header .logo:hover img{
   filter: brightness(100%);
}
.header.fixed{
	/* background-color: #000000; */
	background-color: rgba(0,0,0,0.9);
}
.header .item-left{
	flex:0 0 40%;
}
.header .item-center{
	flex:0 0 60%;
	display: flex;
	justify-content: flex-end;
}
.header .item-right a{ 
     text-decoration: none;
     font-size: 16px;
     color:#555555;
     display: inline-block;
     margin-left: 10px;
     transition: color 0.3s ease;
}
.header .menu > ul > li{
	display: inline-block;
	line-height: 50px;
	margin-left: 25px;
}
#bprojects{
	cursor: pointer;
}
.header .menu > ul > li > a{
	font-size: 22px;
	font-weight: 400;
	color:#ffffff;  /*YYYYYYYYYYY*/
	position: relative;
	text-transform: capitalize;
	transition: color 0.3s ease;

}
.header.fixed .menu > ul > li > a{
	font-size: 22px;
	font-weight: 400;
	position: relative;
	text-transform: capitalize;
	transition: color 0.3s ease;

}
.header .menu > ul > li .sub-menu{
	position: absolute;
	z-index: 500;
	background-color:#212121;   /*GGGGGGGGGGGG*/
	box-shadow: -2px 2px 70px -25px rgba(0,0,0,0.3); 
	padding: 20px 30px;
	transition: all 0.5s ease;
	margin-top:25px;
	opacity:0;
	visibility: hidden;
}

.header .menu > ul > li .sub-menu > ul > li{
	line-height: 1;
}
.header .menu > ul > li .sub-menu > ul > li > a{
	display: inline-block;
	padding: 10px 0;
	font-size: 15px;
	color: #fff;
	transition: color 0.3s ease;
	text-decoration: none;
	text-transform: capitalize;
}
.header .menu > ul > li .single-column-menu{
	min-width: 280px;	
	max-width: 350px;
}
.mobile-menu-head,
.mobile-menu-trigger{
	display: none;
}
/* banner section */
.home-section{
  background-image: url('../img/home.png');
  background-size: cover;
  background-position: center;
  height: 100vh;
  max-height: 100vh;
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  overflow-y: hidden;
  /* margin-bottom: 100px; */
}
.home-section:after{
    content: '';
    position: absolute;
    box-sizing: border-box;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #000000;
    opacity: 0.2;
    z-index: 2;
}
.home-section .home-video{
	/* object-fit: fill; */
	position: absolute;
	margin: auto;
	width: 100%;
	height: 100%;
	
	overflow: hidden;
	clip-path: 0 0;
	transform: translatez(0);
}
.home-section .home-video video{
	transform: translatez(0);
	position: absolute;
	top: -100%;
	bottom: -100%;
	left: -100%;
	right: -100%;    
	overflow: hidden;
	margin: auto;
  
	min-width: 100%;
	min-height: 100%;
}
.mobile-menu-head,
.mobile-menu-trigger{
	display: none;
}

.home-section .scroll-down{
    position: absolute;
    left: 50%;
    bottom: 30px;
    height: 30px;
    width: 40px;
    margin-left: -15px;
	text-decoration: none;
	z-index: 3;
}
.home-section .scroll-down a{
    font-size: 40px;
	text-decoration: none;
	color: #e2e2e2;
	opacity: 0.3;
    display: block;
    opacity: 0.5;
} 
.home-section .scroll-down a:hover{
    animation: scrollDown 2s ease infinite;
}
@keyframes scrollDown{
    0%, 20%, 50%, 80%, 100%{
      transform: translateY(0);  
    }
    40%{
        transform: translateY(-30px);
    }
    60%{
        transform: translateY(-15px);
    }
}
/* -------------------------about section--------------------------- */
.aboutgap1{
	min-height: 25vh;
	background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgb(197, 197, 197) 65%,#e2e2e2 100%);
	opacity: 0.5;
}
.aboutgap{
	min-height: 25vh;
	background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgb(197, 197, 197) 65%,#e2e2e2 100%);
	opacity: 0.5;
}
.about-section{
	margin: auto;
    width: 80%;
	padding: 10px;
	min-height: 40%;
	/* background-color: rgb(219, 219, 218); */
	/* box-shadow: inset 0 0 8px rgb(0, 0, 0); */
}
.about-section .about-image{
    flex: 0 0 25%;
    max-width: 25%;
    padding: 15px;
}
.about-section .about-image .img-box img{
    width: 100%;
    display: block;
	border: solid #000;
}

.about-section .about-content{
    flex: 0 0 75%;
    max-width: 75%;
    padding: 15px;
    /* background-color: blue; */
}
.about-section .about-text{
	margin:auto;
	padding-left: 50px;
	font-family: 'Ubuntu', sans-serif;
	color: #7a7a7a;
}
.about-section .about-content .about-text  p{
    font-size: 1.6vh;
    line-height: 2.5vh;
}
.about-section .about-content .about-text  h3{
    font-size: 2vh;
	letter-spacing: 2px;
	line-height: 4vh;
}



/*responsive*/

@media(min-width: 1046px){
	.header .menu > ul > li.menu-item-has-children:hover .sub-menu{
		margin-top: 0;
		visibility: visible;
		opacity: 1;
	}
}

@media(max-width: 1045px){

	.header .item-center{
		order:3;
		flex:0 0 100%;
	}
	.header .item-left,
	.header .item-right{
		flex:0 0 auto;
	}
	.v-center{
		justify-content: space-between;
	}
	.header .mobile-menu-trigger{
		display: flex;
		height: 30px;
		width: 30px;
		margin-left: 15px;
		cursor: pointer;
		align-items: center;
		justify-content: center;
	}
	.header .mobile-menu-trigger span{
		display: block;
		height: 2px;
		background-color: #fff;
		width: 24px;
		position: relative;
	}
	.header .mobile-menu-trigger span:before,
	.header .mobile-menu-trigger span:after{
		content: '';
		position: absolute;
		left:0;
		width: 100%;
		height: 100%;
		background-color: #fff;
	}
	.header.fixed .mobile-menu-trigger span,
	.header.fixed .mobile-menu-trigger span:before,
	.header.fixed .mobile-menu-trigger span:after{
		background-color: #fff;
		transition: all 1s ease;
	}
	.header .mobile-menu-trigger:hover > span,
	.header .mobile-menu-trigger:hover > span:before,
	.header .mobile-menu-trigger:hover > span:after,
	.header.fixed .mobile-menu-trigger:hover > span,
	.header.fixed .mobile-menu-trigger:hover > span:before,
	.header.fixed .mobile-menu-trigger:hover > span:after{
		background-color: #555;
	}
	
	.header .mobile-menu-trigger span:before{
		top:-6px;
	}
	.header .mobile-menu-trigger span:after{
		top:6px;
	}
	.header .item-right{
		align-items: center;
	}

	.header .menu{
		position: fixed;
		width: 320px;
		background-color:#202020;      /*GGGGGGGGG*/
		left:0;
		top:0;
		height: 100%;
		overflow: hidden;
		transform: translate(-100%);
		transition: all 0.5s ease;
		z-index: 1099;
	}
	.header .menu.active{
	   transform: translate(0%);	
	}
	.header .menu > ul > li{
		line-height: 1;
		margin:0;
		display: block;
	}
	.header .menu > ul > li > a{
		line-height: 50px;
		height: 50px;
		padding:0 50px 0 15px;
		display: block;
		/* border-bottom: 1px solid rgba(0,0,0,0.1); */  /*GGGGGGGGG*/
		color: #fff;
	}

	.header .menu > ul > li > a i{
		position: absolute;
		height: 50px;
		width: 50px;
		top:0;
		right: 0;
		text-align: center;
		line-height: 50px;
		transform: rotate(-90deg);
	}
	#bprojects:hover{
		cursor: pointer;
	}
	.aboutgap1{
		min-height: 5vh;
	}
	.header .menu .mobile-menu-head{
		display: flex;
		height: 63px;
		border-bottom: 1px solid rgba(0,0,0,0.1);
		justify-content: space-between;
		align-items: center;
		position: relative;
		z-index: 501;
		position: sticky;
		/* background-color: rgba(255,255,255,0.8); */
		top:0;
	}
	.header .menu .mobile-menu-head .go-back{
		height: 50px;
		width: 50px;
		border-right: 1px solid rgba(0,0,0,0.1);
		cursor: pointer;
		line-height: 50px;
		text-align: center;
		color:#ffffff;
		font-size: 16px;
		display: none;
	}
	.header .menu .mobile-menu-head.active .go-back{
		display: block;
	}
	.header .menu .mobile-menu-head .current-menu-title{
		font-size: 15px;
		font-weight: 500;
		color:#e2e2e2;
	}
	.header .menu .mobile-menu-head .mobile-menu-close{
	    height: 50px;
		width: 50px;
		border-left: 1px solid rgba(0,0,0,0.1);
		cursor: pointer;
		line-height: 50px;
		text-align: center;
		color:#ffffff;	
		font-size: 25px;
	}
	.header .menu .menu-main{
		height: 100%;
		overflow-x: hidden;
		overflow-y: auto;
	}
	.header .menu > ul > li .sub-menu{
		visibility: visible;
		opacity: 1;
		position: absolute;
		box-shadow: none;
		margin:0;
		padding:15px;
		top:0;
		left:0;
		width: 100%;
		height: 100%;
		padding-top: 20px;
		max-width: none;
		min-width: auto;
		display: none;
		transform: translateX(0%);
		overflow-y: auto;
	}
.header .menu > ul > li .sub-menu.active{
	display: block;
}
@keyframes slideLeft{
	0%{
		opacity:0;
		transform: translateX(100%);
	}
	100%{
	    opacity:1;
		transform: translateX(0%);	
	}
}
@keyframes slideRight{
	0%{
		opacity:1;
		transform: translateX(0%);
	}
	100%{
	    opacity:0;
		transform: translateX(100%);	
	}
}
	.header .menu > ul > li .sub-menu > ul > li > a{
		display: block;
	}
	.menu-overlay{
		position: fixed;
		background-color: rgba(0,0,0,0.5);
		left:0;
		top:0;
		width: 100%;
		height: 100%;
		z-index: 1098;
		visibility: hidden;
		opacity:0;
		transition: all 0.5s ease;
	}
	.menu-overlay.active{
	  visibility: visible;
	  opacity:1;	
	}
	/* .home-section .home-video{
		display: none;
	} */
	.about-section{
		width: 94%;
	}
	.about-section .about-text{
		padding-left: 0;
	}

	.about-section .about-image{
		/* background-color: red; */
		flex: 0 0 100%;
		max-width: 70%;
		margin: auto;
	}
	.about-section .about-content{
		flex: 0 0 100%;
		max-width: 100%;
	}
	.contact-body .contact-section{
		padding: 5vh 0 20px;
	}
	.contact-section .contact-content{
		text-align: left;
		flex: 0 0 100%!important;
		max-width: 100%!important;
	}
	.contact-section .contact-map{
		padding-top: 5vh!important;
		flex: 0 0 100%!important;
		max-width: 100%!important;
	}
	.contact-section .contact-map .map-box iframe{
	height: 300px!important;

    }

}
@media(max-width: 479px){
	.header .logo{
		padding-left: 0;
		padding-right: 0;
	}
	.header .logo img{
		max-width: 150px;
		margin-top: 5px;
	}
	footer{
		height: 50px;
	}
	footer p{
	font-size: 10px;
	}
	footer .footer-menu{
		display: none!important;
	}
}

/* -------------------------contact section--------------------------- */
.contact-body{
	min-height: 100vh;
	background: #202020;
}
.contact-section{
	margin: auto;
    padding: 18vh 0 20px;
    width: 80%;
}
.contact-section .contact-map{
    flex: 0 0 50%;
    max-width: 50%;
    padding: 15px 15px;
}
.contact-section .contact-map .map-box iframe{
    width: 100%;
	height: 630px;
	border: solid #000;
}
.contact-section .contact-content{
    flex: 0 0 50%;
    max-width: 50%;
    padding: 20px 15px;
}
.contact-section .contact-content .contact-text i{
font-size: 20px;
color: #e2e2e2;
}
.contact-section .contact-content p{
    font-size: 14px;
    color: #fff;
    line-height: 26px;
    margin: 0;
    text-align: end;
	border-bottom: 0.5px solid #555;
}
.contact-section .contact-content h3{
    font-size: 15px;
	font-weight: 500;
    color: #fff;
    line-height: 26px;
	text-align: end;
	margin-top: 20px;
}

/*------------------FOOTER START--------------------------------------------------------------*/

footer{
	position: relative;
	width: 100%;
	background: #202020;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
footer .footer-menu{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 10px 0;
	flex-wrap: wrap;
	padding: 10px 0 10px;
}
footer .footer-menu li a{
	margin: 0 10px;
	display: inline-block;
	transition: all 0.5s ease;
	font-size: 20px;
	color: #fff;
	opacity: 0.75;
}
footer .footer-menu li a:hover{
	opacity: 1;
}
footer p{
	color: #fff;
	text-align: center;
}
/*------------------FOOTER END--------------------------------------------------------------*/
/* preloader */
.preloader{
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    /* background-color: #111111; */
	background-color: #000000;
    z-index: 1099;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s ease;
}
.preloader.loaded{
    visibility: hidden;
    opacity: 0;
    z-index: -99;
}
.preloader img{
	max-width: 350px;
}