@import url('https://fonts.googleapis.com/css2?family=Alata&family=Mitr:wght@300&display=swap');
body {
    padding: 0;
    margin: 0;
    font-family: 'Alata', 'Mitr';
    font-size: 14px;
    line-height: 1.5;
    color: #565656;
    background: #fbfbfb;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    color: inherit;
    transition: all 0.4s;
}

h1, h2, h3 {
    font-family: 'Alata', 'Mitr';
    color: #2d2727;
    font-weight: initial;
    text-transform: capitalize;
    margin: 0 !important;
    line-height: initial;
    width: 100%;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-family: 'Alata', 'Mitr';
    color: var(--second-color);
    font-weight: inherit;
    text-transform: capitalize;
    font-size: 18px;
    margin: 0;
}

p {
    margin: 15px 0;
    font-weight: lighter;
}

select {
    -webkit-appearance: inherit;
    -moz-appearance: inherit;
    list-style: none;
}
:root {
    --main-color: #ab7302;
    --second-color: #194b2e;
    --highlight-color: #19DF69;
}
::selection {
    background-color: var(--main-color);
    color: #fff;
}
.editable {
    text-align: inherit;
}
.t-arrow-top::after {
    display: none;
}

/*********************************/
/* SLIDERS */
/*********************************/
.slideshow {
    position: relative;
    width: 100%;
}
div.mc-image {
    z-index: 0!important;
}
.overlay_slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(#00000057, #00000036, #00000000);
    /*background: rgba(0, 0, 0, 0.2);*/
}

.text-slider {
    position: absolute;
    width: 90%;
    height: fit-content;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    padding: 50px;
    z-index: 5;
}

.text-slider h1 {
    color: white;
    margin: 0;
}

.text-slider p {
    color: white;
    margin: 0;
    font-family: 'Alata','Mitr';
}

.text-slider ul {
    margin: 0;
    padding: 0;
    transition: all 0.5s;
}

.text-slider li {
    animation-name: fadeInDown;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
    margin: 0;
    list-style: none;
}

.text-slider li:nth-child(1) {
    animation-delay: 0.5s;
}

.text-slider li:nth-child(2) {
    animation-delay: 0.9s;
}

.slider-arrow {
    position: absolute;
    width: 100%;
    height: 40px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 8
}

.slider-arrow a {
    position: absolute;
    opacity: 1;
    margin: 0 30px;
    cursor: pointer;
}

.slider-arrow a:hover {
    opacity: 1;
}

.slider-arrow img {
    width: 40px;
    height: auto;
}

.slider-arrow #arrow_left {
    left: 0;
}

.slider-arrow #arrow_right {
    right: 0;
}

/*********************************/
/* VIDEO LAYER */
/*********************************/
.video_layer {
    position: absolute;
    right: 139px;
    top: 55px;
    width: 77px;
    height: 18px;
    display: block;
    z-index: 10;
    border-right: 1px solid #fff;
    text-align: center;
    padding-right: 30px;
}

.video_layer .muted_layer {
    cursor: pointer;
}

.video_layer._hide {
    display: none;
}

.video_layer .muted_layer:before {
    position: absolute;
    content: "\f028";
    font-family: 'FontAwesome';
    font-size: 18px;
    color: #fff;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto 25px;
    width: 24px;
    height: 24px;
    display: block;
}

.wrap-scroll .video_layer .muted_layer:before {
    color: #3a3333;
}

.wrap-scroll .video_layer .muted_layer:after {
    background: #3a3333;
}

.video_layer .muted_layer:after {
    position: relative;
    content: "";
    height: 2px;
    width: 30px;
    background: #fff;
    border-radius: 10px;
    left: 13px;
    margin: 9px auto;
    display: block;
    transform: rotate(-140deg);
    transition: width 0.6s ease 0s;
}

.video_layer .muted_layer.active:after {
    width: 0;
}

/*********************************/
/* HEADER */
/*********************************/
.header {
    position: absolute;
    width: 100%;
    top: 30px;
    padding: 0 50px;
    transition: all .6s;
    z-index: 9;
}

