@font-face {
  font-family: SFDisplay;
  src: url(fonts/SF-Pro-Display-Regular.otf);
}
@font-face {
  font-family: SFDisplay;
  src: url(fonts/SF-Pro-Display-Bold.otf);
  font-weight: 700;
}
@font-face {
  font-family: SFDisplay;
  src: url(fonts/SF-Pro-Display-Black.otf);
  font-weight: 900;
}
@font-face {
  font-family: SFDisplay;
  src: url(fonts/SF-Pro-Display-Thin.otf);
  font-weight: 300;
}
@font-face {
  font-family: SFDisplay;
  src: url(fonts/SF-Pro-Display-Semibold.otf);
  font-weight: 600;
}

body {
	font-family: SFDisplay;
	color: #f6f7f8;
	background-color: #231f20;
}
h1, h2, h3, h4, h5 {
	color: #ddb359;
	font-weight: 600;
}
h1, h2 {
	font-size: 3rem;
	margin-bottom: 2rem;
	letter-spacing: 10px;
}
h2 + .divider {
	width: 60px;
	height: 3px;
	margin: auto;
	margin-top: 2rem;
	margin-bottom: 2rem;
	background-color: #6a4525;
}
h3 + .divider {
	width: 40px;
	height: 2px;
	margin: auto;
	margin-top: 1rem;
	margin-bottom: 2rem;
	background-color: #6a4525;
}
p {
	font-weight: 300;
	letter-spacing: 1px;
	margin-bottom: 2rem;
}
a {
	color: #ddb359;
	transition: all ease 0.3s;
}
a:hover,
a:focus {
	color: #ddb359;
	opacity: 0.5;
	text-decoration: none;
}
@media (min-width: 991px) {
	.divider.left {
		margin-left: 0;
	}
	.divider.right {
		margin-right: 0;
	}
}
#main-header {
	background-color: #231f20;
}
#main-menu {
	padding: 0;
	margin: 0;
	text-align: right;
}
#main-menu li {
	display: inline-block;
	list-style-type: none;
	padding: 60px 30px;
	min-width: 150px;
	text-align: center;
	position: relative;
	transition: all ease 0.3s;
	text-transform: uppercase;
}
#main-menu li:last-child {
	padding: 50px 30px;
}
#main-menu li::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	background-color: #ddb359;
	left: 50%;
	bottom: 50px;
	transform: translateX(-50%);
	transition: all ease 0.3s;
}
#main-menu li:hover:not(:last-child),
#main-menu li.active:not(:last-child) {
	background-color: #6a4525;
}
#main-menu li:hover:not(:last-child)::after,
#main-menu li.active:not(:last-child)::after {
	width: 30px;
}
#main-menu li a {
	color: #ddb359;
	text-decoration: none;
}
#main-menu li:hover a,
#main-menu li:focus a,
#main-menu li.active a {
	color: #f6f7f8;
	opacity: 1;
}
.hamburger-btn {
  display: inline-block;
  cursor: pointer;
}

.bar1, .bar2, .bar3 {
  width: 20px;
  height: 1px;
  background-color: #ddb359;
  margin: 6px 0;
  transition: 0.4s;
}

.change .bar1 {
  -webkit-transform: rotate(-45deg) translate(-9px, 6px);
  transform: rotate(-45deg) translate(-5px, 7px);
}

.change .bar2 {opacity: 0;}

.change .bar3 {
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
  transform: rotate(45deg) translate(-3px, -5px);
}

@media (max-width: 991px) {
	#main-menu li {
		display: block;
		padding-top: 15px;
		padding-bottom: 15px;
	}
	#main-menu li::after {
		bottom: 10px;
	}
	#main-menu > li > ul {
		position: unset;
		width: 100%;
	}
	#main-menu {
		max-height: 0;
		transition: max-height ease 0.4s;
		overflow: hidden;
	}
	#main-menu.active {
		max-height: 600px;
	}
	#main-menu > li > ul > li:first-child {
		margin-top: 10px;
	}
	.main-logo-wrapper {
		margin: auto;
		padding-top: 15px;
		padding-bottom: 15px;
	}
}

