@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400..600&family=IBM+Plex+Sans+Thai&display=swap');
@font-face {
    font-family: 'sanford';
    src: url('../font/sanford.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;

}

:root {
    --font-family: 'Archivo', 'IBM Plex Sans Thai';
    --font-family-tile: 'sanford', 'IBM Plex Sans Thai';
    --font-family-thai: 'IBM Plex Sans Thai', 'IBM Plex Sans Thai';
    --black: #171716;
    --dark: #5d5a53;
    --grey: #4d4c4b;
    --light-grey: #eaeaea;
    --white: #fff;
    --overlay: 45, 44, 42;

}

body {
    padding: 0;
    margin: 0;
    font-family: var(--font-family);
    font-size: 15px;
    color: var(--grey);
    line-height: 1.5;
    background: #f6f5f4;
    overflow-x: hidden;
    font-weight: lighter;
}
body.thai_lang {
    font-family: var(--font-family-thai)
}

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

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

h1, h2, h3, h4 {
    font-family: inherit;
}

h1, h2, h3 {
    font-family: var(--font-family-tile);
    font-weight: lighter;
    text-transform: uppercase;
    margin: 0;
    color: var(--black);
    line-height: 1.1;
}

h1 {
    font-size: 44px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-weight: lighter;
    text-transform: uppercase;
    font-size: 16px;
    color: var(--color-primary);
    margin: 0;
}

p {
    margin: 8px 0 15px;
}

select {
    -webkit-appearance: inherit;
    -moz-appearance: inherit;
    list-style: none;
}

/****************************/
/*  HEADER  */
/****************************/

.section_menu {
    position: fixed;
    width: 100px;
    top: 0;
    left: 0;
    z-index: 9;
    transition: all 0.5s;
    font-family: var(--font-family-tile);
    box-shadow: rgba(0, 0, 0, 0.19) 0 0 10px;
}

.box_icon {
    position: relative;
    background-color: var(--white);
    padding: 50px 0;
    z-index: 2;
}

.section_menu .box_icon > div {
    display: block;
    margin: 50px 0 0;
}

.section_menu .box_icon > div:nth-child(1) {
    margin: auto;
}

.section_menu .box_icon > div:last-child {
    margin: 60px auto 0;
}

.section_menu .box_icon .logo {
    padding: 0 10px;
}

.section_menu .box_icon .logo img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/*  MENU HAMBURGER  */
.hamburger-menu .show_hamburger {
    position: relative;
    width: 40%;
    height: 22px;
    margin: auto;
    transform: rotate(0deg);
    /*transition: .5s ease-in-out;*/
    cursor: pointer;
    z-index: 10;
}

.hamburger-menu span {
    position: absolute;
    background: var(--dark);
    height: 1px;
    width: 100%;
    display: block;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.hamburger-menu span:nth-child(1) {
    top: 0;
}

.hamburger-menu span:nth-child(2) {
    top: 10px;
}

.hamburger-menu span:nth-child(3) {
    top: 20px;
}

.hamburger-menu .show_hamburger.open {
    top: 25px;
    right: -75px;
}

.hamburger-menu .show_hamburger.open span:nth-child(1) {
    top: 18px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.hamburger-menu .show_hamburger.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.hamburger-menu .show_hamburger.open span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.hamburger-menu .show_hamburger.open span {
    background-color: var(--white);
}

.hamburger-menu .show_hamburger:hover span:nth-child(1) {
    width: 50%;
}

.hamburger-menu .show_hamburger:hover span:nth-child(3) {
    width: 80%;
}

.hamburger-menu .show_hamburger.open:hover span {
    width: 100%;
}

/** TAB MENU **/
.box-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(-50%);
    display: block;
    opacity: 0;
    pointer-events: none;
    transition: all 1s;
    padding: 150px 100px 0;
    background: rgba(0, 0, 0, 0.9);
    color: var(--light-grey);
    z-index: 9;
}

.box-menu.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}


.box-menu .menu > div {
    padding: 0;
    margin: 0;
    width: 50%;
    float: left;
}

.box-menu .menu > div:nth-child(1) {
    padding: 0 0 15px;
}

.box-menu .menu nav {
    text-transform: uppercase;
    font-size: 24px;
}

.box-menu .menu nav ul {
    padding: 0;
    margin: 0;
}

.box-menu .menu nav ul li {
    list-style: none;
    padding: 10px 0;
}

.box-menu .menu nav ul li a:hover {
    margin-left: 10px;
    color: var(--color-primary);
    transition: all 0.3s ease-in 0s;
}

.box-menu .menu nav ul li .active {
    color: var(--color-primary);
}

.box-menu .menu .contact_header h4 {
    position: relative;
    font-family: var(--font-family-tile);
}

.box-menu .menu .contact_header h4:before {
    content: "";
    width: 50px;
    height: 1px;
    background-color: var(--grey);
    display: inline-block;
    margin: auto 5px;
    vertical-align: middle;
}

.box-menu .menu .contact_header > div {
    font-family: var(--font-family);
    margin-bottom: 30px;
}

.box-menu .menu .contact_header > div:last-child {
    margin-bottom: 0;
}

.box-menu .contact_header .list_contact i {
    vertical-align: middle;
    margin-right: 5px;
}

.box-menu .follow h4 {
    margin-bottom: 8px;
}

.box-menu .follow a {
    border: 1px solid var(--light-grey);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0 4px;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    display: inline-block;
    text-align: center;
    float: left;
    color: var(--light-grey);
    font-size: 18px;
    padding: 8px;
}

.box-menu .follow a.size_tripadvisor {
    font-size: 22px;
    padding: 5px;
}

.box-menu .contact_header .follow a:hover {
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    webkit-animation-name: swing;
    animation-name: swing;
}

.box-menu .contact_header a:hover {
    color: var(--color-primary);
}

.call_head {
    position: absolute;
    right: 100px;
    top: 30px;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    z-index: 1;
}

.call_head a {
    margin-left: 5px;
}

.call_head a:hover {
    color: var(--color-primary);
}

/** LANG HEADER **/

.nav-lang {
    position: relative;
    color: var(--dark);
    text-align: center;
    transform: rotate(-90deg);
    display: flex;
}

.nav-lang a {
    position: relative;
    padding: 0 10px;
    opacity: .6;
}

.nav-lang a:after {
    content: '';
    position: absolute;
    width: 1px;
    height: 25px;
    background: var(--dark);
    display: block;
    top: 0;
    bottom: 0;
    right: 2px;
    margin: auto;
    transform: rotate(25deg);
}

.nav-lang a:last-child {
    padding: 0 0 0 10px;
}

.nav-lang a:last-child:after {
    display: none;
}

.nav-lang a:hover {
    opacity: 1;
    color: var(--color-primary);
}

.nav-lang a.active {
    opacity: 1;
}

/** BOOK NOW HEADER **/

.section_menu .book_now,
.book_mobile {
    font-size: 15px;
    position: relative;
    cursor: pointer;
    height: 100px;
    color: var(--white);
    background-color: var(--color-primary);
    padding: 31px 15px;
    display: flex;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
    transition: all .6s;
    text-transform: uppercase;
    font-weight: lighter;
    letter-spacing: 2px;
}

.section_menu .book_now:hover {
    background-color: var(--dark);
    color: #fff;
}

.book_mobile {
    display: none;
    height: auto;
    padding: 20px 15px;
}

/****************************/
/*  SLIDE SHOW  */
/****************************/

.slideshow {
    position: relative;
}

.overlay_slide {
    width: 100%;
    z-index: 1;
    height: 100%;
    top: 0;
    position: absolute;
    left: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.5s;
}

.text_slide {
    position: absolute;
    width: 60%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    text-align: center;
    top: 0;
    margin: auto;
}

.text_slide h2 {
    margin: 0;
    color: var(--white);
    font-size: 50px;
}

.text_slide p {
    text-transform: none;
    margin: 0;
}

.text_slide ul {
    margin: 0;
    padding: 0;
    transition: all 0.5s;
}

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


.text_slide li:nth-child(1) {
    animation-delay: 0.2s;
}

.text_slide li:nth-child(2) {
    animation-delay: 0.5s;
}

.line_slider {
    position: absolute;
    bottom: -7px;
    width: 100%;
    z-index: 3;
}

.line_slider img {
    width: 100% !important;
    left: 0;
    right: 0;
    margin: 0 !important;
    background-repeat: no-repeat;

}


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

.scroll a {
    position: absolute;
    bottom: 0;
    left: 48%;
    z-index: 2;
    display: inline-block;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    color: #fff;
    transition: opacity .3s;
    cursor: pointer;
    padding-top: 70px;
}

.scroll a span {
    position: absolute;
    top: 0;
    left: 50%;
    width: 24px;
    height: 24px;
    margin-left: -12px;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: sdb05 1.5s infinite;
    animation: sdb05 2s infinite;
    box-sizing: border-box;
}


.scroll a:hover {
    opacity: .5;
}

@-webkit-keyframes sdb05 {
    0% {
        -webkit-transform: rotate(-45deg) translate(0, 0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        -webkit-transform: rotate(-45deg) translate(-20px, 20px);
        opacity: 0;
    }
}

@keyframes sdb05 {
    0% {
        transform: rotate(-45deg) translate(0, 0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: rotate(-45deg) translate(-20px, 20px);
        opacity: 0;
    }
}

/***************************/
/* BODY */
/***************************/
.container {
    padding: 0;
}

.item_box {
    padding-top: 50px;
}

hgroup {
    margin-bottom: 15px;
}
main {
    overflow: hidden;
}
.main_section {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
}

.description {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 100px 0;
    text-align: center;
}

.description .col-xs-6:nth-child(1) {
    float: right;
}

.description .col-xs-6:nth-child(2) {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    padding-right: 50px;
    text-align: left;
}

.images_description {
    position: relative;
}

.images_description:before {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100px;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 0;
}

.images_description img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.tagline {
    position: relative;
    padding-left: 60px;
    margin-bottom: 6px;
}

.tagline:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 50px;
    height: 1px;
    left: 0;
    background: var(--color-primary);
}

.button-link {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    text-align: center;
    color: var(--color-primary);
    background: none;
    border: 1px solid var(--color-primary);
    padding: 12px 25px;
    margin-top: 10px;
    overflow: hidden;
    font-size: 14px;
}

.button-link:before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-primary);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.button-link:hover:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.button-link:hover {
    color: var(--white);
}

.button-link span {
    position: relative;
    z-index: 1;
}

.button-link.book {
    background: var(--color-primary);
    color: #fff;
    border: 0;
}

.button-link.book:before {
    background: var(--black);
}

.button-info {
    text-transform: uppercase;
    font-size: 16px;
    padding-bottom: 10px;
    position: relative;
    text-align: center;
    color: var(--color-primary);
}

.button-info img {
    width: 10px !important;
    margin-bottom: 0 !important;
    vertical-align: middle;
}

.button-info span {
    margin-left: 10px;
    vertical-align: middle;
    transition: all 0.9s;
}

.button-info span:hover {
    margin-left: 20px;
    transition: all 0.9s;
}

.default_img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}


