@keyframes circle {
   0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
*{
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

body {
   overflow-x: hidden;
}
nav {
	display: flex;
	justify-content: space-around;
	align-items: center;
	min-height: 8vh;
	font-family: 'roboto', sans-serif;
}

.logo {
  width: 130px;
  left: 0;
  right: 0;
  margin: 10px -40px;
}

.logo a {
	color: #000000;
	letter-spacing: 3px;
	font-size: 20px;
  text-decoration: none;
}

.nav-links {
display: flex;
justify-content: space-around;
width: 40%;
}
.nav-links li {
	list-style: none;
}
.nav-links a {
color: #000000;
text-decoration: none;
letter-spacing: 2px;
font-weight: bold;
font-size: 14px;
}

.burger {
	display: none;
	cursor: pointer;
}

.burger div {
width: 25px;
height: 3px;
background-color: #000000;
margin: 5px;
transition: all 0.3s ease;
}
@media screen and (max-width: 1024px){
  .nav-links {
width: 60%;
	}
}

@media screen and (max-width: 768px){
  	body {
    overflow-x: hidden;
	}

 .nav-links {
		position: absolute;
		right: 0px;
		height: 20vh;
		top: 8vh;
		background-color: #ffffff;
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
		opacity: 0;
    transition: transform 0.5s ease-in;
	}
	.burger {
    display: block;
	}
}

.nav-active {
opacity: 1;
}

@keyframes navLinkFade{
	from{
		opacity: 0;
		transform: translateX(50px);
	}
	to{
		opacity: 1;
		transform: translateX(0px);
	}
}

.toggle .line1{
	transform: rotate(-45deg) translate(-5px,6px);
}
.toggle .line2{
	opacity: 0;
}
.toggle .line3{
	transform: rotate(45deg) translate(-5px,-6px);
}
.first .text h2 {
    background-size: cover;
  background-position: center;
 margin: 0 20px 0 20px;
  font-family: roboto;	
  display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
  font-size: 18px;
}
.first .text {
  background-size: cover;
  background-position: center;
 margin: 0 auto 0 auto;
  font-family: roboto;	
  display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
  font-size: 16px;
}


@media (max-width: 800px) {

  }


footer {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100px;
  background-color: #000000;
  color: #ffffff;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  font-family: roboto;
  font-size: 14px;
  }
