@import url( 'fonts.css' );
body {
	margin: 0;
	background-color: #FCF0E2;
	color: #212F5C;
	font-family: 'FallingSky';
}
img { max-width: 100%; }
header {
	position: absolute;
	top: 0;
	width: 100%;
	text-align: center;
	z-index: 3;
	padding: 30px;
	box-sizing: border-box;
	opacity: 0;
	transition: 0.4s all;
}
header.fixed {
	position: fixed;
	opacity: 1;
	background: linear-gradient( to top, transparent 0%, #FCF0E2 100%)
}
.index header.fixed { background-color: transparent !important; }
header .logo img { width: 180px; height: auto; }
header.small .logo img { width: 120px; }
header .menuLink {
	position: absolute;
	top: 55px;
	left: 125px;
	font-size: 40px;
	color: #212F5C;
	transition: 0.4s all;
	z-index: 4;
}
header.small .menuLink { top: 45px; }
header .menuLink:hover {
	-webkit-transform: scale( 1.1 );
	-ms-transform: scale( 1.1 );
	transform: scale( 1.1 );
}
header .boton {
	position: absolute;
	top: 50px;
	right: 30px;
	padding: 10px 15px;
	box-sizing: border-box;
	border: 2px solid #212F5C;
	color: #212F5C;
	text-transform: uppercase;
	text-decoration: none;
	transition: 0.4s all;
	z-index: 4;
}
header.small .boton { top: 43px; }
header .boton:hover {
	background-color: #212F5C;
	color: #fff;
	-webkit-transform: scale( 1.1 );
	-ms-transform: scale( 1.1 );
	transform: scale( 1.1 );
}
nav.mainMenu {
	position: fixed;
	z-index: 2;
	top: 0;
	left: 0;
	background-color: rgba( 255, 255, 255, 0.6 );
	text-align: center;
	width: 1px;
	opacity: 0;
	max-width: 100%;
	height: 100vh;
	box-sizing: border-box;
	padding: 150px 0 0;
	overflow: hidden;
	transition: 0.4s all;
}
nav.mainMenu.open { width: 280px; opacity: 1; padding: 150px 20px 20px; }
nav.mainMenu ul {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	text-align: center;
	font-size: 18px;
}
nav.mainMenu ul li {
	margin: 8px 0;
}
nav.mainMenu ul li a {
	color: #212F5C;
	text-transform: uppercase;
	text-decoration: none;
	display: block;
	width: 100%;
	box-sizing: border-box;
	padding: 10px 0;
	white-space: nowrap;
	transition: 0.4s all;
}
nav.mainMenu ul li a:hover {
	-webkit-transform: scale( 1.1 );
	-ms-transform: scale( 1.1 );
	transform: scale( 1.1 );
}
.container {
	width: 1300px;
	max-width: 90%;
	margin: 0 auto;
}
.mainContent { width: 100%; margin-top: 200px; }
h1 { text-align: center; text-transform: uppercase; }
#home {
	background-image: url( '../images/main.webp' );
	background-position: top center;
	background-size: cover;
	background-repeat: no-repeat;
	height: 100vh;
	width: 100%;
	position: fixed;
	top: 0;
	z-index: 1;
}
.ammenitiesList {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}
.ammenitiesList .ammenity {
	position: relative;
	width: 31%;
	margin: 1%;
	color: #fff;
	text-align: center;
	overflow: hidden;
}
.ammenitiesList .ammenity h2 {
	position: absolute;
	z-index: 1;
	top: 45%;
	right: 0;
	left: 0;
	width: 90%;
	margin: 0 auto;
	text-align: center;
	font-size: 45px;
}
.ammenitiesList .ammenity img { transition: 0.4s all; width: 100%; height: auto; }
.ammenitiesList .ammenity:hover > img {
	-webkit-transform: scale( 1.2 );
	-ms-transform: scale( 1.2 );
	transform: scale( 1.2 );
}
.coverRoom {
	display: flex;
	align-items: center;
	width: 100%;
	height: 100vh;
}
.coverRoom .content { width: 100% }
.coverRoom img { height: 100%; width: auto; }
.coverRoom .content p, .coverRoom .content h1 { width: 600px; max-width: 90%; margin: 0 auto; }
.coverRoom .content h1, .dFlex h1 { font-size: 50px; margin-bottom: 100px; }
.coverRoom .content p { font-size: 20px; margin: 20px auto; }
.coverRoom .caletaRooms, .coverRoom .caletaFood, .coverRoom .caletaAbout {
	height: 100%;
	min-width: 40%;
	background-size: cover;
	background-position: center right;
}
.coverRoom .caletaRooms { background-image: url( '../images/rooms.webp' ); }
.coverRoom .caletaFood { background-image: url( '../images/food.webp' ); }
.coverRoom .caletaAbout { background-image: url( '../images/about.webp' ); }
.roomDetails {
	width: 100%;
	padding: 50px 0;
	display: flex;
	flex-flow: row wrap;
	align-items: center;
}
.roomDetails h2 {
	width: 100%;
	text-align: center;
	font-size: 50px;
	text-transform: uppercase;
}
.tabs {
	width: 100%;
	margin: 50px 0;
	padding: 0;
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: center;
	list-style: none;
}
.tabs li a {
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 8px;
	box-sizing: border-box;
	width: 280px;
	max-width: 100%;
	height: 70px;
	border: 2px solid #212F5C;
	color: #212F5C;
	text-transform: uppercase;
	text-decoration: none;
	margin: 10px;
	transition: 0.4s all;
}
.tabs li a:hover, .tabs li a.active { background-color: #212F5C; color: #fff; }
.tabContent { width: 100%; display: none; }
.tabContent.active { display: flex; align-items: center; }
.tabContent .sliderDiv { width: 50%; min-width: 50%; }
.tabContent .textContent { box-sizing: border-box; padding: 20px; }
.tabContent .textContent h3 { text-align: center; }
.tabContent .textContent .boton, .micha .boton {
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 8px;
	box-sizing: border-box;
	border: 2px solid #212F5C;
	color: #212F5C;
	text-transform: uppercase;
	text-decoration: none;
	margin: 20px auto;
	width: 400px;
	max-width: 90%;
	transition: 0.4s all;
}
.micha .boton { width: 280px; height: 70px }
.tabContent .textContent .boton:hover, .micha .boton:hover { background-color: #212F5C; color: #fff; }
.dFlex { display: flex; align-items: center; }
#othersRooms .tabContent.active { display: block; text-align: center; }
#othersRooms img { width: 100%; height: auto; }
.grid { margin: 0 auto; }
.grid-item img { border: 5px solid #fff; }
.grid-item { width: 20%; height: auto; max-width: 100%; }
.grid-item--width2 { width: 40%; height: auto; }
.grid-item--width3 { width: 50%; height: auto; }
#longStay img { max-width: 60%; }
#longStay .content { padding: 15px; box-sizing: border-box; }
#blog h1, #contact h1 { font-size: 50px; margin-bottom: 100px }
.blogElement { max-width: 50%; text-align: center; box-sizing: border-box; padding: 20px; }
.blogElement img { margin-bottom: 20px; }
.descBlog { text-align: center; }
#contact p { width: 270px; margin: 15px auto; }
#contact p a { display: flex; align-items: center; text-decoration: none; font-size: 18px; color: #000; font-weight: normal; }
#contact p a i { color: #212F5C; font-size: 40px; margin-right: 10px; }
#location p { max-width: 40%; box-sizing: border-box; padding: 0 20px; font-size: 18px; }
.mapa { max-width: 60%; width: 60%; border: none; height: 60vh; }
.menuFooter {
	list-style: none;
	width: 100%;
	margin: 50px 0 0;
	padding: 0;
	text-align: center;
	columns: 4;
}
.menuFooter li a { text-transform: uppercase; text-decoration: none; margin: 5px 0; display: block; color: #212F5C; }
@media screen and ( max-width: 1200px ) {
	.ammenitiesList .ammenity h2 { font-size: 40px; }
	#othersRooms .tabs li a { font-size: 18px; width: 250px; height: 50px; }
}
@media screen and ( max-width: 970px ) {
	.ammenitiesList .ammenity { width: 48%; }
	.coverRoom { display: block; height: auto; }
	.coverRoom .content { margin-top: 200px; }
	.coverRoom .content h1 { margin-bottom: 20px; }
	.coverRoom .caletaRooms, .coverRoom .caletaFood { width: 100%; height: 50vh; margin-top: 50px; }
	.coverRoom .caletaAbout { width: 100%; height: 50vh; }
	.coverRoom.about .content { margin-top: 50px; }
	.roomDetails h2 { font-size: 40px; }
	#othersRooms h2 { font-size: 30px; }
	#othersRooms .tabs { margin: 0; }
	#othersRooms .tabs li a { margin: 5px; }
	#othersRooms .micha:first-child { width: 380px; max-width: 40%; }
	#othersRooms .micha:last-child { padding: 10px; box-sizing: border-box; }
}
@media screen and ( max-width: 920px ) {
	.tabs li { max-width: 100%; }
	.tabs li a { width: 400px; max-width: 100%; }
	.tabContent.active { display: block; width: 450px; max-width: 100%; margin: 0 auto; }
	.tabContent .sliderDiv { width: 100%; }
	#othersRooms .dFlex { display: block; }
	#othersRooms .micha:first-child { display: flex; flex-flow: row wrap; width: 100%; max-width: initial; }
	#othersRooms .micha:first-child div { max-width: 50%; }
	#longStay .dFlex, #location .dFlex { display: block; width: 500px; max-width: 100%; margin: 0 auto; }
	#longStay img { max-width: initial; width: 100%; }
	#longStay .content { padding: 0; }
	#longStay .dFlex h1 { font-size: 40px; margin-bottom: 30px; }
	#location iframe, #location p { max-width: initial; width: 100%; text-align: center; }
	.blogList .dFlex { display: block; }
	.blogList .dFlex .blogElement { max-width: initial; width: 100%; }
}
@media screen and ( max-width: 740px ) {
	nav.mainMenu.open { width: 100%; background-color: #FCF0E2;}
	header .menuLink { left: 30px; }
	#home { background-image: url( '../images/mainmobile.webp' ); background-position: center center; }
	.ammenitiesList .ammenity h2 { font-size: 35px; }
	.menuFooter { columns: 2; }
	#blog h1 { font-size: 40px; margin-bottom: 30px; }
}
@media screen and ( max-width: 600px ) {
	.boton.top { display: none; }
	.ammenitiesList .ammenity h2 { font-size: 30px; }
	.roomDetails h2 { font-size: 30px; }
	header .logo img { width: 140px; }
	header .menuLink { left: 15px; top: 48px; }
	header .boton { right: 15px; padding: 8px; font-size: 14px; }
}
@media screen and ( max-width: 520px ) {
	#othersRooms .tabs li a { font-size: 16px; width: 200px; height: 45px; }
	#othersRooms h2 { font-size: 26px; }
}
@media screen and ( max-width: 485px ) {
	.tabs li a { margin: 10px 0; }
	.ammenitiesList .ammenity { width: 98%; }
}
@media screen and ( max-width: 420px ) {
	#othersRooms .micha:first-child { display: block; }
	#othersRooms .micha:first-child div { max-width: initial; width: 100%; }
}
@media screen and ( max-width: 400px ) {
	header .logo img { width: 120px; }
	header .menuLink { left: 10px; top: 45px; }
	header .boton { right: 10px; font-size: 12px; }
}