/* -------------------------------- 

Main components 

-------------------------------- */
a{cursor: pointer}
.cd-img-replace {
	/* replace text with a background-image */
	display: inline-block;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
}
.overflow-hidden {
}
.cd-main-content {
	/* set a min-height and a z-index to be sure that the main element completely covers the lateral menu */
	min-height: 100%;
	position: relative;
	background-color: #fff;
	z-index: 2;
	padding-top: 150px;
	/* Force Hardware Acceleration in WebKit 
  -webkit-transform: translateZ(0);*/
	-webkit-backface-visibility: hidden;
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	transition-property: transform;
	-webkit-transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	transition-duration: 0.4s;
}
.cd-main-content.lateral-menu-is-open {
	/* translate to show the lateral menu - all content needs to be put in the .cd-main-content to translate*/
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
	position: fixed;
	width: 100%;
	height: 100%
}
#cd-logo img {
	width: 50%
}
header.cd-head {
	left: 0;
	position: fixed;
	width: 100%;
	height: 150px;
	background: #000;
	float: right;
	margin-right: 0%;
	margin-top: 0px;
	position: fixed;
	margin-left: 0%;
	border-bottom: solid 2px #b8222b;
	width: 100%;
	background: #000;
	z-index: 9;
	/* Force Hardware Acceleration in WebKit */
	-webkit-transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	transition-property: transform;
	-webkit-transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	transition-duration: 0.4s;
}
#cd-lateral-nav {
	position: fixed;
	top: 148px;
	width: 100%;
	height: 100%;
	height: -webkit-calc(100% - 148px);
	height: -moz-calc(100% - 148px);
	height: calc(100% - 148px);
	left: 0;
	/* the secondary navigation is covered by the main element */
	z-index: 10;
	width: 320px;
	background-color: #000;
	/* Force Hardware Acceleration in WebKit */
	-webkit-transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	-webkit-transition: -webkit-transform .4s 0s, visibility 0s .4s;
	-moz-transition: -moz-transform .4s 0s, visibility 0s .4s;
	transition: transform .4s 0s, visibility 0s .4s;
	/* this creates the subtle slide in animation of the navigation */
	-webkit-transform: translateX(-320px);
	-moz-transform: translateX(-320px);
	-ms-transform: translateX(-320px);
	-o-transform: translateX(-320px);
	transform: translateX(-320px);
	border-right: solid 2px #b8222b;
	overflow: auto
}
#cd-top-nav ul {
	padding-top: 61px;
}
#cd-top-nav a {
	display: inline-block;
	font-weight: bold;
	color: #FFF;
	border-bottom: solid 2px #b8222b;
	font-size: 25px
}
header.lateral-menu-is-open {
	/* translate to show the lateral menu */
	-webkit-transform: translateX(0px);
	-moz-transform: translateX(0px);
	-ms-transform: translateX(0px);
	-o-transform: translateX(0px);
	transform: translateX(0px);
}
header.is-fixed {
	position: fixed;
}
#cd-logo {
	text-align: right;
	float: right;
}
#cd-logo img {
	margin-right: 30px
}
#cd-top-nav {
	position: absolute;
	top: 0;
	left: 85px;
	height: 100%;
	display: none;
}
#cd-top-nav li {
	display: inline-block;
	margin-right: 1em;
}
#cd-top-nav a.current {
	background-color: #000;
}
#cd-top-nav {
	display: block;
}
#cd-menu-trigger {
	position: absolute;
	left: 20px;
	top: 0;
	height: 100%;
	width: 50px;
}
#cd-menu-trigger .cd-menu-text {
	height: 100%;
	text-transform: uppercase;
	color: #FFF;
	font-weight: 600;
	display: none;
}
#cd-menu-trigger .cd-menu-icon {
	/* this span is the central line in the menu menu */
	display: inline-block;
	position: absolute;
	left: 50%;
	top: 45%;
	bottom: auto;
	right: auto;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	-o-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	width: 30px;
	height: 3px;/* these are the upper and lower lines in the menu menu */
}
#cd-menu-trigger .cd-menu-icon::before, #cd-menu-trigger .cd-menu-icon:after {
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: inherit;
	left: 0;
}
#cd-menu-trigger .cd-menu-icon::before {
	content: url(../images/nav.png);
	font-family: 'FontAwesome';
}
#cd-menu-trigger .cd-menu-icon::after {
	top: 8px;
}
#cd-menu-trigger.is-clicked .cd-menu-icon {
	background-color: rgba(255, 255, 255, 0);
}
#cd-menu-trigger.is-clicked .cd-menu-icon::before, #cd-menu-trigger.is-clicked .cd-menu-icon::after {
}
#cd-menu-trigger.is-clicked .cd-menu-icon::before {
	content: url(../images/x.png);
	font-family: FontAwesome;
}
#cd-menu-trigger.is-clicked .cd-menu-icon::after {
	top: 0;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