.btn-main {
	color: #6a4525;
    background-color: #ddb359;
    border-color: #ddb359;
}
.btn-main:hover,
.btn-main:focus {
	color: #6a4525;
    background-color: #c79f48;
    border-color: #c79f48;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(51,26,5,0.25);
}
.btn-main2 {
	color: #f6f7f8;
    background-color: #6a4525;
    border-color: #6a4525;
    border-radius: 0;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 5px;
}
.btn-main2:hover,
.btn-main2:focus {
	color: #f6f7f8;
    background-color: #c79f48;
    border-color: #c79f48;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(51,26,5,0.25);
}
#home-banner {
	position: relative;
	border-bottom: 10px solid #ddb359;
}
.search-room {
	position: absolute;
	bottom: 0;
	width: 100%;
	background-color: rgba(51,26,5,0.7);
	padding-top: 80px;
	padding-bottom: 40px;
	color: #f6f7f8;
}
.search-room .form-control {
	background-color: transparent;
	border: 1px solid #ddb359;
	border-radius: 6px;
	color: #f6f7f8;
}
::placeholder {
	color: #999 !important;
	opacity: 1;
}
.search-room .form-control:focus {
	color: #f6f7f8;
    background-color: transparent;
    border-color: #ddb359;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(51,26,5,0.25);
}
@media (max-width: 991px) {
	.search-room {
		position: unset;
	}
	.search-room form label,
	.search-room form .btn,
	.search-room form input {
		font-size: 0.8rem;
	}
}
#home-intro {
	padding-top: 90px;
	padding-bottom: 90px;
}
#home-intro .subtitle {
	font-size: 1.1rem;
}
#home-intro img {
	height: 250px;
	width: 100%;
	object-fit: cover;
}
.seperator {
	padding: 10px;
	margin-left: auto;
    margin-right: auto;
    width: 50%;
}
#home-room {	
	padding-top: 90px;
	padding-bottom: 90px;
}
.room-img {
	height: 320px;
	object-fit: cover;
	margin-bottom: 25px;
}
.room-name {
	font-weight: 600;
	margin-bottom: 50px;
}
.room-info ul {
	padding: 0;
	margin-bottom: 50px;
	line-height: 1.5rem;
    height: 7.5rem;
}
.room-info ul li {
	font-weight: 300;
	letter-spacing: 1px;
	list-style-type: none;
}
.room-booking {
	color: #ddb359;
	font-weight: 300;
}
.room-booking span {
	font-weight: 700;
}
.room-price {
	display: inline-block;
}
@media (max-width: 1199px) {
	.room-name {
		margin-bottom: 20px;
	}
	.room-info ul {
		margin-bottom: 20px;
	}
	.room-item {
		margin-bottom: 50px;
	}
	#home-room {
		padding-top: 70px;
		padding-bottom: 70px;
	}
	.seperator {
		width: 100%;
	}
}
#home-subscribe {
	background-color: #ddb359;
	padding-top: 80px;
	padding-bottom: 80px;

}
#home-subscribe h2 {
	color: #6a4525;
	font-size: 1.7rem;
	letter-spacing: 0;
	margin-bottom: 0;	
}
#home-subscribe .subscribe {
	padding-left: 50px;
	padding-right: 50px;
}
#home-subscribe .btn {
	margin: 0;
}
#home-subscribe input[name="subscribe"] {
	border-radius: 0;
	border: 1px solid #6a4525;
	margin: 0;
	padding-top: 23px;
	padding-bottom: 23px;
	background-color: #f8efdd;
}
@media (max-width: 991px) {
	#home-subscribe h2 {
		margin-bottom: 15px;
	}
	#home-subscribe input[name="subscribe"] {
		margin-bottom: 15px;
	}
}
@media (max-width: 1199px) {
	#home-subscribe h2 {
		font-size: 1.5rem;
	}
}

#footer {
	background-color: #6a4525;
	padding-top: 110px;
	padding-bottom: 90px;
	font-size: 1.1rem;
	line-height: 2.3rem;
	letter-spacing: 1px;
}
ul.info-menu {
	padding: 0
}
ul.info-menu li {
	font-weight: 300;
	list-style-type: none;
	position: relative;
	padding-left: 40px;
}
ul.info-menu li:before {
	content: '';
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background-color: #ddb359;
	color: #6a4525;
	position: absolute;
	left: 0;
	font-weight: 700;
	padding: 5px;
    line-height: 1;
    text-align: center;
    font-size: 0.9rem;
    margin-top: 3px;
}
ul.info-menu li.address:before {
	content: 'A';
}
ul.info-menu li.mobile:before {
	content: 'M';
}
ul.info-menu li.email:before {
	content: 'E';
}
ul.info-menu li.website:before {
	content: 'W';
}
ul.link-menu li {
	list-style-type: none;
}
ul.link-menu li a {
	color: #fff;
	text-transform: uppercase;
}
ul.social-menu {
	padding: 0;
}
ul.social-menu li {
	list-style-type: none;
	display: inline-block;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: #ddb359;
	text-align: center;
	padding: 10px;
    font-size: 1.9rem;
    margin-right: 15px;
}
ul.social-menu a {
	color: #fff;
}
#footer h3 {
	font-size: 1.2rem;
	font-weight: 700;
	color: #f6f7f8;
}
.footer-logo {
	padding-left: 40px;
    padding-right: 40px;
    padding-top: 20px;
}
@media (max-width: 991px) {
	#footer {
		padding-top: 70px;
		padding-bottom: 70px;
	}
	.footer-logo {
		padding-left: 40px;
		padding-right: 40px;
		margin-bottom: 50px;
		text-align: center;
	}
}

