/* 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-y: scroll;
	-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: 'museolig', sans-serif;
    color: #2e3548;
    font-size: 14px;
}

a {
	text-decoration: none;
}

strong {
	font-weight: 700;
}

h2 {
	font-size: 43px;
	text-transform: uppercase;
	letter-spacing: .07em;
	margin-bottom: 30px;
}

p {
	font-size: 16px;
	line-height: 21px;
	margin-bottom: 20px;
}

/* Fonts */

@font-face {
	font-family: 'douglas';
	src: url('../fonts/Douglas-Ancaster-Script.eot?#iefix') format('embedded-opentype'),
		 url('../fonts/Douglas-Ancaster-Script.otf')  format('opentype'),
		 url('../fonts/Douglas-Ancaster-Script.woff') format('woff'),
		 url('../fonts/Douglas-Ancaster-Script.ttf')  format('truetype'),
		 url('../fonts/Douglas-Ancaster-Script.svg#Douglas-Ancaster-Script') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'museolig';
	src: url('../fonts/MuseoSans-300.eot?#iefix') format('embedded-opentype'),
		 url('../fonts/MuseoSans-300.otf')  format('opentype'),
		 url('../fonts/MuseoSans-300.woff') format('woff'),
		 url('../fonts/MuseoSans-300.ttf')  format('truetype'),
		 url('../fonts/MuseoSans-300.svg#MuseoSans-300') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'museoreg';
	src: url('../fonts/MuseoSans-500.eot?#iefix') format('embedded-opentype'),
		 url('../fonts/MuseoSans-500.otf')  format('opentype'),
		 url('../fonts/MuseoSans-500.woff') format('woff'),
		 url('../fonts/MuseoSans-500.ttf')  format('truetype'),
		 url('../fonts/MuseoSans-500.svg#MuseoSans-500') format('svg');
	font-weight: normal;
	font-style: normal;
}

/* Layout */

.center {
	max-width: 1230px;
	height: 100%;
}

/* Home */

/* Header */

.intro {
	background: url(../img/intro.jpg) no-repeat center top;
	background-size: cover;
	height: 100%;
	position: relative;
	max-height: 700px;
	min-height: 500px;
}

.intro::before,
.intro::after {
	content: '';
	background: linear-gradient(to bottom, rgba(0,0,0,0.60) 0%,rgba(0,0,0,0) 100%);
	position: absolute;
	width: 100%;
	height: 350px;
	left: 0;
	top: 0;
}

.intro::after {
	background: linear-gradient(to top, rgba(0,0,0,0.60) 0%,rgba(0,0,0,0) 100%);
	top: auto;
	bottom: 0;
}

header {
	padding-top: 35px;
}

header .logo {
	width: 75px;
	height: 70px;
}

header .logo img {
	width: 75px;
}

header ul {
	display: flex;
	justify-content: flex-end;
	margin-top: 7px;
}

header ul li {
}

header ul li a {
	color: #fff;
	text-transform: uppercase;
	font-size: 15px;
	padding: 19px 10px;
	display: block;
}

header ul li.book {
	margin-left: 15px;
	position: relative;
}

header ul li.book::after {
	content: '';
	position: absolute;
	bottom: 0;
	background: url(../img/loop-gold.svg) no-repeat center;
	width: 55px;
	height: 22px;
	background-size: 100% auto;
	bottom: -6px;
	left: 50%;
	margin-left: -27px;
}

header ul li.book a {
	color: #d5c1a1;
	border: solid 2px #d5c1a1;
	border-bottom: none;
	padding: 16px 32px 15px;
}

header ul li.book a::before,
header ul li.book a::after {
	content: '';
	position: absolute;
	width: calc(50% - 30px);
	height: 2px;
	background-color: #d5c1a1;
	left: 0;
	bottom: 3px;
}

header ul li.book a::after {
	left: auto;
	right: 0;
}

.intro-logo {
	height: calc(100% - 235px);
	display: flex;
	justify-content: center;
	align-items: flex-end;
	background: radial-gradient(ellipse at center, rgba(0,0,0,0.25) 0%,rgba(0,0,0,0) 65%);
	position: relative;
	z-index: 10;
}

.intro-logo h1 {
	font-family: 'douglas';
	color: #d5c2a2;
	font-size: 34px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: radial-gradient(ellipse at center, rgba(0,0,0,0.35) 0%,rgba(0,0,0,0) 65%);
}

.intro-logo h1 img {
	width: 190px;
	margin: 0 20px;
}

.intro .book-home {
	background-color: #d5c2a2;
	color: #2e3548;
	width: 262px;
	position: absolute;
	left: 50%;
	margin-left: -131px;
	text-align: center;
	text-transform: uppercase;
	font-family: 'museoreg';
	font-size: 23px;
	bottom: 0;
	padding: 0;
	height: 84px;
	margin-bottom: -38px;
	display: flex;
	justify-content: center;
	align-items: center;
	letter-spacing: .1em;
	z-index: 5;
	box-shadow: 0 0 35px rgba(0,0,0,0.1);
}