.header_fixed {
    position: fixed;
    top: 0;
    height: 80px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.09) 0 0 10px;
}

.navbar-brand {
    position: relative;
    z-index: 9;
}

.header_fixed .navbar-brand {
    margin-top: 10px;
}

.navbar-brand img {
    width: auto;
    height: 85px;
    transition: all .8s;
    /*filter: brightness(0) invert(1);*/
}

.header_fixed .navbar-brand img {
    width: auto;
    filter: none;
    height: 60px;
}

.show_menu {
    position: absolute;
    width: 100%;
    top: 0;
    color: #fff;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 6;
}

.header_fixed .show_menu {
    color: #4d4542;
}

.show_menu ul {
    padding: 0;
    margin: 0;
}

.show_menu li {
    position: relative;
    list-style: none;
    display: inline-block;
}

.show_menu li a {
    display: inline-block;
    padding: 0 10px;
    line-height: 70px;
}

.header_fixed .show_menu li a {
    line-height: 80px;
}

.show_menu li a:hover,
.show_menu li a.active {
    color: #275758;
}

.book_fixed {
    position: relative;
    padding: 10px 20px;
    background: #275758;
    color: #fff;
    top: 0;
    display: none;
    transition: all .6s;
    border-radius: 30px;
    cursor: pointer;
    line-height: normal;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
    z-index: 9;
}

.book_fixed:hover {
    color: #ffffff;
    background: var(--second-color);
}

.header_fixed .book_fixed {

    animation-name: fadeIn;
    display: inline-block;
}

.pull-right div {
    display: inline-block;
    line-height: 70px;
    padding: 0;
}

.pull-right div:last-child {
    padding: 0 0 0 10px;
}

.header_fixed .pull-right div {
    line-height: 80px;
}

/****** SUB MENU ******/
.info_detail {
    position: absolute;
    white-space: nowrap;
    transform: translateY(-1em);
    left: 0;
    padding: 0;
    text-align: left;
    background: white;
    color: #4a3e3b;
    opacity: 0;
    pointer-events: none;
    transition: all .6s;
}

.sub_info:hover .info_detail {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.info_detail a {
    padding: 8px 15px !important;
    transition: all .5s;
    line-height: normal !important;
}

.info_detail li:hover {
    background: #275758;
}

.info_detail li:hover a {
    color: #fff !important;
}

.info_detail li {
    float: left;
    width: 100%;
}

/****** LANGUAGE ******/
.nav-lang {
    position: relative;
    color: #fff;
}

.nav-lang label {
    position: relative;
    /*padding: 10px 15px 15px;*/
    cursor: pointer;
    margin-right: 10px;
}

.nav-lang label .arrow-lang {
    margin-left: 6px;
    transform: rotate(0);
    transition: all .6s;
}

.nav-lang label .arrow-lang.rotate {
    transform: rotate(180deg);
}

.nav-lang ul {
    padding: 0;
    margin: 0;
}

.nav-lang li {
    list-style: none;
}

.nav-lang .lang_parent {
    position: absolute;
    width: auto;
    white-space: nowrap;
    transform: translateY(-2em);
    left: 0;
    padding: 0 15px;
    text-align: center;
    background: white;
    color: #4a3e3b;
    opacity: 0;
    pointer-events: none;
    transition: all .6s;
    box-shadow: rgba(0, 0, 0, 0.09) 0 0 10px;
}

/*.nav-lang .lang_parent:before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    width: 0;*/
/*    height: 0;*/
/*    top: 0;*/
/*    box-sizing: border-box;*/
/*    border: 6px solid #000;*/
/*    border-color: #fff;*/
/*    transform-origin: 0 0;*/
/*    transform: rotate(135deg);*/
/*    box-shadow: rgba(0, 0, 0, 0.05) -2px 2px 2px 0;*/
/*    margin-left: 7px;*/
/*}*/

.nav-lang .lang_parent.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-1em);
}

.nav-lang .lang_parent li {
    color: #4d4542;
    /*border-bottom: 1px solid #d8d8d8;*/
    line-height: normal;
}

