body {
  margin: 0;
  padding: 0;
  background-color:#000;
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}

.explore a {
	color:#fff;
	text-decoration:none;
	display:block;
	width:100%;
	height:100%;
	display:flex;
	align-items: center;
	justify-content: center;
}

.explore a:hover {
	color:#000;
	text-decoration:none;
	display:block;
	width:100%;
	height:100%;
	display:flex;
	align-items: center;
	justify-content: center;
}


.main {
  height: 100vh;
  width: 100%; 
  background-image:url("../img/main.png"); /* Photo by Samad Ismayilov from Pexels  */
  background-repeat: no-repeat;
}

.header {
  width: 100vw;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.logo {
  font-size: 21px;
  color: #fff;
  margin-left: 30px;
  font-family: 'Darker Grotesque', sans-serif;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  margin-top: 20px;
}

.logo:hover {
  -webkit-transform: scale(1.07);
          transform: scale(1.07);
}

.menu {
  width: 70px;
  height: 28px;
  margin-right: 30px;
  border: solid 1px #fff;
  background: none;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  margin-top: 20px;
  border-radius: 5px;
}

.menu:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.menu:focus {
  outline: none;
}

.button-text {
  color: #fff;
  text-transform: uppercase;
  font-size:12px;
}

.button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.caret-down,
.caret-left {
  color: #fff;
  margin-right: 10px;
}

.caret-left {
  display: none;
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

ul {
  margin-right: 30px;
  display: none;
  overflow:hidden;
}

.active {
  display: block;
}

ul li {
  color: #fff;
  text-decoration: none;
  list-style-type: none;
  text-transform: uppercase;
  line-height: 5;
  font-size: 16px;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  animation-name: down;
  animation-duration:.8s;
}

ul li:hover {
  -webkit-transform: scale(1.07);
          transform: scale(1.07);
}

.more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-animation: bounce 2s infinite;
          animation: bounce 2s infinite;
}


.fa-angle-double-down {
  font-size: 34px;
  color: #fff;
  margin-top: -80px;
  cursor:pointer;
}

.second {
  height: 100vh;
  width: 100%;
  background-color: rgb(32, 32, 32);
  display: none;
}

.second-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: flex-end;
}

.explore-margin {
 margin-bottom:50px;
}

.explore {
  width: 160px;
  height: 40px;
  background: none;
  border: 1px solid #fff;
  color: #fff;
  text-transform: uppercase;
  outline: none;
  -webkit-transition: .5s ease;
  transition: .5s ease;
  font-size: 11px;
  border-radius: 25px;
}


.explore:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  background: #fff;
  color: #000;
}

@media (max-width: 768px) {
  .caret-left {
    display: block;
  }
  .caret-down {
    display: none;
  }
  .main {
  	background-image:url("../img/main2.png");
  }
  
  ul li {
  	animation-name: left;
  	animation-duration:.4s;
  }
}

@media (max-width:600px) {
	.main {
		background-image:url("../img/main3.png");
	}
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-25px);
            transform: translateY(-25px);
  }
  60% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-25px);
            transform: translateY(-25px);
  }
  60% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

@keyframes down {
  0% { 
    transform:translateY(-500px);
  }
  50% {
   	transform:scale(1.1);
  }
}

@-webkit-keyframes down {
	0% { 
		transform:translateY(-500px);
	}
	50% {
		transform:scale(1.1);
	}
}


@keyframes left {
	0% {
		transform:translateX(500px);
  	}
}

@-webkit-keyframes left {
	0% {
		transform:translateX(500px);
	} 
}