@import url('https://fonts.googleapis.com/css2?family=Anuphan&family=Barlow:wght@400;600&family=Bevan&display=swap');

:root {
    --font-family:'Bevan','Anuphan';
    --font-body:'Barlow','Anuphan';
    --color-primary: #5379fe;
    --color-secondary:#232323;
    --color-light:#EEFCFF;
    --color-grey:#8B8B8B;
}

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

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

}

h1, h2, h3 {
    color: #000;
    font-family: var(--font-family);
    text-transform: none;
    line-height: 1.3;
    font-weight: lighter;
    margin: 0;
}

h1 {
    font-size: 42px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 24px;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: all .5s;
}

select {
    -webkit-appearance: inherit;
    -moz-appearance: inherit;
    list-style: none;
}
::-moz-selection {
    background-color: var(--color-primary);
    color: var(--color-light);
}


::selection {
    background-color: var(--color-primary);
    color: var(--color-light);
}

/**********************************/
/* HEADER  */
/**********************************/
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.65);
    transition: all .6s;
    z-index: 9;
}

.navbar-brand img {
    position: relative;
    height: 80px;
    display: block;
    object-fit: cover;
    margin: 10px 0;
    transition: all .4s;
}
.menu {
    display: inline-block;
    float: right;
}
.menu nav,.menu > div {
    position: relative;
    display: inline-block;
    padding: 0 25px;
    float: left;
}
.menu nav {
    padding: 0 25px 0 0;
}
.navbar ul  {
    padding: 0;
    margin: 0;
}
.navbar li {
    list-style: none;
    padding: 0 10px;
    float: left;
}
.navbar li:last-child {
    padding: 0 0 0 10px;
}
.navbar li a{
    line-height: 100px;
}
.navbar li a:hover,.address_header a:hover {
    color: var(--color-primary);
}
.address_header,.menu .btn_main {
    margin: 26px 0;
}
.address_header:before {
    content: '';
    position: absolute;
    width: 1px;
    height: 50px;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    background: var(--color-grey);
}
.address_header a {
    display: flex;
}
.address_header span {
    margin-right: 10px;
}
.scroll {
    position: fixed;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.09) 0 0 10px;
}
.scroll .navbar-brand img {
    height: 60px;
}
.scroll .navbar li a {
    line-height: 80px;
}
.scroll .address_header, .scroll .menu .btn_main {
    margin: 16px 0;
}
.scroll .address_header:before {
    background: #D7DBE9;
}

/**********************************/
/* HAMBURGER */
/**********************************/
.iconnav {
    width: 35px;
    height: 15px;
    cursor: pointer;
    right: 0;
    top: 0;
    transition: all .6s;
    display: none !important;
    z-index: 9;
    bottom: 0;
    margin: 33px 15px 33px 0;
    padding: 0 !important;
}

.iconnav.active {
    z-index: 111;
}

.icon-box {
    position: relative;
    width: 100%;
    height: 100%;
}
#icon1, #icon2,#icon3 {
    position: relative;
    width: 100%;
    height: 2px;
    background: #000;
    border-radius: 3px;
}
#icon1 {
    top: 0;
    -webkit-transition: .23s ease-in-out;
    -moz-transition: .23s ease-in-out;
    -o-transition: .23s ease-in-out;
    transition: .23s ease-in-out;
}

#icon2 {
    top: 5px;
    right: 0;
    -webkit-transition: .23s ease-in-out;
    -moz-transition: .23s ease-in-out;
    -o-transition: .23s ease-in-out;
    transition: .23s ease-in-out;
}

#icon3 {
    top: 10px;
    -webkit-transition: .23s ease-in-out;
    -moz-transition: .23s ease-in-out;
    -o-transition: .23s ease-in-out;
    transition: .23s ease-in-out;
}

.icon-box.open #icon1 {
    top: 8px;
    background: #000;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);

}

.icon-box.open #icon2 {
    right: -30px;
    opacity: 0;
}

.icon-box.open #icon3 {
    top: 4px;
    background: #000;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
