*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family:'Josefin Sans',sans-serif;
	scroll-behavior: smooth;
}
body{
	background: #000;
}
/*LOADER*/
.loader {
	background: url(img/fondo2.webp);
	background-size: cover;
	background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: fixed;
  display: flex;
  align-items: center;
  align-content: center; 
  justify-content: center;
	z-index: 100000;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: clip-path 1.5s cubic-bezier(.83,.78,.67,-0.38);
}
.loader__title{
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 10px;
  top: 35%;
  position: absolute;
  color: #fff;
  filter: drop-shadow(0 0 2px #000);
  font-family: 'CalliGraffitti';
}
.loader-mostrar{
 clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}
.loader__element {
  border-radius: 100%;
  border: 4px solid #fa1;
  margin: 0 10px;
}

.loader__element:nth-child(2) {
  animation: preloader .6s ease-in-out alternate infinite;
}
.loader__element:nth-child(3) {
  animation: preloader .6s ease-in-out alternate .4s infinite;
}

.loader__element:nth-child(4) {
  animation: preloader .6s ease-in-out alternate .6s infinite;
}

@keyframes preloader{
  0%{

  }
  100%{
   transform: scale(2);
  }
}

/*LOADER*/

#navbar{
	width: 100%;
	height: 70px;
	display: flex;
	justify-content: space-around;
	align-items: center;
	position: fixed;
	z-index: 1;
	padding: 0 20px;
	background: #0006;
	box-shadow: 0 0 10px #000;
	transition: all .8s;
}
.nav-ul{
	display: flex;
	list-style: none;
}
.nav-li{
	margin: 0 25px;
}
.nav-li a{
	text-decoration: none;
	color: #fff;
	font-size: 20px;
	letter-spacing: 3px;
	transition: all .2s;
	text-shadow: 0 0 2px #000;
}
.nav-li a:hover{
	color: #fa1;
}
.menu{
	font-size: 35px;
	font-weight: 700;
	color: #fff;
	font-family: 'Calligraffitti';
	letter-spacing: 2px;
	filter: drop-shadow(0 0 5px #000);
}




#main{
	width: 100%;
	height: 100vh;
	position: relative;
}
.slider{
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.myslide{
	width: 400%;
	height: 100%;
	display: flex;
	position: relative;
	background: #000;
	left: 0;
	transition: all 1.2s;
}
.myslide img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: opacity(.5);
}

.main_presentacion--cont{
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	font-size: 35px;
	color: #fff;
	filter: drop-shadow(0 0 5px #000);
	flex-wrap: wrap;
	text-align: center;
	letter-spacing: 2px;
}

.importante{
	color: #fa1;
}
.main_video--cont{
	width: 35%;
	height: 280px;
	min-width: 350px;
	border: 2px solid #fa1;
	filter: drop-shadow(0 0 5px #fa1);
	transition: all 1.2s;
}
.main_video--cont:hover{
	width: 550px;
	height: 350px;
}
.video_video{
	object-fit: cover;
	width: 100%;
	height: 100%;
}



#juego{
	width: 100%;
	height: 100%;
	padding: 5%;
	text-align: center;
	color: #fff;
}
#juego h1{
	font-size: 30px;
}
.servicios-cont{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: initial;
	align-items: center;
	padding: 5% 15%;
}
.servicio{
	width: 100%;
	height: 100%;
	text-align: initial;
}
.servicio div{
	text-align: center;
}
.servicio div i{
	font-size: 40px;
	transition: all .4s;
	color: #fa1;
	margin: 5px;
}
.typed{
	font-size: 22px;
}
.typed1{
	font-size: 22px;
}
.typed2{
	font-size: 22px;
}
.typed3{
	font-size: 22px;
}
.typed4{
	font-size: 22px;
}


#staff{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	padding: 50px;
	position: relative;
}
.staff-img{
	width: 100%;
	height: 90%;
	object-fit: cover;
	position: absolute;
	z-index: -1;
	filter: grayscale(.4);
}
.staff-cont{
	width: 100%;
	height: 100%;
	margin-top: 50px;
	text-align: center;
}
.staff-cont h1{
	color: #fff;
	font-size: 50px;
	margin-bottom: 40px;
	font-weight: 700;
	letter-spacing: 2px;
	filter: drop-shadow(0 0 5px #fa1);
}
.staff-item-cont{
	width: 100%;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.staff-item{
	min-width: 120px;
	width: 120px;
	height: 120px;
	margin: 20px;
}
.staff-item h2{
	font-size: 30px;
	color: #fff;
	filter: drop-shadow(0 0 5px #fa1);
}
.staff-item img{
	border-radius: 100%;
	width: 100%;
	height: 100%;
	border: 3px solid #fa1;
	filter: drop-shadow(0 0 5px #000);
}
.staff-item:first-child{
	animation: moverStaff 2s ease-in-out alternate infinite;
}
.staff-item:nth-child(2){
	animation: moverStaff 2s ease-in-out alternate .4s infinite;
}
.staff-item:nth-child(3){
	animation: moverStaff 2s ease-in-out alternate .8s infinite;
}
.staff-item:nth-child(4){
	animation: moverStaff 2s ease-in-out alternate .12s infinite;
}
.staff-item:nth-child(5){
	animation: moverStaff 2s ease-in-out alternate .16s infinite;
}
@keyframes moverStaff{
	100%{
		transform: translateY(-15px);
	}
}

#discord{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	padding: 5%;
}
#discord h1{
	color: #fff;
	font-size: 30px;
	text-align: center;
	margin: 30px;
}
.discord-img{
	width: 400px;
	height: 200px;
	object-fit: contain;
	filter: drop-shadow(0 0 1px #fff);
	cursor: pointer;
	margin: 0 20px;
}

#footer{
	width: 100%;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
	background: #fff;
}

#footer h2{
	font-size: 22px;
	color: #000;

}



@media screen and (min-width: 0px) and (max-width: 832px){
	.nav-ul-cont{
		display: none;
	}
	.main_presentacion--cont{
		margin-top: 30px;
	}
	#main{
		height: 130vh;
	}
	#footer h2{
		font-size: 17px;
		text-align: center;
	}
}
@media screen and (min-width: 0px) and (max-width: 530px){
	.discord-img{
		width: 300px;
		height: 250px;
	}
}

@media screen and (min-width: 0px) and (max-width: 425px){
	.staff-cont h1{
		font-size: 22px;
	}
	#juego{
		padding-top: 30px;
	}
	#juego h1{
		font-size: 22px;
	}
	.servicio div{
		margin: 10px 0;
	}
}
@media screen and (min-width: 0px) and (max-width: 380px){
	.main_video--cont{
		min-width: 280px;
	}
}