*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto Serif', serif;
}

:root{
	--colorverde: rgba(108, 187, 124, 1.0);
	--colorgris: rgba(245, 245, 245,1.0);
}

body{
	position: relative;
	background-position: center top;
	background-repeat: no-repeat;
	background-size: 100%;
	max-width: 1920px;
	min-width: 200px;
	background: rgba(255, 255, 255, 1.0);
}

header{
	z-index: 1000;
	width: 100%;
	max-width: 1920px;
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	align-content: center;
	justify-content: space-between;
	align-items: center;
	padding: 0 2%;
	box-sizing: border-box;
	height: 100px;
	transition: 1.5s;
}

.logo{
	display: flex;
	align-content: center;
	height: 95px;
	color: white;

}

.logo h1{
	display: inline-block;
	height: 95px;
	line-height: 95px;
	font-size: 20px;
	font-weight: 300;
	margin: 0 15px;
}

.logolink{
	display: inline-block;
	width: 95px;
	height: 95px;
	color: white;
}

.logoimagen{
	width: 100%;
	height: 100%;
	opacity: 1.0;
	border-radius: 50%;
	box-shadow: 0 0 15px rgba(3, 149, 69, 1.0);
}

.main-menu{
	display: flex;
	justify-content: center;
	align-items: center;
	list-style: none;
}

.menu-item{
	min-width: 80px;
	text-align: center;
	margin: 0 0.5rem;
	font-size: 4.0mm;
	font-weight: 600;
	padding: 5px 0px;
	border-radius: 30px;
	color: #f2f2f2;
	transition: all 1.0s;

}

.menu-item:hover{
	background-color: var(--colorverde);
	padding: 10px 5px;
}

.menu-item a{
	display: inilne-block;
	width: 100%;
	height: 100%;
}

header a{
	font-weight: 300;
	color: white;
	cursor: pointer;
}

a:link{
    color: white;
    text-decoration: none;
}
/*-------------------------*/

.imagen-header{
	position: relative;
	z-index: 900;
	width: 100%;
	height: 50vh;
	min-height: 250px;
	max-height: 1200px;
	background-color: rgba(0, 0, 0, 1.0);
}

.imagen-header .fondo{
	z-index: 300;
	position: absolute;
	width: 100%;
	height: 50vh;
	min-height: 250px;
	max-height: 1200px;
	object-fit: cover;
    display: block;
    opacity: 0.6;
}

/*------------IDIOMA----------------*/
.idioma{
    z-index: 1000;
    position: absolute;
    bottom: 0;
    right: 2mm;
    width: 69mm;
    height: 7mm;
    background-color:rgba(0, 0, 0, 0.1);
    display: flex;
    border-radius: 3mm;  
}
.textoIdiomaGuion{
	height: 7mm;
	line-height: 7mm;
    font-size: 4mm;
    font-weight: 100;
    color: white;
    margin: auto;
    padding: 0 3mm;
    border-radius: 3mm; 
    background-color:transparent;  
}
.textoIdioma{
	display: flex;
	height: 7mm;
	line-height: 7mm;
    font-size: 3.7mm;
    font-weight: 100;
    color: white;
    margin: auto;
    padding: 0 2mm;
    border-radius: 3mm; 
    background-color:transparent;
    transition: all 1.0s;  
}

.textoIdioma:hover{
	font-size: 4.5mm;
    background-color: rgba(50, 50, 50, 1.0);  
}

.bandera{
	position: relative;
	display: inline-block;
	width: 7mm;
	height: 7mm;
	margin: 0 1mm;
}
.bandera img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/*------------------------------------*/
.linea{
	position: relative;
    border-top: 5px solid #0077C0;
}

.barraSeparadoraImagen{
	position: relative;
	display: block;
	width: 100%;
	height: 300px;
}

.barraSeparadoraImagen img{
	position: absolute;
	z-index: 99;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.barraSeparadoraImagen video{
	position: absolute;
	z-index: 99;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.barraSeparadoraImagen div{
	position: absolute;
	z-index: 100;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);/*rgba(3, 149, 69, 0.0);*//*0.3*/
}

/*------------------------------------*/
/*------------------------------------*/
@media only screen and (max-width:785px){ /*ancho menor a*/
	header li{
		display: none;
	}
	.barraSeparadoraImagen{
		position: relative;
		display: block;
		width: 100%;
		height: 150px;
	}
}

@media only screen and (min-width:786px){ /*ancho menor a*//*cambiar tambien en menu.css media query*/
	#menu-bar{
		display: none;
	}

	.icon-menu{
		display: none;
	}
}

@media only screen and (max-width:520px){ /*ancho menor a*/
	.logo h1{
	display: none;
	}
}

/*-------------------------*/
/*-------------------------*/


