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

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

body {
    padding: 0;
    margin: 0;
    font-family: 'WorkSansRegular', 'sans-serif';
    font-size: 15px;
    line-height: 1.5;
    color: #908481;
    background: #f6f1ec;
    -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.6s;
}

h1, h2, h3 {
    color: #857773;
    font-family: inherit;
    font-weight: lighter;
    text-transform: uppercase;
    margin: 0;
    line-height: initial;
}

h1 {
    font-size: 46px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-family: Newsreader16pt-Regular, sans-serif;
    color: #000;
    font-size: 18px;
    margin: 0;
    font-weight: lighter;
    text-transform: capitalize;
}
h5 {
    color: #333;
    font-weight: lighter;
    text-transform: uppercase;
    margin: 0;
    line-height: initial;
    font-size: 18px;
}

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

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

/***************************/
/* HEADER */
/***************************/
.header {
    position: absolute;
    top: 100px;
    width: 100%;
    background: none;
    padding: 0 120px;
    color: #fff;
    z-index: 9;
}
.navbar-brand img {
    filter: brightness(0) invert(1);
    height: 85px;
    transition: all .6s;
}
.main_menu .nav_fixed {
    padding: 0;
    margin: 0;
}
.main_menu .nav_fixed  li {
    position: relative;
    float: left;
    list-style: none;
    padding-right: 15px;
    text-transform: capitalize;
}
.main_menu .nav_fixed li a {
    line-height: 80px;
}

.main_menu .nav_fixed > li:last-child {
    padding-right: 0;
}

.main_menu .nav_fixed li a:hover ,.main_menu .nav_fixed li.active {
    color: #df7861;
}

/****** SUB MENU ******/
.info_detail {
    position: absolute;
    white-space: nowrap;
    transform: translateY(-2em);
    left: 0;
    padding: 0;
    text-align: left;
    background: white;
    transition: all .4s;
    color: #4c4a4a;
    display: none;
    animation-name: fadeIn;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
}
.info_detail:before {
    content: "";
    position: absolute;
    top: -18px;
    left: 15px;
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent #fff;
    display: inline-block;
}

.sub_info:hover .info_detail {
    display: block;
    transform: translateY(-1em);
}
.main_menu .nav_fixed .info_detail li {
    width: 100%;
    padding: 0;
}
.main_menu .nav_fixed .info_detail a {
    width: 100%;
    padding: 8px 15px !important;
    transition: all .4s;
    display: inline-block;
    line-height: unset;
}

.nav_fixed li .info_detail li:hover a {
    color: #df7861;
}

.ui-icon-plus {
    position: absolute;
    width: 20px;
    height: 20px;
    right: 0;
    top: 5px;
    display: none;
    cursor: pointer;
}

.ui-icon-plus:before,
.ui-icon-plus:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    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,
.scroll-ontop .nav_fixed .info_detail li {
    animation-name: fadeInUp;
    animation-duration: 0.7s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
}

/****** SCROLL ON TOP ******/
.scroll-ontop {
    position: fixed;
    top: 0;
    background: #fff;
    color: #4c4a4a;
    padding: 0 70px;
    z-index: 10;
    box-shadow: 0 13px 10px -9px rgba(0,0,0,0.09);
}
.scroll-ontop .navbar-brand {
    margin: 10px 0;
}
.scroll-ontop .navbar-brand img {
    filter: none;
    height: 56px;
}
.scroll-ontop .info_detail:before {
    display: none;
}
.scroll-ontop  .sub_info:hover .info_detail {
    transform: translateY(0em);
}

.scroll-ontop .nav_fixed li {
    animation-name: fadeInRight;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
}

.scroll-ontop .nav_fixed li:nth-child(1),
.info_detail li:nth-child(1) {
    animation-delay: 0.1s;
}

.scroll-ontop .nav_fixed li:nth-child(2),
.info_detail li:nth-child(2) {
    animation-delay: 0.2s;
}

.scroll-ontop .nav_fixed li:nth-child(3),
.info_detail li:nth-child(3) {
    animation-delay: 0.3s;
}

.scroll-ontop .nav_fixed li:nth-child(4),
.info_detail li:nth-child(4) {
    animation-delay: 0.4s;
}

.scroll-ontop .nav_fixed li:nth-child(5),
.info_detail li:nth-child(5) {
    animation-delay: 0.5s;
}

.scroll-ontop .nav_fixed li:nth-child(6),
.info_detail li:nth-child(6) {
    animation-delay: 0.6s;
}

.scroll-ontop .nav_fixed li:nth-child(7),
.info_detail li:nth-child(7) {
    animation-delay: 0.7s;
}

.scroll-ontop .nav_fixed li:nth-child(8),
.info_detail li:nth-child(8) {
    animation-delay: 0.8s;
}

