.todos{
	display:flex ;
	align-items: center;
	justify-content: center;
	 height: 500px;

}
.contentF{
	background-image: url(../img/imagenes.jpg);


	 display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 290px;
	height: 290px;
	padding: 1em;
	text-align: center;
	border-radius: .8em;
	color: white;
	cursor: pointer;
	overflow: hidden;
	z-index: 1;
		display: flex;
	align-items: center;
	 justify-content: center;
	 flex-direction: column;
}
.contentV{
	background-image: url(../img/video.jpg);
	 display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 290px;
	height: 290px;
	padding: 1em;
	text-align: center;
	border-radius: .8em;
	color: white;
	cursor: pointer;
	overflow: hidden;
	z-index: 1;
		display: flex;
	align-items: center;
	 justify-content: center;
	 flex-direction: column;
}
.contentA{
	background-image: url(../img/archivo.jpg);
	 display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 290px;
	height: 290px;
	padding: 1em;
	text-align: center;
	border-radius: .8em;
	color: white;
	cursor: pointer;
	overflow: hidden;
	z-index: 1;
		display: flex;
	align-items: center;
	 justify-content: center;
	 flex-direction: column;
}
.tit{
	text-align: center; 
	margin-top: 20px; 
	font-size: 35px;
	color: white; 
	font-weight:700;
	text-shadow: -3px -3px 3px  #F25A05, 3px -3px 3px  #F25A05, -3px 3px 3px  #F25A05, 3px 3px 3px  #F25A05
}
.BotonMaterial{
	  border-radius: 5px;
  padding: 10px 7px;
  text-decoration: none;
  color: #fff;
  background-color: #F24405;
  margin: 15px;
  width: 120px;
  text-align: center;
  box-shadow: 1px 1px 15px #F24405;
 /* box-shadow: 0 0 50px rgba(242,68,5,.9);*/
}

.carta:hover{
	color: white;

}
.carta h4{
	color: white;
	margin: 10px 0;
	text-shadow: -2px -2px 2px  #F25A05, 2px -2px 2px  #F25A05, -2px 2px 2px  #F25A05, 2px 2px 2px  #F25A05;
}
.targetas{
	display: grid;
	place-items: center;
	position: relative;
	width: 300px;
	height: 300px;
	border-radius: 1em;
	/*background: linear-gradient(50deg, #2a5a3b, #1e4886);*/
	background: linear-gradient(90deg, white, white);
	box-shadow: 20px 20px 80px -44px black;

	overflow:hidden;

	 margin: 20px;
}
.targetas::before{
	content: "";
	position: absolute;
	width: 450px;
	height: 35px;
	top: 0;
	right: 35px;
	transition: 2s;
	background: linear-gradient(90deg, #F25A05, #F25A05);
	transform: rotate(-45deg) translate(0, -100px);
}
button{
	border-radius: 5px;
	position: relative;
	padding: 10px 7px;
	border: none;
	outline: none;
	margin: 15px;
  width: 120px;
	background: #350642;
	color: white;
	cursor: pointer;
	transition: .5s;
	overflow: hidden;
}
button:hover{
	color: white;
}

button span{
	position: absolute;
	background: linear-gradient(50deg, white,white);
	transition: 0.5s;
}
button span:nth-child(1){
	width: 100%;
	height: 4px;
	top: 0;/*Arriba*/
	left: -100%;/*Izquierda*/
}
button span:nth-child(2){
	width: 100%;
	height:4px;
	bottom: 0;/*abajo*/
	right: -100%;/*Derecha*/
}
button span:nth-child(3){
	width: 4px;
	height:100%;
	bottom: -100%;/*abajo*/
	left: 0;/*Derecha*/
}
button span:nth-child(4){
	width: 4px;
	height:100%;
	top:-100%;/*abajo*/
	right: 0;/*Derecha*/
}
button:hover span:nth-child(1){
	left: 0;
}
button:hover span:nth-child(2){
	right: 0;
}
button:hover span:nth-child(3){
	bottom: 0;
}
button:hover span:nth-child(4){
	top: 0;
}
.targetas:hover::before{
	animation: cardEffect 2s;
}
@keyframes cardEffect{
	100%{
		transform: rotate(-45deg) translate(0, 450px);
	}
}

/*Termina diseño de la barra de nav*/
@media(max-width:640px){
	.card{
		display: block;
		width: 450px;
	}

	.content{
	  padding: 5px 20px 20px 20px;
	  background: transparent;

	}
	.content h2, a{
		margin: 0;
	}
}
/*Responsive*/
@media (max-width: 640px){

	.targetas{
		width: 150px;
	  height: 150px;
	  margin: 5px;
	  

	}
	.contentV{
	
	width: 150px;
	height: 150px;
	
	
}
.contentA{

	width: 150px;
	height: 150px;
	
}
.contentF{
	width: 150px;
	height: 150px;
	
}
.tit{
 
	margin-top: 10px; 
	font-size: 25px;
	font-weight:350;

}
.BotonMaterial{

  margin: 15px;
  width: 90px;

 
}
.todos{
	 height: 200px;

}
.contentF{

}



}