.nav-lang .lang_parent li:last-child {
    border: 0;
}

.nav-lang .lang_parent li a {
    width: 100%;
    display: inline-block;
    padding: 8px 0;
}

.nav-lang .lang_parent li a:hover {
    color: var(--main-color);
}
.nav-lang ul>li .lang_parent li.active {
    display: none;
}

.header_fixed .nav-lang {
    color: #4d4542;
}

.pull-right {
    position: relative;
    z-index: 9;
}

/*********************************/
/* HAMBURGER */
/*********************************/
.ui-style {
    position: absolute;
    width: 35px;
    height: 20px;
    top: 0;
    bottom: 0;
    right: 50px;
    margin: 20px 0;
    cursor: pointer;
    z-index: 11;
    display: none;
}

.style-icon {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.style-icon .amburgers1,
.style-icon .amburgers2,
.style-icon .amburgers3 {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: .23s ease-in-out;
}
.style-icon .amburgers1 {
    top: 0;
}

.style-icon .amburgers2 {
    top: 7px;
}

.style-icon .amburgers3 {
    top: 14px;
}
.style-icon .amburgers4,
.style-icon .amburgers5 {
    position: absolute;
    width: 0;
    height: 2px;
    top: 8px;
    left: 0;
    right: 0;
    margin: auto;
    background: #fff;
    border-radius: 2px;
    transition: all 0.4s ease-in-out, transform 0.4s ease-in-out 0.4s;
}
.style-icon .amburgers4 {
    transform: rotate(-90deg);
}

.open-bar div:nth-child(1), .open-bar div:nth-child(2),
.open-bar div:nth-child(3) {
    transform: scale(0);
}

.open-bar div:nth-child(4), .open-bar div:nth-child(5) {
    width: 30px;
}

.style-icon.open-bar .amburgers4 {
    transform: rotate(-45deg);
}

.style-icon.open-bar .amburgers5 {
    transform: rotate(45deg);
}

.wrap-scroll .ui-style {
    margin: 35px 0;
}

.wrap-scroll .amburgers1, .wrap-scroll .amburgers2,
.wrap-scroll .amburgers3, .wrap-scroll .amburgers4,
.wrap-scroll .amburgers5 {
    background: #31322d;
}

.style-icon.open-bar .amburgers1, .style-icon.open-bar .amburgers2,
.style-icon.open-bar .amburgers3, .style-icon.open-bar .amburgers4,
.style-icon.open-bar .amburgers5 {
    background: #31322d;
}

.header_fixed .ui-style {
    margin: 30px 0;
}

.header_fixed .amburgers1,
.header_fixed .amburgers2,
.header_fixed .amburgers3,
.header_fixed .amburgers4,
.header_fixed .amburgers5 {
    background: #31322d;
}

.ui-icon-plus {
    position: absolute;
    width: 20px;
    height: 20px;
    right: 0;
    top: 8px;
    display: none;
}

.ui-icon-plus:before,
.ui-icon-plus:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    margin: auto;
    display: block;
    transition: all 0.6s;
}

.ui-icon-plus:before {
    width: 1px;
    height: 20px;
}

.ui-icon-plus:after {
    width: 20px;
    height: 1px;
}

.ui-icon-plus.active:before {
    display: none;
}

/*********************************/
/* BODY */
/*********************************/
.main {
    position: relative;
    width: 100%;
    text-align: center;
}

/*.title:before {*/
/*    content: "";*/
/*    background: url("../images/icon/favicon.png") no-repeat;*/
/*    width: 40px;*/
/*    height: 40px;*/
/*    display: block;*/
/*    margin: auto;*/
/*}*/

.bg_color {
    background: #275758 url("../images/icon/background-color.png") repeat;
    color: #fff;
    background-size: 220px;
}

.bg_color h2 {
    color: #fff;
}