.scroll-ontop .nav_fixed li:nth-child(9),
.info_detail li:nth-child(9) {
    animation-delay: 0.9s;
}

.scroll-ontop .nav_fixed li:nth-child(10),
.info_detail li:nth-child(10) {
    animation-delay: 1s;
}
.scroll-ontop .nav_fixed li:nth-child(11),
.info_detail li:nth-child(11) {
    animation-delay: 1.1s;
}
.scroll-ontop .nav_fixed li:nth-child(12),
.info_detail li:nth-child(12) {
    animation-delay: 1.2s;
}

/***************************/
/* HUMBURGER */
/***************************/
.hamburger {
    position: absolute;
    width: 30px;
    height: 17px;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 100px;
    z-index: 11;
    cursor: pointer;
    transition: all .6s;
    display: none;
}

.hamburger span {
    position: absolute;
    background: #fff;
    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.open-bar span:nth-child(1) {
    transform: rotate(45deg);
}

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

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

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

.hamburger.open-bar{
    right: 50px;
    top: -145px;
}
.scroll-ontop .hamburger.open-bar {
    top: 0;
}

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

.hamburger.open-bar label {
    display: none;
}
.scroll-ontop .hamburger span {
    background: #000;
}
.scroll-ontop .hamburger.open-bar span {
    background: #fff;
}


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

.overlay_slide:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 400px;
    top: 0;
    left: 0;
    display: inline-block;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.01));
    z-index: 2;
}

.text_slider {
    position: absolute;
    width: 60%;
    height: 100px;
    bottom: 100px;
    left: 120px;
    margin: auto;
    text-align: left;
    z-index: 8;
    text-transform: capitalize;

}

.text_slider h1 {
    font-size: 50px;
    line-height: revert;
    text-transform: capitalize;
    font-family: Newsreader16pt-Regular, sans-serif;
}

.text_slider p {
    position: relative;
    padding-left: 120px;
}

.text_slider p:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 1px;
    background: #fff;
    margin: auto;
    opacity: .6;
}

.text_slider h1, .text_slider p {
    color: white;
    margin: 0;
}

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

.text_slider li {
    animation-name: fadeInDown;
    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_slider li:nth-child(1) {
    animation-delay: 0.3s;
}

.text_slider li:nth-child(2) {
    animation-delay: 0.9s;
}

/***************************/
/* BODY */
/***************************/
.main_body {
    position: relative;
    width: 100%;
    display: block;
    text-align: center;
}

.main_body h4 + p {
    margin: 20px 0 15px;
}
.main_body h4 + .content_box {
    margin: 25px auto 0;
}

.primary_photo {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    /*border: 10px solid #fff;*/
}
.second_photos {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}
.third_photos {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}
.images_box {
    position: relative;
    overflow: hidden;
    /*border: 10px solid #fff;*/
}
.images_box img {
    transform: scale(1);
    transition: all .6s;
}
.item:hover .images_box img {
    transform: scale(1.05);
}
.content_box  {
    width: 80%;
    margin: auto;
}

.primary_box{
    position: relative;
    padding: 70px 0 ;
    width: 100%;
}
.primary_top{
    position: relative;
    padding: 70px 0 0;
    width: 100%;
}
.primary_below{
    position: relative;
    padding: 0 0 70px;
    width: 100%;
    display: inline-block;
}

.btn_main {
    position: relative;
    display: inline-block;
    border: 1px solid #d7d7d7;
    padding: 13px 25px;
    margin-top: 15px;
    text-transform: uppercase;
    color: #000;
    background: none;
    transition: all .6s;
}
.btn_main:hover {
    background: #df7861;
    border: 1px solid #df7861;
    color: #fff;
}
.btn_visit {
    position: relative;
    display: inline-block;
    margin-top: 25px;
    text-transform: uppercase;
    color: #000;
}
.btn_visit:hover {
    color: #df7861;
}

.description {
    position: relative;
    z-index: 2;
    text-align: left;
}

.description .col-sm-7{
    padding-top: 50px;
    padding-right: 70px;
}
.description .col-sm-5 {
    margin-bottom: -70px;
}
.description span, .info_page span{
    color: #df7861;
}

.review {
    position: relative;
    text-align: center;
    background: #f8e8de url("../images/icon/flowers-background.png") center no-repeat;
    padding: 140px 0 70px;
    color: #5b5b5b;
}
.review .testimonial h4 + img {
    margin-top: 30px;
}
.review .testimonial img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
}