/**** SECTION ROOM HOMEPAGE ****/

.our_rooms h3 {
    color: var(--white);
}

.our_rooms .item {
    position: relative;
    width: 100%;
    overflow: hidden;

}

.our_rooms .default_img {
    position: relative;
    transform: scale(1.06) translateX(0) rotate(.01deg);
    transition: transform .5s cubic-bezier(.44, .81, .45, .96);
}

.our_rooms figure:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 250px;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.our_rooms figcaption {
    position: absolute;
    width: 100%;
    height: 80px;
    bottom: 0;
    margin: auto;
    text-align: right;
    padding: 0 50px;
    color: #fff;
    transition: all .6s;
    z-index: 1;
}

.our_rooms figcaption p {
    opacity: 0;
    transition: all .6s;
}

.our_rooms figure:hover figcaption {
    height: 120px;
}

.our_rooms figure:hover p {
    opacity: 1;
}

.our_rooms h4 {
    position: absolute;
    right: -15px;
    top: 100px;
    color: #fff;
    font-size: 12px;
    letter-spacing: 2px;
    transform: rotate(90deg);
    z-index: 1;
}
.thai_lang .our_rooms h4 {
    right: 15px;
    top: 55px;
    font-size: 14px;
}
.thai_lang .our_rooms.other_fac h4 {
    right: -15px;
    top: 100px;
}