.bg_white {
    background: #fff url('../images/icon/bg-white.png');
}
.bg_white .box_main h3 {
    color: var(--second-color);
    font-size: 16px;
}
.bg_white .template_room .box_main p {
    color: #433c3a;
}
.bg_white .template_room.owl-theme .owl-dots .owl-dot span {
    background: rgba(143, 95, 0) !important;
    border: 1px solid rgba(143, 95, 0) !important;
}
.side-main {
    margin-top: 30px;
}
.primary_box {
    position: relative;
    padding: 50px 0;
    display: inline-block;
    width: 100%;
}

.primary_box.show_content {
    padding: 150px 0 50px;
}

.primary_side {
    position: relative;
    padding: 0;
    display: inline-block;
    width: 100%;
}

.main_photos {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: flex;
}

.template_box .col-xs-6:nth-child(1) {
    float: right;
    transform: none!important;
}
.template_room .col-xs-6{
    transform: none!important;
}

.box_main {
    position: relative;
    width: 100%;
    height: 450px;
    padding: 50px;
    display: flex;
    color: #565656;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    text-align: left;
    z-index: 1;
}
.page_info .box_main {
    /*height: auto;*/
    padding: 50px 50px 50px 0;
    /*display: block;*/

}
.bg_color .box_main h3 {
    font-family: 'Alata', 'Mitr';
    color: var(--second-color);
    font-size: 16px;
}

.bg_color .box_main{
    padding: 50px 50px 50px 0;
}
.bg_color .box_main a{
    margin-top: 15px;
}
.box_main h2 {
    width: 100%;
    color: #fff;
}

.box_main h4 {
    width: 100%;
    color: var(--second-color)!important;
    font-size: 16px;
}

.box_main p,.box_main .editable {
    width: 100%;
}
.box_main .editable {
    text-align: initial;
}
.template_facilities .box_main {
    text-align: center;
    justify-content: center;
    padding: 30px;
    color: #433c3a;
    background: #fff url("../images/icon/bg-white.png");
    background-size: 220px;
}
.template_facilities .box_main p{
    margin: 0;
}
.template_facilities .box_main .btn_main{
    margin-top: 25px;
}

.slider-counter {
    position: absolute;
    right: 0;
    margin-top: 15px;
    color: #fff;
}

.btn_main {
    position: relative;
    padding: 10px 20px;
    border-radius: 0;
    background: var(--second-color);
    border: none;
    display: inline-block;
    color: #ffffff;
    outline: none;
    text-transform: capitalize;
    transition: all .6s;
    border-radius: 30px;
}

.btn_main:hover {
    background: var(--highlight-color);
    color: #fff;
}

.view_all {
    font-family: 'Alata', 'Mitr';
    position: relative;
    display: inline-block;
    margin-top: 20px;
    float: right;
}

.view_all span {
    position: relative;
    display: inline-block;
    left: 0;
    vertical-align: middle;
    margin-left: 6px;
    transition: all .4s;
    color: var(--second-color);
}

.view_all:hover span {
    left: 6px;
}

.item_box {
    padding-top: 30px;
}

p + .item_box, .wrapper-filter-controls + .item_box {
    padding-top: 15px;
}

.error_404 {
    font-size: 72px;
}

/*********************************/
/* STYLE HOTEL FACILITIES */
/*********************************/
.hotel_facilities {
    position: relative;
    text-align: left;
}

.hotel_facilities img {
    height: 40px;
}
.hotel_facilities p {
    font-family: 'Alata', 'Mitr';
    margin: 0 0 5px;
    text-transform: capitalize;
}
.hotel_facilities .item_box {
    position: relative;
    height: auto;
    padding: 30px 0 30px 30px;
    text-align: left;
}

.hotel_facilities .line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 200px;
    height: 100%;
    border-left: 1px solid #dbe2e2;
    border-top: 1px solid #dbe2e2;
    border-bottom: 1px solid #dbe2e2;
}

.hotel_facilities .line:before,
.hotel_facilities .line:after {
    content: "";
    position: absolute;
    right: 0;
    width: 1px;
    height: 30px;
    border-right: 1px solid #dbe2e2;
}

.hotel_facilities .line:before {
    top: 0;
}

.hotel_facilities .line:after {
    bottom: 0;
}

