@font-face {
	font-family: 'helvetica neuel lt sdt';
	src: url('fuentes/helvetica/HelveticaNeueLTStd-LtCn.otf') format('truetype');
}
@font-face {
	font-family: 'helvetica compressed';
	src: url('fuentes/helvetica/helvetica-compressed.otf');
}
@font-face {
	font-family: 'roboto regular';
	src: url('fuentes/roboto/Roboto-Regular.ttf') format('truetype');
}
@font-face {
	font-family: 'roboto condensed';
	src: url('fuentes/roboto/Roboto-Condensed.ttf') format('truetype');
}
@font-face {
	font-family: 'roboto medium';
	src: url('fuentes/roboto/Roboto-Medium.ttf') format('truetype');
}
@font-face {
	font-family: 'roboto light';
	src: url('fuentes/roboto/Roboto-Light.ttf') format('truetype');
}

*{
	box-sizing: border-box;
}
html{
	font-size:16px;
}
body{
	margin:0;
	background-color:#000;
}
.container{
	width:100%;
	max-width: 1200px;
	min-height: 100vh;
	background-image: url("fondo.png");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	margin:0 auto;
}
.header{
	display:flex;
	justify-content: space-between;
	width:85%;
	margin-left: auto;
	color:white;
	padding-top:50px;
    position:relative;
}
.logo{
	margin-top:25px;
	width:85%;
}

.idioma{
    flex-basis: 200px;
    list-style: none;
    margin: 0;
    padding:0;
    margin-right:8%;
    height:45px;
    overflow:hidden;
    transition:all 0.3s;
    cursor:pointer;
}
.idioma:hover{
    height:100px;
}
.idioma__item{
    display:flex;
    align-items: center;
    margin-bottom: 4px;
    font-size: 1.25em;
    font-family: 'helvetica neuel lt sdt';
    font-weight: bold;
}
.idioma__item--flecha{
    background: url('../images/flecha.png') 95% center no-repeat;
    background-size: 25px;
}
.idioma__link{
    display:block;
}
.idioma__img{
    width:40px;
    margin-right: 5px;
}
h1{
	font-family: 'helvetica compressed';
	font-size: 2.1em;
	letter-spacing:0.08em ;
	margin-top: 15px;
}
h2{
	font-family: 'helvetica neuel lt sdt';
	margin-top: -25px;
	margin-left:2px;
	font-size: 2.1em;
	letter-spacing:0.08em ;
}
.menu{
	list-style:none;
	margin:0;
	padding:0;
}
.menu__item{
	background-color:#d28a32 ;
	margin-bottom:10px;
	padding:8px 15px;
	width:180px;
	font-family:'roboto condensed';
	font-size:20px;
	transition: all 500ms;
}
.menu__item:hover{
	background-color:#964000;
}
.menu__link{
	color:white;
	text-decoration: none;
	transition: all 500ms;
	display: block;
}
.menu__link:hover{
	color:black;
	padding-left:5px;
}
.division{
    width:68%;
    height:3px;
	background: #964000;
    margin-left:15%;
}
.main{
	width:80%;
	margin:70px auto;
	display:flex;
	flex-wrap: wrap;
	justify-content: space-around;
	/* position: relative; */
	padding:0 70px;
}
.portadas{
	width:45%;
	position:relative;
	padding:0;
	outline:1px solid white;
	display:flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-bottom:5%;
	background-color:#ad3e00 ;
	opacity:1;
	cursor: pointer;
}
.portadas:hover{
	outline-width: 2px;
}
.portadas:hover .portadas__link{
	color:white;
}
/* .portadas:nth-child(1),.portadas:nth-child(3){
	margin-left:70px;
}
.portadas:nth-child(2),.portadas:nth-child(4){
	margin-right:70px;
} */
.portadas__title{
	color:white;
	font-family: 'helvetica neuel lt sdt';
	font-size:2.05em;
	position:absolute;
	padding:20px;
	margin-top:-110px;
}
.portadas__img{
	width:100%;
	display: block;
}
.portadas__link{
	color:#ec9726;
	font-family: 'helvetica neuel lt sdt';
	font-weight: bold;
	text-decoration: none;
	font-size:1.1em;
	text-transform: uppercase;
	text-align: center;
}
.portadas__link:hover{
	color:white;
}

