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

}

body {
    padding: 0;
    margin: 0;
    font-family: 'poppinsregular', 'sans-serif';
    font-size: 16px;
    line-height: 1.5;
    color: #a5a5a5;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden !important;
}

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

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

h1, h2, h3 {
    color: #9a774e;
    font-family: poppinsregular, sans-serif;
    text-transform: capitalize;
    line-height: 1;
}

h1 {
    font-weight: lighter;
    font-size: 34px;
    margin: 0;
}

h2 {
    font-weight: lighter;
    font-size: 28px;
    margin: 0;
}

h3 {
    font-weight: lighter;
    font-size: 20px;
    margin: 0;
}

h4 {
    font-weight: lighter;
    font-size: 18px;
    margin: 0;
}

p {
    font-weight: lighter;
}

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

.text-color {
    color: #9a774e !important;
}

.text-min {
    width: 100%;
    margin: 10px 0 0;
}

.animat {
    opacity: 0;
}

.text-white {
    color: #fff;
}

/*---------------------------------------------*/
/* SLIDERS */
/*---------------------------------------------*/
.slideshow {
    position: relative;
}

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

.text_slide {
    position: absolute;
    width: 80%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    text-align: center;
    height: 200px;
    margin: auto;
    padding: 50px;
    z-index: 7;
    transform: none;
}
.text_slide.sha {
    height: 300px;
}
.text_slide h1 {
    color: #fff !important;
    letter-spacing: 1px;
    margin: 10px 0;
}
.text_slide label {
    font-size: 2em;
    color: #fff !important;
    letter-spacing: 1px;
    margin: 10px 0;
}

.text_slide p {
    font-size: 20px;
    margin: 0;
}

.text_slide img {
    width: 100px;
}

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

.border-bottom {
    position: relative;
    width: 92%;
    border-bottom: 1px solid #468e9e;
    margin: 0 10px;
    display: inline-block;
}

.text_slide ul li {
    animation-name: fadeInUp;
    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_slide li:nth-child(1) {
    animation-delay: 0.4s;
}

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

.text_slide li:nth-child(3) {
    animation-delay: 0.8s;
}

.btn-slide-img {
    position: absolute;
    width: 100%;
    height: 100px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    opacity: 0;
    pointer-events: none;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: flex-end;
    align-items: center;
    -webkit-align-items: center;
    transition: all 0.6s ease-in-out;
}

.btn-slide-img #arrow_left {
    position: absolute;
    left: 50px;
    cursor: pointer;
    background: #fff;
    width: 50px;
    height: 50px;
    text-align: center;
    padding: 12px;

}

.btn-slide-img #arrow_right {
    position: absolute;
    right: 50px;
    cursor: pointer;
    background: #fff;
    width: 50px;
    height: 50px;
    text-align: center;
    padding: 12px;
}

.slideshow:hover .btn-slide-img {
    opacity: .6;
    pointer-events: auto;
}

.btn-slide-img #arrow_left:hover, .btn-slide-img #arrow_right:hover {
    background: #caa26b;
    color: #fff;
}
.btn-slide-img i {
    font-size: 26px;
}