.page-title {
	padding-top: 100px;
	padding-bottom: 100px;
	background-size: cover;
	background-position: center 50%;
}
.page-title.about {
	background-image: linear-gradient(to right, rgba(51,26,5,0.7),  rgba(51,26,5,0.7)), url('img/bg/about-bg.jpg');
}
.page-title.room {
	background-image: linear-gradient(to right, rgba(51,26,5,0.7),  rgba(51,26,5,0.7)), url('img/bg/room-bg.jpg');
}
.page-title.news {
	background-image: linear-gradient(to right, rgba(51,26,5,0.7),  rgba(51,26,5,0.7)), url('img/bg/news-bg.jpg');
}
.page-title.contact {
	background-image: linear-gradient(to right, rgba(51,26,5,0.7),  rgba(51,26,5,0.7)), url('img/bg/contact-bg.jpg');
}
.page-content {
	padding-top: 50px;
	padding-bottom: 50px;
}
#about-page h2 {
	font-size: 2rem;
	letter-spacing: 5px;
	margin-top: 70px;
}
#about-page h3 {
	font-size: 1.5rem;
	margin-top: 50px;
}
#room-page .carousel-item img {
	/*height: 600px;*/
	object-fit: cover;
}
#room-page .carousel-control-prev {
	right: 100%;
	left: unset;
}
#room-page .carousel-control-next {
	left: 100%;
	right: unset;
}
#room-page .carousel-indicators li {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	margin-left: 12px;
	margin-right: 12px;
	background-color: transparent;
	border: 1px solid #d7e2e3;
	opacity: 1;
}
#room-page .carousel-indicators .active {
	background-color: #d7e2e3;
}
#room-page .carousel i {
	color: #ddb359;
}
#room-page h2 {
	font-size: 1.8rem;
	letter-spacing: 0px;
	margin: 0;
	color: #6a4525;
	transition: all ease 0.3s;
	text-transform: uppercase;
}
#room-page .room-info ul {
	margin-bottom: 20px
}
#room-page .room-booking {
	font-size: 1.2rem;
}
#room-page .room-booking span {
	font-size: 1.5rem;
}
#room-page .room-price {
	margin-bottom: 50px;
}
#room-page .list-group {
	margin-top: 70px;
	margin-bottom: 50px;
	display: block;
}
#room-page .list-group a {
	display: inline-block;
	margin-right: 25px;
	padding-right: 25px;
	opacity: 1;
	margin-bottom: 2rem;
}
#room-page .list-group a:not(:last-child) {
	border-right: 1px solid #6a4525;
}
#room-page .list-group a:hover h2,
#room-page .list-group a:focus h2,
#room-page .list-group a.active h2 {
	color: #ddb359;
}
#room-page .slide {
	display: none;
	transition: all ease 0.3s;
}
#room-page .slide.active {
	display: block;
}
@media (max-width: 991px) {
	#room-page .carousel-item img {
		/*height: 250px;*/
	}
	#room-page .carousel-control-prev {
		left: 0;
		right: unset;
	}
	#room-page .carousel-control-next {
		right: 0;
		left: unset;
	}
	#room-page h2 {
		font-size: 1rem;
	}
	#room-page .list-group a {
		margin-bottom: 1rem;
	}
}