.portadas:nth-child(5){
	order: -3;
}
.portadas:nth-child(4){
	order: -2;
}
.portadas:nth-child(3),.portadas:nth-child(6){
	order:-1;
}

/*========pop-ups========*/

.pop-up{
	position: absolute;
	width:80%;
	max-width: 1200px;
	top:0;
	left:50%;
	transform: translateX(-50%);
	color:white;
	display: flex;
	align-items: flex-start;
	background-color: rgba(46, 29, 9, 0.95);
	padding:5% 8%;
	visibility:hidden;
	height:0;
	overflow: hidden;
	opacity: 0;
}
.pop-up__info{
	width: 45%;
	margin-right: 5%;
	padding-bottom: 2%;	
	border-bottom:3px solid #964000;
}
.pop-up__data{
	font-family: 'roboto medium';
	font-size: 1.05em;
	margin-top:-8px;
}
.pop-up__data:nth-child(4){
	padding-bottom: 5%;
	border-bottom:3px solid #964000;
}
.pop-up__contacto{
	font-family: 'roboto light';
	font-size: 1em;
	padding-left: 3px;
}
.pop-up__contacto strong{
    font-weight:bold;
}
.pop-up__contacto a{
	text-decoration: none;
}
.pop-up__video{
	width:100%;
	margin-bottom:10%;
}
.pop-up__social{
	width:12%;
	margin-right:5%;
	vertical-align: middle;
}
.pop-up__detalles{
	font-family: 'roboto regular';
	font-size: 1em;
	line-height: 1.25;
	width:55%;
	margin-top:-2%;
	padding-bottom: 8%;
}
.pop-up__detalles ul{
	margin-left: -5%;
	list-style-position:outside;
}
.pop-up__detalles--negrita{
	font-weight: bold;
}
.btn-close-popup{
	position:absolute;
	color:white;
	font-family: 'roboto light';
	font-size: 2em;
	text-decoration: none;
	right:2%;
	top: 2%;
}


/* ==== VIDEO ==== */

.video{
	position: relative;
	top:0px;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}
.video__video{
	/*width:1200px;
	height:675px*/
	 position: absolute;
    top: 0px;
    left: 0%;
    width: 100%;
    height: 100%; 
}
 /*.modal-video{
	position:relative;
	top:0px; 
	left:50%;
	transform: translateX(-50%);
	width:100%;
	background-color: #000;
	max-width: 1200px;
	height:100%;
	z-index:1;  
}
.modal-video__video{
	width:80%;
 	position:absolute;
	top:0px; 
	left:50%;
	transform: translateX(-50%);  
	
} */

/* ==== RESPONSIVE ==== */
@media (max-width:1000px){
	.portadas__title{
		font-size:1.4em;
	}
}
@media (max-width:800px){
	.portadas{
		width:90%;
		margin-left:0;
		margin-right:0;
	}
	.portadas:nth-child(1),.portadas:nth-child(3){
		margin-left:0;
	}
	.portadas:nth-child(2),.portadas:nth-child(4){
		margin-right:0;
	}
	.portadas__title{
		font-size:2.1em;
	}
	.portadas__link{
		font-size: 1.5em;
	}
}
@media (max-width:650px){
    .menu__item{
        font-size:14px;
    }
	.idioma{
        position:absolute;
        bottom:0%;
        right:0%;
        overflow:visible;
        height:100px;
    }
    .idioma__item--flecha{
    background-size: 0;
	}
	
	.portadas__title{
		font-size:1.7em;
	}
	.portadas__link{
		font-size: 1em;
	}
}
@media (max-width:450px){
	.container{
		background-image: url("fondo.png");
		background-repeat: no-repeat;
		background-position: center top;
		background-size: contain;
		background-attachment: fixed;
	}
	.portadas__title{
		font-size:1.2em;
	}
}