.our_rooms .item:hover .default_img {
    transform: scale(1.06) translateX(8px) rotate(.01deg);
}

/**** SECTION FACILITIES HOMEPAGE ****/
.our_facilities {
    position: relative;
}

.description .our_facilities .col-xs-6:nth-child(1) {
    float: left;
}

.description .our_facilities .col-xs-6:nth-child(2) {
    height: auto;
    display: block;
    padding: 0;
}

.detail-box {
    position: relative;
    height: 600px;
    padding: 50px 100px;
    text-align: left;
    display: flex;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    background: var(--white);
    color: #4d4c4b;
}

.detail-box h3 {
    width: 100%;
    color: var(--black);
}

.detail-box .editable {
    width: 100%;
}

.our_facilities figure,
.description .our_offers figure {
    position: relative;
    overflow: hidden;
}

.our_facilities figure .default_img,
.description .our_offers figure img {
    transform: scale(1.03);
    transition: all .6s;
}

.our_facilities .item:hover .default_img,
.description .our_offers .item:hover img {
    transform: scale(1);
}


/**** SECTION OFFERS HOMEPAGE ****/
.bg_offers {
    background-color: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.bg_offers:after {
    content: "";
    background: rgba(var(--overlay), 0.9);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.our_offers {
    position: relative;
    z-index: 1;
}

.description .our_offers .col-xs-6:nth-child(2) {
    color: #d3d3d3;
}

.description .our_offers .col-xs-6:nth-child(2) h3 {
    color: var(--white);
}

/*******************************/
/***** PAGE CONTENT CHILD  *****/
/*******************************/
.content_child {
    position: relative;
    width: 100%;
    display: inline-block;
}

.content_child .item_child:nth-child(even) [class*=col-xs-]:nth-child(1) {
    float: right;
}


/**********************/
/***** PAGE INFO  *****/
/**********************/
.bg_white {
    background: var(--white);
}

.info_page {
    text-align: left;
}

.info_page .editable {
    text-align: initial;
}

.info_page h3 {
    margin: 35px 0 0;
}

.info_page ul {
    margin: 10px 0 0;
    padding-left: 15px;
}

.info_page ul li {
    list-style: none;
    padding: 5px 0 0;
}

.info_page ul li:before {
    content: '\e904';
    font-family: 'icomoon';
    margin-right: 10px;
    color: var(--color-primary);
}

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

/**********************/
/****** GALLERY  *****/
/**********************/

.gallery-title {
    width: 100%;
    text-align: left;
}

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

.info_page .gallery-title li {
    width: auto;
    height: auto;
    padding: 10px 20px;
    display: inline-block;
    cursor: pointer;
    transition: all 0.6s;
    text-transform: capitalize;
    border: 1px solid transparent;
}

.info_page .gallery-title ul li:before {
    display: none;
}

.info_page .gallery-title li:hover {
    border: 1px solid var(--color-primary);
}

.info_page .gallery-title li.active {
    border: 1px solid var(--color-primary);
}
.demo-gallery {
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 50px 0 0;
}
.demo-gallery .row_gallery {
    margin-right: -15px;
    margin-left: -15px;
}
.demo-gallery [class*=col-xs-] {
    padding: 15px;
}

.demo-gallery .image_box {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transform: scale(1.06) translateX(0) rotate(.01deg);
    transition: transform .5s cubic-bezier(.44, .81, .45, .96);
}

.view {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.text_gallery_hover {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    text-align: center;
    margin: auto;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    opacity: 0;
    transition: all .5s;
}

.demo-gallery [class*=col-xs-]:hover .image_box  {
    transform: scale(1.06) translateX(8px) rotate(.01deg);
}

.demo-gallery [class*=col-xs-]:hover .text_gallery_hover {
    opacity: 1;
    bottom: 25px;
}
.lg-sub-html h4 {
    color: #fff;
}
.lg-dropdown {
    display: none;
}
.lg-actions .lg-next, .lg-actions .lg-prev {
    border: none;
}

/**********************/
/**** PAGE FOOTER  ****/
/**********************/

.page_footer {
    position: relative;
    width: 100%;
    padding: 80px 0;
    display: inline-block;
    text-align: center;
}

.page_footer h2 {
    margin-bottom: 50px;
}
page_footer p {
    margin: 8px 0 0;
}

.page_footer .col-xs-4 {
    padding: 0 20px;
}

.page_footer .contact {
    position: relative;
    width: 100%;
    display: inline-block;
}

.page_footer .contact a:hover,
.copyright a:hover {
    color: var(--color-primary);
}

.icon-contact {
    border: 2px solid var(--color-primary);
    display: block;
    width: 70px;
    height: 70px;
    padding: 20px;
    position: relative;
    margin: 0 auto 30px auto;
    border-radius: 50%;
    overflow: hidden;
    text-align: center;
    background: none;
}

.icon-contact i {
    color: var(--color-primary);
    font-size: 26px;
}

.page_footer .social {
    width: 100%;
    text-align: center;
    padding: 30px 0 0 0;
    position: relative;
    z-index: 1;
}

.page_footer .social a {
    display: inline-block;
    width: 50px;
    height: 50px;
    padding: 15px;
    margin: 0 10px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s;
    color: var(--color-primary);
    position: relative;
}

.page_footer .social a.size_tripadvisor {
    padding: 13px;
}

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

.page_footer .social a i {
    font-size: 20px;
    position: relative;
}

.page_footer .social a.size_tripadvisor i {
    font-size: 24px;
}

.copyright {
    text-align: center;
    padding: 20px 25px;
    font-size: 14px;
    background: var(--grey);
    color: var(--white);
}
/*********************/
/***** SITE MAP  *****/
/*********************/
.site_map.info_page ul li > ul {
    padding-left: 30px;
}
.site_map.info_page ul li > ul li {
    list-style: disc;
}
.site_map.info_page ul li:before {
    display: none;
}
.site_map a:hover {
    color: var(--color-primary);
}
