*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
body{
	font-family: 'Oxygen', sans-serif;	
}
.main_container{
	width: 100vw;
	/*height: 100%;*/
	background-image: url("../images/background/background1.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
}
/******************************BARRA DE NAVEGACION*****************************/
.navbar{
	position: relative;
	width: 100%;
	height: auto;
	background-color: #ff0505;
	display: flex;
	align-items: center;
	z-index: 10;	
}
.logo_web{
	width: 300px;
	height: 100%;	
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 5px;		
}
.logo_web img{
	width: 100%;
	object-fit: cover;
}
.menu{	
	width: 85%;
	height: 100%;
	display: flex;
	justify-content: space-evenly;
	align-items: flex-end;	
}
.menu_lista{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	flex-wrap: wrap;
}
.menu_lista li{
	list-style-type: none;
	color: #fff;	
	background-color: transparent;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 1px;
    transition: background-size .5s;
}
.menu_lista li a{
	text-decoration: none;
	font-size: 18px;
	color: #fff;
	cursor: pointer;
}
.menu_lista li a i{
	margin-right: 5px;
}
.menu_lista li:hover, a:focus {
    background-size: 100% 1px;
    cursor: pointer;
}
.cerrar_menu{
	position: absolute;
	top: 5px;
	right: 5px;
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 5;
	display: none;
	animation: appear linear forwards 1s;
}
.cerrar_menu i{
	font-size: 30px;
	color: #fff;
}
@keyframes appear{
	0%{
		opacity: 0;
		right: 100%;
	}
	100%{
		opacity: 1
		right: 5px;
	}
}
.menu_responsive{
	position: fixed;
	top: 10px;
	right: 10px;
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 2px solid #ff0505;
	border-radius: 100%;
	display: none;	
	z-index: 15;
}
.responsive_item{
	color: #ff0505;
	font-size: 30px;
	cursor: pointer;
}
@keyframes dissappear{
	0%{
		right: 100%;
		opacity: 15px;
	}
	100%{
		right: 15px;
		opacity: 1;
	}
}
/*********************************LOGO RESPONSIVE*************************************/
.logo_responsive{
	width: 100%;
	height: 170px;
	display: flex;
	justify-content: center;
	align-items: center;
	display: none;
}
.logo_responsive img{
	width: 170px;
}
/*********************************CONTENIDO*************************************/
.contenido{
	margin-top: 15px;
	width: 100%;
	height: 100%;	
	display: flex;
	justify-content: center;
	align-items: center;
}
.contain_img{
	width: 50%;		
}
.contain_img img{
	width: 100%;
}
/*********************************INFO*************************************/
.info{
	position: relative;
	margin-top: 10px;
	width: 100%;
	height: 100%;	
}
.title{
	width: 100%;
	text-align: center;
	font-size: 25px;	
}
.title h2{
	position: relative;
	width: 80%;
	margin: 50px auto;
}
.title h2::after{
	content: ' ';
	position: absolute;
	top: 50px;
	left: calc(50% - 200px);
	width: 400px;
	display: block;
	height: 5px;
	background-color: #ff0505;
}
/*******************************SLIDER************************************/
.slider_container{
	position: relative;
	width: 85%;	
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 10px auto;
	background-color: #ff0505;
}
.slider{
	width: 85%;
	height: 100%;	
	background-color: #ff0505;
	text-align: center;	
}
.slider_elemento img{
	height: 100%;
	border-radius: 100%;
	padding: 10px;	
}
.slider_prev, .slider_next{
	position: absolute;
	top: calc(50% - 25px);	
	width: 50px;
	height: 50px;
	border: solid 1px #fff;
	border-radius: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.slider_prev{
	left: 10px;
}
.slider_next{
	right: 10px;
}
.slider_prev i, .slider_next i{
	font-size: 40px;
	color: #fff;
}
/*******************************RESPONSIVE DESING************************************/
@media screen and (max-width: 800px){
	.navbar{
		position: fixed;
		width: 70%;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		display: none;
		position: fixed;
	}
	.menu{
		width: 100%;				
	}
	.menu_lista{
		justify-content: center;
		flex-direction: column;
		align-items: flex-start;		
	}
	.menu_lista li{
		width: 95%;
		margin: 10px;
		border-top: 1px solid #fff;
		background-color: none;
		background-image: none;
    	background-position: none;
    	background-repeat: none;
    	background-size: none;
    	transition: none;
	}
	.menu_responsive{
		display: flex;
	}
	.cerrar_menu{
		display: flex;
	}		
	.logo_responsive{
		display: flex;
	}	
	.contain_img{
		width: 85%;
	}
	.slider_prev{
		width: 40px;
		height: 40px;
		left: 5px;
	}
	.slider_next{
		width: 40px;
		height: 40px;
		right: 5px;
	}
	.slider_prev i, .slider_next i{
		font-size: 30px;	
	}
}
@media screen and (max-width: 600px){
	.main_container{	
		background-image: url("../images/background/background_responsive.png");
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		background-attachment: fixed;
	}
}
@media screen and (max-width: 450px){
	.logo_web{
		margin-top: 50px;
		width: 100%;
	}
	.contain_img{
		width: 100%;
	}
	.title{
		font-size: 15px;
	}
	.slider{
		width: 75%;
	}
	.slider_prev{
		width: 20px;
		height: 20px;
		left: 3px;
	}
	.slider_next{
		width: 20px;
		height: 20px;
		right: 3px;
	}
	.slider_prev i, .slider_next i{
		font-size: 15px;	
	}		
}