@keyframes slide {
    from {
        -ms-transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    to {
        -ms-transform: scale(1.1, 1.1);
        -webkit-transform: scale(1.1, 1.01);
        transform: scale(1.1, 1.1);
    }

}

@-webkit-keyframes slide {
    from {
        -ms-transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    to {
        -ms-transform: scale(1.05, 1.05);
        -webkit-transform: scale(1.05, 1.05);
        transform: scale(1.05, 1.05);
    }
}

/*---------------------------------------------*/
/* HEADER */
/*---------------------------------------------*/
.nav_top {
    position: fixed;
    top: 0;
    width: 100%;
    height: 44px;
    color: #fff;
    background: #18191a;
    z-index: 10;
}
.nav_top .top_contact ul,
.nav_top .nav_lang{
    padding: 10px;
    margin: 0;
}
.nav_top .top_contact ul li{
    margin: 0 5px;
}
.nav_top .top_contact ul li,
.nav_top .nav_lang ul li{
    list-style: none;
    display: inline-block;
    text-align: center;
}
.nav_top .top_contact ul li a,
.nav_top .nav_lang ul li a{
    color: #fff;
    transition: all 0.6s;
}

.nav_top .nav_lang{
    text-align: right;
}
.nav_top .nav_lang #lang_primary{
    cursor: pointer;
}
.nav_top .nav_lang .lang_parent{
    background-color:#18191a;
    padding: 0;
    margin-top: 10px;
    box-shadow: rgba(0, 0, 0, 0.09) 0 0 10px;
    display: none;
}
.nav_top .nav_lang .lang_parent.active{
    display: block;
}
.nav_top .nav_lang .lang_parent li{
    display: block;
    padding: 5px;
}
.nav_top .nav_lang .lang_parent li a:hover{
    color:#9a774e;
}

.nav{
    padding-right: initial;
}
.wrap-menu {
    position: absolute;
    width: 100%;
    height: 90px;
    display: flex;
    top: 44px;
    background: #fff;
    padding: 0;
    z-index: 9;
    transition: all 0.7s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.09) 0 0 10px;
}
.wrap-menu .navbar-nav > li{
    float: left;
    height: 90px;
    vertical-align: top;
    list-style: none;
    margin: 0;
    align-items: center;
    display: flex;
}
.wrap-scroll {
    position: fixed;
    transition: all 0.7s ease-in-out;
}

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

.logo {
    position: relative;
}
.logo img{
    width: 114px;
    padding: 10px;
}

.nav > li > a {
    padding: 33px 15px;
    text-transform: capitalize;
    cursor: pointer;
    transition: all 0.7s ease-in-out;

}

.nav li a:hover, .nav li a.active {
    color: #9a774e;
}

.btn-wrap-header {
    position: relative;
    padding: 33px 25px !important;
    background: #9a774e;
    border: none;
    color: #fff;
    text-transform: capitalize;
    display: inline-block;
    cursor: pointer;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.btn-wrap-header:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #18191a;
    border: none;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -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;
}

.btn-wrap-header:hover:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.btn-wrap-header:hover {
    color: #9a774e;
}

#booknow {
    position: absolute;
    right: -300px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.7s ease-in-out;
}

.wrap-scroll #booknow {
    position: relative;
    right: 0;
    opacity: 1;
    pointer-events: auto;
    transition: all 0.7s ease-in-out;
}

/*------------------------------------------------*/
/* SUB MENU */
/*------------------------------------------------*/
.sub-menu-parent {
    position: relative;
}

.sub-menu {
    visibility: hidden;
    /* hides sub-menu */
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    white-space: nowrap;
    transform: translateY(-2em);
    transition: all 0.6s;
    z-index: -1;
}

.sub-menu {
    padding: 10px;
}

.sub-menu-parent ul li {
    list-style: none;
    padding: 5px;
    transition: all 0.9s;
}

.sub-menu-parent:hover .sub-menu {
    visibility: visible;
    opacity: 1;
    z-index: 1;
    transform: translateY(0%);
    transition-delay: 0s, 0s, 0.6s;
    padding: 10px;
    transition: all 0.6s;
    box-shadow: 6px 6px 6px 0 rgba(0,0,0,0.1);
}

.sub-menu {
    background: #fff;
    border-radius: 0;
}

/*---------------------------------------------*/
/* HAMBURGER */
/*---------------------------------------------*/
.hamburger {
    position: absolute;
    width: 35px;
    height: 25px;
    margin: 26px 30px;
    top: 0;
    right: 0;
    cursor: pointer;
    z-index: 9999;
}