.iconnav.active {
    right: -150px;
}

/**********************************/
/* SLIDE SHOW  */
/**********************************/
.hero-slider {
    width: 100%;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 0;
    transition: all .4s ease;
}
.hero-slider:after {
    content: '';

}
.hero-slider .swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.hero-slider .swiper-slide {
    overflow: hidden;
    color: #fff;
}

.hero-slider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}
.hero-slider .slide-inner:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0,0,0,0.15);
    display: block;
    z-index: 1;
}
.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
    background: none;
    width: 50px;
    height: 50px;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 50px;
    opacity:0;
    visibility:hidden;
    transition:all .3s ease;
    padding: 12px;
    color: #fff;
}
.hero-slider:hover .swiper-button-prev,
.hero-slider:hover .swiper-button-next {
    transform:translateX(0);
    opacity:1;
    visibility:visible;
}

.hero-slider .swiper-button-prev {
    left: 50px;
    transform:translateX(50px);
}

.hero-slider .swiper-button-next {
    right: 50px;
    transform:translateX(-50px);
}

.hero-slider .text-swiper {
    position: relative;
    z-index: 2;
}
.hero-style .slide-title,
.hero-style .slide-text{
    max-width: 690px;
}

.hero-style .slide-title h2 {
    font-size: 60px;
    line-height: 1;
    color: #ffffff;
    margin: 0;
    text-transform: capitalize;
    transition:all .4s ease;
    letter-spacing: 1px;

}
.hero-style .slide-text p {
    color: #ffffff;
    text-transform: capitalize;
    transition:all .4s ease;
}
.hero-slider .elementor-shape {
    bottom: 0;
    transform: rotate(180deg);
}



