@import 'fonts.css';
*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
:root{
	--font-color: #7c562d;
}
a{
	text-decoration: none !important;
	color: var(--font-color) !important;
}
pre{
	overflow: visible !important;
	font-family: Lato-Light !important;
}
.delete_space{
	overflow-x: hidden;
	overflow-y: hidden;
}
body{
	color: var(--font-color);
	font-family: Lato-Light;
	width: 100vw;
	overflow-x: hidden;
}
body > nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 121px;
	z-index: 100000;
	background-color: #fff;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25),
				inset 0px 0px 5px rgba(0, 0, 0, 0.25);
}
nav > div.toggle-btn{
	position: absolute;
	top: 30px;
	left: 35px;
	transform: translate(-50%, -50%) !important;
	width: 20px;
	height: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	cursor: pointer;
	display: none;
	z-index: 3;
/*	background-color: red;*/
}
nav > div.toggle-btn span{
	display: inline-block;
	width: 20px;
	height: 2px;
	border-radius: 5px;
	background: var(--font-color);
	transition: all 0.5s;
	transform-style: flat;
	transform-origin: top left;
}
nav.active > div.toggle-btn span:nth-child(1){
	transform: translateX(1px) rotate(43deg);
	width: 26px;
}
nav.active > div.toggle-btn span:nth-child(2){
	opacity: 0;
}
nav.active > div.toggle-btn span:nth-child(3){
	transform: rotate(-45deg);
	width: 26px;
}
body > nav > ul{
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
}	
body > nav > ul > li{
	list-style: none;
	margin: 0 33px;
}
body > nav > ul > li.icon{
	display: none;
}
body > nav > ul > li a{
	color: var(--font-color);
	text-decoration: none;
	font-size: 27px;
	text-transform: uppercase;
	font-family: Lato-Bold;
}
body > nav > ul > li a.logo img{
	width: 200px;
	height: 79px;
	margin: 0 44px;
}
header{
	margin-top: 121px;
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
	position: relative;
}
header > .logo{
	text-align: center;
	width: 30%;
	display: inline-block;
	margin-left: 5%;
}
header > div.logo > img {
	width: 75%;
}
header > .logo > p{
	text-transform: uppercase;
	font-family: Lato-Light;
	font-size: 1.2rem;
	letter-spacing: 5px;
	color: var(--font-color);
	margin-top: 5px;
}
header > .bg{
	display: inline-block;
	width: 70%;
	position: relative;
	display: flex;
	justify-content: flex-end;
}
header > .bg  > img{
	width: 100%;
}
header > .bg   .style-svg{
	position: absolute;
	z-index: 23;
}
header > .bg .main-background{
	z-index: -1;
}
header > .bg img.main-background-phone{
	display: none;
	z-index: -2;
}
header > .bg .second-background img{
	height: 100%;
}
/*---------------------------------------- start the planed section styles --------------------------------------------*/
section.planed{
	width: 100%;
	margin: 165px auto;
	display: flex;
	align-items: center;
	justify-content: space-around;
	color: var(--font-color);
}
section.planed > div.right{
	text-transform: uppercase;
	font-size: 3.5rem;
	font-family: Lato-Medium;
	font-weight: bolder;
	line-height: 60px;
	letter-spacing: 5px;
}
section.planed > div.left{
	font-size: 35px;
	font-family: Lato-Light;
	font-weight: 100;
}
section.planed > div.left pre{
	font-size: 2.5rem;
}
/* ------------------------------------------ start the projects section styles ------------------------------------------------ */
section.projects{
	width: 100%;
}
section.projects > img.header{
	width: 100%;
}
section > .title{
	text-align: center;
	text-transform: uppercase;
	font-family: Lato-Light;
	color: var(--font-color);
	letter-spacing: 5px;
	margin: 45px 0;
	font-size: 30px;
}
section > .title span{
	font-family: Lato-Bold;
}
section.projects .box-wrapper{
	display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
  width: 70%;
}
section.projects .box-wrapper > div.box{
	position: relative;
	box-shadow: -1px 1px 10px rgba(0, 0, 0, 0.20);
	overflow: hidden;
	width: 100%;
	transform: scale(1.0);
	transition: transform 0.5s;
}
section.projects .box-wrapper > div.box.no_show{
	transform: scale(0);
	width: 0;
/*	height: 0;*/
	position: absolute;
}
section.projects .box-wrapper > div.box > .title{
	position: absolute;
	bottom: -20px;
	left: 0;
	background-color: #fff;
	padding: 15px 30px;
	font-size: 30px;
	color: var(--font-color);
	font-weight: 550;
	text-transform: capitalize;
	text-align: center;
	width: 200px;
	overflow-x: none;
}
section.projects .box-wrapper > div.box div.img{
	width: 100%;
  height: auto;
	transform: scale(1.1);
	background-size: cover;
	background-position: center;
}
section.projects .box-wrapper > div.box div.img:after{
  content: "";
  display: block;
  padding-bottom: 100%;
}
section.projects div.more{
	font-size: 40px;
	text-align: center;
	text-transform: uppercase;
	font-weight: bolder;
	color: var(--font-color);	
	margin: 98px 0;
	transform: scale(0.8);
}
section.projects div.more span{
	display: block;
	width: 26px;
	height: 40px;
	margin: 0 auto;
	position: relative;
	cursor: pointer;
}
section.projects div.more span:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 5px;
	height: 35px;
	background: var(--font-color);
	transform: rotate(-45deg);
	transition: all 0.5s;
}
section.projects div.more span:after{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 5px;
	height: 35px;
	background: var(--font-color);
	transform: rotate(45deg);
	transition: all 0.5s;
}
section.projects.more div.more span:before{
	transform: rotate(405deg);
}
section.projects.more div.more span:after{
	transform: rotate(675deg);
}
div.more > div:nth-child(1){
	margin-bottom: 0;
}
section.hapy_customers {
	width: 100%;
	background-color: #efeae5;
	display: flex;
	align-items: center;
	justify-content: space-around;
	color: var(--font-color);
	padding: 112px 50px;
	font-family: Lato-Medium;
}
section.hapy_customers .number{
	font-weight: bolder;
	font-size: 7rem;
	margin-bottom: -30px;
	letter-spacing: 5px;
}
section.hapy_customers .title{
	text-transform: capitalize;
	font-size: 3.5rem;
	letter-spacing: 5px;
}	
.product-wrapper{
	display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
}
.product-wrapper > .product{
	text-align: center;
}
.product-wrapper > .product img{
	width: 100%;
}
.product-wrapper > .product > .title{
	font-size: 32px;
	font-family: Lato-Light;
	color: var(--font-color);
}
.product-wrapper > .product > .title span{
	font-family: Lato-Bold;
}






































