@font-face {
    font-family: 'kanit_light';
    src: url('../font/kanit-light.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'agatho_regular';
    src: url('../font/agatho_regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


:root {
    --beyond-font: 'agatho_regular', 'kanit_light';
    --beyond-font-body: 'kanit_light', 'kanit_light';

    --white: #fff;
    --white-rgba: rgba(255, 255, 255, 0.8);
    --grey: #F3F3F3;
    --grey-light: #828282;
    --dark-grey: #373839;
    --dark: #1D1E1F;
    --black: #000;

}

body {
    padding: 0;
    margin: 0;
    font-family: var(--beyond-font-body);
    font-size: 18px;
    line-height: 1.5;
    color: var(--black);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

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

a {
    color: inherit;
}

h1, h2, h3 {
    color: var(--main-color);
    font-family: var(--beyond-font);
    font-weight: lighter;
    text-transform: none;
    margin: 0;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 38px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 20px;
    font-family: inherit;
    font-weight: lighter;
    text-transform: none;
    margin: 0;
}

h5 {
    font-size: 14px;
    font-family: inherit;
    font-weight: lighter;
    text-transform: none;
    margin: 0;
}

select {
    -webkit-appearance: inherit;
    -moz-appearance: inherit;
    list-style: none;
}
p {
    margin: 8px 0 15px;
}

.container {
    width: 1440px;
    padding: 0;
}


figure {
    margin: 0;
}

/**************************/
/* HEADER BEYOND */
/**************************/
header {
    position: absolute;
    width: 100%;
    height: 60px;
    top: 0;
    background: var(--white-rgba);
    font-family: var(--beyond-font);
    z-index: 3;
    font-size: 20px;
    /*padding: 0 180px;*/
}

.navbar ul {
    padding: 0;
    margin: 0;
}
.navbar ul.nav_menu {
    padding-left: 300px;
}

.navbar ul li {
    list-style: none;
    float: left;
}
.navbar-brand {
    position: absolute;
    width: 250px;
    height: 98px;
    left: 0;
    background: var(--main-color);
    padding: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
.navbar-brand a {
    display: inline-block;
}
.navbar-brand a:nth-child(1) {
    padding-right: 15px;
}
.navbar-brand  img {
    filter: brightness(0) invert(1);
    height: 40px;
    vertical-align: middle;
}
.navbar-brand a:nth-child(2) img {
    height: 60px;
}

nav {
    display: inline-block;
}

nav .nav_fixed {
    position: relative;
    padding: 0;
    margin: 0;
}

nav .nav_fixed li {
    float: left;
    list-style: none;
    padding: 0 10px;
}

nav .nav_fixed li:nth-child(1) {
    padding: 0 10px 0 0;
}

nav .nav_fixed li a {
    line-height: 60px;
}

nav .nav_fixed li.active a, nav ul li a:hover {
    color: var(--main-color);
}

/* SCROLL HEADER */
.scroll_header {
    position: fixed;
    height: 60px;
    background: var(--white);
    color: var(--black);
    box-shadow: rgba(0, 0, 0, 0.19) 0 0 10px;
    z-index: 6;
}
.scroll_header nav .nav_fixed li a {
    line-height: 60px;
}
.scroll_header .find_hotel label {
    border: 1px solid #eee;
}

/* FIND HOTEL */
.find_hotel {
    position: relative;
    display: inline-block;
}

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

.find_hotel ul li {
    list-style: none;
    cursor: pointer;
}

.find_hotel label {
    cursor: pointer;
    margin: 9px 0 9px 15px;
    padding: 5px 15px;
    display: inline-block;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    transition: all .4s;
}

.arrow-lang svg {
    width: 16px;
    height: 16px;
    transform: rotate(0deg);
}

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

.find_hotel .list_hotel {
    position: absolute;
    width: 260px;
    top: 55px;
    white-space: nowrap;
    left: -50px;
    right: auto;
    margin: auto;
    padding: 0 15px;
    background: white;
    opacity: 0;
    pointer-events: none;
    text-align: left;
    transition: all .6s;
    color: var(--black);
    box-shadow: rgba(0, 0, 0, 0.09) 0 0 10px;
    border-radius: 5px;
}

.find_hotel .list_hotel:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 0;
    left: 150px;
    margin: auto;
    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;
}

.find_hotel .list_hotel.open {
    top: 75px;
    opacity: 1;
    pointer-events: auto;
}

.find_hotel .list_hotel li {
    line-height: normal;
    border-bottom: 1px solid #ececec;
    float: none;
}

.find_hotel .list_hotel li:last-child {
    border: 0;
}

.find_hotel .list_hotel li a {
    width: 100%;
    display: inline-block;
    padding: 12px 0;
}

.find_hotel label:hover {
    background: var(--main-color);
    border: 1px solid var(--main-color);
    color: #fff;
}

.find_hotel .list_hotel li a:hover {
    color: var(--main-color);
}

/* LANGUAGE */
.nav-lang {
    position: relative;
    float: right;
}

.nav-lang label {
    position: relative;
    cursor: pointer;
    transition: all .6s;
}

.nav-lang label .arrow-lang svg {
    width: 15px;
    display: inline-block;
    vertical-align: middle;
    transform: rotate(0);
    transition: all .6s;
}

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

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

.nav-lang li {
    line-height: 60px;
    list-style: none;
}

.nav-lang .lang_parent {
    position: absolute;
    width: 85px;
    top: 55px;
    white-space: nowrap;
    left: 0;
    right: 0;
    margin: auto;
    padding: 0 15px;
    text-align: center;
    background: white;
    opacity: 0;
    pointer-events: none;
    transition: all .6s;
    box-shadow: rgba(0, 0, 0, 0.09) 0 0 10px;
    border-radius: 5px;
}

.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 {
    top: 75px;
    opacity: 1;
    pointer-events: auto;
}

.nav-lang .lang_parent li {
    line-height: normal;
    display: block !important;
    padding: 0 !important;
    border-bottom: 1px solid #d8d8d8;
    text-align: center;
    float: none;
}

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

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

}

.nav-lang .lang_parent li a:hover, .nav-lang label:hover {
    color: var(--main-color);
}
.nav-lang svg {
    width: 18px;
    height: 18px;
}
.nav-lang .uk-icon.icon_world svg:not(:root) {
    top: -2px;
    position: relative;
}

/* HUMBURGER */
.hamburger {
    position: relative;
    width: 30px;
    z-index: 11;
    cursor: pointer;
    transition: all .6s;
    display: none !important;
    height: 20px;
    margin-left: 0;
    top: 19px;
}
.hamburger .icon_hamburger {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 30px;
    height: 17px;
    margin: auto;

}

.hamburger span {
    position: absolute;
    background: var(--black);
    height: 1px;
    width: 100%;
    display: block;
    transition: all .6s;
}

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

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

.hamburger span:nth-child(3) {
    bottom: 0;
}

.hamburger .icon_hamburger.open-bar span:nth-child(1) {
    transform: rotate(45deg);
}

.hamburger .icon_hamburger.open-bar span:nth-child(3) {
    top: 7px;
    transform: rotate(314deg);
}

.hamburger .icon_hamburger.open-bar span:nth-child(2) {
    transform: scale(0);
}

.hamburger .icon_hamburger.open-bar span:nth-child(1) {
    top: 7px;
}

.hamburger .icon_hamburger.open-bar span {
    background: #232325;
}

.hamburger.active label {
    display: none;
}
.scroll_header .hamburger span {
    background: var(--black);
}

/**************************/
/* SLIDE BEYOND */
/**************************/
.slide_images, .slide_maximages {
    position: relative;
}

.overlay_slide:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 200px;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.4);
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
    background: -o-linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
    background: -moz-linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
    z-index: 2;
}

.text_slide {
    position: absolute;
    width: 100%;
    height: 150px;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

.text_slide h2 {
    color: var(--white);
    font-size: 60px;
    line-height: 50px;
}

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

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

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

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

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

/**************************/
/* BODY BEYOND */
/**************************/
main, section {
    position: relative;
    width: 100%;
}

main {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}
.error {
    text-align: center;
}
.error p {
    font-size: 72px;
    margin: 0 ;
}

/* HOTEL GROUP */
.group_hotel {
    position: relative;
    width: 100%;
    display: inline-block;
    padding: 80px 0;
}

.item_group {
    position: relative;
    width: 100%;
    display: inline-block;
    margin-top: 50px;
}
.item_group:nth-child(1){
    margin-top: 0;
}
.item_group figure {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}
.item_group figure img {
    height: 450px;
    width: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.05);
    transition: all .3s;
}
.item_group figcaption {
    position: absolute;
    bottom: 0;
    padding: 30px;
    width: 100%;
    font-size: 18px;
    color: var(--white);
    z-index: 2;
}
.item_group figcaption svg {
    width: 16px;
    height: 16px;
    float: right;
    top: 5px;
    position: relative;
}
.item_group figure:hover img {
    transform: scale(1);
}

.item_group .col-xs-7 {
    position: relative;
    padding: 50px;
    height: 450px;
    display: flex;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}
.group_hotel .item_group .col-xs-7 {
    padding: 50px 0 50px 50px;
}
.item_group .editable {
    width: 100%;
}
.item_group:hover img {
    transform: scale(1);
}
.group_hotel .item_group figure:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 200px;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
    background: -o-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
    background: -moz-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
}
/* DESCRIPTION HOTEL SLIDE */
.description_hotel {
    position: relative;
    width: 100%;
    background: var(--main-color);
    padding: 50px;
    color: var(--white);
    height: 230px;

}
.description_hotel  h2 {
    color: var(--white);
    flex-direction: column;
    justify-content: center;
    display: flex;
    height: 90px;
}
.description_hotel p {
    margin: 0;
}