.item_content {
    position: relative;
    padding: 30px 0 0;
    text-align: center;
}
.item_content p {
    margin: 15px 0 0;
}
.other .item_content {
    position: absolute;
    width: 100%;
    padding: 30px;
    bottom: 0;
    z-index: 2;
}
.other .item_content:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 180px;
    left: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.63));
    z-index: -1;
}
.other .item_content h3 {
    position: relative;
    bottom: -68px;
    transition: all .7s;
    color: #fff;
}
.other .item_content .btn_main {
    opacity: 0;
    background: #df7861;
    border: none;
    pointer-events: none;
    animation-delay: 3.5s;
    transition: all .5s ease-in-out;
    bottom: -25px;
}
.other .item_content .btn_main:hover {
    background: #212121;
}
.other .item_content .btn_main {
    color: #fff;
}
.other .item:hover .item_content h3 {
    bottom: 0;
}
.other .item:hover .item_content .btn_main {
    pointer-events: auto;
    opacity: 1;
    bottom: 0;
}

.item_box {
    padding-top: 50px;
}
.item_inner {
    padding-top: 30px;
}
.btn_main #read_l, .btn_main #read_m.active {
    display: none;
}
.btn_main #read_l.active {
    display: block;
}
.testimonial .col-sm-4 {
    padding: 0 25px;
}
.testimonial img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}
.box_testimonial {
    margin-left: -25px;
    margin-right: -25px;
}
.collapse {
    visibility: inherit;
}
#more {display: none;}

/***************************/
/* CONTENT CHILD */
/***************************/
.content_child {
    position: relative;
    width: 100%;
    display: inline-block;
}
.child_item {
    margin-left: -15px;
    margin-right: -15px;
}
.child_item [class*=col-sm-] {
    margin-top: 50px;
    padding: 0 15px;
}
.child_item [class*=col-sm-]:nth-child(1),
.child_item [class*=col-sm-]:nth-child(2){
    margin-top: 0;
}

.child_item .btn_main {
    margin-top: 15px;
}
.bg_color {
    background: #fdfaf7;
}
.content {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
    text-align: left;
}
.content_child .item:nth-child(even) .col-sm-6:nth-child(1){
    float: right;
}
.content_child .item .col-sm-6 img {
    border: 10px solid #fff;
}
/*.our_cocktail img {*/
/*    border: 10px solid #fff;*/
/*}*/
.review.none {
    padding: 0;
}
.description .col-sm-5.none {
    margin-bottom: 0;
}
.section_item {
    padding: 140px 0 70px;
}
.description h4 + h5 {
    margin: 25px 0 0;
}
.ul_description {
    margin: 10px 0 0;
    text-align: left;
}
.ul_description > li {
    padding: 4px 0;
}
strong {
    color: #3a3737;
}

.child_additional .item .text_slide_gallery {
    z-index: 1;
    height: 40px;
    transition: all .6s;
}
.child_additional .item:hover .text_slide_gallery {
    opacity: 1;

}
.child_additional .item:hover img {
    filter: brightness(40%);
}
.child_additional .images_box {
    cursor: pointer;
}
.child_additional .estimate .item:hover img {
    filter: none;
}
.site_mobile {
    display: none;
}
.site_mobile .item_content {
    padding: 30px;
    background: #fff;
}



/***************************/
/* INFO PAGE */
/***************************/

.info_page ul {
    width: 50%;
    float: left;
    margin: 30px 0 0;
    text-align: left;
}
.info_page ul li,.ul_description li, .faq ul li  {
    list-style: url(../images/icon/list-style.png);
    padding: 4px 0;
}

.info_page ul li > ul, .faq ul{
    width: 100%;
    margin: 10px 0 0;
}
.info_page p +  .ul_item_1 {
    margin: 0;
}
.info_page .ul_item_1 + p {
    display: inline-block;
    width: 100%;
}
.info_page  .ul_item_1  {
    width: 100%;
    margin: 10px 0 0;
}
.info_page  h5 {
    text-align: left;
    display: inline-block;
    width: 100%;
}
.info_page  .ul_item_1 + h5,
.faq ul + h5 {
    margin: 25px 0 0;
}


.gallery_info img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: all .6s;
}
.gallery_info .item_img_box:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 200px;
    bottom: 0;
    left: 0;
    display: inline-block;
    background: linear-gradient(rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.5));
    z-index: 2;
}
.gallery_info .text_slide_gallery {
    opacity: 1;
    top: auto;
    z-index: 3;
}
.gallery_info .item_img_box:hover img {
    filter: brightness(100%);
}

.demo_gallery {
    margin-left: -10px;
    margin-right: -10px;
}

.demo_gallery [class*=col-xs-]{
    padding: 10px;
}
.item_album h3 {
    margin-bottom: 10px;
}
.item_album {
    margin-bottom: 50px;
    display: inline-block;
    width: 100%;
}