#cd-lateral-nav .cd-navigation {
	margin: 0px 0 16px; text-transform:uppercase
}
#cd-lateral-nav .sub-menu {
	padding: 0 10px 20px 15px;
	display: none;
}
.cd-navigation li {
	margin-bottom: 5px!important;
	display: block;
	padding: 0 32px 0 32px;
}
#cd-lateral-nav a {
	color: #fff;
	padding: 5px 0
}
#cd-lateral-nav a.current {
	background-color: #3a4a4d;
	color: #FFF;
}
.no-touch #cd-lateral-nav a:hover {
	color: #FFF;
}
#cd-lateral-nav {
	padding-top: 0px;
	font-size: 17px;
}
#cd-lateral-nav.lateral-menu-is-open {
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
	visibility: visible;
	-webkit-transition: -webkit-transform .4s 0s, visibility 0s 0s;
	-moz-transition: -moz-transform .4s 0s, visibility 0s 0s;
	transition: transform .4s 0s, visibility 0s 0s;
	/* smooth the scrolling on touch devices - webkit browsers */
	-webkit-overflow-scrolling: touch;
}
.cd-navigation .r {
	text-align: right;
	font-size: 11px;
	margin-bottom: 4px;
	text-transform: lowercase;
	color: #fff; margin-top:10px
}
.cd-navigation .r a {
	text-transform: lowercase; white-space:nowrap;
	padding: 0 13px!important;
}
.nav-bottom li {
	padding: 0
}
/* style menu items which have a submenu  */
#cd-lateral-nav .item-has-children > a {
	position: relative;
	text-transform: uppercase;
	font-weight: 600;/* this is the right arrow to show that the item has a submenu  */
}
#cd-lateral-nav .item-has-children > a::after {
	content: '';
	display: block;
	height: 11px;
	width: 8px;
	position: absolute;
	top: 50%;
	bottom: auto;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 1em;
	background: url("../img/cd-arrow.svg") no-repeat center center;
	background-size: 8px 11px;
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	transition-property: transform;
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	transition-duration: 0.2s;
}
#cd-lateral-nav .item-has-children > a.submenu-open::after {
	-webkit-transform: translateY(-50%) rotate(90deg);
	-moz-transform: translateY(-50%) rotate(90deg);
	-ms-transform: translateY(-50%) rotate(90deg);
	-o-transform: translateY(-50%) rotate(90deg);
	transform: translateY(-50%) rotate(90deg);
}
#cd-lateral-nav .socials {
	padding: 0 32px;
}
#cd-lateral-nav .socials:after {
	content: "";
	display: table;
	clear: both;
}
#cd-lateral-nav .socials a {
	height: 32px;
	width: 32px;
	float: left;
	padding: 0;
	background-repeat: no-repeat;
	margin-right: .5em;
}

@media screen and (max-width: 736px) {
header.cd-head {
	height: 72px;
}
#cd-top-nav ul {
	padding-top: 41%;
}
#cd-top-nav a {
	font-size: 17px;
}
#cd-logo img {
	width: 24%;
}
#cd-lateral-nav {
	top: 69px;
}
#cd-lateral-nav {
	
	height: -webkit-calc(100% - 69px);
	height: -moz-calc(100% - 69px);
	height: calc(100% - 69px);
}.cd-main-content{ padding-top:72px}

}
@media screen and (max-width: 414px){
#cd-top-nav a {
    font-size: 15px;
}#cd-top-nav ul {
	padding-top: 31%;
}}
/* -------------------------------- 

Primary style b8222b

-------------------------------- */
html * {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
*, *:after, *:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; outline:none
}
html, body {
	height: 100%;
}
body {
	background: #fff;
	color: #48a770;
	font-size: 20px;
	color: #000
}
/*main*/
.text-20 {
	font-size: 25px;
	line-height: 30px
}
img {
	max-width: 100%
}
a {
	color: #000;
	text-decoration: none;
}
footer a {
	color: #fff
}
a:hover, a:focus {
	color: #b8222b;
	text-decoration: none!Important;
}
a:focus {
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
}
button {
	background-color: transparent;
	color: #fff;
	padding: 10px 20px;
	text-transform: uppercase;
	border: none;
	font-size: 25px;
	cursor: pointer;
	margin: 5px; 
}
.nav-link-container button {
	background-color: transparent;
	color: #fff;
	padding: 0;
	text-transform: uppercase;
	border: none;
	font-size: 15px;
	cursor: pointer;
	margin: inherit;
}
.nav-link-container button, .nav-close-menu-li button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	color: #fff
}
.bt-transparent-black {
	border: solid 1px #000;
	color: #000
}
.bt-transparent-black:hover {
	border: solid 1px #000;
	color: #fff;
	background-color: #000
}
.bt-white {
	background-color: #fff;
	color: #000;
	border: solid 1px #fff;
}
.bt-black {
	background-color: #000;
	color: #fff;
	border: solid 1px #000;
}
.bt-black-border {
	background-color: #000;
	color: #000;
	border: solid 1px #000;
	color: #fff;
	border-bottom: solid 3px #b8222b
}
.bt-white-border {
	background-color: #fff;
	color: #000;
	border: solid 1px #fff;
	color: #000;
	border-bottom: solid 3px #b8222b
}
.bt-transparent {
	border: solid 1px #fff;
	border: solid 1px #fff;
}
.text-lowercase {
	text-transform: lowercase
}
button i {
	margin: 0 10px
}
/*scroll*/