/* HIGHLIGHT */
.highlight {
    position: relative;
    width: 100%;
    padding: 80px 0;
}

.highlight h2 {
    display: inline-block;
}
.go_beyond {
    color: var(--dark-grey);
    display: inline-block;
    float: right;
    margin: 9px 0;
}
.go_beyond svg {
    width: 16px;
    height: 16px;
}
.detail_highlight {
    margin-top: 50px;
    margin-left: -5px;
    margin-right: -25px;
}
.detail_highlight .item {
    position: relative;
    display: inline-block;
    border-radius: 20px;
    background: var(--white);

}

.detail_highlight .item, .explore .item_group  {
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    margin: 0 10px 5px;
}
.detail_highlight ,.slider_event ,.slider_explore {
    margin-left: -10px;
    margin-right: -10px;
}
.images_highlight, .images_event {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}
.detail_highlight img{
    height: 300px;
    width: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.05);
    transition: all .3s;
}
.content_highlight{
    padding: 25px;
}

.slider_event .item {
    position: relative;
    margin: 0 10px;
}
.detail_event {
    padding-top: 50px;
}
.content_event  {
    position: absolute;
    width: 100%;
    bottom: 0;
    padding: 25px;
    color: var(--white);
}
.content_event p {
    margin: 0;
    font-size: 22px;
}
.images_event img {
    height: 250px;
    width: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.05);
    transition: all .3s;
}
.slider_highlight .item:hover img ,
.slider_event .item:hover img {
    transform: scale(1);
}

