@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=PT+Sans+Narrow:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kulim+Park:ital,wght@1,300&display=swap');


*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body{
	background: #B1B695;
	
}
title{
	font-family: 'Grenze Gotisch', cursive;
}

#menuToggle
{
  display: block;
  position: relative;
  top: 50px;
  left: 1px;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle a
{
  text-decoration: none;
  color: #7d83b5;
  transition: color 0.3s ease;
}

#menuToggle a:hover
{
  color: tomato;
}


#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  cursor: pointer;
  opacity: 0;
  z-index: 2; 
  -webkit-touch-callout: none;
}
#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: white;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #232323;
}


#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}
#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

#menu
{
  position: absolute;
  width: 300px;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-left: 100px; 
  padding-top: 125px;
  
  background: #444;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  transform-origin: 0% 0%; 
  transform: translate(-100%, 0);
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 10px 0;
  font-size: 25px;
}

#menuToggle input:checked ~ ul
{
  transform: none;
}
.mobile-nav{
	display: none;
}
.header{
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	text-transform: uppercase;
	font-family:'DM Serif Display';

}
#nav-bar{
display: flex;
	justify-content: space-around;
	width: 40%;
	list-style: none;


}

ul li a{
	text-decoration: none;
	font-size: 19px;
	font-weight: bold;
	text-decoration: none;
	letter-spacing: 1px;
	color:#8e99ad;
	font-family: open Sans;
}

ul li a:hover{
	color:black;
	text-decoration: none;


}
.order{
	font-size: 50px;
	color:#fff;
	font-weight: bolder;
	padding-top:400px;
	padding-left: 100px;
	text-transform: uppercase;
font-family: 'PT Sans Narrow', sans-serif;
}
.find-btn{
	width: 80%;
	height: 35px;
	margin: -430px auto;
	text-transform: uppercase;
	color: white;
	font-size: 15px;
	background-color: black;
	cursor: pointer;
	text-decoration: none;
}
.find-btn:hover{
	color: black;
	background-color: white;
	text-decoration: none;

}
.display{
	width:100%;
	height:800px;
background-image:linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.5)), url(images/1.jpg);
background-size: cover;
background-repeat: no-repeat;
animation: animate 16s ease infinite;

}
@keyframes animate{
	0%{
		background-image:linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.5)),url(images/1.jpg);
		background-size: cover;
		background-repeat: no-repeat;
	}
	50%{
		background-image:linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.5)), url(images/2.jpg);
		background-size: cover;

		background-repeat: no-repeat;

	}
	100%{
		background-image: linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.5)),url(images/3.jpg);
		background-size: cover;

		background-repeat: no-repeat;

	}
	

}
h1{
	font-size: 50px;
	font-weight: bolder;
	font-family: 'Fjalla One', sans-serif;	
	margin:80px;
	
}
.main{
	height: auto;
	display: grid;
	grid-template-columns: 1.2fr 1.2fr 1fr	; 
	grid-template-rows: 1fr 1fr;
	justify-content: space-around;
	align-items: center;
}
.main img{
	border-radius: 50%;
	width: 30%;
	height: 135px;
	background-color: white;

	margin-left: 45px;


}
h2{
	margin: 35px;
	font-size: 30px;
	text-transform: uppercase;
	font-family:kulim park,sans-serif;

}

.service-for{
	display: block;

	text-align: left;
	align-items: center;
	box-sizing: border-box;
	border:2px solid black;
	width: 50%;
	height: 390px;
	margin: 100px auto;
	
	background-color: #777;
}
h3{
	font-size: 35px;
	font-family: 'roboto',sans-serif;
	

	text-transform: uppercase;
	text-align: center;
	color: white;
}
.service-for p{
	font-size: 30px;
	padding: 15px;
	line-height: 1.5;
	text-align: left;
	font-family:verdana,sans-serif;


}
.clients{
	width: 100%;
	height: auto;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	justify-content: space-around;
	

	
}
.clients img{
	
	padding: 30px;
	width: 70%;
}


.work{
font-size: 60px;
font-family: 'Sora', sans-serif;
padding: 30px;


}
.worked{
	font-size: 35px;
	padding:40px 30px 35px 240px;
	border:3px solid;
	background-color: black;
	color: white;
	font-family: 'Noto Sans', sans-serif;
}
hr{
	color: black;
	margin-top: 10px;
	margin-bottom: 0px;
}
.container{
	width: 60%;
	margin: auto;
	

}
.Contact{
	width: 100%;
	height: auto;
	justify-content: center;
	align-items: center;
	padding: 50px;

	
}
.Contact label{
	display: block;
	align-items: center;
	margin: 5px;
	margin-left: 400px;
	font-size: 25px;
}
.Contact input{
	margin-left: 400px;
	width: 30%;
	border-radius: 10px;
	height: 45px;
	padding: 10px;

}
textarea{
	margin-left: 400px;
	width: 30%;
	height: 120px;
	border-radius: 10px;
	padding: 10px;
	resize: none;

}
.submit-btn{
	margin-left: 400px;
	height: 38px;
	border:2px solid hidden;
	overflow: hidden;
	text-transform: uppercase;
	background-color: #52c5d9;
	border-radius: 10px;
	font-size: 18px;
	font-family: roboto,sans-serif;

	width: 30%;
}
.submit-btn:hover{
	background-color:#00d9ff ;
	font-weight: bolder;

}
.contact-1{
	margin-left: 180px;
	margin-top:30px;
}
.name{
	font-size: 30px;
	margin-left: 350px;

}
.mess{
	font-size: 35px;
font-family: 'Epilogue', sans-serif;
}
.number{
	margin-left: 380px;
	font-size: 25px;
}
footer{
	text-align: center;
	display: block;
	width: 100%;
	height: auto;
	background-color:#444;
}
footer p{
	font-size: 20px;
	color: white;
	text-transform: uppercase;
}
.foot-logo{


}


footer a img{
	height: 70px;
	
	margin-left: 20px;
}



















@media all and (max-width: 500px){
	#nav-bar{
		display: none;
	}
	.order{
		font-size: 25px;
		padding-top:200px;
	padding-left: 50px;
	}
	.display{
		height: 500px;


	}
	h1{
		font-size: 35px;
		margin: 80px;

	}
	.main{
		display: block;
		text-align: center;
	}
	.service-for{
		width: 100%;
		height: 450px;
	}
	.work{
		font-size: 40px;
	}
	.clients{
		display: block;
		text-align: center;
		margin: 0px;
		padding: 0px;
	}
	.clients img{
		width: 35%;
	}
	.container{
		width: 100%;
	}
	.Contact{
	width: 95%;
	height: auto;
	justify-content: center;
	align-items: center;
	padding: 0px;

	
}
.Contact label{
	display: block;
	align-items: center;
	margin: 5px;
	margin-left: 10px;
	font-size: 25px;
}
.Contact input{
	margin-left: 10px;
	width: 95%;
	

}
textarea{
	margin-left: 10px;
	width: 95%;

}
.submit-btn{
	margin-left: 10px;

width: 95%;
}
.contact-1{
	margin-left: 3px;

}
.worked{
	font-size: 20px;
	padding-left: 10px;
}
.name{
	margin-left: 33px;	


}
.mess{
	font-size: 18px;	

}
.number{
	margin-left: 55px;
}
.mobile-nav{
	display: block;
	
}
footer{
width: 95%;	
margin-left: 10px;
}