*, *:after, *:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.cbp-so-scroller {
/*overflow: hidden;*/
}
.cbp-so-section {
}
/* Clear floats of children */
.cbp-so-section:before, .cbp-so-section:after {
	content: " ";
	display: table;
}
.cbp-so-section:after {
	clear: both;
}
/* Text styling */


/* Sides */
.cbp-so-side {
	margin: 0;
	overflow: hidden;
	/*	float: left;
*/	-webkit-transition: -webkit-transform 1s, opacity 2.15s;
	-moz-transition: -moz-transform 1s, opacity 2.15s;
	transition: transform 1s, opacity 2.15s;
}
/* Clear floats of children */
.cbp-so-side:before, .cbp-so-side:after {
	content: " ";
	display: table;
}
.cbp-so-side:after {
	clear: both;
}
.cbp-so-side-right {
	text-align: left;
}
.cbp-so-side-left {
	text-align: right;
}
.cbp-so-side-right img {
	float: left;
}
.cbp-so-side-left img {
	float: right;
}
/* Initial state (hidden or anything else) */
.cbp-so-init .cbp-so-side {
	opacity: 0;
}
.cbp-so-init .cbp-so-side-left {
	-webkit-transform: translateX(-50px);
	-moz-transform: translateX(-50px);
	transform: translateX(-50px);
}
.cbp-so-init .cbp-so-side-right {
	-webkit-transform: translateX(50px);
	-moz-transform: translateX(50px);
	transform: translateX(50px);
}
.cbp-so-init .cbp-so-side-top {
	-webkit-transform: translateY(50px);
	-moz-transform: translateY(50px);
	transform: translateY(50px);
}
.cbp-so-init .cbp-so-side-bottom {
	-webkit-transform: translateY(-50px);
	-moz-transform: translateY(-50px);
	transform: translateY(-50px);
}
.parallax .cbp-so-init .cbp-so-side-left {
	-webkit-transform: translateX(-50px);
	-moz-transform: translateX(-50px);
	transform: translateX(-50px);
}
.parallax .cbp-so-init .cbp-so-side-right {
	-webkit-transform: translateX(50px);
	-moz-transform: translateX(50px);
	transform: translateX(50px);
}
.parallax .cbp-so-init .cbp-so-side-top {
	-webkit-transform: translateY(50px);
	-moz-transform: translateY(50px);
	transform: translateY(50px);
}
.parallax .cbp-so-init .cbp-so-side-bottom {
	-webkit-transform: translateY(-50px);
	-moz-transform: translateY(-50px);
	transform: translateY(-50px);
}
/* Animated state */
/* add you final states (transition) or your effects (animations) for each side */
.cbp-so-section.cbp-so-animate .cbp-so-side-left, .cbp-so-section.cbp-so-animate .cbp-so-side-right {
	-webkit-transform: translateX(0px);
	-moz-transform: translateX(0px);
	transform: translateX(0px);
	opacity: 1;
}
.cbp-so-section.cbp-so-animate .cbp-so-side-top, .cbp-so-section.cbp-so-animate .cbp-so-side-bottom {
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	transform: translateY(0px);
	opacity: 1;
}

/* For example, add a delay for the right side:
.cbp-so-section.cbp-so-animate .cbp-so-side-right {
	-webkit-transition-delay: 0.2s;
	-moz-transition-delay: 0.2s;
	transition-delay: 0.2s;
}
*/

/* Example media queries */

@media screen and (max-width: 73.5em) {
.cbp-so-scroller {
}
.cbp-so-section h2 {
	margin: 0;
}
}

@media screen and (max-width: 41.125em) {
.cbp-so-side {
	float: none;
	width: 100%;
}
}
/* parallax */
/*#page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }*/
.block img {
	width: 100%;
	display: inherit
}
.cover-text {
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: 0
}
.block {
	overflow: hidden;
	width: 100%;
	position: relative
}
.clickto {
	position: absolute;
	bottom: 20px;
	left: 50%;
	z-index: 3;
	width: 70px;
	margin-left: -20px
}
/*.js-parallax{

    -webkit-transition: transform .5s ease-in-out;
    -moz-transition:transform .5s ease-in-out;
    -ms-transition:transform .5s ease-in-out;
	
	
	}*/