.info_title {
    padding-top: 50px !important;
}
.description_info .col-sm-5 {
    float: right;
}
.description .description_info .col-sm-7 {
    padding-top: 0;
}
.description_info h5 {
    margin: 25px 0 0;
}
.table_info table {
    width: 100%;
    margin: auto;
    border-collapse: collapse;
    color: #3f3f3f;
}
.table_info table thead {
    background: #dd7965;
    color: #fff;
}
.table_info table tr, .table_info table th, .table_info table td {
    border: 1px solid #e0d8d1;
}
.table_info table th, .table_info table td {
    padding: 10px 15px;
}
.table_info table tbody tr:nth-child(even){
    background: #f3ede9;
}
.table_info table tbody tr:nth-child(odd){
    background: #f7f5f5;
}



/***************************/
/* GALLERY */
/***************************/
.moment {
    position: relative;
    overflow: hidden;
    margin-bottom: -100px;
    z-index: 3;
}
.moment .col-xs-3 {
    padding: 10px;
    display: none;
}

.moment .col-xs-3:nth-child(1),
.moment .col-xs-3:nth-child(2),
.moment .col-xs-3:nth-child(3),
.moment .col-xs-3:nth-child(4){
    display: block;
}
.text_slide_gallery {
    position: absolute;
    width: 100%;
    height: 70px;
    top: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    opacity: 0;
}
.text_slide_gallery span,.text_slide_gallery label {
    display: block;
}
.lSPager, .lSAction {
    display: none !important;
}
.moment .item_img_box img {
    height: 250px;
}

.item_img_box {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    /*border: 10px solid #fff;*/
}
.item_img_box img {
    transform: scale(1);
    transition: all .6s;
}

.item_img_box:hover img{
    transform: scale(1.05);
    filter: brightness(60%);
}
.item_img_box:hover .text_slide_gallery {
    opacity: 1;
}
.filtr-container {
    overflow: hidden;
}
.lg-sub-html h4 {
    color: #fff;
}
#lg-download {
    display: none;
}

/***************************/
/* FOOTER */
/***************************/
.footer {
    position: relative;
    width: 100%;
    text-align: center;
    background: #efcbba url("../images/icon/footer-background.png") center repeat;
}
.getintouch {
    position: relative;
    padding: 70px 0;
    width: 100%;
    display: inline-block;
}
.btn_getintouch {
    position: relative;
    display: inline-block;
    background: #df7861;
    border: none;
    padding: 15px 30px;
    margin-top: 25px;
    text-transform: uppercase;
    color: #fff;
    transition: all .6s;
}
.btn_getintouch:hover {
    background: #212121;
}
.primary_footer {
    position: relative;
    text-align: center;
    padding: 170px 0 70px;
}
.contact_footer p {
    margin: 0;
}
.contact_footer a:hover,.conact a:hover,
.site_map a:hover {
    color: #df7861;
}
.social {
    margin: 30px 0;
}
.social a {
    margin: 0 4px;
    color: #000;
    font-size: 16px;
}
.map iframe {
    display: flex;
}
.site_map > ul {
    width: 50%;
    float: left;
}
.site_map {
    text-align: left;
}
.faq {
    text-align: left;
}
.faq ul li  ul li  ul {
    margin: 0;
}
.tab_gallerymobile{
    margin: 0;
    position: relative;
    z-index: 2;
}
.tab_gallerymobile .btn{
    width: 100%;
    background: #dd7965;
    color: #fff;
    position: relative;
    padding: 10px 50px 10px 20px!important;
    text-align: left;
    outline: none;
    border-radius: 0;
    border: 1px solid #e0d8d1;
    border-bottom: none;
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
}
.tab_gallerymobile .btn .caret{
    position: absolute;
    right: 15px;
    height: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    border-top: 10px solid;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
}
.tab_gallerymobile .dropdown-menu{
    width: 100%;
    margin: auto;
    background: none;
    right: 0;
    top: 40px;
}
.tab_gallerymobile .dropdown-menu button{
    background: #e7e7e5;
    color: #272727;
    width: 100%;
    padding: 10px 20px;
    border: none;
    border-bottom: 1px solid #dd7965;
    text-align: left;
    transition: all 1s;
    margin: 0;
}
.tab_gallerymobile.open > .dropdown-toggle.btn-default{
    color: #dd7965;
    background-color: #dd7965;
}
.tab_gallerymobile .dropdown-menu button:hover{
    background: #e6e6e6;
}
.tab_gallerymobile .btn-group{
    width: 100%;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary.focus, .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary{
    background: #dd7965;
    box-shadow: none;
    border-color: #e0d8d1;
}
.row_compare{
    margin-left: -15px;
    margin-right: -15px;
    margin-top: 50px;
}
.row_compare .col-xs-6{
    padding: 0 15px;
}
.section_packages .item_box{
    padding-top: 0;
}
.table_info td:nth-child(1){
    text-align: left;
}