
@font-face {
    font-family: 'quicksand';
    src: url('../font/quicksand.woff2') format('woff2'),
    url('../font/quicksand.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

body {
    padding: 0;
    margin: 0;
    font-family: 'quicksand', 'sans-serif';
    font-size: 16px;
    line-height: 1.5;
    color: #474747;
    -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.5s;
}

h1, h2, h3 {
    color: #3e4039;
    font-family: quicksand, sans-serif;
    font-weight: lighter;
    text-transform: uppercase;
    margin: 0;
}

h1 {

    font-size: 36px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 18px;
}

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

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

/*---------------------------------------------*/
/* SLIDERS */
/*---------------------------------------------*/
.slideshow {
    position: relative;
}
.overlay_slide {
    width: 100%;
    z-index: 1;
    height: 100%;
    top: 0;
    position: absolute;
    left: 0;
    background: rgba(0, 0, 0, 0.1);
    transition: all 0.5s;
}
#maximage {
    border: 50px solid #ffffff;
    width: 100% !important;
    height: 99.99vh !important;
}

/*---------------------------------------------*/
/* SCROLL DOWN */
/*---------------------------------------------*/
.scroll_down {
    position: absolute;
    right: 100px;
    bottom: 80px;
    color: #fff;
    opacity: .7;
    z-index: 6;
    transition: all .6s;
}
.scroll_down:hover {
    opacity: 1;
}
.scroll_down span {
    position: relative;
    width: 30px;
    height: 30px;
    display: inline-block;
    border: 1px solid #fff;
    border-radius: 50%;
    margin-left: 10px;
    padding: 3px;
    text-align: center;
    vertical-align: bottom;
}
.scroll_down span:before {
    content: "\f107";
    position: absolute;
    font-family: FontAwesome;
    animation-duration: 1.5s;
    animation-name: arrow;
    animation-iteration-count: infinite;
    left: 0;
    right: 0;
    margin: auto;
}
@keyframes arrow {
    0% {
        opacity: 0;
        transform: translate(0, -8px);
    }
    50% {
        opacity: 1;
        transform: translate(0, 0);
    }
    100% {
        opacity: 0;
        transform: translate(0, 8px);
    }
}

@-webkit-keyframes arrow {
    0% {
        opacity: 0;
        transform: translate(0, -8px);
    }
    50% {
        opacity: 1;
        transform: translate(0, 0);
    }
    100% {
        opacity: 0;
        transform: translate(0, 8px);
    }
}


/*---------------------------------------------*/
/* HEADER */
/*---------------------------------------------*/
.section_menu {
    position: absolute;
    top: 60px;
    width: 100%;
    padding: 0 100px;
    transition: all .6s;
    z-index: 9;
    height: 90px;
}

.scroll_menu  {
    position: fixed;
    top: 0;
    background: #fff;
    padding: 20px 50px;
    box-shadow: rgba(0, 0, 0, 0.09) 0 0 10px;
}

.section_menu .bookontop {
    position: relative;
    float: right;
    cursor: pointer;
    background: #6eb514;
    padding: 13px 40px;
    text-transform: uppercase;
    /*border-radius: 0;*/
    border-radius: 0 50px;
    color: #fff;
    transition: all .6s;
    margin: 20px 0;
}
.scroll_menu .bookontop {
    margin: 0;
}
.section_menu .bookontop:hover {
    background: #282b2a;
}

.section_menu .logo img {
    position: absolute;
    width: 150px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 15px auto;
    filter: brightness(0) invert(1);
}
.scroll_menu .logo img {
    width: 130px;
    filter: none;
    margin: 10px auto;
}
/*---------------------------------------------*/
/* HAMBURGER */
/*---------------------------------------------*/
#hamburger {
    position: absolute;
    width: 35px;
    height: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .6s ease-in-out;
    -moz-transition: .6s ease-in-out;
    -o-transition: .6s ease-in-out;
    transition: .6s ease-in-out;
    cursor: pointer;
    font-size: 14px;
}