#news-page h2 {
	font-size: 1.8rem;
	letter-spacing: 0;
	margin-bottom: 1.3rem;
}
#news-page .date {
	color: #939598;
	font-size: 1.3rem;
	margin-bottom: 3rem;
}
#news-page .content img {
	/*margin-bottom: 1.3rem;*/
}
.wp-block-image {
	margin-bottom: 2rem;
}
.wp-block-image img {
	height: auto;
}
.wp-block-image figcaption {
	text-align: center;
	font-style: italic;
	margin-top: 1rem;
	margin-bottom: 2rem;
}
#news-page.news-archive h2 {
	font-size: 1.3rem;
	/*text-transform: uppercase;*/
}
#news-page.news-archive .date {
	font-size: 1rem;
}
.news-img {
	height: 15vw;
	object-fit: cover;
}
@media (max-width: 991px) {
	.news-img {
		height: 25vw;
	}
}
@media (max-width: 767px) {
	.news-img {
		height: auto;
	}
}
.sidebar-widget-title {
	text-align: center;
	color: #fff;
	background-color: #ddb359;
	font-size: 1.8rem;
	font-weight: 600;
	padding: 7px 15px;
}
.sidebar-widget-content {
	margin-top: 60px;
}
.sidebar-widget-content ul {
	padding: 0;
	margin: 0;
}
.sidebar-widget-content ul li {
	list-style-type: none;
	padding-bottom: 37px;
	margin-bottom: 37px;
}
.sidebar-widget-content ul li:not(:last-child) {
	border-bottom: 1px solid #ddb359;
}
.sidebar-widget-content .latest-news-img {
	height: 130px;
	object-fit: cover;
}
.sidebar-widget-content .latest-news-right {
	width: 50%;
	display: inline-block;
}
.sidebar-widget-content .latest-news-title {
	font-size: 1.2rem;
}
.sidebar-widget-content .latest-news-title a {
	color: #fff;
}

#contact-page h2 {
	color: #fff;
	font-size: 1.2rem;
	letter-spacing: 0;
}
#contact-page .info-menu {
	margin-bottom: 50px;
}
#contact-page .info-menu li {
	font-size: 1.2rem;
	line-height: 2.5rem;
}
#contact-page ul.info-menu li:before {
	color: #fff;
}
#contact-page .social-title {
	font-size: 1.2rem;
	color: #ddb359;
	font-weight: 600;
	margin-bottom: 20px;
}
#contact-page .divider {
	margin-left: 0;
}

@media (max-width: 1789px) {
	body {
		font-size: 0.9rem;
	}
	#main-menu li {
		padding: 60px 20px;
		min-width: 100px;
	}
	#main-menu li:last-child {
		padding: 50px 10px
	}
	.search-room label,
	.search-room .btn,
	.search-room input {
		font-size: 0.65rem;
	}
	.room-img {
		height: 200px;
	}
	#about-page h3 {
		font-size: 1.2rem;
	}
}
@media (max-width: 991px) {
	#main-menu li {
		padding: 20px 10px;
	}
	#main-menu li:last-child {
		padding: 30px 10px
	}
}
@media (max-width: 1199px) {
	.room-img {
		height: 300px;
	}
}

@media (max-width: 1458px) {
	.footer-logo {
		padding-left: 20px;
		padding-right: 20px;
	}
	ul.social-menu li {
		margin-right: 10px;
		width: 40px;
		height: 40px;
		font-size: 1.2rem;
	}
	#footer {
		font-size: 0.9rem;
	}
	#footer h3 {
		font-size: 1rem;
	}
}
.page-link {
	background-color: transparent;
	border: 1px solid #ddb359;
	color: #ddb359;
	padding-left: 15px;
	padding-right: 15px;
}
.next.page-link,
.prev.page-link {
	padding: 10px 15px;
}
.page-item.disabled .page-link {
	background-color: transparent;
	border: 1px solid #6c757d;
}
.page-item .page-link.current {
	background-color: #ddb359;
	border-color: #ddb359;
	color: #fff;
}
.page-link:hover,
.page-link:focus {
	background-color: #ddb359;
	border-color: #ddb359;
	color: #fff;
	opacity: 0.8;
	box-shadow: none;
}

.modal-content {
	background-color: #231f20;
	transition: all ease 0.3s;
}
.modal-header {
	border-bottom: 1px solid #ddb359;
}
.modal-footer {
	border-top: 1px solid #ddb359;
}
.close,
.close:hover,
.close:focus {
	color: #fff
}
#room-modal .search-room {
	position: initial;
	background-color: transparent;
	padding-top: 10px;
	padding-bottom: 10px;
}
#room-modal .room-img {
	height: auto;
	margin-bottom: 0;
}
#room-modal .room-info ul {
	margin-top: 10px;
	margin-bottom: 10px;
	height: auto;
}
#room-modal .room-item {
	margin-bottom: 20px;
	cursor: pointer;
	/*display: none;*/
}
#room-modal .room-item.selected,
#room-modal .room-item:hover,
#room-modal .room-item:focus {
	background-color: #ddb35999;
	outline: none;
}
#room-modal .booking-info {
	display: none;
}
#room-modal .room-name {
	font-size: 1.3rem;
	margin-bottom: 10px;
}
#room-modal .room-info {
	padding-top: 10px;
	padding-bottom: 10px;
}