section.services{
	width: 100%;
	margin: 150px 0;
}
section .header{
	width: 100%;
	height: 100%;
	background-color: #977c5e;
	position: relative;
	background-size: cover;
	background-position: center;
	transform: scale(1);
	background-blend-mode: multiply;
}
section .header img{
	width: 100%;
	opacity: 0;
}
section .header .title{
	position: absolute;
	top: 50%;
	left: 50%;
	text-transform: uppercase;
	color: #fff;
	font-size: 4rem;
	font-family: Lato-Bold;
	font-weight: bolder;
	transform: translate(-50%, -50%) !important;
}
section.services > .box-wrapper{
	display: flex;
	width: 70%;
}
.main-content.container{
	width: 70%;
}
section.services > .box-wrapper > .box{
	margin: 0 2px;
	box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.10);
	transition: all 1s;
	flex-grow: 1;
	position: relative;
	border-bottom: solid rgba(0, 0, 0, 0.10) 1px;
}
section.services > .box-wrapper > .box .cover{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: transparent;
	z-index: 1;
}
section.services > .box-wrapper > .box.show{
	flex-grow: 20;
}
section.services > .box-wrapper > .box > div.img{
	height: 500px;
	width: 100%;
	background-size: cover;
	background-position: center;
	position: relative;
}
section.services > .box-wrapper > .box > div.img > img{
	display: none;
}
section.services > .box-wrapper > .box > div.img .popup{
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	padding: 20px 40px;	
	align-items: center;
	justify-content: center;
	height: 250px;
	width: 650px;
	line-height: 40px;
	color: var(--font-color);
	border-radius: 5px;
	box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.50);
	display: flex;
	transition: all 1s;
	transform: translate(-50%, -50%) scale(0);
	z-index: 2;
}
section.services > .box-wrapper > .box > div.img .popup .btns{
	position: absolute;
	top: 15px;
	left: 15px;
	cursor: pointer;
	width: 30px;
	height: 30px;
}
section.services > .box-wrapper > .box > div.img .popup .btns:after{
	content: '';
	position: absolute;
	top: 0%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 2px;
	height: 25px;
	background-color: var(--font-color);
	transform: rotate(45deg);
}
section.services > .box-wrapper > .box > div.img .popup .btns:before{
	content: '';
	position: absolute;
	top: 0%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 2px;
	height: 25px;
	background-color: var(--font-color);
	transform: rotate(-45deg);
}
section.services > .box-wrapper > .box.show div.img .popup{
	transform: translate(-50%, -50%) scale(1);
}
section.services > .box-wrapper > .box div.img .popup .dash{
	display: inline-block;
	width: 3px;
	height: 100px;
	background-color: var(--font-color);
	margin: 0 20px;
}
section.services > .box-wrapper > .box div.img .popup .logo{
	text-align: center;
}
section.services > .box-wrapper > .box div.img .popup .text{
	margin-left: 20px;
	font-size: 20px;
}
section.services > .box-wrapper > .box div.img .popup .logo img{
	width: 50%;
}
section.services > .box-wrapper > .box > p.title{
	height: 30px;
	text-transform: capitalize;
	color: var(--font-color);
	line-height: 50px;
	text-align: center;

}
section.about{
	width: 100%;
	margin: 50px 0;
}
section.about > .main-content > .first{
	display: flex;
	flex-direction: row-reverse;
	padding: 57px 0;
}
section.about > .main-content .first > img{
	width: 50%;
}
section.about > .main-content .first > div{
	width: 50%;
	color: var(--font-color);
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
}
section.about > .main-content .first > div .title{
	font-size: 30px;
	font-family: Lato-Light;
	letter-spacing: 5px;
	text-transform: uppercase;
	text-align: center;
}
section.about > .main-content .first > div .logo{	
	width: 223.42px;
	margin: 125px auto;
}
section.about > .main-content .first > div .logo img{
	width: 100%;
}
section.about > .main-content .first > div .des pre{
	font-size: 27px;
	font-family: Lato-Regular !important;
	letter-spacing: 1px;
}
section.about > .main-content > .second{
	display: flex;
	flex-direction: row-reverse;
	width: 100%;
}
section.about > .main-content > .second > .left{
	width: 45%;
}
section.about > .main-content > .second > .left > img{
	width: 100%;
}
section.about > .main-content > .second > .right{
	width: 55%;
	padding: 0 50px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
section.about > .main-content > .second > .right > pre{
	font-family: Lato-Regular !important;
	font-size: 27px;
	color: var(--font-color);
	margin: 0;
}
section.about > .main-content > .second > .right > pre.first{
	position: relative;
	letter-spacing: 1px;
	padding-left: 3.5%;
}
section.about > .main-content > .second > .right > pre.first:after{
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	width: 2px;
	height: 100%;
	background-color: #dbdbdb;
}
section.contact {
	margin-bottom: 50px;
}
section.contact > .title{
	width: 100%;
}
section.contact .main-content{
	display: flex;
	width: 70%;
	overflow-y: visible !important;
	align-items: center;
	justify-content: space-between;
	margin: auto;
}
#contact > div.cont-des.container{
	width: 70% !important;
}
section.contact > .main-content > .left{
	width: 100%;
	margin-bottom: 10px;
}
section.contact > .main-content > .left > div{
	font-size: 30px;
	color: var(--font-color);
	font-family: Lato-Light;
	letter-spacing: 6.5px;
	text-transform: uppercase;
}
section.contact > .main-content > .left > .title{
	font-size: 62px;
	margin-top: 44px;
	letter-spacing: 3px;
}
section.contact > .main-content > .left > .title span{
	font-weight: bolder;
	font-family: Lato-Bold;
	height: 100%;
}
section.contact > .main-content > .left > form.message {
	width: 100%;
	margin-top: 44px;
	height: 600px;
	padding-right: 145px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
}
section.contact > .main-content > .left > form.message > div {
	width: 100%;
	height: 70px;
	display: flex;
	justify-content: flex-start;
	position: relative;
}
section.contact > .main-content > .left > form.message > div.full-name > div{
	width: 40%;
	position: relative;
	height: 100%;
}
section.contact > .main-content > .left > form.message > div.full-name > div:nth-child(2){
	margin-left: 10px;
}
section.contact > .main-content > .left > form.message > div label{
	position: absolute;
	top: -60%;
	left: 0;
	font-family: Lato-Light;
	text-transform: uppercase;
	color: var(--font-color);
	font-size: 22px;
}
section.contact > .main-content > .left > form.message > div.message{
	height: 140px;
}
section.contact > .main-content > .left > form.message > div.message label{
	top: -30%;
}
section.contact > .main-content > .left > form.message > div textarea{
	padding-top: 30px;
}
section.contact > .main-content > .left > form.message > div textarea,
section.contact > .main-content > .left > form.message > div input{
	width: 100%;
	height: 100%;
	border: solid 1.5px;
	border-color: var(--font-color);
	font-size: 20px;
	font-family: Lato-Bold;
	padding-left: 30px;
	color: var(--font-color);
	resize: none;
}
section.contact > .main-content > .left > form.message > div textarea:focus,
section.contact > .main-content > .left > form.message > div input:focus{
	outline: none;
	outline-color: var(--font-color);
}
section.contact > .main-content > .left > form.message > button{
	text-transform: uppercase;
	background-color: transparent;
	border: solid var(--font-color) 1.5px;
	padding: 15px 45px;
	font-size: 20px;
	color: var(--font-color);
	margin-top: -50px;
	font-family: Lato-Bold;
	position: relative;
	z-index: 20;
}
section.contact > .main-content > .right{
	width: 30%;
	color: var(--font-color);
	font-family: Lato-Bold;
}
section.contact > .main-content > .right .address{
	margin-top: 20px;
	line-height: 30px;
	font-size: 20px;
}
section.contact > .main-content > .right .map{
	margin-top: 109px;
}
.cont-des > .title{
	font-family: Lato-Bold;
	font-size: 35px;
	color: var(--font-color);
	text-transform: uppercase;
	margin-top: 157px;
	font-weight: bolder;
	margin-bottom: 25px;
}
.cont-des > .description{
	display: flex;
	flex-direction: row;
	width: 100%;
	justify-content: space-between;
	align-items: stretch;
}
.cont-des > .description > div{
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
}
.description > div:nth-child(2) > div:nth-child(1){
	font-weight: bold;
}
.cont-des > .description > div:nth-child(2){
	height: 200px;
}
.cont-des > .description div div:not(:first-child),
.cont-des > .description a:not(:first-child){
	margin-top:20px;
}
.cont-des > .description div div,
.cont-des > .description a{
	font-size: 20px;
	color: var(--font-color);
}
#contact > div.cont-des.container > div.description > div.first > a > img{
	width: 20px;
}
.cont-des > .description div div{
	margin-top: 20px !important;
}
section.map > .title {
	text-align: left;
	font-size: 61px;
}
section.map  #map{
	width: 100%;
	height: 550px;
	border: solid var(--font-color) 4px;
}
section.map > .title b{
	font-family: Lato-Bold;
}
section.map.container{
	width: 70%;
}
body > section.map.container > h1{
	margin: 20px 0;
}
.map-cover{
	position: absolute;
	border: solid var(--font-color) 4px;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: transparent;
	z-index: 10000;
}
.map-cover.active{
	z-index: 10000;
}
.map-cover.deactive{
	z-index: 0;
}
footer {
	position: relative;
	margin: 100px 0;
	margin-bottom: 100px;
}
footer > img.main{
	width: 100%;
}
footer > .footer-logo{
	width: 22%;
	position: absolute;
	top: 20%;
	left: 50%;
	transform: translate(-50%);
}
footer > .text{
	margin-top: -100px;
	display: flex;
}
footer > .text > img:nth-child(1){
	width: 58px;
}
footer > .text > div{
	font-size: 39px;
	margin-left: 20px;
	font-family: Lato-Bold;
	color: var(--font-color);
}
.copy-right{
	text-align: right;
	margin-top: 130px;
	color: var(--font-color);
	font-size: 21px;
	font-family: Lato-Bold;
}
body  img.whatsapp{
	position: fixed;
	bottom: 7%;
	right: 7%;
	width: 5%;
	z-index: 1000000;
}
#about > div:nth-child(2) > div:nth-child(2) > div:nth-child(1) > div:nth-child(2) > img:nth-child(1){
	display: none;
}
@media (max-width: 1920px){
	body > nav > ul > li a{
		font-size: 20px;
	}
	section.planed > div.right{
		font-size: 3rem;
		line-height: 50px;
	}
	section.planed > div.left pre,
	section.planed > div.left{
		font-size: 30px;
	}
	section.hapy_customers .number{
		font-size: 5rem;
	}
	section.hapy_customers .title{
		font-size: 2.5rem;
	}
	section.about > .main-content .first > div .des pre,
	section.about > .main-content .second .right pre{
		font-size: 23px;
	}
	section.contact > .main-content > .left > div {
    font-size: 23px;
    margin-top: 50px;
  }
  section.contact > .main-content > .left > .title {
    font-size: 52px;
    margin-top: 15px;
  }
  section.contact > .main-content > .left > form.message {
  	height: 480px;
	}
  section.contact > .main-content > .left > form.message > div label{
  	font-size: 17px;
  }
  section.contact > .main-content > .left > form.message > div{
  	height: 45px;
  }
  section.contact > .main-content > .left > form.message > div label,
  section.contact > .main-content > .left > form.message > div.message label{
  	top: -27px;
  }
  section.contact > .main-content > .left > form.message > button{
  	margin-top: 0;
  }
  section.contact > .main-content > .left > form.message > div textarea, section.contact > .main-content > .left > form.message > div input{
  	font-size: 15px;
  }
}
@media (max-width: 1680px){
	section.planed > div.right{
		font-size: 2.99rem;
	}
	section.hapy_customers .title {
    font-size: 2.1rem;
	}
	section.hapy_customers .number {
    font-size: 4rem; 
	}
	section.projects div.more{
		transform: scale(0.7);
		margin: 60px 0;
	}
	section.services > .box-wrapper > .box > div.img .popup{
		width: 550px;
		height: 200px;
	}
	section.services > .box-wrapper > .box div.img .popup .text {
    font-size: 18px;
    line-height: 30px;
	}
	section.planed > div.left pre, section.planed > div.left {
    font-size: 28px;
	}
	section.planed{
		margin: 120px 0;
	}
	section.about > .main-content .first > div .title {
    font-size: 22px;
    margin: auto;
  }
  section.about > .main-content .first > div .des pre, section.about > .main-content .second .right pre{
  	font-size: 19px;
  }
  section.about > .main-content .first > div .logo{
  	margin-left: auto;
  }
  section.contact > .main-content > .left > .title {
    font-size: 40px;
  }
  section.contact > .main-content > .left > div {
    font-size: 22px;
    letter-spacing: 3px;
	}
	.product-wrapper > .product > .title{
		font-size: 27px;
	}
}
@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1600px !important;
  }
}
@media(max-width: 1440px){
	section.hapy_customers .number{
		font-size: 4.5rem;
		margin-bottom: -30px;
	}
	section.hapy_customers .title{
		font-size: 2rem;
	}
	section.services > .box-wrapper > .box > div.img .popup{
		width: 90%;
	}
	section.about > .main-content .first > div .des pre,
	section.about > .main-content .second .right pre{
		font-size: 20px;
	}
	section.contact > .main-content > .left > div{
		font-size: 20px;
		margin-top: 45px;
	}
	section.contact > .main-content > .left > .title{
		font-size: 46px;
		margin: 34px auto;
	}
	section.contact > .main-content > .left > form.message > div label{
		font-size: 20px;
	}
	section.contact > .main-content > .left > form.message > div{
		height: 60px;
	}
	iframe{
		height: 650px;
	}
	section.contact > .main-content > .right .address{
		font-size: 15px;
	}
	section.map #map{
		height: 600px;
	}
	body > nav{
		height: 100px;
	}
	header{
		margin-top: 100px;
	}
	body > nav > ul > li{
		margin: 0 20px;
	}
	body > nav > ul > li a{
		font-size: 19px;
	}
	body > nav > ul > li a.logo img{
		width: 160px;
	}
	section.about > .main-content .first > div .logo{
		width: 150px;
	}
	header > .logo > p{
		font-size: 0.6rem;
	}
	section.planed > div.right{
		font-size: 2.3rem;
		line-height: 40px;
	}
	section.planed > div.left pre,
	section.planed > div.left{
		font-size: 23px;
	}
	section > .title{
		font-size: 25px;
	}
	section.projects div.more{
		font-size: 35px;
	}
	section.projects div.more span{
		width: 24px;
	}
	section.projects div.more span:before,
	section.projects div.more span:after{
		height: 30px;
	}
	section.hapy_customers{
		padding: 90px 50px;
	}
	section.hapy_customers .number{
		font-size: 3.5rem;
		margin-bottom: -20px;
	}
	section.hapy_customers .title{
		font-size: 1.4rem;
	}
	section.contact > .main-content > .left > form.message{
		padding-right: 85px;
	}
	section .header .title {
		font-size: 3rem;
	}
	section.services > .box-wrapper > .box.show{
		flex-grow: 60;
	}
	section.services > .box-wrapper > .box .text{
	}
	section.services > .box-wrapper > .box div.img .popup .text{
		font-size: 15px;
		line-height: 32px;
		margin-left: 0;
	}
	section.services > .box-wrapper > .box > div.img .popup{
		height: 200px;
	}
	section.services > .box-wrapper > .box > div.img .popup .btns{
		transform: scale(0.8);
	}
	section.services > .box-wrapper > .box > div.img .popup .dash{
		width: 7px;
	}
	section.services > .box-wrapper > .box > div.img .popup .logo{
		transform: scale(2.5);
	}
	section.about > .main-content .first > div .des pre,
	section.about > .main-content .second .right pre{
		font-size: 16px;
	}
	section.about > .main-content .first > div .title{
		font-size: 16px;
	}
	section.contact > .main-content > .left > div{
		font-size: 18px;
	}
	section.contact > .main-content > .left > .title{
		font-size: 35px;
		margin: 0px auto;
	}
	section.contact > .main-content > .left > form.message > div label{
		font-size: 17px;
	}
	section.contact > .main-content > .left > form.message > div{
		height: 50px;
	}
	iframe{
		height: 500px;
	}
	section.contact > .main-content > .right .address{
		font-size: 13px;
	}
	.description > div > a > img{
		width: 20px;
	}
	.cont-des > .description > div:nth-child(2){
		height: 150px;
	}
	.cont-des > .description div div{
		margin-top: 15px !important;
	}
	section.map #map{
		height: 400px;
	}
	section.projects .box-wrapper > div.box > .title{
		width: 150px;
		font-size: 20px;
	}
	.cont-des > .description a:not(:first-child) {
    margin-top: 15px;
	}
	#contact > div.cont-des.container > div.description > div.second{
		margin-top: -20px;
	}
	section > .title{
		font-size: 40px !important;
		letter-spacing: 2px !important;
		margin: 40px 0 !important;
	}
}
@media (max-width:1280px){
	section.map.container,
	section.services > .box-wrapper,
	.main-content.container,
	section.contact .main-content,
	#contact > div.cont-des.container,
	section.projects .box-wrapper{
		width: 80% !important;
	}
	section.projects .box-wrapper > div.box > .title {
    width: 130px;
    font-size: 16px;
    padding: 10px 30px;
	}
	section.projects div.more{
		margin-top: 10px;
		transform: scale(0.7);
	}
	section.hapy_customers {
    padding: 70px 0px;
	}
	section.hapy_customers .number {
    font-size: 2.5rem;
  }
  section.hapy_customers .title{
  	letter-spacing: 2px;
  	margin-top: 5px;
  }
  section.services {
  	margin: 100px 0;
  }
  section.about > .main-content .first > div .title {
  	font-size: 13px;
  }
  section.about > .main-content .first > div .logo {
    width: 140px;
	}
	section.about > .main-content .first > div .des pre, section.about > .main-content .second .right pre {
    font-size: 11px;
	}
	section.contact > .main-content > .left > form.message > div {
    height: 40px;
	}
	section.contact > .main-content > .left > form.message > div label {
    font-size: 13px;
	}
	section.contact > .main-content > .left > form.message > div label, section.contact > .main-content > .left > form.message > div.message label {
    top: -20px;
	}
	section.contact > .main-content > .left > form.message {
    padding-right: 30px;
	}
	section.contact > .main-content > .left > form.message {
    height: 440px;
	}
	section.contact > .main-content > .left > form.message > button{
		padding: 7px 30px;
		font-size: 15px;
	}
}
@media (max-width:1024px){
	body > nav{
		height: 65px;
	}
	header{
		margin-top: 65px;
	}
	body > nav > ul > li a {
   		font-size: 14px;
  	}
   body > nav > ul > li a.logo img {
		width: 115px;
		margin: 0 20px;
	}
	section.planed{
		margin: 100px auto;
	}
	section.planed > div.right{
		font-size: 1.3rem;
		line-height: 25px;
	}
	section.planed > div.left pre,
	section.planed > div.left{
		font-size: 16px;
	}
	section.projects .box-wrapper > div.box > .title {
    font-size: 14px;
    padding: 7px 0px;
    width: 100px;
	}
	section > .title{
		font-size: 18px;
		letter-spacing: 4px;
		margin: 30px 0;
	}
	section.projects div.more{
		transform: scale(0.5);
	}
	section.projects div.more span{
		width: 22px;
	}
	section.projects div.more span:before,
	section.projects div.more span:after{
		height: 28px;
	}
	section.hapy_customers{
		padding: 70px 50px;
	}
	section.hapy_customers .number{
		font-size: 2.5rem;
		margin-bottom: -15px;
	}
	section.hapy_customers .title{
		font-size: 1.4rem;
		letter-spacing: 3px;
	}
	section .header .title {
		font-size: 2.5rem;
	}
	section.services > .box-wrapper{
		flex-direction: column;
	}
	section.services > .box-wrapper > .box{
		margin: 20px 0;
	}
	section.services > .box-wrapper > .box > div.img{
		height: initial;
	}
	section.services > .box-wrapper > .box > div.img > img{
		display: inline-block;
		width: 100%;
	}
	section.services > .box-wrapper > .box > div.img .popup .dash{
		width: 3px;
	}
	section.services > .box-wrapper > .box div.img .popup{
		width:85%;
	}
	section.services > .box-wrapper > .box div.img .popup .text{
		margin-left: 20PX;
	}
	section.services > .box-wrapper > .box > div.img .popup .logo{
		transform: scale(1);
	}
	section.about > .main-content .first > div .des pre,
	section.about > .main-content .second .right pre{
		font-size: 12px;
	}
	section.about > .main-content .first > div .title{
		font-size: 10px;
		letter-spacing: 2px;
	}
	div.logo > img{
		width: 60%;
	}
	section.contact > .main-content > .left > div {
    font-size: 14px;
    letter-spacing: 1.5px;
    margin-top: 0;
	}
	section.contact > .main-content > .left > .title{
		font-size: 24px;
		letter-spacing: 2.5px;
	}
	section.contact > .main-content > .left > form.message {
    padding-right: 0px;
	}
	section.contact > .main-content > .left > form.message > div label{
		font-size: 15px;
	}
	section.contact > .main-content > .left > form.message > div{
		height: 30px;
	}
	iframe{
		height: 350px;
		margin-top: -50px;
		width: 250px;
	}
	section.contact > .main-content > .right .address{
		font-size: 10px;
		line-height: 20px;
	}
	section.contact > .main-content > .left > form.message > button{
		margin-bottom: 0px;
		font-size: 12px;
	}
	section.contact > .main-content > .left > form.message > div label {
		top: -20px;
		font-size: 12px;
	}
	section.contact > .main-content > .left > form.message > div label, section.contact > .main-content > .left > form.message > div.message label {
    top: -17px;
    font-size: 11px;
	}
	section.contact > .main-content > .left > form.message > div input {
    font-size: 12px;
    padding-left: 10px;
	}
	 section.about > .main-content .first > div .logo {
    margin: 57px auto;
    width: 100px;
  }
  section.contact > .main-content > .left > form.message > div.message {
		height: 80px;
	}
	footer{
		margin-bottom: 50px;
	}
	footer > .text > div{
		font-size: 20px;
		margin-left: 5px;
	}
	footer > .text > img:nth-child(1){
		width: 30px;
	}
	.copy-right{
		font-size: 12px;
	}
	body  img.whatsapp{
		width: 75px !important;
	}
	.cont-des > .title{
		margin-top: 80px;
		margin-bottom: 40px;
	}
	.cont-des > .description div div, .cont-des > .description a,
	.cont-des > .title{
		font-size: 18px;
	}
	.description > div > a > img{
		width: 15px;
	}
	.cont-des > .description > div:nth-child(2){
		height: 100px;
	}
	.cont-des > .description div div{
		margin-top: 17px !important;
	}
	section.map > .title {
		font-size: 41px;
		margin: 20px 0	;
	}
	#map{
		border-width: 2px;
			margin-bottom: 35px;
	}
	.map-cover{
		border-width: 2px;
	}
	.cont-des > .description a, .cont-des > .title {
    font-size: 16px;
	}
	.cont-des > .title{
		margin-top: 50px;
    margin-bottom: 20px;
	}
	.cont-des > .description div div {
    margin-top: 10px !important;
	}
	#contact > div.cont-des.container > div.description > div.second > div:nth-child(1){
		margin-top: 50px !important;
	}
	section.contact > .main-content > .left > form.message {
    height: 320px;
	}
	section.about > .main-content .first > div .des pre, section.about > .main-content .second .right pre {
    font-size: 10px;
	}
	section > .title {
    font-size: 25px !important;
    margin-top: 50px !important;
  }
  section.map #map{
  	height: 300px;
  }
  .product-wrapper > .product > .title{
		font-size: 17px;
	}
}	
@media (max-width:768px){
	#contact > div.main-content,
	.main-content.container,
	section.services > .box-wrapper,
	#contact > div.cont-des.container.delete_space,
	section.projects .box-wrapper,
	section.map.container{
		width: 100% !important;
	}
	header > .logo > p {
		font-size: 0.3rem;
	}
  	body > nav > ul > li{
		margin: 0 11px;
	}
	body > nav > ul > li a {
   		font-size: 10px;
  	}
  	body > nav > ul > li a.logo img {
		width: 100px;
		margin: 0 10px;
	}
	section.planed{
		margin: 50px auto;
	}
	section.planed > div.right{
    font-size: 1rem;
    line-height: 20px;
    letter-spacing: 2px;
	}
	section.planed > div.left pre,
	section.planed > div.left{
		font-size: 12px;
		letter-spacing: 1px;
	}
	section > .title{
		font-size: 16px;
	}
	section.projects .box-wrapper > div.box > .title{
		font-size: 9px;
		padding: 5px 0px;
		width: 65px;
	}
	section.projects div.more{
		font-size: 25px;
		margin-bottom: 30px;
		margin-top: 0px;
	}
	section.projects div.more span{
		width: 20px;
	}
	section.projects div.more span:before,
	section.projects div.more span:after{
		height: 25px;
		width: 4px;
	}
	section.hapy_customers{
		padding: 30px 30px;
	}
	section.hapy_customers .number{
		font-size: 1.5rem;
		margin-bottom: -10px;
		letter-spacing: 2px;
	}
	section.hapy_customers .title{
		font-size: 0.9rem;
		letter-spacing: 2px;
	}
	section .header .title {
		font-size: 1.6rem;
	}
	section.services{
		margin-top: 60px;
		margin-bottom: 30px;
	}
	section.services > .box-wrapper > .box{
		margin: 20px 0;
	}
	section.services > .box-wrapper > .box:nth-child(1){
		margin-top: 0;
	}
	section.services > .box-wrapper > .box > div.img .popup .dash{
		width: 3px;
	}
	section.services > .box-wrapper > .box div.img .popup{
		width:85%;
		height: 85%;
	}
	section.services > .box-wrapper > .box div.img .popup .text{
		margin-left: 0;
		font-size: 12px;
		line-height: 20px;
	}
	div.img .popup .btns {
		transform: scale(0.5) !important;
		top: 5px !important;
		left: 5px !important;
	}
	section.about > .main-content .first > div .des pre,
	section.about > .main-content .second .right pre{
		font-size: 9px;
	}
	section.about > .main-content .first > div .title{
		letter-spacing: 2px;
	}
	section.about > .main-content > .second > .right{
		padding: 0 26px;
	}
	section.about{
		margin-top: 0;
	}
	section.about > .main-content .first > div .logo{
		margin-left: 50px;
	}
	section.contact > .main-content > .left > div{
		font-size: 10px;
		letter-spacing: 1px;
		margin-top: 0;
	}
	section.contact > .main-content > .left > .title{
		font-size: 20px;
		letter-spacing: 0;
		margin: 15px auto;
	}
	section.contact > .main-content > .left > form.message > div label{
		font-size: 15px;
	}
	section.contact > .main-content > .left > form.message > div{
		height: 20px;
	}
	iframe{
		height: 300px;
		margin-top: -75px;
		width: 200px;
	}
	section.contact > .main-content > .right .address{
		font-size: 10px;
		line-height: 20px;
	}
	section.contact > .main-content > .left > form.message > button{
		margin-bottom: 0px;
		font-size: 7px;
		padding: 7px 20px;
	}
	section.contact > .main-content > .left > form.message > div label {
		top: -85%;
		font-size: 10px;
	}
	section.contact > .main-content > .left > form.message > div.message label {
	  top: -25%;
	}
	 section.about > .main-content .first > div .logo {
    margin: 50px auto;
    width: 70px;
  }
  section.contact > .main-content > .right .address{
  	line-height: 12px;
  	font-size: 7px;
  	margin-top: 10px;
  }
  section.contact > .main-content > .left > form.message > div textarea, section.contact > .main-content > .left > form.message > div input{
  	padding-left: 10px;
  	font-size: 9px;
  }
  footer{
		margin-bottom: 30px;
	}
	footer > .text{
		margin-top: -50px;
	}
	footer > .text > div{
		font-size: 15px;
		margin-left: 5px;
	}
	footer > .text > img:nth-child(1){
		width: 25px;
	}
	.cont-des > .title{
		margin-top: 50px;
		margin-bottom: 25px;
	}
	.cont-des > .description div div, .cont-des > .description a,
	.cont-des > .title{
		font-size: 18px;
	}
	.description > div > a > img{
		width: 15px;
	}
	.cont-des > .description div div:not(:first-child), .cont-des > .description a:not(:first-child){
		margin-top: 10px;
	}
	.cont-des > .description > div:nth-child(2){
		display: none;
	}
	.cont-des > .description div div{
		margin-top: 17px !important;
	}
	section.map > .title {
		font-size: 27px;
	}
	section.about > .main-content > .second > .right > pre.first,
	section.about > .main-content .first > div .des pre, section.about > .main-content .second .right pre{
		letter-spacing: 0px;
	}
	section.contact .main-content{
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	section.contact > .main-content > .left > form.message{
		height: initial;
		padding-right: 0;
		margin-top: 20px;
	}
	section.contact > .main-content > .left > form.message > div{
		margin: 15px auto;
	}
	section.contact > .main-content > .left,
	section.contact > .main-content > .right{
		width: 100%;
	}
	iframe{
		width: 100%;
		margin-top: -30px;
	}
	section > .title {
    font-size: 25px !important;
  }
  section.map #map{
  	height: 250px;
  }
  .product-wrapper > .product > .title{
		font-size: 15px;
	}
}
@media (max-width:480px){
	section.about{
		margin-bottom: 0 !important;
	}
	.main-content.container,
	section.services > .box-wrapper,
	section.projects .box-wrapper{
		max-width: 420px !important;
	}
	section.services > .box-wrapper > .box{
		margin: 5px 0;
	}
	section.services > .box-wrapper > .box > p.title{
		height: 15px;
		line-height: 30px;
	}
	section.planed{
		justify-content: space-evenly;
	}
	body > nav{
		box-shadow: 1px 1px 0px rgba(0, 0, 0, 0.10);
		height: 60px;
		transition: height 0.5s ease-in-out !important;
		transition-delay: 0.4s !important;
	}
	section.planed > div.left pre, section.planed > div.left{
		letter-spacing: 0;
	}
	body > nav.active {
		transition-delay: 0s !important;
		height: 100vh;
	}
	header > .bg img.main-background{
		display: none;
	}
	header > .bg img.main-background-phone{
		display: inline-block;
	}
	header > .logo > p{
		letter-spacing: 1px;
	}
	div.logo > img {
	  width: 100%;
	  font-size: 0.35rem;
	}
	body > nav > ul{
		flex-direction: column;
		position: absolute;
		left: calc(0% - 15px);
		transform: translate(-50%);
/*		display: none;*/
	}
	body > nav > ul > li{
		margin: 10px 0;
	}
	body > nav > ul > li a {
		font-size: 17px;
		opacity: 0;
		position: relative;
		right: -30px;
		transition: all 0.5s;
		transition-delay: 0s;
	}
	body > nav.active > ul > li a {
		transition-delay: 0.5s;
		opacity: 1;
		right: 0;
	}
	body > nav > ul > li a i{
		font-size: 25px;
	}
	body > nav > ul > li.icon{
		margin-top: 40px;
		display: block;
	}
	a.logo{
		opacity: 1;
		right: 0;
	}
	ul li.logo{
		position: absolute;	
		top: -10px;
		left: calc(50% + 15px);
		transform: translate(-50%);
		z-index: 33 !important;
		display: block;
		margin: 0px 0;
	}
	body > nav > ul > li a.logo img{
		width: 100px;
	}
	body > nav > div.bg {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 60px;
		transition: all 0.5s;
		background: #fff;
	}
	body > nav.active > div.bg{
		background: rgb(228, 220, 212);
	}
	nav > div.toggle-btn{
		display: flex;
	}
	section.planed{
		margin: 30px auto;
	}
	section.planed > div.right{
		font-size: 0.9rem;
    line-height: 15px;
    letter-spacing: 1.5px;
	}
	section.planed > div.left pre,
	section.planed > div.left{
		font-size: 9px;
		margin-left: 0;
	}
	section > .title{
		font-size: 13px;
	}
	section.projects div.more{
		font-size: 20px;
	}
	section.projects div.more span{
		width: 15px;
	}
	section.projects div.more span:before,
	section.projects div.more span:after{
		height: 20px;
		width: 3px;
	}
	section.hapy_customers{
		padding: 20px 0px;
	}
	section.hapy_customers .number{
		font-size: 1.2rem;
	}
	section.hapy_customers .title{
		font-size: 0.9rem;
		letter-spacing: 1px;
	}
	section .header .title {
		font-size: 1.7rem;
	}
	section.services > .box-wrapper > .box > p.title{
		font-size: 0.6rem;
	}
	div.img .popup .text {
		font-size: 6px !important;
		line-height: 15px !important;
	}
	div.img .popup .btns {
		transform: scale(0.5) !important;
	}
	section.services > .box-wrapper > .box div.img .popup{
		width: 320px;
	}
	section.services > .box-wrapper > .box div.img .popup .logo img{
		width: 50px;	
	}
	section.services > .box-wrapper > .box > div.img .popup .dash{
		width: 1px !important;
		height: 80% !important;
	}
	section.services > .box-wrapper > .box > div.img .popup .btns{
		top: 0 !important;
		left: 0 !important;
		transform: scale(0.35) !important;
	}
	section.about > .main-content .first > div .des pre,
	section.about > .main-content .second .right pre{
		font-size: 12px;
	}
	section.about > .main-content .first > div .title{
		font-size:13px;
		letter-spacing: 3px;
	}
	section.about > .main-content > .first{
		flex-direction: column-reverse;
		padding: 27px 0;
	}
	section.about > .main-content .first > img{
		width: 100%;
	}
	section.about > .main-content .first > div{
		width: 100%;
		align-items: center;
	}
	section.about > .main-content .first > div .des{
		width: 100%;
	}
	section.about > .main-content .first > div .logo{
		width: 100%;
		text-align: center;
		margin: 44px auto;
	}
	section.about > .main-content .first > div div.logo > img{
		width: 33.3%;
	}
	section.about > .main-content > .second{
		flex-direction: column;
	}
	section.about > .main-content > .second > .right{
		width: 100%;
		padding: 0;
	}
	section.about > .main-content > .second > .right > pre.first::after{
		display: none;
	}
	section.about > .main-content > .second > .right > pre.first{
		letter-spacing: 0;
		padding: 0;
	}
	section.about > .main-content > .second > .left{
		width: 100%;
		margin-top: 24px;
	}
	#about > div:nth-child(2) > div:nth-child(2) > div:nth-child(2) > img:nth-child(1){
		display: none;
	}
	#about > div:nth-child(2) > div:nth-child(2) > div:nth-child(1) > div:nth-child(2) > img:nth-child(1){
		width: 100%;
		margin: 20px 0;
	}
	section.about > .main-content > .second{
		position: relative;
	}
	section.services{
		margin-bottom: 40px;
		margin-top: 60px;
	}
	section.services > .box-wrapper > .box div.img .popup .text{
		font-size: 10px !important;
	}
	.about > div:nth-child(1) > h3:nth-child(2){
		font-size: 20px;
	}
	iframe{
		margin-top: 0;
		width: 100%;
		height: 150px;

	}
	section.contact > .main-content > .right .address {
    line-height: 16px;
    font-size: 10px;
  }
  footer{
		margin-bottom: 10px;
		margin-top: 0px;
	}
	.copy-right{
		margin-top: 30px;
		font-size: 7px;
	}
	footer > .text{
		margin-top: -20px;
	}
	footer > .text > div{
		font-size: 10px;
		margin-left: 5px;
	}
	footer > .text > img:nth-child(1){
		width: 15px;
	}
	body  img.whatsapp{
		width: 50px !important;
	}
	section.map > .title {
		font-size: 17px !important;
		letter-spacing: 0.5px;
	}
	section.map #map{
		height: 150px;
		border-width: 1px;
	}
	.map-cover{
		border-width: 1px;
	}
	.cont-des > .description div div, .cont-des > .description a, .cont-des > .title{
		font-size: 14px;
	}
	.cont-des > .description div div:not(:first-child), .cont-des > .description a:not(:first-child){
		margin-top: 10px;
	}
	section.about > .main-content .first > div .des pre, section.about > .main-content .second .right pre {
		letter-spacing: 1px;
		font-size: 12.5px;
		white-space: initial;
	}
	#about > div.main-content.container > div.second.delete_space > div.right.delete_space.aos-init.aos-animate > div > img{
		display: block;
	}
	.cont-des > .description a, .cont-des > .title {
    font-size: 10px;
	}
	#contact > div.cont-des.container > div.description > div.first > a > img {
    width: 12px;
	}
	.cont-des > .title {
    margin-top: 35px;
    margin-bottom: 10px;
	}
	.product-wrapper > .product > .title{
		font-size: 10px;
	}
	section > .title{
		margin: 20px 0 !important;
		font-size: 15px !important;
	}
	section.contact > .main-content > .left > form.message > div.full-name > div{
		width: 49%;
	}
}
@media (max-width: 320px){
	section.planed{
		margin: 30px auto;
	}
	section.planed > div.right{
		font-size: 0.6rem;
		line-height: 10px;
	}
	section.planed > div.left pre,
	section.planed > div.left{
		font-size: 7px;
	}
	section > .title{
		font-size: 9px;
		letter-spacing: 3px;
	}
	section.projects .box-wrapper > div.box > .title{
		font-size: 9px;
		padding: 5px 15px;
		bottom: -16px;
	}
	section.projects div.more{
		font-size: 17px;
	}
	section.projects div.more span{
		width: 13px;
	}
	section.projects div.more span:before,
	section.projects div.more span:after{
		height: 17px;
		width: 2px;
	}
	section.hapy_customers .number{
		font-size: 0.9rem;
		margin-bottom: -5px;
	}
	section.hapy_customers .title{
		font-size: 0.4rem;
		letter-spacing: 1px;
	}
	section .header .title {
		font-size: 1rem;
	}
	.popup-wrapper{
		padding: 0 50px !important;
	}
	section.services > .box-wrapper > .box > p.title{
		height: 20px;
		line-height: 35px;
	}
	.services > h1:nth-child(2){
		margin: 0;
		margin-top: 20px;

	}
	section.services > .box-wrapper > .box{
		margin: 15px 0;
	}
	.about > div:nth-child(1) > h3:nth-child(2){
		font-size: 20px;
	}
	.about > div:nth-child(1) > h3:nth-child(2){
		font-size: 17px;
	}
	section.about > .main-content .first > div .title{
		font-size: 10px;
	}
	section.about > .main-content .first > div .des pre, section.about > .main-content .second .right pre {
  	font-size: 9px;
	}
  section.services{
		margin-bottom: 30px;
		margin-top: 80px;
	}
	section.services > .box-wrapper > .box div.img .popup{
		width: 200px;
		padding: 0;
	}
	section.services > .box-wrapper > .box div.img .popup .logo img{
		width: 30px;
		margin-right: 10px;
	}
	section.services > .box-wrapper > .box div.img .popup .dash{
		height: 70%;
	}
	div.img .popup .text {
    font-size: 5px !important;
    line-height: 11px !important;
    margin-bottom: 0;
    margin-left: 5px !important;
  }
  section.services > .box-wrapper > .box div.img .popup .dash{
    margin: 0 !important;
  }
  section.services > .box-wrapper > .box > div.img .popup .dash {
    width: 0.3px !important;
    height: 50% !important;
  }
  section.services > .box-wrapper > .box > div.img .popup .btns{
  	top: -3px !important;
  	left: -5px !important;
  }
  section.services > .box-wrapper > .box > div.img .popup .btns:after,
  section.services > .box-wrapper > .box > div.img .popup .btns:before{
  	 height: 20px;
  }
}