/* EXPLORE THAILAND */
.explore .item_group {
    background: var(--white);
    border-radius: 20px;
}


/* TRAVEL GUIDE  */
.travel_guide {
    padding: 80px 0 0;
}
.content_travel {
    padding: 25px;
    text-align: center;
}
.content_travel p {
    margin: 15px 0 0;
}
.content_travel h5 {
    font-size: 20px;
    color: var(--grey-light);
}
/**************************/
/* HISTORY */
/**************************/
.bannerhistory {
    position: relative;
}
.bannerhistory .slide_maximages {
    position: relative;
    overflow: hidden;
}
.banner_history {
    position: relative;
    top: -1px;
    height: 600px;
    width: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: all .35s;
}
.bannerhistory:hover .banner_history {
    transform: scale(1.06);
}
.text_banner {
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 150px;
    text-align: left;
    padding: 0;
}
.text_banner h2, .text_banner h4 {
    color: var(--white);
}
.history h1,.sustainability_policy h1, .review h1,
.page_info h1{
    text-align: center;
}
.box_history {
    position: relative;
    padding-top: 80px;
}
.timeline_history {
    position: relative;
    display: grid;
}
.timeline_history .item {
    position: relative;
}

.timeline_history img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}
.content_timeline {
    position: absolute;
    top: 60px;
    left: 100px;
    width: 50%;
    padding: 50px;
    color: #fff;
    text-align: left;
    z-index: 2;
    background: rgba(0,0,0,0.43);
    border-radius: 20px;
}
.content_timeline h2 {
    color: #fff;
}