.datepicker-dropdown {
	background-color: #231f20e6;
}
.datepicker table tr td.day:hover,
.datepicker table tr td.focused {
	background-color: #ddb359cc;
}
.datepicker table tr td.active.active.focus, .datepicker table tr td.active.active:focus, .datepicker table tr td.active.active:hover, .datepicker table tr td.active.highlighted.active.focus, .datepicker table tr td.active.highlighted.active:focus, .datepicker table tr td.active.highlighted.active:hover, .datepicker table tr td.active.highlighted:active.focus, .datepicker table tr td.active.highlighted:active:focus, .datepicker table tr td.active.highlighted:active:hover, .datepicker table tr td.active:active.focus, .datepicker table tr td.active:active:focus, .datepicker table tr td.active:active:hover {
	background-color: #ddb359;
}
.datepicker table tr td.active.active, .datepicker table tr td.active.highlighted.active, .datepicker table tr td.active.highlighted:active, .datepicker table tr td.active:active {
	background-color: #ddb359;
}
.datepicker table tr td, .datepicker table tr th {
	width: 40px;
	height: 40px;
}
.datepicker .datepicker-switch:hover, .datepicker .next:hover, .datepicker .prev:hover, .datepicker tfoot tr th:hover {
	background-color: #ddb359;
}
.datepicker table tr td span.active.active.focus, .datepicker table tr td span.active.active:focus, .datepicker table tr td span.active.active:hover, .datepicker table tr td span.active.disabled.active.focus, .datepicker table tr td span.active.disabled.active:focus, .datepicker table tr td span.active.disabled.active:hover, .datepicker table tr td span.active.disabled:active.focus, .datepicker table tr td span.active.disabled:active:focus, .datepicker table tr td span.active.disabled:active:hover, .datepicker table tr td span.active.disabled:hover.active.focus, .datepicker table tr td span.active.disabled:hover.active:focus, .datepicker table tr td span.active.disabled:hover.active:hover, .datepicker table tr td span.active.disabled:hover:active.focus, .datepicker table tr td span.active.disabled:hover:active:focus, .datepicker table tr td span.active.disabled:hover:active:hover, .datepicker table tr td span.active:active.focus, .datepicker table tr td span.active:active:focus, .datepicker table tr td span.active:active:hover, .datepicker table tr td span.active:hover.active.focus, .datepicker table tr td span.active:hover.active:focus, .datepicker table tr td span.active:hover.active:hover, .datepicker table tr td span.active:hover:active.focus, .datepicker table tr td span.active:hover:active:focus, .datepicker table tr td span.active:hover:active:hover {
	background-color: #ddb359;
}
.datepicker table tr td span.active.active, .datepicker table tr td span.active.disabled.active, .datepicker table tr td span.active.disabled:active, .datepicker table tr td span.active.disabled:hover.active, .datepicker table tr td span.active.disabled:hover:active, .datepicker table tr td span.active:active, .datepicker table tr td span.active:hover.active, .datepicker table tr td span.active:hover:active {
	background-color: #ddb359;
}
.datepicker table tr td span.focused, .datepicker table tr td span:hover {
	background-color: #ddb359cc;
}
.datepicker table tr td.disabled, .datepicker table tr td.disabled:hover {
	color: red;
	cursor: not-allowed;
}
.datepicker table tr td.range.disabled, .datepicker table tr td.range.disabled:active {
	color: red;
}
.range-wrapper {
	position: relative;
}
input.range {
	padding-right: 50px;
}
.range-wrapper i {
	position: absolute;
	right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: #ddb359;
}

.success-icon {
	font-size: 6rem;
	color: #27AE60;
}
label.error {
	color: red;
	font-style: italic;
}
label.error::before {
	content: '*';
}

.room-type-validate {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.9);
    padding: 30px 50px;
    border-radius: 5px;
    color: red;
    border: 1px solid red;
    text-align: center;
    width: 100%;
    max-width: 350px;
    z-index: 1100;
    display: none;
}

.img-404 {
	margin-bottom: -35px;
}
.title-404 {
	letter-spacing: 2px;
	font-size: 2.5rem;
}
@media (max-width: 991px) {
	.img-404 {
		margin-bottom: 20px;
	}
	#page-404 {
		margin-bottom: 40px;
	}
}