/**********************************/
/* BODY  */
/**********************************/
main {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 0 0 100px;
}
main section {
    position: relative;
    display: inline-block;
    width: 100%;
}
.container {
    width: 1280px;
    padding: 0;
    margin: auto;
}
.btn_main {
    position: relative;
    padding: 10px 25px;
    background-image: url("../images/icon/btn_bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 2px solid var(--color-primary);
    display: inline-block;
    border-radius: 30px;
    color: #fff;
}
.btn_main:hover {
    background: transparent;
    color: var(--color-primary);
}

.btn_book {
    position: relative;
    padding: 10px 25px;
    background: #fff;
    border: 2px solid #fff;
    display: inline-block;
    border-radius: 30px;
    color: var(--color-primary);
    margin: 15px 0 0;
    transition: all .3s;
}
.btn_book:hover {
    color: #fff;
    background: transparent;
}
.title {
    position: relative;
}
.title:before {
    content: '';
    position: relative;
    background: url("../images/icon/wave.png");
    width: 50px;
    height: 28px;
    display: block;
    margin: 0 0 15px;
}
.elementor-shape {
    overflow: hidden;
    position: absolute;
    left: 0;
    width: 100%;
    line-height: 0;
    direction: ltr;
    z-index: 1;

}
.elementor-shape svg {
    display: block;
    width: calc(100% + 1.3px);
    position: relative;
    height: 60px;
}
.shape-top {
    top: -60px;
}
.shape-bottom {
    bottom: -60px;
}
.bg_color {
    background: var(--color-light);
}
figure {
    margin: 0;
}
.item_box {
    padding-top: 50px;
}
.tagline {
    color: var(--color-primary);
}

/* DESCRIPTION  */
.description {
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: left;
    padding: 100px 0 160px;
}
.description .col-xs-6 {
    padding: 0 25px;
}
.description .row_description {
    margin-right: -25px;
    margin-left: -25px;
}
.description .col-xs-6:nth-child(1) {
    float: right;
}
.description .col-xs-6:nth-child(2) {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.description .col-xs-6:nth-child(2), .description img {
    height: 600px;
}
.description img {
    width: 100%;
    object-fit: cover;
    display: block;
    border-radius: 15px;
}
.description p {
    margin: 15px 0 0;
}
.description .slick-slide {
    padding: 0;
}
.description .slick-dots {
    position: absolute;
    bottom: 0;
    top: 0;
    right: 40px;
    flex-direction: column;
    justify-content: center;
}
.description .slick-dots li {
    margin: 2px 0;
}
.description .slick-dots button {
    background-color: #fff;
}

/* WHY US  */
.whyus {
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: left;
    padding: 100px 0;
}
.whyus .col-xs-6:nth-child(1) {
    text-align: center;
}

.whyus .col-xs-6:nth-child(2) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 0 0 50px;
}
.whyus .col-xs-6 {
    height: 300px;
}
.icon_enjoy {
    width: auto;
    height: 450px;
    object-fit: cover;
    position: absolute;
    z-index: -1;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: .6;
}
.large_logo {
    position: relative;
    width: auto;
    height: 250px;
    object-fit: cover;
    animation: mymove 6s infinite;
}
@keyframes mymove {
    0% {
        top: 0;
    }
    50% {
        top: 50px;
    }
    100% {
        top: 0;
    }
}

/* BOOK NOW  */
.booknow {
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 160px 0;
}
.booknow .title:before,.package .title:before,
.rents .title:before, .gallery .title:before, .shop .title:before {
    margin: 0 auto 15px;
}

.booknow .item {
    position: relative;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #D7DBE9;
}
.booknow h3 {
    font-size: 40px;
}
.booknow h4 {
    font-family: var(--font-family);
    font-size: 18px;
    margin: 0 0 15px;
}
.booknow .tagline {
    margin: 0;
    font-weight: bold;
}
.detail_booknow {
    margin: 25px 0;
}
.service_booknow {
    margin: 25px 0;
}
.service_booknow h5 {
    font-size: 16px;
    font-family: var(--font-family);
    margin: 0;
}


/* PACKAGE  */
.package {
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 100px 0;
}
.package .item {
    border-radius: 15px;
}
.package img,.package .item .col-xs-6:nth-child(2) {
    height: 300px;
}
.package img {
    width: 100%;
    object-fit: cover;
    display: block;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}
.package .item .col-xs-6:nth-child(2) {
    background: var(--color-primary);
    display: flex;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    color: #fff;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    padding: 25px;
}
.package .item h3 {
    color: #fff;
    width: 100%;
    font-size: 20px;
}
.package .item p {
    margin: 0;
    font-weight: bold;
    width: 100%;
}
.package .item .col-xs-6:nth-child(2) ul {
    text-align: left;
    margin: 5px 0 0;
    padding: 0;
    font-size: 15px;
}

/* RANTS BOARD  */
.rents {
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 160px 0 100px;
}
.flip-box {
    background-color: transparent;
    width: 100%;
    height: 450px;
    perspective: 1000px;
}

.flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-box:hover .flip-box-inner {
    transform: rotateY(180deg);
}

.flip-box-front, .flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
}

.flip-box-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 15px;

}

.flip-box-back {
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--color-primary);
    color: white;
    transform: rotateY(180deg);
    padding: 50px;
}
.flip-box-back h3 {
    color: #fff;
}
.flip-box-back ul {
    margin: 5px 0;
    padding: 0;
    text-align: left;
}
.flip-box-back .detail {
    width: 60%;
    margin: auto;
    text-align: center;
}
.detail img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    filter: brightness(0) invert(1);
    margin: 0 auto 15px;
}

/* SHOP  */
.shop {
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 0 0 100px;
}
.shop img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    border-radius: 15px;
}
.shop .btn_main {
    margin-top: 25px;
}