.parallax-b0l5 {
	position: absolute;
	bottom: 0%;
	left: 5%;
}
.parallax-b5l5 {
	position: absolute;
	bottom: 5%;
	left: 5%;
}
.parallax-b30l5 {
	position: absolute;
	bottom: 22%;
	left: 5%;
}
.parallax-b60l5 {
	position: absolute;
	bottom: 67%;
	left: 5%;
}
.parallax-b5r5 {
	position: absolute;
	bottom: 5%;
	right: 5%;
}
.parallax-b50r5 {
	position: absolute;
	bottom: 58%;
	right: 5%;
}
.parallax-b40r5 {
	position: absolute;
	bottom: 40%;
	right: 5%;
}
.parallaxb0r0 {
	position: absolute;
	bottom: 0%;
	right: 0%;
}
.parallaxb0l0 {
	position: absolute;
	bottom: 5%;
	left: 0%;
}
.parallaxb-20l0 {
	position: absolute;
	bottom: 5%;
	left: 0%;
}
.index1 .parallax-b5l5 {
	bottom: 23%;
}
.index3 .parallax-b5l5 {
	bottom: 4%;
}
.index8 .parallax-b5l5 {
	bottom: 0%;
}
.index4 {
	font-size: 30px
}
.parallax-b5r5 .square button {
	right: -15%
}

@media screen and (min-width: 0) {
#page {
	left: 0;
	width: 100%;
	height: 100%;
	top: 0px
}
}

#scrollContainer {
	width: 100%;
	position: absolute;
}
/* CONTENT */

/* CONTENT */
.square {
	width: 100%;
	float: left;
	padding: 5% 10%;
	font-size: 90px;
	color: #fff;
}
.index4 .square {
	font-size: 70px
}
.shadow {
	text-shadow: 1px 1px 1px #000
}
.bg-white {
	background: rgba(255,255,255,.5);
	color: #000
}
.bg-black {
	background: #000;
	color: #fff
}
.text-black {
	color: #000
}
/*animation*/
  

/* Underline From Left */
.hvr-underline-from-left {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	overflow: hidden;
}
.hvr-underline-from-left:before {
	content: "";
	position: absolute;
	z-index: -1;
	left: 0;
	right: 100%;
	bottom: 0;
	background: #b8222b;
	height: 2px;
	-webkit-transition-property: right;
	transition-property: right;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}
.hvr-underline-from-left:hover:before, .hvr-underline-from-left:focus:before, .hvr-underline-from-left:active:before {
	right: 0;
}


/* Icon Wobble Horizontal */
@-webkit-keyframes hvr-icon-wobble-horizontal {
 16.65% {
 -webkit-transform: translateX(6px);
 transform: translateX(6px);
}
 33.3% {
 -webkit-transform: translateX(-5px);
 transform: translateX(-5px);
}
 49.95% {
 -webkit-transform: translateX(4px);
 transform: translateX(4px);
}
 66.6% {
 -webkit-transform: translateX(-2px);
 transform: translateX(-2px);
}
 83.25% {
 -webkit-transform: translateX(1px);
 transform: translateX(1px);
}
 100% {
 -webkit-transform: translateX(0);
 transform: translateX(0);
}
}
 @keyframes hvr-icon-wobble-horizontal {
 16.65% {
 -webkit-transform: translateX(6px);
 transform: translateX(6px);
}
 33.3% {
 -webkit-transform: translateX(-5px);
 transform: translateX(-5px);
}
 49.95% {
 -webkit-transform: translateX(4px);
 transform: translateX(4px);
}
 66.6% {
 -webkit-transform: translateX(-2px);
 transform: translateX(-2px);
}
 83.25% {
 -webkit-transform: translateX(1px);
 transform: translateX(1px);
}
 100% {
 -webkit-transform: translateX(0);
 transform: translateX(0);
}
}
.hvr-icon-wobble-horizontal {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	padding-right: 2.2em;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}
.hvr-icon-wobble-horizontal:before {
	content: "\f061";
	position: absolute;
	right: 1em;
	padding: 0 1px;
	font-family: FontAwesome;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}
.hvr-icon-wobble-horizontal:hover:before, .hvr-icon-wobble-horizontal:focus:before, .hvr-icon-wobble-horizontal:active:before {
	-webkit-animation-name: hvr-icon-wobble-horizontal;
	animation-name: hvr-icon-wobble-horizontal;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
}
.hvr-icon-wobble-horizontal:before {
	content: "\f178";
	position: absolute;
	right: 1em;
	padding: 0 1px;
	font-family: FontAwesome;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	color: #b8222b
}
.hvr-icon-wobble-horizontal.googlemap:before {
	content: url(../images/arrow.png);
	color: #fff;
	width: 30px;
	height: 30px;
	font-size: 15px;
	margin-right: -5px!important
}
[class^="hvr-"] {
	/*display: inline-block;*/
  /*vertical-align: middle;*/
	cursor: pointer;
	text-decoration: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}
