/* CSS Reset */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
	overflow-x: hidden;
	overflow-y: scroll;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	font-size: 14px;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

input,
button {
	-webkit-appearance: none;
	-moz-appearance: none;
}

html,
body {
	height: 100%;
	min-height: 100%;
    font-family: 'Montserrat', sans-serif;
    color: #404040;
    font-size: 14px;
}

a {
	text-decoration: none;
}

strong {
	font-weight: 700;
}

/* Fonts */

@font-face {
	font-family: 'DINPro-Bold';
	src:	url('/wp-content/themes/compay/assets/fonts/DINPro-Bold.eot?#iefix') format('embedded-opentype'),  url('/wp-content/themes/compay/assets/fonts/DINPro-Bold.otf')  format('opentype'),
			url('/wp-content/themes/compay/assets/fonts/DINPro-Bold.woff') format('woff'), url('/wp-content/themes/compay/assets/fonts/DINPro-Bold.ttf')  format('truetype'), url('/wp-content/themes/compay/assets/fonts/DINPro-Bold.svg#DINPro-Bold') format('svg');
	font-weight: normal;
	font-style: normal;
}

/* Preload */

.preload {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 100;
	background-color: #fff;
	top: 0;
	left: 0;
}

.preload.fade {
	animation-name: fade;
	animation-duration: .8s;
	animation-fill-mode: forwards;
	animation-iteration-count: 1;
	animation-delay: 2s;
}

.preload span {
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -50px 0 0 -50px;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	overflow: hidden;
	animation-name: appear;
	animation-duration: .5s;
	animation-fill-mode: forwards;
	animation-iteration-count: 1;
}

.preload span::before,
.preload span::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
}

.preload span::after {
	background-color: transparent;
}

.preload span i {
	background: url(/wp-content/themes/compay/assets/images/preloader.svg) no-repeat center -3px;
	position: absolute;
	width: 100%;
	height: 100%;
	bottom: 0;
	background-size: 105% auto;
}

/* Animations */

@keyframes appear {
	0% {transform: scale(0);}
	100% {transform: scale(1);}
}

@keyframes fade {
	0% {opacity:1;}
	99% {opacity: 0;}
	100% {z-index: 0}
}

@keyframes preload {
	0% {transform: translateY(0);}
	100% {transform: translateY(-20px);}
}

