@font-face{font-family: 'Montserrat';src: url(../fuentes/Montserrat-Black.fft);font-weight: bold;font-style: bold;}
@font-face{font-family: 'Montserrat';src: url(../fuentes/Montserrat-BlackItalic.fft);font-weight: normal;font-style: normal}

.banner{
	width: 100%;
	margin: auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: center;
	height: 28rem ;
	overflow: hidden;
	margin-top: 70px;
	margin-bottom: ;
	background-image: url("../image/campamento.jpeg");
	background-size: cover;
	background-repeat: none;
	background-position: center;
	animation: fondo 10s infinite;
}
.banner_tittle{
	width: 100%;
	z-index: 200;
}
.banner_tittle h2{
	color: #fff;
	font-size: 4rem;
	font-weight: 700;
	margin: 0 50px;
}
.banner_tittle p{
	margin: 30px 50px;
	font-size: 2em;
	color: #fff;
}
.banner_tittle .bt_1{
	font-size: 1.6em;
	padding: 12px 50px;
	font-weight: 600;
	margin: 0 50px;
	background-color: #F60A0A;
}
.banner_tittle .bt_1:hover{
	background-color: #D913F0;
}
.banner_img{
	width: 100%;
	position: relative;
}
.banner_img img{
	width: 200px;
height: 130px;
	display: block;
	position: absolute;
	top: -170px;
	right: 50px;
}

/*   animaciones     */
.banner_img .img_1{
	animation: libros 4s  linear infinite;
}
.banner_img .img_2{
	animation: objetos 3.5s  linear infinite;
}
.banner_img .img_3{
	animation: objetos 3.5s  linear infinite;
}
.banner_img .img_4{
	width: 150px;
	height: 100px;
	margin-top: 400px;
	margin-right: 300px;
	animation: manzana 2.5s  linear infinite;
}

@keyframes libros{
	0%{
		transform: translateY(0);
	}50%{
		transform: translateY(-50px);
	}100%{
		transform: translateY(0);
	}
}
@keyframes objetos{
	0%{
		transform: translateY(0);
	}50%{
		transform: translateY(-50px);
	}100%{
		transform: translateY(0);
	}
}
@keyframes manzana{
	0%{
		transform: translateY(0);
	}50%{
		transform: translateY(-70px);
	}100%{
		transform: translateY(0);
	}
}
@keyframes fondo{
	20%{
		background-image: url("../image/slider/banner_n3.png");
		background-size: cover;
	}
	40%{
		background-image: url("../image/slider/banner_n2.png");
		background-size: cover;
	}
	60%{
		background-image: url("../image/slider/banner_4.png");
		background-size: cover;
	}
80%{
		background-image: url("../image/slider/nuevo4.png");
		background-size: cover;
	}
	
100%{
		background-image: url("../image/slider/banner_n5.png");
		background-size: cover;
	}
/*  responsive  */
@media screen and (max-width:1000px){
	.banner{
		height: 33em;
	}
	.banner_img img{
		right: -100px;
	}
}
@media screen and (max-width:900px){
	.banner{
		height: 40em;
	}
	.banner_img img{
		top: -20em;
		right: -200px;
	}
}
@media screen and (max-width:800px){
	.banner{

		margin-bottom: 40px;
		overflow: visible;
	}
	.banner_img img{
		top: -20em;
		right: -300px;
	}
}
@media screen and (max-width:700px){
	.banner{
		height: 52em;
		display: flex;
		flex-direction: column-reverse;
		margin-bottom: 30px;
	}
	.banner_tittle{
		margin-top: -230px;
		margin-bottom: 20px;
	}
	.banner_img img{
		top: -48em;
		right: -200px;
	}
}