#line1 {
    position: absolute;
    top: 0;
    width: 100%;
    height: 4px;
    background: #9a774e;
    -webkit-transition: all 300ms ease 200ms;
    -moz-transition: all 300ms ease 200ms;
    -ms-transition: all 300ms ease 200ms;
    transition: all 300ms ease 200ms;
}

#line2 {
    position: absolute;
    top: 10px;
    right: 0;
    width: 100%;
    height: 4px;
    background: #9a774e;
    -webkit-transition: all 300ms ease 200ms;
    -moz-transition: all 300ms ease 200ms;
    -ms-transition: all 300ms ease 200ms;
    transition: all 300ms ease 200ms;
}

#line3 {
    position: absolute;
    top: 20px;
    width: 100%;
    height: 4px;
    background: #9a774e;
    -webkit-transition: all 300ms ease 200ms;
    -moz-transition: all 300ms ease 200ms;
    -ms-transition: all 300ms ease 200ms;
    transition: all 300ms ease 200ms;
}

.hamburger:hover #line1,
.hamburger:hover #line2,
.hamburger:hover #line3 {
    top: 10px;
}

.hamburger.open #line1 {
    top: 10px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.hamburger.open #line2 {
    right: 30px;
    opacity: 0;
}

.hamburger.open #line3 {
    top: 10px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

/*---------------------------------------------*/
/* BOX MENU MOBILE */
/*---------------------------------------------*/
.wrap-box-menu-mobile {
    position: fixed;
    background: #fff;
    width: 100%;
    height: 100%;
    display: -webkit-flex;
    display: none;
    top: 0;
    left: 0;
    align-items: center;
    -webkit-align-items: center;
    -webkit-justify-content: flex-end;
    z-index: 999;
    -webkit-transition: all 300ms ease 200ms;
    -moz-transition: all 300ms ease 200ms;
    -ms-transition: all 300ms ease 200ms;
    transition: all 300ms ease 200ms;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    overflow: scroll;
}

.wrap-box-menu-mobile.active {
    transform: translateX(0);
    -webkit-transform: translateX(0);
}

.show-box {
    position: absolute;
    width: 100%;
    top: 100px;
}

.show-box ul {
    padding: 0 30px;
    margin: 0;
    width: 100%;
}

.show-box li {
    list-style: none;
    text-transform: capitalize;
    font-size: 18px;
}

.show-box a {
    position: relative;
    padding: 10px;
    display: block;
}

.select ul.info {
    display: none;
}

.arrow-plus {
    position: relative;
    float: right;
    background: url(../images/icon/icon_pluss.png);
    width: 20px;
    height: 20px;
    display: inline-block;
    transform: rotate(-90deg);
    transition: all 0.6s;

}

.select a:hover .arrow-plus {
    transform: rotate(90deg);
}

ul.info {
    padding: 10px 20px;
}

/*------------------------------------------------*/
/* PAGE HOME */
/*------------------------------------------------*/
.wrap-main {
    position: relative;
    width: 100%;
    background-color: #18191a;
}

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

.wrap-box.page-info {
    padding: 80px 80px 0;
}

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

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

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

.color-white {
    background: #fff;
}

/*------------------------------------------------*/
.full-text {
    position: relative;
    width: 100%;
    background: #fff;
    padding: 20px;
    text-align: left;
    display: inline-block;
}

.discount {
    text-align: right !important;
}

.full-text p {
    margin: 0;
    color: #9e9e9e;
    text-transform: capitalize;
}

.full-text h1 {
    font-family: poppinsregular, sans-serif;
    line-height: 1;
    margin-top: 5px;
}

.full-text h4 {
    color: #1c1c1c;
}

.btn-offers {
    position: relative;
    color: #9a774e;
    cursor: pointer;
}

.btn-offers:after {
    content: "\f178";
    font-family: FontAwesome;
    position: relative;
    display: inline-block;
    color: #9a774e;
    right: -10px;
    vertical-align: middle;
    transition: all 0.6s ease-in-out;
}

.btn-offers:hover:after {
    right: -18px;
}