ul.list-type1 {
	font-size: 0;
	width: 100%;
	border: solid 3px #000;
	border-width: 3px 0;
	padding: 20px
}
ul.list-type1 li {
	width: 46%;
	margin: 0 2% 3% 2%;
	display: inline-block;
	vertical-align: top;
	font-size: 0;
	border-bottom: solid 2px #ccc;
	padding-bottom: 2%
}
ul.list-type1 li figure {
	display: inline-block;
	vertical-align: middle;
	width: 60px
}
ul.list-type1 li p {
	width: 75%;
	width: -webkit-calc(75% - 60px);
	width: -moz-calc(75% - 60px);
	width: calc(75% - 60px);
	margin-left: 5%;
	display: inline-block;
	vertical-align: middle;
	font-size: 23px;
	text-transform: uppercase
}
ul.list-type1 li img {
	max-width: 100%;
	width: inherit
}
.set-w60 {
	width: 60%;
	padding: 5% 2%;
}
.set-w95 {
	width: 95%;
	padding: 5% 2%;
}
.square button {
	white-space: nowrap
}
.text-nowrap {
	white-space: nowrap
}
ul.room-type li {
	font-size: 20px;
	float: left;
	margin-top: 10px
}
ul.room-type li img {
	width: inherit;
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px
}
#wrapper footer {
	background-color: #000;
	font-size: 25px;
	color: #fff;
	border-top: solid 4px #b8222b
}
#wrapper section {
	padding: 20px 5%
}
.address figure {
	display: inline-block;
	vertical-align: middle;
	width: 8%;
}
.address figure img {
	display: inline-block;
	vertical-align: middle
}
.address ul {
	display: inline-block;
	vertical-align: middle;
	margin-left: 5%;
	width: 83%;
	text-transform: uppercase
}
.address ul li:first-child{margin-top: 40px}
.address ul li {
	margin-bottom: 12px;
	float: left;
	width: 100%
}
.address ul li i {
	margin: 0 10px
}
.address ul li a {
	text-transform: initial!important
}
.address ul li img {
	margin: 0 3px
}
.map {
	position: relative
}
.map iframe {
filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=.8);/* IE */
	-webkit-filter: grayscale(.8);/* Chrome, Safari */
	filter: grayscale(.8);/* Firefox */
	filter: grayscale(80%);
	filter: gray;
	-moz-filter: grayscale(80%);
	-webkit-filter: grayscale(80%);
}
.place {
	width: 25%;
	background-color: #d1d1d1;
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	color: #333;
	font-size: 20px;
	line-height: 30px;
	overflow: auto
}
.place2 {
	width: 38%;
	text-align: center
}
footer .place {
	height: 99%
}
.place p {
	margin-bottom: 3%;
	padding: 10% 10% 0 10%;
	text-align: left
}
.place2 p {
	padding: 5% 5% 0 5%;
	text-align: left
}
.place button {
	font-size: 20px
}
.copyright {
	background-color: #000
}
.copyright p {
	float: left
}
.copyright p.right {
	float: right
}
.copyright section {
	padding-top: 10px;
	padding-bottom: 10px;
	font-size: 14px
}
/*menu.nav-container {
	float: right;
	margin: 0;
	width: 20%; min-width:320px;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 999;
	height: 100%; background-color:#ccc
}*/