.slide_home .mc-image:nth-child(2) {
    background-position: bottom 10% center;
}

/*********************************/
/* CONTENT CHILD */
/*********************************/
.primary_child {
    position: relative;
    padding: 0 0 50px;
    display: inline-block;
    width: 100%;
}

.content_child {
    position: relative;
    width: 100%;
}

.content_child .item {
    position: relative;
    margin-bottom: 50px;
    display: inline-block;
    width: 100%;
}

.content_child .item:last-child {
    margin-bottom: 0;
}

.content_child .item:nth-child(even) .col-xs-7 {
    float: right;
}

.content_child .main_photos {
    height: 550px;
}

.content_child .col-xs-6 {
    position: absolute;
    width: 47%;
    height: 400px;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 1px solid #dedede;
}

.content_child .box_main {
    padding-left: 100px;
    height: 100%;
}

.content_child .item:nth-child(even) .col-xs-6 {
    right: auto;
    left: 0;
}

.content_child .item:nth-child(even) .col-xs-6 .box_main {
    padding-left: 50px;
    padding-right: 100px;
}

.content_child .box_main h2{
    color: #1a1819;
}

/*********************************/
/* PAGE INFO */
/*********************************/
.page_info {
    text-align: left;
}

.page_info .box_main {
    color: #433c3a;
}

.amenities {
    position: relative;
    width: 100%;
    text-transform: capitalize;
    text-align: left;
    display: inline-block;
    margin-bottom: 30px;
}

.amenities:last-child {
    margin-bottom: 0;
}
.amenities h4 {
    color: #fff;
    margin: 0 0 15px;
}
.amenities img {
    height: 26px;
    margin-right: 10px;
    vertical-align: middle;
    filter: brightness(0) invert(1);
}

.amenities .row_amenities {
    margin-left: -10px;
    margin-right: -10px;
}

.amenities .row_amenities [class*=col-xs-] {
    padding: 10px;
}

.other_room .item {
    position: relative;
}

.other_room .detail_room {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: left;
    padding: 50px 25px;
    color: #fff;
    z-index: 2;
}

.other_room .detail_room h3 {
    color: #fff;
}

.other_room .detail_room p {
    margin: 0;
}

.other_room .btn_main {
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 30px 0 0;
    z-index: 2;
}

.other_room .main_photos {
    transform: scale(1);
    transition: all .6s;
}
/*.main.other {*/
/*    display: none;*/
/*}*/

.main.other_facilities h2 {
    color: #fff;
}
.main.other_facilities .owl-theme .owl-dots .owl-dot.active span {
    background: #fff;
}
.main.other_facilities .owl-theme .owl-dots .owl-dot span {
    background: #fff;
    border: 1px solid #fff;
}
.overlay_box {
    position: relative;
    overflow: hidden;
}

.overlay_box:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 250px;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 1);
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.50));
    z-index: 1;
}

.other_room .item:hover .main_photos {
    transform: scale(1.05);
}

.background_positionRight {
    object-position: right;
}

/*********************************/
/* GALLERY */
/*********************************/
.gallery {
    position: relative;
    width: 100%;
}

.row_gallery {
    margin-right: -10px;
    margin-left: -10px;
}
.row_gallery [class*=col-xs-] {
    padding: 10px;
}

.row_gallery li {
    padding: 10px;
}

.gallery ul {
    padding: 0;
    margin: 0;
}

.gallery ul li {
    float: left;
    list-style: none;
    display: none;
}
.gallery ul li:nth-child(1) .main_photos {
    height: 450px;
}
.gallery ul li:nth-child(2) .main_photos ,
.gallery ul li:nth-child(3) .main_photos  {
    height: 215px;
}
.gallery ul li:nth-child(1),
.gallery ul li:nth-child(2),
.gallery ul li:nth-child(3) {
    width: 50%;
}

.gallery ul li:nth-child(1),
.gallery ul li:nth-child(2),
.gallery ul li:nth-child(3) {
    display: block !important;
}
.all_gallery {
    float: none;
}

.lg-sub-html h4 {
    color: #fff !important;
}