.text-two {
    position: relative;
    text-align: justify;
}

.text-two .col-xs-6 {
    padding: 30px 50px 0;
}

.text-two .col-xs-6 p {
    margin: 0;
}

.box-text-accom-destop {
    position: relative;
    width: 100%;
    height: 600px;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-content: center;
    align-content: center;
    padding: 50px;
    text-align: left;
    background: #fff;
}

.box-text-accom-destop.box-text-info {
    background: #fff !important;
}

.box-text-accom-destop h1, .box-text-accom-destop p {
    width: 100%;
}

.box-text-accom-destop h1 {
    margin: 10px 0 0;
}

.box-text-accom-destop h4 {
    color: #9e9e9e;
    letter-spacing: 1px;
}

.show-detail {
    position: relative;
    width: 100%;
    margin-bottom: 80px;
    display: inherit;
}

.show-detail.none {
    margin-bottom: 0;
}

.slide-fac .col-xs-6.right,
.slide-accom .col-xs-6.right,
.show-detail .col-xs-6.right {
    float: right !important;
}

/*---------------------------------------------*/
.btn-wrap-main {
    position: relative;
    padding: 10px 30px;
    background: none;
    border: 1px solid #9a774e;
    color: #9a774e;
    text-transform: capitalize;
    display: inline-block;
    cursor: pointer;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.btn-wrap-main:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #18191a;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -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;
}

.btn-wrap-main:hover:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.btn-wrap-main:hover {
    color: white;
}

/*---------------------------------------------*/
.detailroom{
    width: 100%;
}
.detailroom ul{
    padding: 0;
    margin: 0;
 }
.detailroom ul li{
    list-style: none;
    float: left;
 }
.detailroom p{
    padding: 0;
    margin: 0;
}
.detailroom ul li div:first-child{
    padding: 20px 20px 0 0;
}
.detailroom ul li div{
    padding: 20px 20px 0;
    text-align: center;
}
.detailroom.info ul li{
    display: inline-block;
    float: none !important;
}
.detailroom.info{
    width: 100%;
    float: left;
}


/*---------------------------------------------*/

/*---------------------------------------------*/

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

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

.amenities li {
    list-style: none;
    display: block;
    padding: 10px;
    text-transform: capitalize;
    width: 33.33%;
    float: left;
}
.amenities li div{

}

    /*---------------------------------------------*/
.also-like:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.5);
}

.box-aloso-like {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 93px;
    margin: auto;
    padding: 30px;
    z-index: 2;
    transition: all 0.4s;
}

.btn-also {
    position: relative;
    margin: 15px auto;
    padding: 10px 20px;
    color: #fff;
    opacity: 0;
    transition: all 0.4s;
    width: 55%;
    background: #9a774e;
}

.also-like:hover .box-aloso-like {
    height: 135px;
}

.also-like:hover .btn-also {
    opacity: 1;
}

/*------------------------------------------------*/
/* PAGE GALLERY */
/*------------------------------------------------*/
.slide-gallery {
    position: relative;
    width: 100%;
    height: 600px;
}