.intro .book-home::before,
.intro .book-home::after {
	content: '';
	background: url(../img/single-curl-l.svg) no-repeat center center;
	background-size: 100%;
	height: 10px;
	width: 22px;
	margin-right: 10px;
}

.intro .book-home::after {
	background: url(../img/single-curl-r.svg) no-repeat center center;
	background-size: 100%;
	margin-right: 0;
	margin-left: 10px;
}

/* Concept */

.concept {
	min-height: 620px;
	display: flex;
	align-items: center;
	background: url(../img/concept-curl.svg) no-repeat center 160px #f4f4f3;
	background-size: 620px auto;
	box-sizing: border-box;
	padding-top: 40px;
	position: relative;
}

.concept .center {
	max-width: 780px;
	position: unset;
}

.concept .booking {
    display: inline-block;
    width: 150px;
    margin-top: 5px;
}

.concept .loop {
	position: absolute;
	width: 70px;
	height: 30px;
	top: 60px;
	left: 50%;
	margin-left: -35px;
}

.concept h2,
.amenities h2,
.offers h2,
.location h2,
.contact h2 {
	display: flex;
	align-items: center;
	justify-content: center;
}

.concept h2::before,
.concept h2::after,
.amenities h2::before,
.amenities h2::after,
.offers h2::before,
.offers h2::after,
.location h2::before,
.location h2::after,
.contact h2::before,
.contact h2::after {
	content: '';
	width: 42px;
	height: 16px;
	background: url(../img/curl-l.svg) no-repeat center center;
	background-size: 100% auto;
	margin-right: 10px;
}

.concept h2::after,
.amenities h2::after,
.offers h2::after,
.location h2::after,
.contact h2::after {
	background: url(../img/curl-r.svg) no-repeat center center;
	background-size: 100% auto;
	margin-left: 10px;
	margin-right: 0;
}

/* Rooms */

.rooms {
	background-color: #d5c2a2;
	position: relative;
	overflow: hidden;
}

.gallery-image {
	position: absolute;
	right: 0;
	height: 100%;
	text-align: right;
	width: 70%;
	z-index: 10;
}

.gallery-image.go-back {
	z-index: 0;
}

.gallery-image img {
	height: 100%;
}

body .sp-bottom-thumbnails {
	margin-top: 40px;
	position: absolute;
	top: 490px;
	left: 350px;
	z-index: 100;
}

body .sp-selected-thumbnail {
	border: none !important;
}

body .sp-horizontal .sp-arrows {
	left: 168px;
	top: 672px;
	margin-top: -15px;
	opacity: 1;
	position: absolute;
	width: 110px;
	z-index: 110;
	height: 55px;
}

body .sp-horizontal .sp-previous-arrow,
body .sp-horizontal .sp-next-arrow {
	background: url(../img/arrow-left.svg) no-repeat center center #3b4151 !important;
	background-size: 60% auto !important;
	box-shadow: 0 0 0 2px #d5bd88;
	width: 55px;
	height: 55px;
	left: 0;
	top: 0;
}

body .sp-horizontal .sp-next-arrow {
	background: url(../img/arrow-right.svg) no-repeat center center #3b4151 !important;
	background-size: auto auto;
	background-size: 60% auto !important;
	left: 57px;
	transform: none;
}

body .sp-horizontal .sp-previous-arrow::after,
body .sp-horizontal .sp-previous-arrow::before,
body .sp-horizontal .sp-next-arrow::after,
body .sp-horizontal .sp-next-arrow::before {
	display: none !important;
}

/* Tabs */

.tabs {
	margin: 90px 0 120px;
	position: relative;
	z-index: 100;
}

.tabs-nav {
	display: flex;
}

.tabs-nav a {
	background-color: #f7f7f7;
	color: #d5c2a2;
	font-size: 23px;
	line-height: 24px;
	height: 50px;
	width: 165px;
	text-align: center;
	line-height: 52px;
}

.tabs-nav a.active {
	background-color: #3b4151;
}

.tab {
	background: linear-gradient(50deg, rgb(59, 65, 81) 70%,rgba(75,91,106,1) 100%);
	box-sizing: border-box;
	padding: 70px;
	display: none;
}

.tabs.show-01 .tab-01 {
	display: block;
}

.tabs.show-02 .tab-02 {
	display: block;
}

.tab h2 {
	color: #d5c2a2;
	margin-bottom: 20px;
}

.tab h2::after {
	content: '';
	background: url(../img/curl-w-r.svg) no-repeat center center;
	background-size: 100% auto;
	width: 40px;
	height: 18px;
	display: inline-block;
	margin-left: 10px;
}