#hamburger:before {
    position: relative;
    content: "Menu";
    display: inline-block;
    margin: 0 0 0 45px;
    text-transform: uppercase;
    color: #fff;
    transition: all 0.6s;
}

#hamburger.open:before {
    content: "Close";
    margin: 0 40px;
}

#hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 0;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .30s ease-in-out;
    -moz-transition: .30s ease-in-out;
    -o-transition: .30s ease-in-out;
    transition: .30s ease-in-out;
}
.scroll_menu #hamburger span {
    background: #5e5e5e;
}

.scroll_menu #hamburger:before, #hamburger.open:before {
    color: #5e5e5e;
}
#hamburger span:nth-child(1) {
    top: 0;
}

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

#hamburger span:nth-child(3) {
    top: 16px;
}
#hamburger.open{
    left: 77px;
    top: -80px;
    z-index: 99999;
}
.scroll_menu #hamburger.open {
    left: 77px;
    top: 35px;
}
#hamburger.open span:nth-child(1) {
    top: 10px;
    background: #656565;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

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

#hamburger.open span:nth-child(3) {
    top: 10px;
    background: #656565;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
.overflow_h {
    overflow: hidden;
}
/*---------------------------------------------*/
/* BOX MENU */
/*---------------------------------------------*/
.box-menu {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    top: -150%;
    z-index: 6;
    transition: top 0.8s ease-in-out;
}

.box-menu.active {
    top: 0;
}

.showmenu {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: left;
    font-size: 16px;
    text-transform: uppercase;
    z-index: 8;
}
.showmenu .col-xs-6:last-child {
    background: url("../images/gallery/overview/img-3.jpg") center center no-repeat;
    background-size: cover ;
}
.showmenu a:hover {
    color: #6eb514;
}

.showmenu a.active {
    color: #6eb514;
}

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

.showmenu .col-xs-6 {
    position: relative;
    height: 100%;
    padding: 117px 80px;
    background: #fff;
    margin: 0;
}


.showmenu li {
    position: relative;
    list-style: none;
    padding: 10px 0;
}
.info-detail {
    position: relative;
    display: none;
    padding-left: 30px;
}
.info-detail.active {
    display: block;
}
.c_plus {
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    display: block;
}
.ui-icon-plus {
    position: absolute;
    width: 45px;
    height: 45px;
    right: 0;
    top: 0;
    display: block;
}
.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;
}
.info-detail li {
    padding: 10px 30px 0;
    animation-name: fadeInUp;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
}
.info-detail li:nth-child(1) {
    animation-delay: 0.3s;
}
.info-detail li:nth-child(2) {
    animation-delay: 0.5s;
}
.info-detail li:nth-child(3) {
    animation-delay: 0.7s;
}
.info-detail li:nth-child(4) {
    animation-delay: 0.9s;
}
.info-detail li:nth-child(5) {
    animation-delay: 1s;
}
.info-detail li:nth-child(6) {
    animation-delay: 1.3s;
}


/*---------------------------------------------*/
/* DETAIL PAGE */
/*---------------------------------------------*/
.page_main {
    position: relative;
    width: 100%;
}

.page_primary {
    position: relative;
    width: 100%;
    padding: 80px;
    text-align: center;
    display: inline-block;
}
.page_mini {
    position: relative;
    width: 100%;
    padding: 0 50px 80px;
    text-align: center;
    display: inline-block;
}
.page_primary.home {
    padding: 30px 80px 80px;
}
.page_primary.wrap-info {
    padding: 80px 80px 0 80px;
}

.page_primary ul {
    padding-bottom: 20px;
    margin: 0;
}

.box_detail {
    position: relative;
    width: 100%;
    padding: 80px 50px;
    text-align: center;
    display: inline-block;
}
.padding_extra {
    padding-top: 30px;
}

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