.nav-container {
	left: -100%;
	float: right;
	margin: 0;
	width: 100%;
	min-width: 320px;
	position: fixed;
	top: 0;
	z-index: 999;
	height: 100%;
	background-color: #ccc;
}
.content {
	width: 100%;
}
.nav-link-container {
	left: 0;
	position: fixed;
	width: 100%;
	height: 180px;
	background: #000;
	float: right;
	margin-right: 0%;
	margin-top: 0px;
	position: fixed;
	margin-left: 0%;
	border-bottom: solid 2px #b8222b
}
.nav-menu-link:before {
	content: url(../images/nav.png);
	font-family: 'FontAwesome';
	color: #fff;
	font-size: 30px
}
.nav-menu-link {
	position: absolute;
	margin-left: 20px;
	margin-top: 65px;
}
button.booking-link {
	position: absolute;
	margin-left: 80px;
	margin-top: 66px;
	font-size: 25px;
	text-transform: lowercase;
	border-bottom: solid 2px #b8222b;
	font-weight: bold
}
.booking-link2 {
	top: -5px;
	position: relative;
	font-size: 20px;
	text-transform: lowercase;
}
.booking-link2 span {
	border-bottom: solid 2px #b8222b
}
.logo-link {
	position: absolute;
	right: 5%;
	max-width: 130px;
	margin-top: 2px
}
.logo-link img {
	width: 100%;
	margin-top: 3px
}
.nav-menu {
	width: 320px;
	float: left;
	left: 100%;
	padding: 35px 30px;
	background: #000;
	list-style: none;
	height: 100%;
	margin: 0px 0 0 0;
	position: relative;
	z-index: 999;
	font-size: 11px;
	-ms-transition: transform 0.4s ease;
	-webkit-transition: transform 0.4s ease;
	-moz-transition: transform 0.4s ease;
	transition: transform 0.4s ease;
	-ms-transform: translateX(-100%);
	-webkit-transform: translateX(-100%);
	-moz-transform: translateX(-100%);
	transform: translateX(-100%);
	font-size: 17px;
	overflow: auto;
	border-right: solid 2px #b8222b
}
.nav-inactive-menu-link-container {
}
.inactive-body {
}
.nav-active-menu-container {
	-ms-transform: translate(0);
	-webkit-transform: translate(0);
	-moz-transform: translate(0);
	transform: translate(0);
}
.nav-menu li {
	margin-bottom: 14px
}
.nav-menu li a {
	text-decoration: none;
	padding-bottom: 5px;
	color: #fff;
	display: inline-block;
	text-transform: uppercase
}
.nav-close-menu-li {
	display: block;
}
.nav-close-menu-li a {
	color: white !important;
}
.link-close:before {
	content: url(../images/x.png);
	font-family: FontAwesome;
	font-size: 30px
}
.text12 {
	font-size: 15px;
	line-height: 20px
}
.text24 {
	font-size: 24px;
	line-height: 30px
}
.text20 {
	font-size: 20px;
	line-height: 30px
}
ul.icon li {
	display: inline-block;
	vertical-align: middle;
	margin: 5px
}
ul.icon {
	text-align: center;
	margin: 30px 0
}
.w100bg {
	width: 100%;
	height: 180px;
	background: url(../images/bg11.jpg) no-repeat;
	background-size: cover
}
.bg-gradient {
	background: #ffffff;
	background: -moz-linear-gradient(top, #ffffff 85%, #e5e5e5 100%);
	background: -webkit-linear-gradient(top, #ffffff 85%, #e5e5e5 100%);
	background: linear-gradient(to bottom, #ffffff 85%, #e5e5e5 100%);
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e5e5e5', GradientType=0 );
}
.block-01 {
	font-size: 0px;
	margin-bottom: 80px
}
.bg-gradient figure {
	display: inline-block;
	width: 80px;
	vertical-align: middle
}
.block-01 h2 {
	width: 100%;
	padding: 10px 0;
	display: inline-block;
	border-bottom: solid 3px #000;
	margin-bottom: 50px;
	text-transform: uppercase;
	font-size: 30px;
	font-weight: bold
}
.hirafu .block-01 h2 {
	width: 100%;
	width: -webkit-calc(100% - 80px);
	width: -moz-calc(100% - 80px);
	width: calc(100% - 80px);
}
.footer-list {
	font-size: 0px;
	margin-top:50px
}
.footer-list figure {
	display: inline-block;
	width: 15%;
	vertical-align: middle;
	text-align: center
}
.footer-list ul {
	width: 78%;
	display: inline-block;
	vertical-align: middle;
	font-size: 0
}
.footer-list ul li {
	font-size: 20px; line-height:30px;
	width: 48%;
	margin-left: 2%;
	border-bottom: solid 2px #000;
	padding-bottom: 20px;
	margin-bottom: 20px;
	display: inline-block;
	vertical-align: top
}
.footer-list ul li b {
	text-transform: uppercase;
	font-weight: bold
}
ul.list1 li:before {
	content: '-  ';
	margin-left: -20px;
}
ul.list1 {
	margin-left: 30px
}
ul.list1 li {
	margin-bottom: 10px
}
.style01 figure {
	margin-bottom: 30px
}
.style01 p {
	margin: 0 0 20px 0
}
.talkofus {
	background-color: #000;
	color: #fff;
	padding: 5% 10%;
	font-size: 0;
}
.talkofus ul {
	width: 50%;
	padding: 0 2%;
	display: inline-block;
	vertical-align: top;
	text-align: center
}
.talkofus ul li {
	margin-bottom: 10px
}
.talkofus ul li.bl {
	border-left: solid 2px #ccc
}
.talkofus input, .talkofus textarea {
	background-color: #000;
	color: #fff;
	text-align: center;
	font-size: 18px
}
.talkofus a {
	color: #fff
}
.talkofus h1 span {
	font-size: 40px;
	border-bottom: solid 2px #b8222b
}
.talkofus button {
	width: 100%
}
.space {
	height: 30px
}
.magazine figure {
	text-align: center
}
.hr-b {
	border-top: 3px solid #000;
}
/*animation*/
.grid-tt {
	max-width: 69em;
	list-style: none;
	margin: 0px auto;
	padding: 0;
}
.grid-tt li {
	display: block;
	float: left;
	padding: 10px;
	width: 50%;
	width: -webkit-calc(05% - 10px);
	width: -moz-calc(50% - 10px);
	width: calc(50% - 10px);
	opacity: 0;
}
.grid-tt li.shown, .no-js .grid-tt li, .no-cssanimations .grid-tt li {
	opacity: 1;
}
.grid-tt li a, .grid-tt li img {
	outline: none;
	border: none;
	display: block;
	max-width: 100%;
}
/* Effect 1: opacity */
.grid-tt.effect-1 li.animate {
	-webkit-animation: fadeIn 0.65s ease forwards;
	-moz-animation: fadeIn 0.65s ease forwards;
	animation: fadeIn 0.65s ease forwards;
}
 @-webkit-keyframes fadeIn {
 to {
opacity: 1;
}
}
 @-moz-keyframes fadeIn {
 to {
opacity: 1;
}
}
 @keyframes fadeIn {
 to {
opacity: 1;
}
}
/* Effect 2: Move Up */
.grid-tt.effect-2 li.animate {
	-webkit-transform: translateY(200px);
	-moz-transform: translateY(200px);
	transform: translateY(200px);
	-webkit-animation: moveUp 0.65s ease forwards;
	-moz-animation: moveUp 0.65s ease forwards;
	animation: moveUp 0.65s ease forwards;
}
 @-webkit-keyframes moveUp {
 to {
-webkit-transform: translateY(0);
opacity: 1;
}
}
 @-moz-keyframes moveUp {
 to {
-moz-transform: translateY(0);
opacity: 1;
}
}
 @keyframes moveUp {
 to {
transform: translateY(0);
opacity: 1;
}
}
.grid-tt img {
	width: 100%
}
.grid-tt .text {
	background-color: #333;
	padding: 50px;
	color: #fff;
	line-height: 25px
}
.grid-tt p {
	padding-bottom: 20px
}
.grid-tt p b {
	text-transform: uppercase;
	font-weight: bold
}
.grid-tt li.w100 {
	width: 100%
}
ul.list2 li {
	width: 25%;
	float: left;
}
ul.list2 li img {
	width: 100%;
}
.room-bt {
	text-align: center
}
.room-bt li {
	width: 20%;
	display: inline-block;
	vertical-align: top;
	margin: 1%;
}
.room-bt li button {
	width: 100%;
	padding: 40px;
	font-size: 30px
}
.style02 figure {
	text-align: center
}
.getting-here img {
	width: 100%
}
.getting-text {
	background-color: #333;
	padding: 50px;
	color: #fff;
	line-height: 25px
}
.getting-text2 {
	padding: 50px;
	line-height: 25px;
}
.getting-text2 hr {
	border-top: solid 3px #333;
	padding-bottom: 30px
}
.getting-text p, .getting-text2 p {
	padding-bottom: 20px
}
.getting-text b, .getting-text2 b {
	font-weight: bold;
	font-size: 32px;
}
.square.bg-black a {
	color: #fff
}
.nowrap {
	white-space: nowrap
}
.right {
	float: right!important;
	margin-left: 20px
}
.w58 {
	width: 58%;
}
.w70 {
	max-width: 70%
}
.nav-bottom {
	margin: 20px
}
.nav-bottom li {
	margin-bottom: 0
}
.nav-bottom li button {
	width: 100%;
	font-size: 16px
}
.right {
	float: right
}
.tcapitalize {
	text-transform: capitalize
}
.index4 .square {
	text-align: right
}
.index2 .square {
	text-align: right
}
.index12 b {
	font-weight: bold
}
.index12 .parallax-b5l5 {
	left: 0%;
}
ul.poi li i, ul.poi li span {
	float: left
}
ul.poi li i {
	width: 40px;
	margin: 0;
	line-height: 25px;
}
ul.poi li span {
	width: 100%;
	width: -webkit-calc(100% - 40px);
	width: -moz-calc(100% - 40px);
	width: calc(100% - 40px);
}
.cover-magazine {
	position: absolute;
	bottom: 1%;
	width: 100%
}
.magazine-link {
	margin: 0 auto;
	text-align: center;
}
.magazine-link li {
	display: inline-block;
	vertical-align: middle;
	margin: 5px;
	width: 20%
}
.magazine-link li img {
	max-width: 380px
}
.index1 .clickto {
	bottom: 70px
}
.icon-size img {
	width: 62px!important;
	max-width: inherit
}

.p64 .set-w60 {
	width: 45%
}
.p6 .square {
	padding: 5%
}
.cover-direction.product-detailR {
	width: 100%
}

@media screen and (min-width: 415px) {
.cover-direction {
	direction: rtl;
}
.directionR {
	display: inline-block;
	vertical-align: top;
	width: 49%;
	direction: ltr;
	text-align: left;
}
.directionL {
	display: inline-block;
	float: left;
	vertical-align: top;
	width: 51%;
	direction: ltr;
}
}

@media screen and (max-width: 414px) {
.address figure {
	width: 15%
}
.address ul {
	width: 78%
}
.cover-direction {
	flex-direction: column;
	display: flex;
}
.order1 {
	order: 1
}
.order2 {
	order: 2
}
.order3 {
	order: 3
}
.order4 {
	order: 4
}
.order5 {
	order: 5
}
.order6 {
	order: 6
}
.order7 {
	order: 7
}
.order8 {
	order: 8
}
.order9 {
	order: 9
}
.order10 {
	order: 10
}
}
.getting-here {
	padding-bottom: 50px
}
.getting-here button {
	white-space: nowrap
}
.address ul li:nth-child(2) {
	margin-top: 20px
}
.poi li:last-child {
	 text-align:center; margin-left:-15%
}.cd-navigation li img{ width:32px}
.poi li:last-child img{ margin:20px 10px}
.fa-fax:before {
	content: url(../images/fax.png)
}
ul.poi li i.fax {
	width: 26px!important;
	margin-right: 20px
}
u.line {
	border-bottom: solid 1px #b8222b;
	text-decoration: none
}
.rate-slide li {
	left: 0
}
.toggle-set h3 {
	margin: 0;
	width: 100%;
	float: left;
}
.toggle-set h3 a {
	xxbackground: url("../images/sprite.png") 15px 13px no-repeat;
	display: block;
	padding: 20px 10px;
	padding-left: 0;
	margin: 0;
	text-decoration: none;
	font-weight: normal;
	text-transform: uppercase;
	font-size: 20px;
	border-bottom: 2px solid #000;
	color: #333;
}
.toggle-set h3.open {
	margin-bottom: 30px
}
.xxtoggle-set h3.open a {
	background-position: 13px -25px;
 
}
.toggle-set h3 + div {
	padding: 10px;
	line-height: 20px
}
.toggle-set h3 + div p {
	padding: 15px 0;
}
.toggle-set h3 + div figure {
	text-align: center
}
.toggle-set h3 a {
	width: 100%;
	display: inline-block
}
.toggle-set h3 a:after {
	content: "\f107";
	font-family: 'FontAwesome';
	position: relative;
	float: right
}
.toggle-set h3.open a:after {
	content: "\f106";
	font-family: 'FontAwesome' 
}
/* Pre hide sections with JavaScript on
--- */
.toggle-set h3+div {
	display: none;
}
.toggle-set .close {
	opacity: 1
}
.design .style01 figure {
	margin-bottom: 0
}
.design .col-lg-8 {
	margin-top: 30px
}
.set-design1 {
	padding: 0 15px
}
.talkofus button {
	margin: 0
}
footer, footer a, foote span {
	color: #ffffff;
}
.square small {
	font-size: 16px;
	line-height: 20px;
	margin-top: 10px;
	float: left
}
.personal {
	line-height: 30px
}
.magazine-link {
	margin: 0 auto;
	width: 100%;
	text-align: center;
	position: absolute;
	bottom: 0
}
.magazine-link li {
	display: inline-block;
	vertical-align: middle;
	margin: 5px;
	width: 20%
}
.magazine-link li img {
	max-width: 380px
}
.term section {
	margin-top: 3%
}
.term em {
	font-style: italic;
	font-weight: bold
}
.nav-menu .r {
	text-align: right;
	font-size: 11px;
	margin-bottom: 4px;
	text-transform: lowercase;
	color: #fff
}
.nav-menu .r a {
	text-transform: lowercase;
	padding: 0 13px;
}
.nav-bottom button {
	margin: 0
}
h2.explor {
	text-align: center;
	padding: 20px 0 0 0
}
h2.explor.booking-t2 {
	text-align: center;
	padding: 20px 0 20px 0
}
.bt-line {
	border-top: solid 1px #000;
	margin: 10px 0
}
.footer-list ul li:first-child {
	width: 100%
}
.place button {
	min-width: 200px
}
.nav-bottom input,.nav-bottom button{ height:38px; text-align:center}
a.express{ color:#fff; background-color:#b8222b; padding:5px 10px!important; border-radius:3px ; -webkit-border-radius:3px; -moz-border-radius:3px; margin:5px 0 20px 0}
.cover-reservation{ width:100%}
ul.reservation {
    background-color: rgba(0,0,0,0.07);
    width: 45%;
    margin: 0 auto;
    padding: 1%;
}
#open-by-default-example{ padding-bottom:50px; display:inline-block}
#open-by-default-example p a{ color:#b8222b}