/* GALLERY  */
.gallery {
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 0;
}
.row_gallery {
    margin-left: -10px;
    margin-right: -10px;
}
.row_gallery [class*=col-xs-]{
    padding: 10px;
    display: none;
}
.row_gallery [class*=col-xs-]:nth-child(1),
.row_gallery [class*=col-xs-]:nth-child(2),
.row_gallery [class*=col-xs-]:nth-child(3),
.row_gallery [class*=col-xs-]:nth-child(4),
.row_gallery [class*=col-xs-]:nth-child(5),
.row_gallery [class*=col-xs-]:nth-child(6),
.row_gallery [class*=col-xs-]:nth-child(7),
.row_gallery [class*=col-xs-]:nth-child(8) {
    display: block;
}
.item_img_box,.overlay_gallery {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}
.item_img_box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    /*border-radius: 15px;*/
    transform: scale(1);
    transition: all .4s;
}
.name_album {
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transition: all .4s;
}
.overlay_gallery:hover .item_img_box img {
    transform: scale(1.06);
    filter: brightness(60%);
}
.overlay_gallery:hover .name_album {
    opacity: 1;
}
.demo-gallery .btn_main {
    margin-top: 30px;
    cursor: pointer;
}
.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
    border-color: var(--color-primary);
}

/**********************************/
/* FOOTER  */
/**********************************/
footer svg {
    display: block;
}
.contact_footer {
    position: relative;
    padding: 0 0 50px;
    width: 100%;
    background: var(--color-light);
}
.contact_footer .row_contact {
    margin-left: -15px;
    margin-right: -15px;
}
.contact_footer .row_contact [class*=col-xs-]{
    padding: 0 15px;
}
.contact_footer .row_contact [class*=col-xs-]:nth-child(2) {
    text-align: center;
}
.contact_footer .row_contact [class*=col-xs-]:nth-child(3) {
    text-align: right;
}
.contact_footer h4 {
    font-family: var(--font-family);
    font-size: 18px;
    margin: 0;
}
.contact_footer a:hover {
    color: var(--color-primary);
}
.icon_social {
    margin: 15px 0 0;
}
.icon_social a, .icon_wechat {
    position: relative;
    width: 45px;
    height: 45px;
    display: inline-block;
    text-align: center;
    padding: 11px 10px;
    margin: 0 2px;
    border-radius: 50px;
    background: var(--color-primary);
    border: 2px solid var(--color-primary);
    transition: all .4s;
}
.icon_social a > img,
.icon_wechat img {
    height: 20px;
    filter: brightness(0) invert(1);
    transition: all .4s;
}
.icon_social a:hover,
.icon_wechat:hover {
    background: transparent;
}
.icon_social a:hover img ,
.icon_wechat:hover img {
    filter: none;
}
.id_wechat {
    position: relative;
    cursor: pointer;
    display: inline-block;
}
.id_wechat img {
    width: 100%;
    display: inline-block;
}
.id_wechat .show_id {
    position: absolute;
    white-space: nowrap;
    bottom: -50px;
    right: -25px;
    text-align: left;
    background: #555;
    transition: all .4s;
    color: #fff;
    padding: 5px 15px;
    border-radius: 30px;
    transform: translateY(-1em);
    opacity: 0;
    pointer-events: none;
}
.show_id:after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 66%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #555 transparent;
}
.id_wechat:hover .show_id {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.rq_code {
    position: relative;
    margin: 10px 0 0;
    display: inline-block;
    width: 100%;
    /*float: right;*/
    text-align: center;
}
.rq_code img {
    height: auto;
    width: 130px;
    object-fit: cover;
    display: block;
    margin: auto;
}
.rq_code p {
    margin: 0;
}
.copyright {
    padding: 25px 0 ;
    display: inline-block;
    width: 100%;
    text-align: left;
    border-top: 1px solid #D5DEE0;
    background: var(--color-light);
}
.copyright p {
    margin: 5px 0;
    display: inline-block;
}
.pay {
    position: relative;
    float: right;
    display: flex;
}
.icon_pay {
    background: rgba(0, 0, 0, 0.15);
    display: inline-block;
    width: 60px;
    height: 35px;
    position: relative;
    border-radius: 5px;
    cursor: pointer;
    padding: 10px;
    margin: 0 3px;
}
.icon_pay img {
    position: absolute;
    top: 0;
    bottom: 0;
    text-align: center;
    filter: brightness(0);
    width: 35px;
    height: 35px;
    display: block;
}

