.main{
	padding: 20px;
}
.nav_pages > a:nth-child(4){
	opacity: 1;
	font-size: 28px;
}
.nav_footer a:nth-child(3){
	filter: brightness(0.7);
	font-size: 20px;
}
.main > div{
	display: grid;
	grid-gap: 20px;
	grid-template-rows: 1.3fr 1fr;
	grid-template-columns: repeat(6, 1fr);
	margin-bottom: 20px;
}
.game1_text{
	grid-row: 1 / 3;
	grid-column: 1 / 5;
	background: #4970E7;
	opacity: 0.7;
	border-radius: 20px;
	padding: 40px;
	animation-name: appearense_blue;
	animation-duration: 1s;
	animation-delay: 1s;
	animation-fill-mode: forwards;
	opacity: 0;
}
.game1_img{
	grid-row: 1 / 2;
	grid-column: 5 / 7;
	animation-name: appearense;
	animation-duration: 1s;
	animation-delay: 1.2s;
	animation-fill-mode: forwards;
	opacity: 0;
}
.game1_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
}
.game1_result{
	padding: 20px;
	grid-row: 2 / 3;
	grid-column: 5 / 7;
	background: #9CDDBB;
	border-radius: 20px;
	animation-name: appearense;
	animation-duration: 1s;
	animation-delay: 1.4s;
	animation-fill-mode: forwards;
	opacity: 0;
}
.game2_img1{
	grid-row: 1 / 2;
	grid-column: 1 / 3;
	animation-name: appearense;
	animation-duration: 1s;
	animation-delay: 2s;
	animation-fill-mode: forwards;
	opacity: 0;
}
.game2_img1 img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
}
.game2_result{
	padding: 20px;
	grid-row: 2 / 3;
	grid-column: 1 / 3;
	background: #9CDDBB;
	border-radius: 20px;
	animation-name: appearense;
	animation-duration: 1s;
	animation-delay: 1.6s;
	animation-fill-mode: forwards;
	opacity: 0;
}
.game2_text{
	grid-row: 1 / 3;
	grid-column: 3 / 5;
	background: #FD7462;
	border-radius: 20px;
	opacity: 0.8;
	padding: 40px;
	animation-name: appearense;
	animation-duration: 1s;
	animation-delay: 1.2s;
	animation-fill-mode: forwards;
	opacity: 0;
}
.game2_img2{
	grid-row: 1 / 3;
	grid-column: 5 / 7;
	animation-name: appearense;
	animation-duration: 1s;
	animation-delay: 2s;
	animation-fill-mode: forwards;
	opacity: 0;
}
.game2_img2 img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	animation-name: appearense;
	animation-duration: 1s;
	animation-delay: 1.4s;
	animation-fill-mode: forwards;
	opacity: 0;
}
.game3_text{
	grid-row: 1 / 3;
	grid-column: 1 / 4;
	background: #4970E7;
	opacity: 0.7;
	border-radius: 20px;
	padding: 40px;
	animation-name: appearense_blue;
	animation-duration: 1s;
	animation-delay: 0.8s;
	animation-fill-mode: forwards;
	opacity: 0;
}
.game3_img{
	grid-row: 1 / 2;
	grid-column: 4 / 6;
	animation-name: appearense;
	animation-duration: 1s;
	animation-delay: 1.8s;
	animation-fill-mode: forwards;
	opacity: 0;
}
.game3_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
}
.game3_result{
	padding: 20px;
	grid-row: 2 / 3;
	grid-column: 4 / 6;
	background: #9CDDBB;
	border-radius: 20px;
	animation-name: appearense;
	animation-duration: 1s;
	animation-delay: 2s;
	animation-fill-mode: forwards;
	opacity: 0;
}
.game4_text{
	grid-row: 1 / 3;
	grid-column: 6 / 7;
	background: #4970E7;
	border-radius: 20px;
	opacity: 0.7;
	padding: 40px;
	text-align: center;
	animation-name: appearense_blue;
	animation-duration: 1s;
	animation-delay: 1s;
	animation-fill-mode: forwards;
	opacity: 0;
}
.main h3{
	color: white;
}	
.game1_result h3, .game2_result h3, .game3_result h3{
	color: #4D7745;
}
.main p{
	color: white;
	font-size: 20px;
	margin-top: 50px;
	text-align: justify;
}
.main .underline{
	background: white;
	transition: 0.5s;
}
.main .underline_result{
	background: #4D7745;
	transition: 0.5s;
}
.main > div > div{
	transition: 0.5s;
}
.main > div > div:hover{
	transform: translateY(15px);
	filter: brightness(1.3);
}
.game1_result:hover .underline_result,
 .game2_result:hover .underline_result,
  .game3_result:hover .underline_result{
  	width: 108px;
}
.game1_text:hover .game1_underline{
	width: 226px;
	left: 80px;
}
.game2_text:hover .game2_underline{
	width: 152px;
	left: 81px;
}
.game3_text:hover .game3_underline{
	width: 153px;
	left: 79px;
}
.game4_text:hover .game4_underline{
	width: 155px;
	left: 43px;
}
.game4_text p{
	text-align: center;
}
.side_nav{
	position: fixed;
	z-index: 1;
	top: 150px;
	left: 12px;
}
.side_nav a{
	width: 50px;
	height: 50px;
	display: inline-block;
	border-radius: 20px;
	border: 2px solid white;
	text-decoration: none;
	color:white;
	transition: 0.7s;
}
.side_nav a > span{
	position: relative;
	left: 40px;
	top: 10px;
	opacity: 0;
	width: 300px;
	display: inline-block;
}
.link_goal a{
	background: #4970E7;
}
.link_topicality a{
	background: #FD7462;
}
.link_tecnologies a{
	background: #9CDDBB;
}
.link_goal a:hover{
	width: 300px;
}
.link_goal a:hover span{
	opacity: 1;
	transition-duration: 0.7s;
}
.link_topicality a:hover{
	width: 300px;
}
.link_topicality a:hover span{
	opacity: 1;
	transition-duration: 0.7s;
}
.link_tecnologies a:hover{
	width: 300px;
}
.link_tecnologies a:hover span{
	opacity: 1;
	transition-duration: 0.7s;
}
@keyframes appearense{
	from{
		transform: scale(0);
		opacity: 0;
	}
	to{
		transform: scale(1);
		opacity: 1;
	}
}
@keyframes appearense_blue{
	from{
		transform: scale(0);
		opacity: 0;
	}
	to{
		transform: scale(1);
		opacity: 0.7;
	}
}


@media(max-width: 700px){
	.game1_img{
		display: none;
	}
	.game2_img1{
		display: none;
	}
	.game2_img2{
		display: none;
	}
	.game3_img{
		display: none;
	}
	.game1_text{
		grid-row: 1 / 2;
		grid-column: 1 / 7;
	}
	.game2_text{
		grid-row: 1 / 2;
		grid-column: 1 / 7;
	}
	.game3_text{
		grid-row: 1 / 2;
		grid-column: 1 / 7;
	}
	.game1_result{
		grid-row: 2 / 3;
		grid-column: 1 / 7;
	}
	.game2_result{
		grid-row: 2 / 3;
		grid-column: 1 / 7;
	}
	.game3_result{
		grid-row: 2 / 3;
		grid-column: 1 / 7;
	}
	.game4_text{
		display: none;
	}
}