.tab p {
	color: #fff;
	font-size: 15px;
	line-height: 21px;
}

.tab ul.feats {
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
	margin-top: 30px;
}

.tab ul.feats li {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.tab ul.feats img {
	height: 35px;
	margin-bottom: 10px;
}

.tab ul.feats span {
	display: block;
	font-size: 11px;
	text-align: center;
	color: #d5c2a2;
	width: 75px;
}

.tab .book {
	background-color: #d5c2a2;
	color: #2e3548;
	width: 182px;
	text-align: center;
	text-transform: uppercase;
	font-family: 'museoreg';
	font-size: 17px;
	padding: 0;
	height: 58px;
	display: flex;
	justify-content: center;
	align-items: center;
	letter-spacing: .1em;
	z-index: 5;
	box-shadow: 0 0 35px rgba(0,0,0,0.1);
}

.tab .book::before,
.tab .book::after {
	content: '';
	background: url(../img/single-curl-l.svg) no-repeat center center;
	background-size: 100%;
	height: 8px;
	width: 15px;
	margin-right: 5px;
}

.tab .book::after {
	background: url(../img/single-curl-r.svg) no-repeat center center;
	background-size: 100%;
	margin-right: 0;
	margin-left: 5px;
}

/* Amenities */

.amenities {
	padding: 140px 0 120px;
	background-color: #fbfbfb;
}

.amenities h2 {
	margin-bottom: 55px;
}

.ammenities-list {
	display: flex;
}

.ammenities-list div {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	padding: 0 30px;
}

.ammenities-list div img {
	height: 75px;
	margin-bottom: 15px;
}

.ammenities-list div h3 {
	font-size: 20px;
	font-family: 'museoreg';
	line-height: 1.2em;
	margin-bottom: 10px;
}

.ammenities-list div p {
}

/* Spaces */

.spaces {
}

.spaces .sa_owl_theme .owl-nav {
	bottom: 80px;
	right: 0;
	position: absolute;
}

.spaces .gallery {

}

.spaces .gallery > div {
}

.spaces .gallery img {
	width: 100%;
	display: block;
}

.spaces .owl-carousel .owl-item img {
	display: block;
}

.spaces .text {
	padding: 100px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	box-sizing: border-box;
}

.spaces .text h2::after {
    content: '';
    background: url(../img/curl-r.svg) no-repeat center center;
    background-size: 100% auto;
    width: 40px;
    height: 18px;
    display: inline-block;
    margin-left: 10px;
}

.spaces .text p {
	font-size: 15px;
	margin-bottom: 35px;
}

.spaces .text a.book {
	font-size: 17px;
	background-color: #d5c2a2;
	display: inline-block;
	width: 180px;
	height: 58px;
	box-shadow: 0 0 35px rgba(0,0,0,0.1);
	color: #2e3548;
	text-align: center;
	text-transform: uppercase;
	font-family: 'museoreg';
	line-height: 60px;
}

/* Offers */

.offers {
	background: url(../img/offers-bkg.jpg) no-repeat center #181e2e;
	background-size: cover;
	padding: 100px 0 190px;
	position: relative;
}

.offers::after {
	content: '';
	width: 100%;
	height: 190px;
	position: absolute;
	left: 0;
	bottom: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.40) 0%,rgba(0,0,0,0) 100%);
}

.offers h2 {
	color: #d5c2a2;
	margin-bottom: 40px;
}

.offers h2::before,
.offers h2::after,
.location h2::before,
.location h2::after {
	background: url(../img/curl-w-l.svg) no-repeat center center;
	background-size: 100% auto;
	margin-right: 25px;
	height: 20px;
}

.offers h2::after,
.location h2::after {
	background: url(../img/curl-w-r.svg) no-repeat center center;
	background-size: 100% auto;
	margin-right: 0;
	margin-left: 25px;
}

.offers-slider {
	max-width: 720px;
	margin: 0 auto;
}

.offers-slider .sa_owl_theme .owl-nav button,
.spaces .sa_owl_theme .owl-nav button {
	height: 40px !important;
	width: 40px !important;
}

.spaces .sa_owl_theme .owl-nav button {
	height: 55px !important;
	width: 55px !important;
}

.offers-slider .white .sa_owl_theme .owl-nav .owl-prev,
.offers-slider .white .sa_owl_theme .owl-nav .owl-next,
.spaces .white .sa_owl_theme .owl-nav .owl-prev,
.spaces .white .sa_owl_theme .owl-nav .owl-next {
	background: url(../img/arrow-left.svg) no-repeat center center transparent !important;
	background-size: 60% auto !important;
	box-shadow: 0 0 0 2px #d5bd88;
	left: -70px;
}

.spaces .white .sa_owl_theme .owl-nav .owl-prev {
	left: 50px;
}