.slider {
    position: relative;
}

.slider .img_box img {
    position: relative;
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
}

.slider .img_box.different img {
    height: 450px;
}



.content_box{
    position: relative;
    width: 100%;
    height: 550px;
    background: #f7f7f7;
    padding: 50px;
    text-align: left;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-content: center;
    align-content: center;
}
.content_box h4 {
    width: 100%;
    margin: 0;
}

.btn-detail {
    position: relative;
    background: #6eb514;
    border: 0;
    text-transform: uppercase;
    color: #fff;
    padding: 13px 40px;
    border-radius: 0 50px;
    display: inline-block;
    outline: none;
}
.open_time + .btn-detail {
    margin-top: 15px;
}
.btn-detail:hover, .btn-facilities:hover {
    background: #282b2a;
}

.btn-facilities {
    position: absolute;
    right: 0;
    top: 0;
    background: #6eb514;
    color: #fff;
    text-transform: uppercase;
    padding: 45px 25px;
    height: 110px;
}

.box_bottom {
    position: relative;
    width: 100%;
    height: 110px;
    background: #f7f7f7;
    padding: 25px;
    text-align: left;
}

.box_bottom p {
    margin: 0;
}
.room_size {
    position: relative;
    width: 100%;
    margin: 15px 0 25px;
}
.room_size img {
    width: 30px;
    vertical-align: middle;
    margin-right: 10px;
}
.detail_room {
    margin: 15px 0;
}
.open_time {
    margin: 0;
}

/*---------------------------------------------*/
/* INFO PAGE */
/*---------------------------------------------*/
.box_info {
    margin-bottom: 50px;
    display: inline-block;
}

.icon_amenities {
    position: relative;
    text-align: center;
}
.icon_amenities img {
    width: 36px;
}
.icon_amenities p {
    margin: 0;
    text-transform: capitalize;
}
.icon_amenities .col-xs-3 {
    padding: 10px;
}
.detail_rooms {
    position: relative;
    display: inline-block;
}

.detail_rooms.info {
    padding-top: 0;
}

.title_room {
    position: relative;
    padding: 50px;
    display: inline-block;
}

.detail_rooms .img_box {
    position: relative;
    width: 100%;
    height: 100%;
}

.detail_rooms .img_box:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.27);
}

