*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
body{
	font-family: 'Oxygen', sans-serif;	
}
.main_container{
	width: 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: 99;
}
.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: absolute;
	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;
}
.responsive_item a{
	text-decoration: none;
}
@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;
}
/***************************************SLIDER***************************************/
.main_section{
	width: 100vw;	
	display: flex;
	justify-content: center;
	align-items: center;
}
.slider_container{
	margin-top: 20px;	
	width: 65%;	
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
.slider{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	display: flex;		
}
.slider_prev, .slider_next{	
	width: 150px;
	height: 150px;
	position: absolute;
	top: calc(50% - 75px);
	border: 2px solid #FFFFFF;
	border-radius: 100%;
	z-index: 10;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	opacity: .5;
	transition: all 0.5s;
}
.slider_elemento{	
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 1900px;
	height: 900px;
}
.slider_prev{
	left: 10px;
}
.slider_next{
	right: 10px;
}
.slider_prev i, .slider_next i{
	font-size: 50px;
	color: #FFFFFF;
}
.slider_prev:hover, .slider_next:hover{
	opacity: 1;
}
.slider_elemento img{
	width: 100%;
	height: auto;
}
.slider_enlace{
	width: auto;
	height: auto;
	padding: 5px 10px;
	background-color: #FF0505;	
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 80%;
	border-radius: 10px;		
}
.slider_enlace a{
	color: #FFFFFF;	
	font-size: 25px;
	text-decoration: none;
	letter-spacing: 2px;
}
/***************************************BUTTONS***************************************/
.panel_buttons{
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
	flex-direction: column;
	gap: 20px;
	display: none;
}
.panel_buttons_row{
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px
}
.panel_buttons_row a{
	text-decoration: none;
}
.button_outter{
	width: 100px;
	height: 100px;
	border-radius: 100%;
	background: #ff0505;
	/*background: #ED213A;
	background: -webkit-linear-gradient(to bottom, #93291E, #ED213A);
	background: linear-gradient(to bottom, #93291E, #ED213A);*/
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 10px 10px 14px 0px rgba(0,0,0,0.75);
	-webkit-box-shadow: 10px 10px 14px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 10px 10px 14px 0px rgba(0,0,0,0.75);
}
.button_inner{
	width: 90px;
	height: 90px;
	border-radius: 100%;
	border:solid 1px #FFFFFF;		
	background: #FFFFFF;
	background: -webkit-linear-gradient(to top, #ffffff, #e8e8e8);
	background: linear-gradient(to top, #ffffff, #e8e8e8);
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;			
}
.button_inner p{
	text-decoration: none;
	font-family: 'Oxygen', sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #404040;	
}
/*******************************RESPONSIVE DESING************************************/
@media screen and (max-width: 1400px){
	/*.main_section{
		/*-height: auto;
	}*/
	.slider_container{
		margin-top: 10px;
		width: 60%;
	}
	.slider_elemento{	
		width: 1000px;
		height: 450px;
	}
	.slider_prev, .slider_next{	
		width: 100px;
		height: 100px;	
		top: calc(50% - 50px);	
	}
	.slider_prev i, .slider_next i{
		font-size: 40px;
		color: #FFFFFF;
	}
}
@media screen and (max-width: 1000px){
	.slider_prev, .slider_next{	
		width: 80px;
		height: 80px;	
		top: calc(50% - 40px);	
	}
	.slider_prev i, .slider_next i{
		font-size: 30px;
		color: #FFFFFF;
	}
}
@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: none;
	}
	.cerrar_menu{
		display: flex;
	}	
	.slider_container{		
		width: 70%;
	}
	.logo_responsive{
		display: flex;
	}
	.slider{
		display: none;
	}
	.panel_buttons{
		display: flex;
	}
}
@media screen and (max-width: 600px){
	.slider_prev, .slider_next{	
		width: 50px;
		height: 50px;	
		top: calc(50% - 25px);	
	}
	.slider_prev i, .slider_next i{
		font-size: 20px;
		color: #FFFFFF;
	}
	.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: 500px){
	.logo_web{
		margin-top: 50px;
		width: 100%;
	}
	.slider_container{
		width: 100%;
	}
	.slider_link a{
		font-size: 20px;
	}	
}