@keyframes appear-from-top {
	0% {
		transform: translateY(-160px);
		transform-origin: top;
		opacity: 0;
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes appear-from-bottom {
	0% {
		transform: translateY(160px);
		transform-origin: top;
		opacity: 0;
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes appear-from-left {
	0% {
		transform: translateX(-160px);
		opacity: 0;
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes appear-from-right {
	0% {
		transform: translateX(160px);
		opacity: 0;
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes scale-in {
	0% {
		transform: scale(0);
		opacity: 0;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

/* Home */

.home,
.wrapper {
	height: 100%;
	min-height: 100%;
	box-sizing: border-box;
	background-color: #141078;
	padding-right: 110px;
	padding-bottom: 140px;
	position: relative;
}

.home {
	height: calc(100% + 140px);
	min-height: calc(100% + 140px);
}

.wrapper {
	height: auto;
	background-color: #31307a;
	padding-bottom: 170px;
}

.home .background {
	background: url(/wp-content/themes/compay/assets/images/home-background.jpg) no-repeat top right / cover;
	opacity: 0.3;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

header {
	display: flex;
	position: relative;
}

header .logo {
	background-color: #fff;
	height: 140px;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	flex: 1;
}

.wrapper header .logo {
	align-items: center;
	justify-content: flex-start;
}

header .logo a {
	margin: 0 55px 30px 0;
	display: inline-block;
}

.wrapper header .logo a {
	margin: 0 0 0 95px;
}

header .logo a img {
	max-width: 220px;
}

.wrapper header .logo a img {
	max-width: 250px;
}

header .header-content {
	flex: 2;
	display: flex;
	align-items: center;
	background-color: #fff;
}

.home header .header-content {
	background-color: transparent;
}

header h1 {
	color: #fff;
	font-weight: 800;
	font-size: 35px;
	padding-left: 80px;
}

/* Menu */

a.toggle-menu {
	background: url(/wp-content/themes/compay/assets/images/menu.svg) no-repeat center / 100% auto;
	position: fixed;
	height: 36px;
	width: 36px;
	right: 40px;
	top: 50px;
	z-index: 60;
	animation-name: scale-in;
	animation-duration: .7s;
	animation-fill-mode: both;
	animation-iteration-count: 1;
	animation-delay: 3.2s;
	transition: all 0.3s ease 1s;
	border-left: solid 4px transparent;
	border-right: solid 4px transparent;
}

a.toggle-menu.bkg {
	background-color: #ff620b;
	box-shadow: 0 0 0 5px #ff620b;
	z-index: 100;
	border-left: solid 4px #ff620b;
	border-right: solid 4px #ff620b;
}

.menu {
	position: fixed;
	right: 0;
	top: 0;
	background-color: #fc610b;
	width: 425px;
	height: 100%;
	z-index: 50;
	box-sizing: border-box;
	padding: 170px 30px 30px 40px;
	transform: translateX(100%);
	transition: all 0.4s ease;
	overflow-y: auto;
	overflow-x: hidden;
}

.wrapper .menu {
	height: calc(100% - 75px);
}

.menu.open {
	transform: translateX(0);
}

.menu ul {
	transform: translateX(100%);
	transition: all 0.4s ease 0.2s;
}

.menu.open ul {
	transform: translateX(0);
}

.menu ul li {
	margin-bottom: 30px;
}

.menu ul li a {
	color: #fff;
	text-transform: uppercase;
	font-size: 20px;
}

.page-id-71 .menu ul li.phone,
.page-id-66 .menu ul li.phone {
	display: none;
}

.page-id-71 .menu ul li.mvd-phone,
.page-id-66 .menu ul li.mvd-phone {
	display: block;
}

.page-id-17 .menu ul li.mvd-phone {
	display: none;
}

.menu ul li.email a {
	font-size: 17px;
	margin-top: 20px;
	display: inline-block;
}

.menu ul li.phone {
	position: relative;
	padding-left: 30px;
	margin-bottom: 20px;
}

.menu ul li.phone a {
	font-size: 17px;
	line-height: 1.3em;
}

.menu ul li.phone a span {
	position: absolute;
	left: 0;
	top: 0;
	font-size: 22px;
}

.menu ul li.phone a strong {
	font-weight: normal;
	display: block;
}

/*page-id-71 mvd*/

.page-id-71 .menu ul li.email,
.page-id-66 .menu ul li.email.mvd-email {
	display: none;
}

.page-id-66 .menu ul li.email {
	display: block;
}

.page-id-71 .menu ul li.email.mvd-email {
	display: block;
}

.page-id-17 .menu ul li.email.mvd-email {
	display: none;
}

.dots {
	background: url(/wp-content/themes/compay/assets/images/dots.svg) no-repeat center / 100% auto;
	position: absolute;
	height: 125px;
	width: 44px;
	z-index: 10;
}

.home .dots,
.wrapper .dots {
	right: 40px;
	bottom: 240px;
}

.home.trigger .dots,
.home.trigger header .dots {
	animation-name: appear-from-bottom;
	animation-duration: .4s;
	animation-fill-mode: both;
	animation-iteration-count: 1;
	animation-delay: 4s;
}

.home.trigger header .dots {
	animation-delay: 3s;
}

header .dots {
	top: 50px;
	right: 70px;
}

.social {
	position: absolute;
	top: 155px;
	right: -62px;
}

.wrapper .social {
	top: 58px;
	right: 10px;
	display: flex;
	z-index: 60;
	padding-left: 240px;
}

.social a {
	display: block;
	color: #fff;
	font-size: 22px;
	text-align: center;
	margin-bottom: 20px;
}

.trigger .social a {
	animation-name: scale-in;
	animation-duration: .7s;
	animation-fill-mode: both;
	animation-iteration-count: 1;
	animation-delay: 3.5s;
}

.trigger .social a:nth-child(2){
	animation-delay: 3.6s;
}

.trigger .social a:nth-child(3){
	animation-delay: 3.7s;
}

.wrapper .social a {
	display: flex;
	color: #141078;
	margin: 0 12px;
}

.social span.wave {
	background: url(/wp-content/themes/compay/assets/images/wave-v.svg) no-repeat left center / 70% auto;
	height: 220px;
}

.home.trigger .social span.wave {
	animation-name: appear-from-top;
	animation-duration: .5s;
	animation-fill-mode: both;
	animation-iteration-count: 1;
	animation-delay: 3.5s;
}

.wrapper .social span.wave {
	background: url(/wp-content/themes/compay/assets/images/wave-b.svg) no-repeat left center / 100% auto;
	height: 10px;
	width: 230px;
	position: absolute;
	left: 0;
	top: 0;
}

.wrapper .trigger .social span.wave {
	animation-name: appear-from-left;
	animation-duration: .5s;
	animation-fill-mode: both;
	animation-iteration-count: 1;
	animation-delay: 3.5s;
}

/* Content */

.content {
	height: calc(100% - 140px);
	min-height: calc(100% - 140px);
	display: flex;
	position: relative;
}

.content .hostel {
	overflow: hidden;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.content .hostel img {
	display: block;
	width: auto;
	height: 100%;
	transition: all 0.3s ease;
	min-height: 620px;
}

.content .hostel:hover img {
	transform: scale(1.1);
}

.content .hostel a {
	position: absolute;
	color: #fff;
	left: 0;
	top: 0;
	display: flex;
	align-items: flex-end;
	padding: 30px 75px 30px 30px;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0,0,0,0) 60%,rgba(0,0,0,0.7) 100%),	linear-gradient(to right, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 15%);
	transition: all 0.3s ease;
}

.content .hostel a > span {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 75px;
	height: 75px;
	background: url(/wp-content/themes/compay/assets/images/arrow-right.svg) no-repeat center #ff620b;
	background-size: auto 25px;
	box-shadow: inset 0 0 15px 10px #ff620b;
	transition: all 0.3s ease;
}

.content .hostel a:hover > span {
	animation-name: arrow;
	animation-duration: 1.2s;
	animation-fill-mode: forwards;
	animation-iteration-count: infinite;
	transform: scale(1.2);
	transform-origin: bottom right;
}

@keyframes arrow {
	0% { background-position: -20px center;  }
	100% { background-position: 80px center;  }
}

.content .hostel a h2 {
	font-size: 38px;
	line-height: 0.85em;
	text-transform: uppercase;
	position: relative;
	flex: 1;
	font-weight: 700;
	transform-origin: left bottom;
}

.trigger .content .hostel a h2 {
	animation-name: scale-in;
	animation-duration: .7s;
	animation-fill-mode: both;
	animation-iteration-count: 1;
	animation-delay: 3s;
}

.content .hostel a h2 strong {
	display: block;
	font-family: 'DINPro-Bold', sans-serif;
	font-size: 22px;
	line-height: 1.6em;
	text-transform: none;
}

span.wave {
	background: url(/wp-content/themes/compay/assets/images/wave.svg) no-repeat left center / auto 100%;
	display: block;
	height: 15px;
	margin: 5px 0 15px;
}

.home.trigger .hostel span.wave {
	animation-name: appear-from-left;
	animation-duration: .4s;
	animation-fill-mode: both;
	animation-iteration-count: 1;
	animation-delay: 4s;
}

.content .hostel:first-child a h2 span.wave {
	position: absolute;
	width: 155px;
	left: 180px;
	top: 38px;
	background-position: right center;
}

/* Page */

.angles {
	background-color: #ff620b;
	width: 425px;
	height: 715px;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 10;
}

.angles::after {
	content: '';
	background: url(/wp-content/themes/compay/assets/images/angle.svg) repeat left bottom;
	background-size: 4% auto;
	position: absolute;
	height: calc(100% + 70px);
	width: calc(100% + 300px);
	opacity: 0.1;
	right: 0;
	top: 0;
}

.page-detail {
	z-index: 20;
	position: relative;
}

.main-slider {
	position: relative;
	background-color: #fff;
}

.main-slider > img {
	position: absolute;
	width: 320px;
	right: 55px;
	bottom: 120px;
}

.slider-overlay {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	background: linear-gradient(to bottom, rgba(0,0,0,0) 60%,rgba(0,0,0,0.7) 100%);
	display: flex;
	align-items: flex-end;
	padding: 30px 30px 70px 95px;
}

.slider-overlay h1 {
	color: #fff;
	font-size: 72px;
	line-height: 1em;
	font-weight: 800;
	text-transform: uppercase;
	max-width: 480px;
	position: relative;
	text-shadow: 0 0 25px rgba(0,0,0,0.5);
}

.la-pedrera .slider-overlay h1 {
	max-width: 550px;
	padding-right: 100px;
}

.montevideo .slider-overlay h1 {
	max-width: unset;
	padding-right: 100px;
}

.slider-overlay h1::after {
	content: '';
	background: url(/wp-content/themes/compay/assets/images/wave-o.svg) no-repeat left center / 100% auto;
	position: absolute;
	width: 180px;
	height: 30px;
	left: 0;
	bottom: -40px;
}

.slider-overlay h1 span.arrow,
.intro-text .arrow {
	background-color: #ff620b;
	height: 75px;
	width: 75px;
	cursor: pointer;
	position: absolute;
	bottom: 0;
	right: 90px;
}

.la-pedrera .slider-overlay h1 span.arrow {
	right: 0;
}

.montevideo .slider-overlay h1 span.arrow {
	right: 0;
}

.slider-overlay h1 span.arrow i,
.intro-text .arrow i {
	background: url(/wp-content/themes/compay/assets/images/arrow-down.svg) no-repeat center 25px;
	display: block;
	width: 100%;
	height: 100%;
}

.slider-overlay .dots {
	background-image: url(/wp-content/themes/compay/assets/images/dots-w.svg);
	right: 370px;
	bottom: 62px;
}

.reserve {
	width: 290px;
	height: 75px;
	background-color: #ff620b;
	position: fixed;
	bottom: 0;
	right: 35px;
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	box-sizing: border-box;
	padding: 20px 0 10px 25px;
	z-index: 9999;
	box-shadow: 0 0 20px 0 rgba(0,0,0,0.4);
	transition: all 0.3s ease;
	opacity: 0;
}

.trigger .reserve {
	animation-name: appear-from-bottom;
	animation-duration: .4s;
	animation-fill-mode: both;
	animation-iteration-count: 1;
	animation-delay: 3s;
}

.reserve.right {
	right: 0;
	width: 425px;
}

.reserve i {
	background: url(/wp-content/themes/compay/assets/images/arrow-right.svg) no-repeat center;
	background-size: auto 32px;
	position: absolute;
	right: 100px;
	width: 50px;
	height: 100%;
	top: 0;
}

.reserve:hover i {
	animation-name: point;
	animation-duration: .8s;
	animation-fill-mode: both;
	animation-iteration-count: infinite;
	animation-delay: 0.8s;
}

@keyframes point {
	0% {right: 100px;}
	50% {right: 85px;}
	100% {right: 100px;}
}

.reserve span {
	background: url(/wp-content/themes/compay/assets/images/bell.png) no-repeat center #fff;
	background-size: 50%;
	width: 90px;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
}

.reserve:hover span {
	animation-name: bell;
	animation-duration: .8s;
	animation-fill-mode: both;
	animation-iteration-count: 1;
	animation-delay: 0;
}

@keyframes bell {
	0% {background-size: 30%;}
	20% {background-size: 70%;}
	40% {background-size: 30%;}
	50% {background-size: 60%;}
	60% {background-size: 40%;}
	70% {background-size: 55%;}
	80% {background-size: 45%;}
	90% {background-size: 50%;}
}

/* Intro */

.intro {
	padding: 90px 70px 70px;
	position: relative;
	display: flex;
}

.intro > div {
	flex: 1;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.intro div.pattern {
	background: url(/wp-content/themes/compay/assets/images/angle.svg) repeat left bottom;
	background-size: auto 20.2%;
	position: absolute;
	left: 0;
	top: 30px;
	width: 30%;
	height: 285px;
}

.video {
	margin-right: 140px;
	opacity: 0;
	align-self: flex-start;
}

.trigger-animations .video {
	animation-name: appear-from-left;
	animation-duration: .9s;
	animation-fill-mode: both;
	animation-iteration-count: 1;
	animation-delay: 0.5s;
}

.video img {
	position: relative;
	z-index: 10;
}

.video span.wave {
	position: absolute;
	right: -60px;
	height: 150px;
	background: url(/wp-content/themes/compay/assets/images/wave-v-2.svg) no-repeat left top;
	top: 0;
	width: 23px;
	background-size: 100% auto;
	opacity: 0;
}

.trigger-animations .video span.wave {
	animation-name: appear-from-top;
	animation-duration: .9s;
	animation-fill-mode: both;
	animation-iteration-count: 1;
	animation-delay: 1.2s;
}

.video::before,
.video::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: #ff620b;
	top: -20px;
	left: -20px;
}

.video::after {
	background-color: #fff;
	left: auto;
	top: auto;
	bottom: -20px;
	right: -20px;
}


/*Youtube*/

.yt-video {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
	z-index: 5;
}

.yt-video iframe,
.yt-video object,
.yt-video embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.intro-text {
	opacity: 0;
}

.trigger-animations .intro-text {
	animation-name: appear-from-right;
	animation-duration: .6s;
	animation-fill-mode: both;
	animation-iteration-count: 1;
	animation-delay: 1.4s;
}

.intro-text h2 {
	font-size: 55px;
	line-height: 1em;
	color: #ff620b;
	font-weight: 800;
	margin-bottom: 25px;
	position: relative;
	z-index: 10;
}

.intro-text h3 {
	font-size: 32px;
	line-height: 1.2em;
	color: #fff;
	margin-bottom: 65px;
	text-transform: uppercase;
	position: relative;
	z-index: 10;
}

.intro-text h3::after {
	content: '';
	background: url(/wp-content/themes/compay/assets/images/wave-o-s.svg) no-repeat left top;
	background-size: auto 100%;
	height: 12px;
	width: 150px;
	position: absolute;
	bottom: -35px;
	left: 0;
}

.trigger-animations .intro-text h3::after {
	animation-name: appear-from-left;
	animation-duration: .6s;
	animation-fill-mode: both;
	animation-iteration-count: 1;
	animation-delay: 1.4s;
}

.intro-text .arrow {
	position: relative;
	right: auto;
	bottom: auto;
	display: inline-block;
}

.intro-text .fish {
	background: url(/wp-content/themes/compay/assets/images/fish.svg) no-repeat left top;
	background-size: auto auto;
	background-size: 100% auto;
	height: 65px;
	width: 100px;
	position: absolute;
	bottom: 20px;
	left: 190px;
}

.trigger-animations .intro-text .fish {
	animation-name: appear-from-right;
	animation-duration: .5s;
	animation-fill-mode: both;
	animation-iteration-count: 1;
	animation-delay: 2.5s;
}

.intro-text .fish::after {
	content: '';
	background: url(/wp-content/themes/compay/assets/images/wave-o.svg) no-repeat left top;
	background-size: 100% auto;
	height: 42px;
	width: 200px;
	position: absolute;
	bottom: 0;
	right: -210px;
}

.intro-text .dots {
	background-image: url(/wp-content/themes/compay/assets/images/dots-2.svg);
	right: 200px;
	top: 120px;
	bottom: auto;
}

.trigger-animations .intro-text .dots {
	animation-name: appear-from-bottom;
	animation-duration: .5s;
	animation-fill-mode: both;
	animation-iteration-count: 1;
	animation-delay: 2.8s;
}

.intro-text .dots:nth-child(2) {
	top: auto;
	bottom: 30px;
	right: auto;
	left: 130px;
}

.trigger-animations .intro-text .dots:nth-child(2) {
	animation-delay: 3s;
}

/* Amenities */

.amenities {
	width: calc(100% + 110px);
}

.amenities .seal {
	display: flex;
}

.amenities .seal img {
	display: inline-block;
	width: 270px;
	height: 270px;
	margin: -30px 30px 30px 85px;
	opacity: 0;
}

.trigger-animations.amenities .seal img {
	animation-name: rotate;
	animation-duration: 1s;
	animation-fill-mode: both;
	animation-iteration-count: 1;
	animation-delay: 0s;
	animation-timing-function: ease-in;
}

@keyframes rotate {
	0% { transform: rotate(0deg) scale(0.5); }
	100% { transform: rotate(360deg) scale(1); opacity: 1; }
}

.amenities .seal ul {
	opacity: 0;	
}

.amenities.trigger-animations .seal ul {
	animation-name: scale-in;
	animation-duration: 1s;
	animation-fill-mode: both;
	animation-iteration-count: 1;
	animation-delay: 1s;
}

.amenities .seal ul li {
	color: #fff;
	text-transform: uppercase;
	font-size: 54px;
	font-weight: 800;
	line-height: 1em;
	padding-left: 20px;
	position: relative;
}

.amenities .seal ul li::before {
	content: '';
	position: absolute;
	width: 8px;
	height: 8px;
	background-color: #ff620b;
	border-radius: 50%;
	top: 50%;
	left: 0;
	margin-top: -4px;
}

.amenities .amenity {
	background-image: url(/wp-content/uploads/2018/09/amenity-01.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-color: #ff620b;
	display: flex;
	height: 275px;
	box-sizing: border-box;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	color: #fff;
	padding: 25px 20px 30px;
	font-weight: 700;
	text-transform: uppercase;
	opacity: 0;
}

.amenities.trigger-animations .amenity {
	animation-name: scale-in;
	animation-duration: .5s;
	animation-fill-mode: both;
	animation-iteration-count: 1;
	animation-delay: 1.5s;
}

.amenities .amenity.am-02 {
	background-image: url(/wp-content/uploads/2018/09/amenity-02.jpg);
	background-color: #252460;
	animation-delay: 2s;
}

.amenities .amenity.am-03 {
	background-image: url(/wp-content/uploads/2018/09/amenity-03.jpg);
	background-color: #252460;
	animation-delay: 2.5s;
}

.amenities .amenity.am-04 {
	background-image: url(/wp-content/uploads/2018/09/amenity-04.jpg);
	background-color: #ff620b;
	animation-delay: 3s;
}

.amenities .amenity.am-05 {
	background-image: url(/wp-content/uploads/2018/09/amenity-05.jpg);
	background-color: #252460;
	animation-delay: 3.5s;
}

.amenities .amenity.am-06 {
	background-image: url(/wp-content/uploads/2018/09/amenity-06.jpg);
	background-color: #ff620b;
	animation-delay: 4s;
}

.amenities .amenity strong {
	font-size: 15px;
	max-width: 180px;
	text-align: center;
	line-height: 1.1em;	
	min-height: 32px;
}

.amenities .amenity h4 {
	font-size: 20px;
	max-width: 220px;
	text-align: center;
}

.amenities .amenity .image {
	position: relative;
	transform: scale(0);
}

.trigger-animations .amenity .image {
	animation-name: scale-in;
	animation-duration: .8s;
	animation-fill-mode: both;
	animation-iteration-count: 1;
	animation-delay: 2s;
}

.trigger-animations .amenity.am-02 .image {
	animation-delay: 2.8s;
}

.trigger-animations .amenity.am-03 .image {
	animation-delay: 3.6s;
}

.trigger-animations .amenity.am-04 .image {
	animation-delay: 4.4s;
}

.trigger-animations .amenity.am-05 .image {
	animation-delay: 5.2s;
}

.trigger-animations .amenity.am-06 .image {
	animation-delay: 6s;
}

.amenities .amenity .image img {
	max-height: 90px;
}

.amenities .amenity .image::before,
.amenities .amenity .image::after {
	content: '';
	background: url(/wp-content/themes/compay/assets/images/wave-sm.svg) no-repeat left center;
	height: 10px;
	width: 65px;
	position: absolute;
	left: -75px;
	top: 50%;
	margin-top: -5px;
	background-size: auto 100%;
}

.amenities .amenity .image::after {
	left: auto;
	right: -75px;
}


/* Content Slideshow */

.content-slideshow {
	border-left: 55px solid #ff620b;
	width: calc(100% + 55px);
	position: relative;
}

.drinkers {
	background: url(/wp-content/themes/compay/assets/images/drinkers.svg) no-repeat center center;
	background-size: 100% auto;
	position: absolute;
	width: 175px;
	height: 185px;
	z-index: 5;
	bottom: -75px;
	left: 140px;
}

.trigger-animations .drinkers {
	animation-name: appear-from-bottom;
	animation-duration: .8s;
	animation-fill-mode: both;
	animation-iteration-count: 1;
	animation-delay: 1.4s;
}

.content-slideshow .dots {
	background-image: url(/wp-content/themes/compay/assets/images/dots-w-h.svg);
	width: 155px;
	height: 60px;
	left: -30px;
	bottom: 50px;
}

.trigger-animations.content-slideshow .dots {
	animation-name: appear-from-top;
	animation-duration: .6s;
	animation-fill-mode: both;
	animation-iteration-count: 1;
	animation-delay: 0.8s;
}

.content-slideshow .dots:nth-child(2) {
	left: auto;
	right: 25px;
	bottom: 310px;
}

.trigger-animations.content-slideshow .dots:nth-child(2) {
	animation-delay: 1s;
}

.content-slideshow .msacwl-gallery-slider .slick-dots,
.carousel .msacwl-gallery-carousel .slick-dots {
	display: none !important;
}

.content-slideshow .msacwl-gallery-slider button.slick-prev,
.content-slideshow .msacwl-gallery-slider button.slick-next {
	bottom: 0;
	width: 60px;
	height: 60px;
	background-color: #ff620b !important;
}

.content-slideshow .msacwl-gallery-slider button.slick-prev:hover,
.content-slideshow .msacwl-gallery-slider button.slick-next:hover {
	background-color: #ff620b !important;
}

.content-slideshow .msacwl-gallery-slider button.slick-prev {
	left: auto;
	top: auto;
	right: 346px;
}

.content-slideshow .msacwl-gallery-slider button.slick-next {
	top: auto;
	right: 285px;
}

/* Services */

.services {
	min-height: 500px;
	padding: 115px 0;
	background: url(/wp-content/themes/compay/assets/images/services.jpg) no-repeat center top;
	background-size: cover;
	width: calc(100% + 110px);
	position: relative;
}

.la-pedrera .services {
	background-image: url(/wp-content/themes/compay/assets/images/services-lpd.jpg);
}

.montevideo .services {
	background-image: url(/wp-content/themes/compay/assets/images/services-mvd.jpg);
}

.services .center {
	padding: 0 30px;
	z-index: 15;
}

.services h2 {
	font-size: 55px;
	color: #fff;
	font-weight: 800;
	position: relative;
	text-transform: uppercase;
	margin-bottom: 45px;
}

.services h2::after {
	content: '';
	background: url(/wp-content/themes/compay/assets/images/wave-o.svg) no-repeat left top / 100% auto;
	position: absolute;
	left: 350px;
	top: 50%;
	width: 240px;
	height: 15px;
	margin-top: -6px;
	opacity: 0;
}

.trigger-animations.services h2::after {
	animation-name: appear-from-right;
	animation-duration: .4s;
	animation-fill-mode: both;
	animation-iteration-count: 1;
	animation-delay: 1s;
}

.services .service {
	display: flex;
	margin-bottom: 30px;
	align-items: flex-end;
	opacity: 0;
	cursor: default;
}

.trigger-animations.services .service {
	animation-name: appear-from-bottom;
	animation-duration: .5s;
	animation-fill-mode: both;
	animation-iteration-count: 1;
	animation-delay: 1.5s;
}

.services .service span {
	height: 70px;
	margin-right: 20px;
	width: 70px;
	display: flex;
}

.services .service span img {
	width: 70px;
}

.services .service:hover span img {
	animation-name: bounce;
	animation-duration: 1s;
	animation-fill-mode: both;
	animation-iteration-count: 1;
	animation-delay: 0s;
}

@keyframes bounce {
	0% { transform: translateY(-10px) }
	40% { transform: translateY(10px) }
	50% { transform: translateY(-7px) }
	60% { transform: translateY(7px) }
	65% { transform: translateY(-3px) }
	70% { transform: translateY(3px) }
	80% { transform: translateY(0) }
	100% { transform: translateY(0) }
}

.services .service span.lst img {
	align-self: center;
}

.services .service h3 {
	text-transform: uppercase;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	line-height: 22px;
	margin-bottom: 5px;
	flex: 1;
	max-width: 165px;
}

.services .banner {
	color: #fff;
	width: 285px;
	right: 0;
	top: -290px;
	position: absolute;
	opacity: 0;
}

.trigger-animations.services .banner {
	animation-name: scale-in;
	animation-duration: .6s;
	animation-fill-mode: both;
	animation-iteration-count: 1;
	animation-delay: 1s;
}

.services .banner span {
	font-size: 29px;
	line-height: 1em;
}

.services .banner div {
	background-color: #60c6ec;
	padding: 40px 40px 5px 40px;
	box-sizing: border-box;
	font-weight: 800;
}

.services .banner div:last-child {
	background-color: #ff620b;
	padding: 10px 40px 120px 40px;
	position: relative;
}

.services .banner div:last-child::after {
	background: url(/wp-content/themes/compay/assets/images/angle-b.svg) repeat left 10px;
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 80px;
	background-size: auto 43px;
}

.services .banner div strong {
	font-size: 70px;
	line-height: 1.1em;
	font-weight: 800;
}

.services .dots {
	background-image: url(/wp-content/themes/compay/assets/images/dots-o-2.svg);
	right: 240px;
	bottom: 355px;
}

.services.trigger-animations .dots {
	animation-name: appear-from-bottom;
	animation-duration: .5s;
	animation-fill-mode: both;
	animation-iteration-count: 1;
	animation-delay: 2s;
}

.services .dots:nth-child(2) {
	right: 204px;
	bottom: 279px;		
}

.services.trigger-animations .dots:nth-child(2) {
	animation-delay: 2.4s;
}

.services .drink {
	background: url(/wp-content/themes/compay/assets/images/drink.svg) no-repeat center;
	width: 110px;
	height: 145px;
	position: absolute;
	right: 180px;
	bottom: 110px;
	background-size: 100% auto;
}

.services.trigger-animations .drink {
	animation-name: appear-from-bottom;
	animation-duration: .5s;
	animation-fill-mode: both;
	animation-iteration-count: 1;
	animation-delay: 3s;
}

/* Carousel */

.carousel {
	width: calc(100% + 110px);
}

.carousel .msacwl-carousel-slide a {
	height: 320px;
	position: relative;
}

.carousel .msacwl-carousel-slide a::after {
	content: '';
	background: url(/wp-content/themes/compay/assets/images/zoom.svg) no-repeat center;
	background-size: 80px auto;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	position: absolute;
	transform: scale(0,0);
	transition: all 0.3s ease;
}

.carousel .msacwl-carousel-slide:hover a::after {
	transform: scale(1,1);
}

.carousel .msacwl-gallery-carousel button.slick-prev,
.carousel .msacwl-gallery-carousel button.slick-next {
	width: 60px;
	height: 60px;
	background-color: #ff620b !important;
}

.carousel .msacwl-gallery-carousel button.slick-prev:hover,
.carousel .msacwl-gallery-carousel button.slick-next:hover {
	background-color: #ff620b !important;
}

.carousel button.mfp-arrow {
	display: none !important;
}

/* Posts Slideshow */

.posts-slideshow {
	background: url(/wp-content/themes/compay/assets/images/articles-slideshow.png) repeat-x left bottom #e6e6e6;
	width: calc(100% + 110px);
	padding: 140px 0 180px;
	background-size: 40px auto;

}

.posts-slideshow .slides {
    max-width: 1114px;
    margin: 0 auto;
}

.posts-slideshow .slides-content {
	border-left: 15px solid #ff620b;
	margin: 55px 30px 0 30px;
	box-shadow: 0 0 15px 0 rgba(0,0,0,0.1);
	position: relative;
}

.posts-slideshow .slides-content::after {
	content: '';
	background: url(/wp-content/themes/compay/assets/images/wave-o.svg) no-repeat left top / auto 20px;
	position: absolute;
	width: 180px;
	height: 10px;
	left: 110px;
	top: -70px;
	z-index: 10;
	transform: rotate(90deg);
	transform-origin: left top;
}

.posts-slideshow .slides-content::before {
	content: '';
	background: url(/wp-content/themes/compay/assets/images/dots-o-2.svg) no-repeat center / 100% auto;
	position: absolute;
	height: 125px;
	width: 44px;
	right: -15px;
	bottom: -36px;
}

.posts-slideshow.trigger-animations .slides-content::before {
	animation-name: appear-from-bottom;
	animation-duration: .6s;
	animation-fill-mode: both;
	animation-iteration-count: 1;
	animation-delay: 1.6s;
}

.posts-slideshow .recent-post-slider.slick-initialized {
	margin-top: -55px;
}

.posts-slideshow .recent-post-slider.design-4 .post-image-bg {
	background: #fff;
	height: auto !important;
	overflow: visible;
	width: 85%;
	margin: -55px 0 55px 150px;
	box-shadow: 0 12px 10px 5px rgba(0,0,0,0.1);
}

.posts-slideshow .slick-initialized .slick-slide {
	background-color: #fff;
	position: relative;
}

.posts-slideshow .slick-list {
	padding-top: 55px;
}

.posts-slideshow .recent-post-slider.design-4 .slick-prev,
.posts-slideshow .recent-post-slider.design-4 .slick-next {
	width: 60px;
	height: 60px;
	background-color: #ff620b !important;
}

.posts-slideshow .recent-post-slider.design-4 .slick-prev {
	left: auto !important;
	right: 32px;
	top: 55px;
	background-color: #2f2c7e !important;
}

.posts-slideshow .recent-post-slider.design-4 .slick-next {
	top: 55px;
	right: -30px !important;
}

.posts-slideshow .recent-post-slider.design-4 .post-list-content {
	min-height: 380px;
}

.posts-slideshow .wpcolumns {
	position: initial;
}

.posts-slideshow .recent-post-slider h2.wp-post-title {
	color: #ff620b;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.1em;
	text-transform: uppercase;
	margin: 180px 40px 25px 115px !important;
}

.posts-slideshow .recent-post-slider h2.wp-post-title a {
	font-size: inherit !important;
	line-height: inherit !important;
	color: inherit !important;
	display: block;
	position: relative;
}

.posts-slideshow .recent-post-slider h2.wp-post-title a::after {
	content: '';
	background: url(/wp-content/themes/compay/assets/images/wave-o.svg) no-repeat left top / auto 20px;
	position: absolute;
	left: 0;
	top: -45px;
	height: 10px;
	width: 185px;
	opacity: 0;
}

.posts-slideshow.trigger-animations .recent-post-slider h2.wp-post-title a::after {
	animation-name: appear-from-top;
	animation-duration: .6s;
	animation-fill-mode: both;
	animation-iteration-count: 1;
	animation-delay: 1s;
}

.posts-slideshow .wp-post-content {
	padding-bottom: 0;
	margin-left: 115px;
}

.posts-slideshow .recent-post-slider.design-4 .recentpost-categories {
	position: absolute;
	left: 0;
	bottom: 0;
	line-height: 1em;
	transform: rotate(-90deg) translate(-15px,30px);
	transform-origin: left top;
}

.posts-slideshow .recent-post-slider .recentpost-categories ul.post-categories {
	margin: 0 !important;
}

.posts-slideshow .recent-post-slider .recentpost-categories ul.post-categories li {
	margin: 0 !important;
}

.posts-slideshow .recent-post-slider.design-4 .recentpost-categories a {
	font-size: 55px;
	font-weight: 800;
	text-transform: uppercase;
	background-color: transparent !important;
	color: #2f2c7e !important;
	padding: 0;
	display: block;
	max-width: 400px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.posts-slideshow .wp-sub-content {
	padding-bottom: 0;
	font-family: Nunito, sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #2f2c7e;
	line-height: 1.2em;
	margin-bottom: 55px;
	margin-right: 30px;
}

.posts-slideshow .recent-post-slider.design-4 .wp-post-content a.readmorebtn {
	color: transparent;
	padding: 0;
	border: none;
	width: 175px;
	height: 60px;
	display: block;
	margin: 0 0 50px;
	position: relative;
}

.posts-slideshow .recent-post-slider.design-4 .wp-post-content a.readmorebtn::after {
	content: 'Ver Más';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	color: #2f2c7e;
	border: solid 3px;
	font-size: 22px;
	text-transform: uppercase;
	text-align: center;
	line-height: 62px;
	font-weight: 700;
	transition: all 0.3s ease;
}

.posts-slideshow .recent-post-slider.design-4 .wp-post-content a.readmorebtn:hover::after {
	background-color: #2f2c7e;
	border-color: #2f2c7e;
	color: #fff;
}

/* Location */

.location {
	background: url(/wp-content/themes/compay/assets/images/location-pdd.jpg) no-repeat center #9cd3fc;
	background-size: cover;
	min-height: 500px;
	box-sizing: border-box;
	width: calc(100% + 110px);
	padding: 90px 0;
}

.la-pedrera .location {
	background-image: url(/wp-content/themes/compay/assets/images/location-lpd.jpg);
	background-color: #ffc49f;
}

.montevideo .location {
	background-image: url(/wp-content/themes/compay/assets/images/location-mvd.jpg);
	background-color: #f0effa;
}

.location h2 {
	color: #2f2c7e;
	font-size: 55px;
	line-height: 1.1em;
	position: relative;
	font-weight: 800;
	text-transform: uppercase;
}

.location h2::before {
	content: '';
	background: url(/wp-content/themes/compay/assets/images/wave-b.svg) no-repeat left center / 100% auto;
	height: 15px;
	width: 240px;
	position: absolute;
	left: 0;
	bottom: -10px;
}

.location h3 {
	text-transform: uppercase;
	font-size: 21px;
	color: #2f2c7e;
	max-width: 330px;
	margin-top: 30px;
	line-height: 1.2em;
}

/* Contact */

.contact {
	background: url(/wp-content/themes/compay/assets/images/contact-pdd.jpg) no-repeat center #e9e5e5;
	background-size: cover;
	min-height: 500px;
	box-sizing: border-box;
	width: calc(100% + 110px);
	padding: 125px 0;
	position: relative;
}

.la-pedrera .contact {
	background-image: url(/wp-content/themes/compay/assets/images/contact-lpd.jpg);
}

.montevideo .contact {
	background-image: url(/wp-content/themes/compay/assets/images/contact-mvd.jpg);
}

.contact .wave {
	content: '';
	background: url(/wp-content/themes/compay/assets/images/wave-o.svg) no-repeat left top / auto 20px;
	position: absolute;
	width: 180px;
	height: 10px;
	right: 120px;
	top: 20px;
	z-index: 10;
	transform: rotate(90deg);
	transform-origin: left top;
}

.trigger-animations.contact .wave {
}

.contact .wave:nth-child(3){
	right: 105px;
	top: 70px;
}

.contact .dots {
	background-image: url(/wp-content/themes/compay/assets/images/dots-w-2.svg);
	bottom: auto;
	top: -75px;
	right: 330px;
	opacity: 0;
}

.trigger-animations.contact .dots {
	animation-name: appear-from-bottom;
	animation-duration: .6s;
	animation-fill-mode: both;
	animation-iteration-count: 1;
	animation-delay: 1s;
}

.contact-box {
	background-color: #fff;
	padding: 45px;
	box-shadow: 0 0 15px 0 rgba(0,0,0,0.15);
	margin-left: -40px;
	width: 100%;
	box-sizing: border-box;
	margin-top: 95px;
	position: relative;
	opacity: 0;
}

.trigger-animations .contact-box {
	animation-name: appear-from-top;
	animation-duration: .6s;
	animation-fill-mode: both;
	animation-iteration-count: 1;
	animation-delay: 1.5s;
}

.contact-box a {
	font-size: 20px;
	line-height: 1.1em;
	color: #2f2c7e;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 30px;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
}

.contact-box a.phone {
	position: relative;
	padding-left: 35px;
	padding-top: 3px;
	margin-bottom: 15px;
}

.contact-box a.phone:last-child {
	margin-bottom: 0;
}

.contact-box a.phone span {
	position: absolute;
	left: 0;
	top: 0;
	font-size: 28px;
}

.contact-box a.phone strong {
	color: #ff620b;
	display: block;
}

.contact-box a.fb {
	background: url(/wp-content/themes/compay/assets/images/facebook-ic.png) no-repeat center / 100% auto;
	position: absolute;
	width: 30px;
	height: 30px;
	bottom: -150px;
	right: 0;
}

.la-pedrera .contact-box a.fb {
	bottom: -100px;
}

.contact-form h2 {
	font-size: 55px;
	line-height: 1.1em;
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 35px;
	position: relative;
	z-index: 10;
}

.form {
	max-width: 600px;
}

.form input,
.form textarea {
	background-color: #fff;
	box-sizing: border-box;
	border: none;
	border-radius: 2px;
	font-family: Nunito, sans-serif;
	font-size: 18px;
	height: 60px;
	box-shadow: inset 0 0 0 4px #2e2b7c;
	margin-bottom: 30px;
	color: #2e2b7c;
	padding: 20px 25px;
	width: 100%;
	line-height: 20px;
}

.form textarea {
	resize: none;
	height: 175px;
}

.form span {
	display: block;
}

.form .field {
	position: relative;
}

.form .field label.reveal {
	font-family: Nunito, sans-serif;
	font-size: 18px;
	color: #2e2b7c;
	position: absolute;
	z-index: 5;
	top: 21px;
	left: 25px;
	transition: all 0.3s ease;
}

.form .field:hover label.reveal,
.form .field.active label.reveal {
	transform: scale(0.7) translate(0,-20px);
	transform-origin: left top;
	opacity: 0.9;
}

.form input[type="submit"] {
	background-color: #2e2b7c;
	color: #fff;
	font-weight: 800;
	font-family: Montserrat, sans-serif;
	text-transform: uppercase;
	font-size: 22px;
	cursor: pointer;
}

.form input[type="checkbox"] {
	height: 25px;
	width: 25px;
	-webkit-appearance: checkbox;
	-moz-appearance: checkbox;
	margin: 0;
	position: absolute;
	left: 0;
	top: 0;
}

.form .mc4wp-checkbox label {
	position: relative;
	padding-left: 35px;
	display: block;
}

.form .mc4wp-checkbox label::after {
	content: '';
	background: url(/wp-content/themes/compay/assets/images/wave.svg) no-repeat left center / auto 100%;
	height: 15px;
	width: 195px;
	position: absolute;
	left: 5px;
	bottom: -15px;
}

.trigger-animations .form .mc4wp-checkbox label::after {
	animation-name: appear-from-right;
	animation-duration: .5s;
	animation-fill-mode: both;
	animation-iteration-count: 1;
	animation-delay: 1.8s;
}

.form .mc4wp-checkbox label span {
	color: #fff;
	font-family: Nunito, sans-serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 26px;
}

.form span.wpcf7-not-valid-tip {
	color: #fff;
	font-size: 1em;
	font-weight: normal;
	display: block;
	margin-top: -30px;
	background-color: #ff620b;
	padding: 5px 10px;
	text-align: center;
}

.form .col-md-4 {
	position: relative;
}

.form div.wpcf7 .ajax-loader {
	position: absolute;
	left: 5px;
	top: 5px;
	background: url('/wp-content/themes/compay/assets/images/preloader.svg') no-repeat center;
	background-size: 100% auto;
	width: 30px;
	height: 50px;
}

.form div.wpcf7-response-output {
	background-color: #ff620b;
	border: none;
	color: #fff;
	text-align: center;
	font-size: 20px;
	padding: 20px;
}

/* Post Detail */

.page-detail.blog {
	background: url(/wp-content/themes/compay/assets/images/articles-slideshow.png) repeat-x left bottom #e6e6e6;
	background-size: 40px auto;
	color: #fff;
	padding: 110px 0;
}

.page-detail.blog .center {
	max-width: 1140px;
}

.page-detail.blog .post-containter {
	background-color: #fff;
	box-shadow: 0 0 15px 0 rgba(0,0,0,0.1);
	border-left: solid 15px #ff620b;
	padding: 0 40px 30px;
	margin: 55px 0 100px;
}

.page-detail.blog .post-containter .wp-post-image {
	margin-top: -50px;
	margin-bottom: 50px;
	box-shadow: 0 12px 10px 5px rgba(0,0,0,0.1);
}

.page-detail.blog a[rel="category tag"] {
	display: inline-block;
	margin-top: 30px;
	color: #2f2c7e;
	font-size: 26px;
	font-weight: 700;
}

.page-detail.blog h1 {
	font-size: 24px;
	line-height: 1.1em;
	font-weight: 700;
	text-transform: uppercase;
	color: #ff620b;
	margin-bottom: 20px;
	margin-top: 60px;
	position: relative;
}

.page-detail.blog h1::after {
    content: '';
    background: url(/wp-content/themes/compay/assets/images/wave-o.svg) no-repeat left top / auto 20px;
    position: absolute;
    left: 0;
    top: -45px;
    height: 10px;
    width: 185px;
}

.page-detail.blog h1.page-title {
	margin: 0 0 120px;
}

.page-detail.blog h1.page-title::after {
	top: auto;
	bottom: -25px;
}

.page-detail.blog p {
	font-family: Nunito, sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #2f2c7e;
	line-height: 1.2em;
	margin-bottom: 15px;
}

.page-detail.blog a.btn {
	color: #2f2c7e;
	border: solid 3px;
	font-size: 22px;
	text-transform: uppercase;
	text-align: center;
	line-height: 62px;
	font-weight: 700;
	background-color: #fff;
	padding: 0 30px;
	display: inline-block;
	margin: 15px 0 20px;
	transition: all 0.3s ease;
}

.page-detail.blog a.btn:hover {
	background-color: #2f2c7e;
	color: #fff;
	border-color: #2f2c7e;
}

/* Footer */

footer {
	min-height: 140px;
	box-sizing: border-box;
	padding: 30px 130px;
	background-color: #fff;
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	font-size: 14px;
	line-height: 1.5em;
}

.wrapper footer {
	display: block;
	min-height: 170px;
}

footer p,
footer p a {
	color: #2f2c7e;
}

.home footer div {
	flex: 1;
}

.home footer div:last-child {
	text-align: right;
}

footer div a.logo {
	display: inline-block;
}

footer div a.logo img {
	max-width: 170px;
}

.wrapper footer h3 {
	font-size: 36px;
	line-height: 1em;
	color: #ff620b;
	font-weight: 800;
	text-transform: uppercase;
	text-align: right;
}

.hostels-nav {

}

.hostels-nav a {
	font-size: 15px;
	font-weight: 700;
	border: solid 2px #2f2c7e;
	display: block;
	margin-bottom: 5px;
	position: relative;
	padding: 3px 50px 2px 10px;
	text-transform: uppercase;
	margin-left: 20px;
	color: #2f2c7e;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.hostels-nav a span {
	position: absolute;
	right: 0;
	top: 0;
	background: url('/wp-content/themes/compay/assets/images/next.svg') no-repeat 13px center #2f2c7e;
	background-size: auto 15px;
	height: 100%;
	width: 30px;
}

/* Media Queries */

@media screen and (max-width:1650px) {
	
	.intro-text .dots {
		right: 0;
	}

}

@media screen and (max-width:1650px) {
	
	/*.services .banner {
		top: -115px;
		position: relative;
		display: flex;
		width: auto;
		height: 160px;
	}

	.services .banner span {
		display: block;
	}

	.services .banner div strong br {
		display: none;
	}

	.services .banner div {
		flex: 1;
		padding: 0;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.services .banner div:last-child {
		padding: 0;
	}

	.services .banner div:last-child::after {
		height: 35px;
	}
*/
	.drinkers {
		bottom: -25px;
	}

	.contact .wave {
		right: -155px;
	}

	.contact .wave:nth-child(3) {
		right: -165px;
	}

	.contact .dots {
		right: 100px;
	}

}

@media screen and (max-width:1550px) {

	.services .center {
		margin: 0 285px 0 30px;
	}

}

@media screen and (max-width:1400px) {

	.amenities .seal img {
		margin: -30px 30px 30px 30px;
	}

}

@media screen and (max-width:1350px) {

	.intro-text .dots {
		display: none;
	}

	.intro-text .dots:nth-child(2) {
		bottom: 0;
		left: 120px;
		display: block;
	}

}

@media screen and (max-width:1280px) {
	
	.content .hostel a h2 {
		margin-bottom: 80px;
	}

	.content .hostel:first-child a h2 span.wave {
		position: relative;
		width: auto;
		left: 0;
		top: 0;
		background-position: left center;
	}

	.trigger .content .hostel a h2 br {
		display: none;
	}

	.angles {
		max-height: 690px;
	}

	.trigger-animations .intro-text .dots:first-child {
		display: none;
	}

	.intro-text h2 br,
	.intro-text h3 br {
		display: none;
	}

	.amenities .seal img {
		width: 220px;
		height: 220px;
		margin: 0px 30px 30px 30px;
	}

	.amenities .seal ul {
		margin-top: 20px;
	}

	.amenities .seal ul li {
		font-size: 35px;
	}

	/*.services .banner {
		flex-direction: column;
		height: auto;
	}

	.services .banner div {
		min-height: 150px;
	}*/

}

@media screen and (max-width:1150px){

	.wrapper {
		padding-bottom: 0;
	}

	.wrapper footer {
		padding: 30px;
		display: block;
		min-height: 170px;
		position: relative;
		width: calc(100% + 110px);
	}

}

@media screen and (max-width:1024px) {

	.home header .logo {
		align-items: center;
		justify-content: center;
	}

	.home header .logo a {
		margin: 0;
	}

	.home {
		height: auto;
		min-height: unset;
		padding-bottom: 0;
	}

	.home header h1 {
		font-size: 25px;
		padding-left: 60px;
	}

	.content {
		flex-direction: column;
	}

	.content .hostel {
		height: 250px;
		flex: unset;
	}

	.content .hostel img {
		width: 100%;
		height: auto;
		min-height: auto;
		align-self: center;
	}

	.trigger .content .hostel a h2 {
		margin-bottom: 0;
	}

	.home footer {
		position: relative;
		padding: 30px;
	}

	.angles {
		height: 55vw;
	}	

	.angles::after {
		height: calc(100% + 30px);
		width: 100%;
	}

	.slider-overlay .dots {
		display: none;
	}

	.main-slider > img {
		width: 170px;
		right: 25px;
	}

	.intro {
		padding: 90px 30px 70px;
		flex-direction: column;
	}

	.video {
		margin-right: 0;
		opacity: 0;
		justify-self: flex-start;
		align-self: initial;
		margin: 0 0 80px 30px;
	}

	.services .drink {
		right: 30px;
		bottom: 40px;
		width: 50px;
		height: 65px;
	}

	.services .dots {
		display: none;
	}

	.services .banner {
		display: none;
	}

	.services .center {
		padding: 0 30px;
		z-index: 15;
		margin: 0 auto;
	}

	.posts-slideshow .slides-content {
		margin-left: 15px;
		margin-right: 15px;
	}

	.posts-slideshow .recent-post-slider.design-4 .slick-next {
		right: 0 !important;
	}

	.posts-slideshow .recent-post-slider.design-4 .slick-prev {
		right: 62px;
	}

	.center > .reverse {
		flex-direction: column-reverse;
	}

	.form {
		max-width: unset;
	}

	.contact-box {
		margin-left: 0;
		margin-top: 45px;
	}

	.contact .dots {
		right: 15px;
	}

	.contact .wave {
		display: none;
	}

	.hide-mobile {
		display: none;
	}

	.page-detail.blog .post-containter .wp-post-image {
		margin-bottom: 20px;
	}

	.contact-box a.fb {
		bottom: auto;
		right: auto;
		top: -40px;
		left: 0;
	}

}

@media screen and (max-width:850px) { 

	.home,
	.wrapper {
		padding-right: 70px;
	}

	.home a.toggle-menu,
	.wrapper a.toggle-menu {
		right: 15px;
	}

	.home .social,
	.wrapper .social {
		right: -50px;
	}

	.home header .logo a img {
		max-width: 180px;
	}

	.home footer,
	.wrapper footer {
		width: calc(100% + 70px);
	}

	.home .dots {
		right: 10px;
	}

	.home header .dots {
		right: 30px;
	}

	.wrapper header .logo a {
		margin: 0 0 0 30px;
	}

	.wrapper .social {
		top: 115px;
		display: block;
		padding-left: 0;
	}

	.wrapper .social a {
		display: block;
		color: #141078;
		margin: 0 0 20px;
	}

	.wrapper .social span.wave {
		display: none;
	}

	.angles {
		width: 320px;
	}

	.slider-overlay {
		padding-left: 30px;
	}

	.slider-overlay h1 {
		font-size: 52px;
	}

	.slider-overlay h1 span.arrow {
		height: 55px;
		width: 55px;
		right: 160px;
	}

	.slider-overlay h1 span.arrow i {
		background-position: center;
		background-size: 30px auto;
	}

	.services,
	.carousel,
	.posts-slideshow,
	.location,
	.contact {
		width: calc(100% + 70px);
	}

	.services .banner div strong {
		font-size: 10vw;
	}

	.services .banner span {
		font-size: 3vw;
	}

	.services .service {
		align-items: center;
		flex-direction: column;
	}

	.services .service span {
		margin-right: 0;
	}

	.services .service h3 {
		margin-right: 0;
		margin-top: 20px;
		text-align: center;
	}

	.posts-slideshow .recent-post-slider.design-4 .post-image-bg {		
		width: calc(100% - 30px);
		margin: 55px 0 30px 30px;
	}

	.recent-post-slider.design-4 .post-list-content .wp-medium-7 {
		padding: 10px 15px 10px 15px;
	}

	.posts-slideshow .recent-post-slider h2.wp-post-title {
		margin: 50px 40px 25px 115px !important;
	}

	.posts-slideshow .slides-content::after {
		display: none;
	}

	.posts-slideshow .recent-post-slider h2.wp-post-title {
		margin: 50px 40px 25px 15px !important;
	}

	.posts-slideshow .wp-post-content {
		margin-left: 15px;
	}

	.posts-slideshow .recent-post-slider.design-4 .recentpost-categories {
		position: relative;
		transform: none;
		margin: 40px 0 10px 15px;
	}

	.posts-slideshow .recent-post-slider.design-4 .recentpost-categories a {
		font-size: 18px;
	}

}

@media screen and (max-width:768px) {

	.hostels-nav {
		margin-top: 20px;
	}

	.hostels-nav a {
		margin-left: 0;
	}
}

@media screen and (max-width:700px) {

	.home header {
		flex-direction: column;
	}

	.home header .logo {
		align-items: center;
		justify-content: flex-start;
	}

	.home header .logo a {
		margin: 20px 30px 15px;
	}

	.home header h1 {
		padding-left: 40px;
	}

	.home header h1 br {
		display: none;
	}

	.home header .header-content {
		padding: 15px 0;
	}

	.home a.toggle-menu,
	.wrapper a.toggle-menu {
		top: 25px;
	}

	.home header .dots {
		top: -28px;
	}

	.social,
	.wrapper .social {
		top: 85px;
	}

	.content .hostel a {
		padding-bottom: 100px;
	}

	.content .hostel a h2,
	.services h2,
	.location h2,
	.contact-form h2 {
		font-size: 28px;
	}

	.services h2::after,
	.location h2::before {
		left: 0;
		top: auto;
		width: 160px;
		height: 10px;
		bottom: -20px;
	}

	.wrapper header .logo {
		height: 100px;
		z-index: 10;
	}

	.wrapper header .logo a {
		margin: 0 30px 0 30px;
	}

	.content-slideshow {
		border-left-width: 15px;
	}

	.drinkers {
		display: none;
	}

	.content-slideshow .msacwl-gallery-slider button.slick-next {
		right: 0;
	}

	.content-slideshow .msacwl-gallery-slider button.slick-prev {
		right: 62px;
	}

}

@media screen and (max-width:650px) {

	.home footer {
		flex-direction: column;
		align-items: flex-start;
	}

	footer div a.logo img {
		margin-top: 15px;
	}

	.menu {
		width: 320px;
		padding-top: 80px;
	}

	.menu ul li a {
		font-size: 16px;
	}

	.menu ul li.email a {
		font-size: 14px;
	}

	.reserve,
	.reserve.right {
		width: 320px;
		right: 0;
	}

	.reserve i {
		display: none;
	}

	.wrapper header .logo a img {
		max-width: 180px;
	}

	.main-slider > img {
		display: none;
	}

	.slider-overlay h1 span.arrow {
		right: auto;
		position: relative;
		display: inline-block;
		margin: 0px 0 -2px 10px;
	}

	.trigger-animations.content-slideshow .dots {
		display: none;
	}

	.posts-slideshow .recent-post-slider.design-4 .post-image-bg {
		width: calc(100% - 60px);
		margin: 45px 40px 50px 30px;
	}

}

@media screen and (max-width:500px) {

	.slider-overlay {
		padding-left: 30px;
		position: relative;
		background: #31307a;
	}

	.intro {
		padding-right: 0;
		padding-top: 70px;
	}

	.intro-text h2 {
		font-size: 45px;
	}

	.amenities .seal {
		flex-direction: column;
		align-items: center;
	}

	.amenities .seal ul {
		margin-top: 0;
		margin-bottom: 60px;
	}

	.video::before {
		top: -10px;
		left: -10px;
	}

	.video::after {
		bottom: -10px;
		right: -10px;
	}

	.contact-box {
		padding: 45px 20px;
	}

	.video {
		margin: 0 0 50px 0;
	}

	.intro div.pattern {
		width: 50%;
	}

	.page-detail.blog .post-containter {
		border-left: solid 5px #ff620b;
		padding: 0 15px 30px;
	}

	.page-detail.blog {
		padding: 60px 0;
	}

	.page-detail.blog a.btn {
		font-size: 18px;
	}

}

@media screen and (max-width:450px) {

	.angles {
		height: 70vw;
	}

	.slider-overlay {
		padding-right: 0;
	}

	.slider-overlay h1 span.arrow {
		margin: 0px 0 -15px 20px;
		height: 45px;
		width: 45px;
	}

	.slider-overlay h1 {
		font-size: 35px;
	}

	.intro-text h3 {
		font-size: 22px;
	}

	.intro-text h2 {
		font-size: 35px;
	}

	.posts-slideshow .recent-post-slider.design-4 .recentpost-categories {
		margin-top: 0;
	}

}

@media screen and (max-width:400px) {

	.home header .dots {
		display: none;
	}

	.home header h1 {
		font-size: 19px;
	}

	.content .hostel a > span {
		width: 100%;
		height: 55px;
	}

	.content .hostel a {
		padding-bottom: 80px;
	}

	.content .hostel a:hover > span {
		animation-name: none;
		transform: unset;
	}

}