.offers-slider .white .sa_owl_theme .owl-nav .owl-next,
.spaces .white .sa_owl_theme .owl-nav .owl-next {
	background: url(../img/arrow-right.svg) no-repeat center center transparent !important;
	background-size: 60% auto !important;
	left: auto;
	right: -70px;
}

.spaces .white .sa_owl_theme .owl-nav .owl-next {
	right: -162px;
}

.offers-slider .white .sa_owl_theme .owl-nav .owl-prev:hover,
.offers-slider .white .sa_owl_theme .owl-nav .owl-next:hover,
.spaces .white .sa_owl_theme .owl-nav .owl-prev:hover,
.spaces .white .sa_owl_theme .owl-nav .owl-next:hover {
	background-color: transparent !important;
}

/* Instagram */

.instagram {
	text-align: center;
	position: relative;
}

.instagram h3 {
	color: #d5c2a2;
	font-size: 30px;
	letter-spacing: 0.05em;
	margin-top: -60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: baseline;
}

.instagram h3::before,
.instagram h3::after {
	content: '';
	background: url(../img/curl-alt-l.svg) no-repeat center;
	background-size: 100% auto;
	width: 50px;
	height: 18px;
	margin-right: 15px;
}

.instagram h3::after {
	background: url(../img/curl-alt-r.svg) no-repeat center;
	background-size: 100% auto;
	margin-right: 0;
	margin-left: 15px;
}

.instagram h3 i {
	width: 28px;
	height: 28px;
	display: inline-block;
	background: url(../img/instagram.svg) no-repeat center;
	background-size: 100% auto;
	margin-bottom: -3px;
	margin-right: -5px;
}

.instagram img {
	width: 100%;
	display: block;
}

/* Location */

.location {
	display: flex;
}

.location h2::before,
.location h2::after {
	margin-right: 15px;
}

.location h2::after {
	margin-right: 0;
	margin-left: 15px;
}

.location .map {
	flex: 1;
	background: url(../img/map.jpg) no-repeat center;
	background-size: cover;
	padding: 40px;
	position: relative;
}

.location .text {
	flex: 1;
	background-color: #2e3548;
	padding: 145px 40px 330px;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	position: relative;
}

.location .text::after,
.location .map::after {
	content: '';
	width: 100%;
	height: 150px;
	position: absolute;
	left: 0;
	top: 0;
	background: linear-gradient(to bottom, rgba(0,0,0,0.20) 0%,rgba(0,0,0,0) 100%);
}

.location .contact-info {
	max-width: 360px;
}

.location .contact-info h2 {
	color: #d5c2a2;
}

.location .contact-info h3 {
	color: #d5c2a2;
	font-size: 18px;
	text-transform: uppercase;
	line-height: 1.25em;
	margin-bottom: 20px;
	font-family: 'museoreg';
}

.location .contact-info p {
	color: #fff;
	line-height: 1.25em;
	margin-bottom: 25px;
}

.location .contact-info h4 {
	color: #d5c2a2;
	font-family: 'museoreg';
}

.location .contact-info h4 a {
	color: inherit;
}

.location .contact-info h4 span {
	margin: 0 8px;
}

/* Footer */

footer {
	background-color: #d5c1a1;
	padding-bottom: 60px;
}

.contact {
	margin: -280px auto 60px;
	background-color: #fff;
	max-width: 800px;
	box-sizing: border-box;
	padding: 60px 60px 65px;
	position: relative;
	box-shadow: 0 0 35px rgba(0,0,0,0.1);
}

.contact .form { 
}

.contact .form input,
.contact .form textarea {
	border: none;
	background-color: #f7f7f7;
	font-family: 'museoreg';
	font-size: 15px;
	text-transform: uppercase;
	color: #2e3548;
	width: 100%;
	margin: 0 0 8px;
	height: 46px;
	padding: 3px 25px 0px;
	box-sizing: border-box;
}

.contact .form textarea {
	resize: none;
	height: 195px;
	padding: 20px 25px 20px;
}

.contact .form .row input {
	width: calc(100% - 4px);
}

.contact .form input[type="submit"]{
	background-color: #d5c1a1;
	font-family: 'museoreg';
	color: #fff;
	width: 140px;
	height: 58px;
	font-size: 18px;
	margin-bottom: 0;
	box-shadow: 0 0 35px rgba(0,0,0,0.1);
	position: absolute;
	left: 50%;
	bottom: -25px;
	margin-left: -70px;
}

footer p {
	font-size: 12px;
	line-height: 18px;
	color: #a38d6b;
	font-family: 'museoreg';
}

footer p a {
	color: inherit;
}

.chain {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 40px 0 50px;
}

.chain img {
	width: 115px;
}

.chain img.loop {
	width: 30px;
	margin: 0 50px;
}

/* Media Queries */
@media screen and (max-width:1280px){
	
}