.timeline_history:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: #fff;
    display: block;
    bottom: 80px;
    /*top: 0;*/
    margin: auto;
    left: 50px;
    z-index: 0;
}
.timeline_history .slick-dots-container {
    position: absolute;
    bottom: 35px;
    width: 1140px;
    overflow: hidden;
    height: 60px;
    margin: auto;
    left: 82px;
    z-index: 1;
}


.timeline_history .slick-dots-container ul {
    position: absolute;
    left: 0;
    margin: 10px 0 0;
    padding: 0;
    transition: all 0.25s;
    /*align-items: center;*/
    height: 100%;
    display: inline-flex !important;
}


.timeline_history .slick-dots li {
    position: relative;
    width: 10px;
    height: 10px;
    background: #fff;
    margin: 0 80px 0 0;
    z-index: 1;
    cursor: pointer;
    border-radius: 50%;
}
.timeline_history .slick-dots li.slick-active {
    border: 0;
    background: none;
}
.timeline_history .slick-dots li.slick-active:before {
    content: "";
    position: absolute;
    left: -7px;
    top: -11px;
    background: url("../images/icon/icon-active.svg");
    width: 30px;
    height: 30px;
    display: inline-block;
    margin: 2px auto;
}
.timeline_history .slick-dots li:nth-child(1){
    margin: 0 80px 0 15px;
}
.timeline_history .slick-dots .year {
    background: none;
    color: #fff;
    position: absolute;
    top: 25px;
    left: -29px;
    width: 70px;
    text-indent: unset;
    text-align: center;
}

.content_timeline h4 {
    display: none;
}

.arrows_history, .timeline_history .slick-arrow   {
    position: absolute;
    width: 100%;
    bottom: 111px;
    left: 0;
    z-index: 2;
}
.arrows_history [class*=slick-],
.timeline_history .slick-arrow [class*=slick-] {
    position: absolute;
    color: #fff;
    cursor: pointer;
}
.arrows_history  .slick-prev,
.timeline_history .slick-arrow  .slick-prev {
    left: 30px;
}
.arrows_history  .slick-next,
.timeline_history .slick-arrow .slick-next {
    right: 15px;
    bottom: -42px;
}
.timeline_history .slick-arrow.slick-disabled {
    display: none !important;
}
.timeline_history .slick-slide {
    margin: 0;
}
/**************************/
/* REVIEW */
/**************************/
header.header_review.scroll_header {
    position: fixed;
    top: 0;
}
header.header_review {
    position: relative;
    top: 8px;
    color: var(--dark-grey);
    border-bottom: 1px solid var(--grey);
}
header.header_review .find_hotel label {
    border: 1px solid #eee;
}
header.header_review .hamburger span {
    background: var(--black);
}
.box_review {
    position: relative;
    width: 100%;
    margin: 25px 0 0;
}
.box_review img {
    height: 300px;
    filter: brightness(80%);
    width: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: .35s;

}
.box_review figure {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}
.row_review {
    margin-left: -10px;
    margin-right: -10px;
}
.row_review [class*=col-xs-]{
    position: relative;
    padding: 10px;
    cursor: pointer;
}
.title_review {
    position: absolute;
    width: 100%;
    height: 30px;
    top: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
    left: 0;
    padding: 0 30px;
    font-family: var(--beyond-font);
}
.title_review h2 {
    font-size: 28px;
    color: #fff;
}