.box_gallery {
    position: relative;
    width: 100%;
    display: inline-block;
    padding: 0 50px 50px;
    overflow: hidden;
}
.view, .item_img_box {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.item_img_box .main_photos {
    transform: scale(1);
    transition: all .6s;
    display: flex;
}

.item_img_box .second_photos {
    width: 100%;
    height: 215px;
    transform: scale(1);
    transition: all .6s;
    display: flex;
    object-fit: cover;
}

.view:hover .main_photos,
.view:hover .second_photos {
    transform: scale(1.05);
    filter: brightness(60%);
}

.look_img {
    position: absolute;
    width: 100%;
    height: 50px;
    top: 0;
    bottom: 0;
    margin: auto;
    opacity: 0;
    transition: all .6s;
}

.look_img span {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    color: #fff;
    font-size: 14px;
    padding: 20px 10px;
    /*text-transform: uppercase;*/
    display: inline-block;
    letter-spacing: 1px;
}

.look_img i {
    font-size: 36px;
}

.look_img p {
    margin: 0;
}

.view:hover .look_img {
    opacity: 1;
}

.lg-dropdown {
    display: none;
}

.filter-controls {
    position: relative;
}

.filter-controls ul {
    padding: 0;
    margin: 0;
}

.filter-controls ul li {
    display: inline-block;
    list-style: none;
    cursor: pointer;
    text-transform: capitalize;
    transition: all .4s;
    opacity: .4;
    margin: 0 10px;
}

.filter-controls ul li.active, .filter-controls ul li:hover {
    opacity: 1;
    color: var(--main-color);
}

.lg-actions .lg-next, .lg-actions .lg-prev {
    border: 0;
}

/*********************************/
/* CONTACT */
/*********************************/

.label-txt {
    margin: 0 0 15px;
    text-transform: capitalize;
}
.contact {
    width: 900px;
    margin: auto;
    text-transform: capitalize;
}
.contact .row {
    margin-right: -10px;
    margin-left: -10px;
}
.contact .row [class*=col-xs-] {
    position: relative;
    text-align: left;
    padding: 10px;
    outline: none;
}

.contact input {
    position: relative;
    width: 100%;
    background: none;
    border: 1px solid #e0e0e0;
    padding: 10px 15px 10px 35px;
    outline: none;
    text-transform: capitalize;
}

.contact input:focus::placeholder {
    color: transparent;
    transition: all 0.3s;
}

.contact input::placeholder {
    color: #4d4542;
}

.notificationAtInput {
    border: 1px solid #e50000 !important;
}

.contact textarea {
    position: relative;
    width: 100%;
    background: none;
    border: 1px solid #e0e0e0;
    padding: 10px 15px 10px 35px;
    outline: none;
    text-transform: capitalize;
}

.icon_contact {
    position: absolute;
    width: 20px;
    left: 25px;
    top: 24px;
}
.contact input + label {
    font-weight: lighter;
    margin-top: 8px;
    color: #c30f0f;
    display: none;
}

.contact  label i {
    position: absolute;
    right: 22px;
    bottom: 54px;
}
.notificationAtInput + label {
    display: block !important;
}
.show_content a:hover {
    color: var(--second-color);
}

/*********************************/
/* FOOTER */
/*********************************/
.bg_footer.bg_white {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 405px;
    background: #fff url("../images/icon/background-color.png");
    background-size: 220px;
}

.bg_footer {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -50px;
    height: 282px;
}

.footer {
    position: relative;
    width: 100%;
    display: inline-block;
    padding: 50px 0 0;
    text-align: left;
}

.footer .col-xs-4:nth-child(2) {
    text-align: center;
}

.footer .col-xs-4:nth-child(3) {
    text-align: right;
}

.social, .contact_footer {
    position: relative;
    margin: 15px 0;
}
.footer h2{
    font-size: 16px;
}
.social .images_icon {
    object-fit: contain;
    /* display: inline-block; */
    width: auto;
    height: 23px;
    -webkit-mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    background: var(--second-color);
    vertical-align: middle;
}
.social a {
    position: relative;
    width: 45px;
    height: 45px;
    text-align: center;
    border: 1px solid var(--second-color);
    color: var(--second-color);
    border-radius: 50%;
    display: inline-block;
    padding: 10px;
    margin: 0 5px;
    background: #fff;
}

.social a:hover {
    background: var(--second-color);
    color: #fff;
}
.social a:hover .images_icon{
    background: #fff;
}

.contact_footer i {
    margin-right: 5px;
}

.contact_footer a:hover,
.copyright a:hover {
    color: var(--second-color);
}
.contact_footer img {
    margin-right: 5px;
}

.map {
    padding-top: 25px;
    display: inline-block;
    width: 100%;
}

.copyright {
    position: relative;
    width: 100%;
    text-align: center;
    padding: 15px 25px;
    font-size: 14px;
    background: #275758;
    color: #fff;
}

.sitemap>ul {
    padding-left: 0;
}
.sitemap ul {
    width: 100%;
    margin: 0;
    text-align: left;
}
.sitemap ul li {
    padding: 6px 0;
    list-style: none;
}
.sitemap ul li ul li {
    list-style: disc;
}


.day, .reservation-check select{
    font-family: 'Alata', 'Mitr';
    line-height: initial;
}
.btnbook_reser{
    background: var(--second-color) !important;
    color: #fff;
    border-radius: 30px;
}
.best_rate p{
    color: #fff;
}
.day,
.reservation-check select{
    color: var(--second-color);
}
.hotel_facilities{
    text-align: center;
}
.owl-carousel .owl-stage{
    display: inline-block;
    margin: auto;
}
.hotel_facilities .item_box .images_icon {
    object-fit: cover;
    display: inline-block;
    width: 40px;
    height: 40px;
    -webkit-mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    background: #534039;
    margin-bottom: 10px;
    vertical-align: text-bottom;
}
.row_amenities .images_icon {
    object-fit: cover;
    display: inline-block;
    width: 30px;
    height: 30px;
    -webkit-mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    background: #ffffff;
    margin-right: 10px;
    vertical-align: middle;
}
.show_content h2{
    color: var(--second-color);
    font-size: 16px;
    font-family: 'Alata', 'Mitr';
}
.main_info h4, .text_reser{
    color: #565656;
}
.best_rate label{
    color: #fff;
    font-size: 16px;
    display: inherit;
    font-weight: bold;
}
.template_room .box_main p{
    color: #ffffff;
}
.up .t-datepicker-day{
    bottom: 125px!important;
}
.overlay_gallery .main_photos{
    height: 350px;
}
.details_termsconditions{
    text-align: left;
    margin-top: 30px;
}
.details_termsconditions h3{
    font-size: 20px;
}
.details_termsconditions p{
    margin-top: 0;
}
.details_termsconditions ul{
    margin: 25px 0 0;
}
.details_termsconditions li{
    padding: 10px 0;
}
[data-toggle="collapse"]:after {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f105";
    transform: rotate(90deg) ;
    transition: all linear 0.25s;
    float: right;
}
[data-toggle="collapse"].collapsed:after {
    transform: rotate(0deg) ;
}
.collapse {
    visibility: inherit!important;
}
.box_termsconditions a {
    width: 100%;
    display: inline-block;
    background: #edf6f7;
    padding: 10px;
    margin: 5px 0;
}
.termsconditions_body{
    padding: 15px 30px;
}

.banner-krajokkaewkhaoyai {
    position: absolute;
    bottom: 30px;
    right: 50px;
    z-index: 5;
}
.banner-krajokkaewkhaoyai img {
    width: 200px;
    height: auto;
}
.info_room .editable.page_info li {
    margin: 0;
    padding: 0 0 0 25px;
    list-style: none;
    background-image: url("../images/icon/checked.png?v=1");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 16px;
}
.info_room .editable.page_info ul {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    margin-top: 10px;
    padding-left: 0;
}
.info_room #gallery li {
    width: 20%;
}
.section_info .page_info li {
    width: 100% !important;
}