.slider_rooms {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    padding: 20px;
    width: 100%;
    height: 170px;
    z-index: 9;
}
.slider_rooms p {
    margin: 0 0 0;
    color: #fff;
}
.slider_rooms h3 {
    color: #fff;
    margin: 0 0 15px;
}
.content-amenities {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.slider .content_box.offer_right h3,
.content_box.offer_info h3 {
    width: 100%;
    color: #474747;
}

.slider .col-xs-7.right {
    float: right;
}

.content_box.offer_right h4,
.content_box.offer_info h4 {
    color: #6eb514;
    width: 100%;
    margin: 0;
}


.content_box.offer_right p {
    width: 100%;
}
.content_box p {
    width: 100%;
}
.text-green {
    color: #7da019;
    width: 100%;
    margin: 0;
    font-weight: bold;
}

.text-green.upper {
    text-transform: uppercase;
}

.text-green.map {
    text-transform: uppercase;
    font-size: 20px;
}

.padding80 {
    padding-bottom: 80px;
}

.wrap-map {
    position: relative;
    width: 100%;
    padding: 0 80px;
    display: inline-block;
}

.slider iframe {
    display: block;
}
.room_size.pageinfo {
    margin: 30px 0 0;
}

.pageinfo img {
    width: 40px;
    margin: 0;
}
.pageinfo .detail_room {
    margin: 0;
}
.pageinfo .col-xs-4:nth-child(1),
.pageinfo .col-xs-4:nth-child(2) {
    border-right: 1px solid #eee;
}
.pageinfo .detail_room label{
    display: block;
    font-weight: bold;
    margin: 10px 0 0;
}
.pageinfo .detail_room p {
    margin: 0;
}

/*---------------------------------------------*/
/* GALLERY */
/*---------------------------------------------*/

.padding-gallery {
    padding: 10px;
}

.demo-gallery {
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.album-title {
    overflow: hidden;
    position: relative;
    cursor: default;
    background: #4a523d;
    text-align: left;
    padding: 15px 25px;
    color: #f7f7f7;
}

.album-title span {
    float: right;
}

.box-album p {
    margin: 0;
}

.item-box {
    position: relative;
    overflow: hidden;

}

.demo-gallery .item_img_box {
    width: 100%;
    transition: all 1s;
    cursor: pointer;
    z-index: 60;
}

.demo-gallery .item_img_box:hover {
    transform: scale(1.05);
}

.demo-gallery .item_img_box:hover .img-gallery {
    -webkit-filter: brightness(60%);
    filter: brightness(60%);
}

.item_img_box::before {
    content: "\f00e";
    font-family: FontAwesome;
    font-size: 26px;
    color: #fff;
    display: none;
    width: 31px;
    height: 9px;
    top: -20px;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    position: absolute;
    z-index: 90;
}

.item_img_box:hover:before {
    display: block;
    -webkit-animation: fadeIn 1s;
    -webkit-animation-play-state: play;
    animation: fadeIn 1s;
    animation-play-state: play;
}
.lg-sub-html h4 {
    font-size: 16px;
}
.lg-outer.lg-thumb-open .lg-thumb-outer {
    padding: 10px 15px ;
}
.lg-outer .lg-thumb {
    padding: 0!important;
}
.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
    border-color: #6eb514 !important;
}
.lg-dropdown {
    display: none;
}
/*---------------------------------------------*/
/* FOOTER */
/*---------------------------------------------*/
.footer {
    position: relative;
    width: 100%;
    padding: 80px 50px 0;
    text-align: center;
    color: #fff;
    background: #21632d;
    display: inline-block;
}
.logo-footer {
    width: 90px;
    filter: brightness(0) invert(1);
}
.footer a:hover {
    color: #6eb514;
}
.menu_footer {
    position: relative;
    padding: 30px;
    width: 100%;
    border-top: 1px solid #30793e;
    /*border-bottom: 1px solid #666f49;*/
    margin-top: 50px;
}
.menu_footer ul {
    margin: 0;
    padding: 0;
}
.menu_footer ul li {
    display: inline-block;
    list-style: none;
    padding: 0 6px;
}
.copy_right {
    font-size: 14px;
    padding: 15px 25px;
    text-align: center;
}

.follow i {
    margin: 5px;
    font-size: 16px;
    border: 1px solid #efefef;
    border-radius: 50%;
    color: #c2c5b8;
    width: 40px;
    height: 40px;
    text-align: center;
    padding-top: 10px;
    transition: all .6s
}

.follow i:hover {
    border: 1px solid #6eb514;
    color: #6eb514;
}
.award {
    position: relative;
    width: 100%;
    display: inline-block;
    padding: 25px;
    border-top: 1px solid #e5eee7;
    text-align: center;
}
.award img {
    height: 120px;
    object-fit: cover;
    cursor: pointer;
    transition: all .6s;
    transform: scale(1);
}
.award img:hover {
    transform: scale(1.1);
}

/*---------------------------------------------*/
/* Listing Sitemap */
/*---------------------------------------------*/
.site-map {
    position: relative;
    padding: 30px 80px 80px;
    display: inline-block;
    width: 100%;
    text-align: center;
    /*border-bottom: 1px solid #eee;*/
}

.wrap-site-map{
    text-align: left;
}
.wrap-site-map a:hover {
    color: #6eb514;
}
.wrap-site-map li {
    padding: 5px;
}
.bg-color {
    background: #eee;
}