.row_review [class*=col-xs-]:hover img {
    transform: scale(1.06);
    filter: brightness(40%);
}
.images_review img {
    height: 250px;
}
.review_content {
    height: 280px;
}
.review_content h2 {
    font-size: 22px;
    font-family: kanit_light, kanit_light;
}
.review_content .btn_book {
    position: absolute;
    bottom: 20px;
}
.child_review {
    position: relative;
    width: 100%;
    display: inline-block;
    padding: 50px 0 0;
}
.row_child {
    margin-left: -15px;
    margin-right: -15px;
}
.child_review [class*=col-xs-]:nth-child(1),
.child_review [class*=col-xs-]:nth-child(2), .child_review [class*=col-xs-]:nth-child(3) {
    padding: 0 15px 15px;
}
.child_review [class*=col-xs-] {
    padding: 15px;
}
.item_child {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.images_review {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}
.images_review img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: .35s;
}
.review_content {
    position: relative;
    padding: 20px;
    background: #fff;
    height: 210px;
    text-align: left;
    border-radius: 20px;
}
.review_content.child {
    height: auto;
}
.review_content h3 {
    font-size: 24px;
}
.btn_review {
    position: absolute;
    bottom: 20px;
    font-family: var(--beyond-font);
    color: var(--white);
    padding: 8px 25px;
    margin-top: 20px;
    display: inline-block;
    cursor: pointer;
    transition: all .6s;
    background: var(--main-color);
    border-radius: 20px;
}
.btn_review:hover {
    background: var(--dark-grey);
}
.position_bottom img {
    object-position: bottom 15% left 0;
}
.item_child:hover .photos-kata {
    transform: scale(1.06);
}

/**************************/
/* PAGE INFO */
/**************************/
.slide_info img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}
/**************************/
/* FOOTER BEYOND */
/**************************/
.sisterhotel {
    position: relative;
    width: 100%;
    padding: 0 0 50px;
    background: #fff;
    display: inline-block;
    text-align: center;
}

.sisterhotel .group_logo img:nth-child(1) {
    height: 40px;
}
.sisterhotel .group_logo img {
    width: auto;
    height: 60px;
    margin: 0 10px;
    vertical-align: middle;
}
.sisterhotel .iconsisterhotel {
    width: 100%;
    margin: 20px auto 0;
}

.sisterhotel .iconsisterhotel img {
    width: auto;
    height: 60px;
    display: inline-block;
}

.detail_footer {
    position: relative;
    width: 100%;
    background: var(--grey);
    display: inline-block;
}
.detail_footer p {
    margin: 0;
}
.title_footer {
    font-family: var(--beyond-font);
    color: var(--black);
    font-size: 28px;
    margin: 0 0 20px !important;
}
.menu_footer {
    position: relative;
    width: 100%;
    display: inline-block;
    padding: 80px 0;
}
.menu_footer ul {
    padding: 0;
    margin: 0;
}
.menu_footer ul li {
    list-style: none;
    padding: 2px 0;
}
.menu_footer ul li a:hover {
    color: var(--main-color);
}
.menu_footer .clearfix {
    display: none;
}