.slide-gallery:after {
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.text_slide_gallery {
    position: absolute;
    width: 100%;
    height: 30px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    padding: 0 50px;
    text-align: center;
    -webkit-align-content: center;
    align-content: center;
    z-index: 4;
}

.text_slide_gallery h1 {
    color: #fff;
}

.wrapper-filter-controls {
    position: relative;
    text-align: center;
    margin-top: 30px;
}

.filter-controls {
    display: inline-block;
    padding: 0 10px;
    text-align: center;
    height: auto;
    border-bottom: 1px solid #dce0e2;
}

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

.filter-controls li {
    display: inline-block;
    list-style: none;
    margin: 0 8px -2px;
    padding: 5px 8px;
    font-size: 16px;
    cursor: pointer;
}
.filter-controls li.active {
    color: #9a774e;
    border-bottom: 4px solid #9a774e;
}
.view {
    overflow: hidden;
    position: relative;
    cursor: default;
}

.overlay_gallery:hover .mask {
    opacity: 1;
}

.hm-red-strong .full-bg-img, .hm-red-strong .mask {
    background-color: rgba(0, 0, 0, 0.4);
}

.overlay_gallery .mask {
    opacity: 0;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.view .mask {
    background-attachment: fixed;
}

.view .content, .view .mask {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    cursor: pointer;
}

.text_gallery_hover {
    color: #fff;
    font-size: 26px;
    text-align: center !important;
    opacity: 0.5;
    transition: all 0.5s;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 70px;
    margin: auto;
}

.text_gallery_hover i {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    margin: auto;
    padding: 15px;
    font-size: 30px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.5s;
    margin-top: 20px;
}

.padding-gallery {
    padding: 10px;
}

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

.demo-gallery .col-xs-6 {
    padding: 0 !important;
}

.demo-gallery .image_box {
    height: 500px;
}
.item_img_box {
    position: relative;
    overflow: hidden;
}

.item_img_box .item_img {
    width: 100%;
    display: block;
    transform: scale(1);
    transition: all 1s ease;
}

.section_content:hover .item_img_box .item_img {
    transform: scale(1.05);
}

.demo-gallery .item_img_box:hover .item_img {
    transform: scale(1.05);
}
/*------------------------------------------------*/
/* PAGE OWL */
/*------------------------------------------------*/
.slide-main.owl-carousel .owl-stage-outer{
    overflow: hidden !important;

}

.owl-carousel .owl-item img{
    width: auto !important;
}


.owl-theme .owl-nav [class*=owl-] {
    background: #18191a !important;
    color: #fff !important;
}

.owl-theme .owl-nav [class*=owl-] i {
    transform: rotate(45deg);
}

.owl-theme .owl-nav [class*=owl-]:hover {
    color: #9a774e !important;
}



.owl-theme .owl-dots .owl-dot span{
    background: #9a774e !important;
}

.slide-accom .owl-theme .owl-dots{
    display: none;
}





/*---------------------------------------------*/
/* CONTACT FROM */
/*---------------------------------------------*/
.contact .detail a{
    margin: 0 5px;
    color: #a5a5a5;

}
.contact-container {
    width: 980px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
.contact-from .col-xs-6 ,
.contact-from .col-xs-12 {
    padding: 0 10px 20px;
}
.contact-from .col-xs-12.none {
    padding: 0 10px 0;
}
.contact-from input , .contact-from textarea {
    position: relative;
    width: 100%;
    height: 40px;
    padding: 8px 40px;
    background: none;
    border: 1px solid #969696;
    outline: none;
}
.icon-contact {
    position: absolute;
    height: 40px;
    width: 40px;
}
.icon-contact img {
    margin: 10px;
}
.contact-from input::-webkit-input-placeholder {
    color: #969696;
}
.contact-from input:focus ,
.contact-from textarea:focus{
    border-color: #9a774e;
}
.text-reser p {
    color: #1c1c1c;
    margin: 0 0 10px 0;
}
.contact-from .btn-wrap-main {
    outline: none;
}
.contact-from .btn-wrap-main i {
   margin-right: 5px;
}

.captcha {
    position: absolute;
    right: 0;
    height: 40px;
}
.captcha i {
    position: relative;
    width: 40px;
    height: 40px;
    text-align: center;
    top: -13px;
    padding: 13px;
    background: #9a774e;
    color: #fff;
    z-index: 999;
    cursor: pointer;
}
.captcha i:hover{
    color: #000;
}
#captcha{
    position: relative;
    left: 4px;
}
.secur_box{
    position: relative;
}

/*---------------------------------------------*/
/* GALLERY */
/*---------------------------------------------*/
.box-gallery {
    position: relative;
    width: 100%;
    display: flex;
    padding: 0 100px 100px;

}

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

.overlay_gallery:hover .mask {
    opacity: 1;
}

.hm-red-strong .full-bg-img, .hm-red-strong .mask {
    background-color: rgba(0, 0, 0, 0.4);
}

.overlay_gallery .mask {
    opacity: 0;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.view .mask {
    background-attachment: fixed;
}

.view .content, .view .mask {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    cursor: pointer;
}

.overlay_text_top {
    color: #FFF !important;
    top: 10px;
    position: absolute;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
}

.text_gallery_hover {
    color: #fff;
    font-size: 26px;
    text-align: center !important;
    opacity: 0.5;
    transition: all 0.5s;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 70px;
    margin: auto;
}

.text_gallery_hover i {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    /*width: 60px;*/
    /*height: 60px;*/
    margin: auto;
    padding: 15px;
    font-size: 30px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.5s;
    margin-top: 20px;
}

.padding10 {
    padding: 10px;
}

.demo-gallery {
    display: inline-block;
    width: 100%;
    text-align: center;
}
.demo-gallery ul {
    padding: 0;
    margin: 0;
}

.demo-gallery .image_box {
    height: 500px;
}

.item_img_box {
    position: relative;
    overflow: hidden;
}

.item_img_box .item_img {
    width: 100%;
    display: block;
    transform: scale(1);
    transition: all 1s ease;
}

.section_content:hover .item_img_box .item_img {
    transform: scale(1.05);
}

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

.lg-dropdown, .lSPager, .lSAction {
    display: none !important;
}

/*---------------------------------------------*/
/* FOOTER */
/*---------------------------------------------*/
.color-blue {
    background: #18191a;
}

.footer a {
    color: #616161;
}

.footer span {
    margin: 0 10px;
}

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

.footer a:hover {
    color: #9a774e;
}

.social-footer {
    position: relative;
    width: 100%;
}

.icon-social {
    padding: 0;
    margin: 0;
}

.icon-social li {
    position: relative;
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid #616161;
    transform: rotate(-45deg);
    text-align: center;
    margin: 13px;
    display: inline-block;
    padding: 9px;
    cursor: pointer;
    color: #fff;
}

.icon-social i {
    margin-right: 0;
    transform: rotate(45deg);
}

.icon-social li:hover {
    background: #9a774e;
    border: 1px solid #9a774e;
}

.icon-social li:hover i {
    color: #fff;
}

.copy-right {
    position: relative;
    width: 100%;
    text-align: center;
    padding: 15px;
    font-size: 14px;
    color: #fff;
    letter-spacing: 1px;
}

.copy-right p {
    margin: 0;
}

.copy-right a {
    color: #fff;
}
/*---------------------------------------------*/
/* PROMOTION POPUP */
/*---------------------------------------------*/
.banner {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 999;
}
.box_banner {
    position: absolute;
    width: 650px;
    height: 463px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: #fff;
    padding: 50px;
    text-align: center;
}
.box_banner p {
    text-align: left;
}
.ic_close {
    position: absolute;
    width: 50px;
    height: 50px;
    padding: 6px;
    top: -20px;
    right: -20px;
    background: #9a774e;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}
.ic_close:hover {
    background: #18191a;
}
.ic_close:before , .ic_close:after {
    content: " ";
    position: absolute;
    background: #f1e2d0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.ic_close:before {
    width: 30px;
    height: 1px;
    transform: rotate(-45deg);
}
.ic_close:after {
    width: 1px;
    height: 30px;
    transform: rotate(130deg);
}
.over_f {
    overflow: hidden;
}
.thai-only a {
    color: inherit;
}
.thai-only a:hover {
    color: #99774e;
}
.thai-only ul {
    text-align: left;
    margin-bottom: 30px;
}
.thai-only ul li {
    padding: 4px;
    border-bottom: 1px solid #222223;
    list-style: none;
}
.thai-only ul li:before {
    content: "\f00c";
    font-family: FontAwesome;
    display: inline-block;
    margin-right: 10px;
    color: #99774e;
}

