/* ======= Basic style ======= */
:root {
    --primary-color: #4bacc4;
    --secondary-color: rgba(34, 34, 34, 1);
    --black-color: rgba(102, 102, 102, 1);
    --icons-filter: brightness(0) saturate(100%) invert(64%) sepia(42%) saturate(573%) hue-rotate(145deg) brightness(89%) contrast(82%);
    --space-between-sections: 144px;
    --font-size-title: 45px;
    --font-size-subtitle: 16px;
    --font-size-text: 15px;
    --custom-font-size: 29px
}
@media (max-width:992px) {
    :root {
       
        --space-between-sections: 55px;
        --font-size-title: 30px;
        --font-size-text: 13px;
        --font-size-subtitle: 12px;
    }
}
html,
body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-smoothing: antialiased;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    list-style: none;
    word-wrap: break-word;
}

h1,h2,h3,h4,h5,h6 {
    text-wrap: balance;
}
p {
    text-wrap: pretty;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75em;
    color: var(--black-color);
    overflow-x: hidden !important;
}

p {
    font-family: 'Poppins', sans-serif;
    font-size: var(--font-size-text);
    font-weight: 400;
    line-height: 1.75em;
    color: var(--black-color);
    margin-bottom: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.title,
.subtitle {
    font-family: 'Gilda Display', serif;
    font-weight: 400;
    line-height: 1.25em;
    margin: 0 0 20px 0;
    color: var(--secondary-color);
}

img {
    width: 100%;
    height: auto;
    color: #f4f4f4;
}

span,
a,
a:hover {
    display: inline-block;
    text-decoration: none;
    color: inherit;
}

b {
    font-weight: 400;
    color: var(--primary-color);
}
p a {
    color: var(--secondary-color);
    font-weight: bold;
    text-decoration: underline;
}
/* text field */
input[type="password"]:focus,
input[type="email"]:focus,
input[type="text"]:focus,
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus,
textarea:focus {
    outline: none;
}

input[type="password"],
input[type="email"],
input[type="text"],
input[type="file"],
textarea {
    max-width: 100%;
    margin-bottom: 15px;
    padding: 10px 0;
    height: auto;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-width: 0 0 1px;
    border-style: solid;
    display: block;
    width: 100%;
    line-height: 1.5em;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--black-color);
    background-image: none;
    border-bottom: 1px solid #ececec;
    border-color: ease-in-out .15s, box-shadow ease-in-out .15s;
}

input:focus,
textarea:focus {
    border-bottom-width: 1px;
    border-color: var(--primary-color);
}

input[type="submit"],
input[type="reset"],
input[type="button"],
button {
    text-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    line-height: 1.75em;
    -webkit-transition: background-color .15s ease-out;
    transition: background-color .15s ease-out;
    background: transparent;
    border: 0px solid transparent;
}

input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
button:hover {
    border: 0px solid transparent;
}

select {
    padding: 10px;
    border-radius: 5px;
}

table,
th,
tr,
td {
    border: 1px solid #f8f5f0;
}

th,
tr,
td {
    padding: 10px;
}

input[type="radio"],
input[type="checkbox"] {
    display: inline;
}

input[type="submit"] {
    font-weight: 400;
    font-family: 'Gilda Display', serif;
    ;
    text-transform: uppercase;
    background: var(--primary-color);
    color: #fff;
    padding: 8px 24px;
    margin: 0;
    position: relative;
    font-size: 15px;
    letter-spacing: 3px;
}
.termsCheck-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}
.termsCheck-container p {
    margin-bottom: 0px;
}
.termsCheck-container p a {
    margin-left: 3px;
}
.termsCheck-container .fake-checkbox {
    display: inline-flex;
    width: 20px;
    height: 20px;
    border: 1px solid var(--primary-color);
    margin-right: 7px;
    position: relative;
}
.termsCheck-container .fake-checkbox.checked::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 100%;
    background-image: url('../../../images/icons/check.svg');
    background-size: cover;
}
#newsletter-form .termsCheck-container p {
    color: var(--black-color);
    font-size: 12px;
}
#newsletter-form .termsCheck-container label {
    display: flex !important;
}
.alert-success {
    background: transparent;
    color: var(--black-color);
    border: 1px solid var(--primary-color);
    border-radius: 0px;
}

.alert-danger {
    background: transparent;
    color: var(--black-color);
    border: 1px solid #e6253c;
    border-radius: 0px;
}

/* placeholder */
::-webkit-input-placeholder {
    color: var(--black-color);
    font-size: 15px;
    font-weight: 400;
}

:-moz-placeholder {
    color: var(--black-color);
}

::-moz-placeholder {
    color: var(--black-color);
    opacity: 1;
}

:-ms-input-placeholder {
    color: var(--black-color);
}

/* blockquote */
blockquote {
    padding: 45px;
    display: block;
    position: relative;
    background-color: #f8f5f0;
    overflow: hidden;
    margin: 35px 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75em;
    color: var(--black-color);
}

blockquote p {
    font-family: inherit;
    margin-bottom: 0 !important;
    color: inherit;
    max-width: 650px;
    width: 100%;
    position: relative;
    z-index: 3;
}

blockquote:before {
    content: '\e645';
    font-family: 'Themify';
    position: absolute;
    right: 40px;
    bottom: 40px;
    font-size: 110px;
    opacity: 0.07;
    line-height: 1;
    color: var(--secondary-color);
}

blockquote p {
    margin-bottom: 0;
}

blockquote p a {
    color: inherit;
}

blockquote cite {
    display: inline-block;
    font-size: 15px;
    position: relative;
    padding-left: 60px;
    border-color: inherit;
    line-height: 1;
    margin-top: 22px;
    font-style: normal;
    color: var(--primary-color);
    font-weight: 400;
}

blockquote cite:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 45px;
    height: 1px;
    border-top: 1px solid;
    border-color: inherit;
    color: var(--primary-color);
}


/* ======= Helper style ======= */
.mt-0 {
    margin-top: 0 !important;
}

.mt-15 {
    margin-top: 15px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.mt-60 {
    margin-top: 60px !important;
}

.mt-90 {
    margin-top: 90px !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.mb-90 {
    margin-bottom: 90px !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.no-padding {
    padding: 0 !important;
}

/* important */
.o-hidden {
    overflow: hidden;
}

.position-re {
    position: relative;
}

.full-width {
    width: 100%;
}

.bg-img {
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-fixed {
    background-attachment: fixed;
}

.pattern {
    background-repeat: repeat;
    background-size: auto;
}

.bold {
    font-weight: 600;
}

.count {
    font-family: 'Gilda Display', serif;
    ;
}

.valign {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.v-middle {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}

.v-bottom {
    position: absolute;
    width: 100%;
    bottom: 5%;
    left: 0;
    -webkit-transform: translate(0%, -5%);
    transform: translate(0%, -5%);
}

.js .animate-box {
    opacity: 0;
}

/* background & color */
.bg-black {
    background: var(--secondary-color);
}

.bg-cream {
    background: #f8f5f0;
}

.color-1,
.color-1 * {
    color: #fff;
}

.color-2,
.color-2 * {
    color: #adadad;
}

.color-3,
.color-3 * {
    color: var(--black-color);
}

.color-4,
.color-4 * {
    color: var(--secondary-color);
}

.color-5,
.color-5 * {
    color: var(--primary-color);
}

/* star - white  */
.star {
    position: relative;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.9em;
    margin-right: 0.9em;
    margin-bottom: 1.2em;
    border-right: 0.3em solid transparent;
    border-bottom: 0.7em solid #fff;
    border-left: 0.3em solid transparent;
    /* Controlls the size of the stars. */
    font-size: 8px;
}

.star:before,
.star:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    top: 0.6em;
    left: -1em;
    border-right: 1em solid transparent;
    border-bottom: 0.7em solid #fff;
    border-left: 1em solid transparent;
    transform: rotate(-35deg);
}

.star:after {
    transform: rotate(35deg);
}

/* Star rating  */
.star-rating {
    position: relative;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.9em;
    margin-right: 0.9em;
    margin-bottom: 2em;
    border-right: 0.3em solid transparent;
    border-bottom: 0.7em solid #e4a853;
    border-left: 0.3em solid transparent;
    /* Controlls the size of the stars. */
    font-size: 8px;
}

.star-rating:before,
.star-rating:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    top: 0.6em;
    left: -1em;
    border-right: 1em solid transparent;
    border-bottom: 0.7em solid #e4a853;
    border-left: 1em solid transparent;
    transform: rotate(-35deg);
}

.star-rating:after {
    transform: rotate(35deg);
}


/* ======= Selection style ======= */
::-webkit-selection {
    color: #fff;
    background: var(--primary-color);
}

::-moz-selection {
    color: #fff;
    background: var(--primary-color);
}

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


header {
    height: 100vh;
}

/* ======= Owl-Theme custom style ======= */
.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 0px;
    line-height: 1.5;
    display: block;
    outline: none;
}

.list-images .owl-theme .owl-nav.disabled+.owl-dots {
    position: absolute;
    right: 0;
    bottom: -30px;
}

.owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 0 3px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #ADADAD;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
}




/* === owl carousel nav style  === */
.team .owl-theme .owl-nav,
.slider-grid-bg .owl-theme .owl-nav,
.news .owl-theme .owl-nav,
.pricing .owl-theme .owl-nav,
.testimonials .owl-theme .owl-nav,
.rooms-page .owl-theme .owl-nav,
.zig-zag-list .owl-theme .owl-nav,
.rooms1 .owl-theme .owl-nav {
    position: absolute !important;
    top: 35% !important;
    bottom: auto !important;
    width: 100%
}

.team .owl-theme .owl-nav,
.slider-grid-bg .owl-theme .owl-nav,
.news .owl-theme .owl-nav,
.pricing .owl-theme .owl-nav,
.testimonials .owl-theme .owl-nav,
.rooms-page .owl-theme .owl-nav,

.zig-zag-list .owl-theme .owl-nav,
.rooms1 .owl-theme .owl-nav {
    position: relative;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.team .owl-theme .owl-prev,
.slider-grid-bg .owl-theme .owl-prev,
.news .owl-theme .owl-prev,
.pricing .owl-theme .owl-prev,
.testimonials .owl-theme .owl-prev,
.rooms-page .owl-theme .owl-prev,
.zig-zag-list .owl-theme .owl-prev,
.rooms1 .owl-theme .owl-prev {
    left: 10px !important
}

.team .owl-theme .owl-next,
.slider-grid-bg .owl-theme .owl-next,
.news .owl-theme .owl-next,
.pricing .owl-theme .owl-next,
.testimonials .owl-theme .owl-next,
.rooms-page .owl-theme .owl-next,
.zig-zag-list .owl-theme .owl-next,
.rooms1 .owl-theme .owl-next {
    right: 10px !important
}


.team .owl-theme .owl-prev,
.team .owl-theme .owl-next,
.slider-grid-bg .owl-theme .owl-prev,
.slider-grid-bg .owl-theme .owl-next,
.news .owl-theme .owl-prev,
.news .owl-theme .owl-next,
.pricing .owl-theme .owl-prev,
.pricing .owl-theme .owl-next,
.testimonials .owl-theme .owl-prev,
.testimonials .owl-theme .owl-next,
.rooms-page .owl-theme .owl-prev,
.rooms-page .owl-theme .owl-next,
.zig-zag-list .owl-theme .owl-prev,
.zig-zag-list .owl-theme .owl-next,
.rooms1 .owl-theme .owl-prev,
.rooms1 .owl-theme .owl-next {
    color: #fff;
    position: absolute !important;
    top: 50%;
    padding: 0;
    height: 50px;
    width: 50px;
    border-radius: 0%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #272727;
    border: 1px solid #272727;
    line-height: 0;
    text-align: center;
    font-size: 16px
}

.team .owl-theme .owl-prev>span,
.team .owl-theme .owl-next>span,
.slider-grid-bg .owl-theme .owl-prev>span,
.slider-grid-bg .owl-theme .owl-next>span,
.news .owl-theme .owl-prev>span,
.news .owl-theme .owl-next>span,
.pricing .owl-theme .owl-prev>span,
.pricing .owl-theme .owl-next>span,
.testimonials .owl-theme .owl-prev>span,
.testimonials .owl-theme .owl-next>span,
.rooms-page .owl-theme .owl-prev>span,
.rooms-page .owl-theme .owl-next>span,
.zig-zag-list .owl-theme .owl-prev>span,
.zig-zag-list .owl-theme .owl-next>span,
.rooms1 .owl-theme .owl-prev>span,
.rooms1 .owl-theme .owl-next>span {
    position: absolute;
    line-height: 0;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.team .owl-theme .owl-nav [class*=owl-],
.slider-grid-bg .owl-theme .owl-nav [class*=owl-],
.news .owl-theme .owl-nav [class*=owl-],
.pricing .owl-theme .owl-nav [class*=owl-],
.testimonials .owl-theme .owl-nav [class*=owl-],
.rooms-page .owl-theme .owl-nav [class*=owl-],
.zig-zag-list .owl-theme .owl-nav [class*=owl-],
.rooms1 .owl-theme .owl-nav [class*=owl-] {
    width: 40px;
    height: 40px;
    line-height: 34px;
    background: transparent;
    color: #fff;
    font-size: 11px;
    margin-right: 15px;
    margin-left: 15px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 100%;
    transition: all 0.2s ease-in-out;
    transform: scale(1.0);
}

.team .owl-theme .owl-nav [class*=owl-]:hover,
.slider-grid-bg .owl-theme .owl-nav [class*=owl-]:hover,
.news .owl-theme .owl-nav [class*=owl-]:hover,
.pricing .owl-theme .owl-nav [class*=owl-]:hover,
.testimonials .owl-theme .owl-nav [class*=owl-]:hover,
.rooms-page .owl-theme .owl-nav [class*=owl-]:hover,
.zig-zag-list .owl-theme .owl-nav [class*=owl-]:hover,
.rooms1 .owl-theme .owl-nav [class*=owl-]:hover {
    transform: scale(0.9);
    background: transparent;
    border: 1px solid var(--primary-color);
    color: #FFF;
}

@media screen and (max-width: 768px) {

    .team .owl-theme .owl-nav,
    .slider-grid-bg .owl-theme .owl-nav,
    .news .owl-theme .owl-nav,
    .pricing .owl-theme .owl-nav,
    .testimonials .owl-theme .owl-nav,
    .rooms-page .owl-theme .owl-nav,
    .zig-zag-list .owl-theme .owl-nav,
    .rooms1 .owl-theme .owl-nav {
        display: none;
    }
}


/* ======= Section style ======= */
.section-padding {
    padding: var(--space-between-sections);
}

.section-padding2 {
    padding: 0 0 var(--space-between-sections) 0;
}

.section-padding .title-contact,
.section-padding .text-comming,
.section-padding h3,
.section-padding h6 {
    color: var(--primary-color);
    font-size: var(--font-size-title);
    margin-bottom: 20px;
}

.about {
    margin-bottom: var(--space-between-sections);
}

.text-introduction{
    display: flex;
    flex-direction: column-reverse;
    justify-content:flex-start;
    margin: 0px;
}

.section-subtitle h2,
.section-subtitle {
    font-size: var(--font-size-subtitle);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 400;
    color: var(--black-color);
    text-transform: uppercase;
    position: relative;
    letter-spacing: 6px;
    margin-bottom: 5px;
    margin-top: 15px;
}

.section-subtitle span {
    color: var(--primary-color);
}

.section-title h1,
.section-title .second-title,
.section-title {
    font-size: var(--font-size-title);
    font-family: 'Gilda Display', serif;
    font-weight: 400;
    color: var(--secondary-color);
    position: relative;
    margin-bottom: 20px;
    line-height: 1.25em;
}

.section-title .second-title-light{
    color: white;
}


.section-title h3 {
    font-size: var(--font-size-title);
    font-family: 'Gilda Display', serif;
    font-weight: 400;
    color: var(--secondary-color);
    position: relative;
    margin-bottom: 20px;
    line-height: 1.25em;
}

.section-title span {
    color: #fff;
}

.about__section-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

/* ======= Navbar style ======= */
.navbar {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 99;
    padding-right: 0;
    padding-left: 0;
    padding-top: 30px;
    padding-bottom: 0;
    height: 70px;
}

.navbar .icon-bar {
    color: var(--primary-color);
}

.navbar .nav-language {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    height: 100%;
    color: var(--white);
    margin-left: 5px;
    position: relative;
}

.navbar .nav-language select {
    background: none;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--white);
    border-radius: 0;
    height: 100%;
    width: 70px;
    transition: color .4s;
}

.navbar .nav-language i {
    left: 40px;
    position: absolute;
    font-size: 8px;
    pointer-events: none;
    transition: color .4s;
}

.navbar .nav-language select:hover {
    cursor: pointer;
}

.navbar .nav-language option {
    color: var(--primary-color);
}

.navbar .navbar-nav .nav-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    margin: 3px 5px;
    -webkit-transition: all .4s;
    transition: all .4s;
    position: relative;
}

.navbar .navbar-nav .nav-link:last-child {
    margin-right: 0;
}

.navbar .navbar-nav .nav-link.nav-color {
    color: #fff;
}

.navbar .navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.navbar .navbar-nav .active {
    color: var(--primary-color) !important;
}

.navbar .navbar-nav .nav-link::before,
.navbar .navbar-nav .active .nav-link::before {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.4s;
}

.navbar .navbar-nav .nav-link:hover::before,
.navbar .navbar-nav .active .nav-link::before {
    width: 100%;
}

.nav-scroll {
    background: #fff;
    padding: 0 0 0 0;
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.05);
}

.nav-scroll .icon-bar {
    color: var(--primary-color);
}

.nav-scroll .navbar-nav .nav-link,
.nav-scroll .navbar-nav .nav-language,
.nav-scroll .navbar-nav .nav-language select {
    color: var(--secondary-color);
}

.nav-scroll .navbar-nav .active {
    color: var(--primary-color) !important;
}

.nav-scroll .navbar-nav .logo {
    padding: 15px 0;
    color: var(--secondary-color);
}

.nav-scroll .logo {
    width: 230px;
}

.nav-scroll .logo-img {
    width: 100%;
    margin-bottom: 0;
    filter: brightness(0) saturate(100%) invert(59%) sepia(54%) saturate(405%) hue-rotate(145deg) brightness(92%) contrast(94%);
}

.nav-scroll .logo-wrapper .logo h2 {
    font-family: 'Gilda Display', serif;
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    display: block;
    width: 100%;
    position: relative;
    color: var(--primary-color);
    letter-spacing: 3px;
    margin-bottom: 0;
}

.nav-scroll .logo-wrapper .logo span {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    color: var(--secondary-color);
    font-weight: 400;
    letter-spacing: 7px;
    margin-top: 0;
    line-height: 1em;
    text-transform: uppercase;
}

.nav-scroll .logo-wrapper {
    float: left;
}

.logo-wrapper {
    float: left;
}

.logo-wrapper .logo h2 {
    font-family: 'Gilda Display', serif;
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    display: block;
    width: 100%;
    position: relative;
    color: var(--primary-color);
    letter-spacing: 3px;
    margin-bottom: 0;
}

.logo-wrapper .logo span {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    color: #fff;
    font-weight: 400;
    letter-spacing: 7px;
    margin-top: 0;
    line-height: 1em;
    text-transform: uppercase;
}

.logo {
    padding: 0;
    text-align: center;
}

.logo-img {
    width: 230px;
    margin-bottom: 0;
    filter: brightness(0) invert(1);
}

.dropdown:hover .dropdown-menu,
.dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.dropdown .nav-link {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
}

.dropdown .nav-link i {
    font-size: 8px;
}

.dropdown-item {
    position: relative;
}

.dropdown-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.dropdown-item span {
    display: block;
    cursor: pointer;
}

.dropdown-menu,
.sub-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    width: auto;
    padding: 15px 10px;
    border-radius: 0;
    border: 0;
    background-color: #fff;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.dropdown-menu .dropdown-item,
.sub-menu .dropdown-item {
    padding: 5px 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--secondary-color);
    position: relative;
    -webkit-transition: all .4s;
    transition: all .4s;
    border-bottom: 1px solid #f4f4f4;
    background-color: transparent;
}

.dropdown-menu .dropdown-item:last-child,
.sub-menu .dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-menu .dropdown-item:hover,
.sub-menu .dropdown-item:hover {
    background: transparent;
    padding-left: 20px;
    color: var(--secondary-color);
}

.dropdown-menu .dropdown-item a,
.sub-menu .dropdown-item a {
    display: block;
}

.dropdown-menu .dropdown-item i,
.sub-menu .dropdown-item i {
    padding: 13px 0 0 5px;
    font-size: 8px;
    float: right;
}

.dropdown-menu .dropdown-item em,
.sub-menu .dropdown-item em {
    font-size: 8px;
    background-color: var(--secondary-color);
    padding: 2px 4px;
    color: #fff;
    border-radius: 2px;
    position: absolute;
    right: 10px;
    top: 5px;
}

.dropdown-menu .dropdown-item em,
.sub-menu .dropdown-item em {
    font-size: 10px;
    background-color: var(--primary-color);
    padding: 3px 6px;
    color: #fff;
    border-radius: 0px;
    position: absolute;
    margin-left: 10px;
    top: 7px;
    font-style: normal;
    line-height: 1.5em;
}

.dropdown-menu.last {
    left: -20%;
}

.sub-menu {
    position: absolute;
    left: 100%;
    top: -5px;
}

.sub-menu.left {
    left: -100%;
    margin-left: -20px;
}

.mega-menu {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    right: -150px;
    width: 800px;
    background-color: #fff;
    -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
    -webkit-transition: all .3s;
    transition: all .3s;
}

.mega-menu .dropdown-title {
    display: block;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding: 0 15px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.mega-menu .dropdown-menu {
    position: static !important;
    float: left;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-right: 1px solid rgba(255, 255, 255, 0.03);
    ;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    -webkit-transition: all .3s;
    transition: all .3s;
}

@media screen and (max-width: 767px) {
    .navbar {
        padding-left: 0px;
        padding-right: 0px;
        background: transparent;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .nav-scroll {
        background: #fff;
    }
}

.logo-wrapper {
    float: left;
    padding: 0 15px;
}

.nav-scroll .logo-wrapper {
    padding: 0 15px;
    background-color: #fff;
}



/* ======= Header style ======= */
.header {
    min-height: 100vh;
    overflow: hidden;
    background-color: #f8f5f0;
    margin-bottom: var(--space-between-sections);
}

.header .caption .o-hidden {
    display: inline-block;
}

.header .caption h2 {
    font-weight: 400;
    font-size: 30px;
}

.header .caption span i.star-rating {
    -webkit-animation-delay: .8s;
    animation-delay: .8s;
}

.header .caption .subtitle {
    font-family: 'Barlow Condensed', serif;
    ;
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
}

.header .caption .title {
    position: relative;
    margin-bottom: 20px;
    font-family: 'Gilda Display', serif;
    ;
    font-size: 55px;
    text-transform: uppercase;
    line-height: 1.35em;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
    color: #fff;
    font-weight: 400;
    letter-spacing: 15px;
}

.header .caption p {
    font-size: 18px;
    line-height: 1.75em;
    margin-bottom: 0;
    color: #fff;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
    margin-right: 15px;
}

.header .caption p span {
    letter-spacing: 5px;
    text-transform: uppercase;
    margin: 0 5px;
    padding-right: 14px;
    position: relative;
}

.header .caption p span:last-child {
    padding: 0;
}

.header .caption p span:last-child:after {
    display: none;
}

.header .caption p span:after {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--secondary-color);
    position: absolute;
    top: 10px;
    right: 0;
    opacity: .5;
}

.header .caption .butn-light {
    -webkit-animation-delay: .8s;
    animation-delay: .8s;
}

.header .caption .butn-dark {
    -webkit-animation-delay: .8s;
    animation-delay: .8s;
}

.header .social a {
    color: #eee;
    font-size: 20px;
    margin: 10px 15px;
}

hr {
    margin-top: 5px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}


/* ======= Slider-fade style (Homepage Slider) ======= */
.slider-fade .owl-item {
    height: 100vh;
    position: relative;
}

.slider-fade .item {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.slider-fade .item .caption {
    z-index: 9;
}

/* slider-fade owl-nav next and prev */
.slider-fade .owl-nav {
    position: absolute;
    bottom: 7%;
    right: 12%;
}

.slider-fade .owl-prev {
    float: left;
}

.slider-fade .owl-next {
    float: right;
}

.slider-fade .owl-theme .owl-nav [class*=owl-] {
    width: 40px;
    height: 40px;
    line-height: 34px;
    background: transparent;
    border-radius: 100%;
    color: #fff;
    font-size: 10px;
    margin-right: 3px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.2s ease-in-out;
    transform: scale(1.0);
}

.owl-theme .owl-nav [class*=owl-]:hover {
    transform: scale(0.9);
    background: transparent;
    border: 1px solid var(--primary-color);
    color: #fff;
}

@media screen and (max-width: 768px) {
    .slider-fade .owl-nav {
        display: none;
    }
}

/* owl-dots for slider */
.slider-fade .owl-dots {
    position: absolute;
    text-align: center;
    top: 50%;
    right: 5%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 40px;
    text-align: right !important
}

.slider-fade .owl-dots .owl-dot span {
    background: transparent;
    display: none
}

.slider-fade .owl-dots .owl-dot {
    height: 12px;
    width: 12px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    display: block;
    margin-bottom: 10px;
    border-radius: 50%
}

.slider-fade .owl-dots .owl-dot.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
}

#home-video {
    width: 100%;
    height: 100%;
    display: flex;
    object-fit: cover;
}

/* reservation field for slider */
.header div.reservation {
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    text-orientation: sideways;
    text-orientation: sideways;
    margin: 0;
    position: absolute;
    top: 0;
    left: 40px;
    height: 60%;
    z-index: 9;
}

.header div.reservation .call {
    color: #fff;
    text-transform: uppercase;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 400;
    letter-spacing: 5px;
    font-size: 12px;
    line-height: 1.75em;
    margin-top: 15px;
}

.header div.reservation .call span {
    font-family: 'Gilda Display', serif;
    font-size: 24px;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.header div.reservation .icon {
    position: absolute;
    left: -1px;
    top: -50px;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    -webkit-animation: pulse 2s infinite;
    animation: pulse 2s infinite;
    border-radius: 100%;
}

.header div.reservation a .icon i {
    color: #FFF;
    font-size: 24px;
    transform: rotate(90deg);
}

.header div.reservation a .icon:hover {
    border: 1px solid var(--primary-color);
}

@media screen and (max-width: 768px) {
    .header div.reservation {
        display: none;
    }
}


/* ======= Slider style (Inner Page Slider) ======= */
.slider .owl-item {
    height: 100vh;
    position: relative;
}

.slider .item {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.slider .item .caption {
    z-index: 9;
}

.slider .owl-theme .owl-dots {
    position: absolute;
    width: 100%;
    bottom: 3%;
    right: 12%;
    text-align: right;
}

.slider .owl-theme .owl-dots .owl-dot span {
    width: 13px;
    height: 13px;
    margin: 0 3px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.slider .owl-theme .owl-dots .owl-dot.active span,
.slider .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
}

/* bounce */
.header .arrow {
    position: absolute;
    bottom: 40px;
    width: 100%;
    text-align: center;
    z-index: 8;
}

.header .arrow.bounce {
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite;
}

.header .arrow i {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: #fff;
    font-size: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 100%;
}

.header .arrow i:hover {
    border: 1px solid var(--primary-color);
}

.header .arrow i:hover:after {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
    -webkit-transition: all .5s;
    transition: all .5s;

}



/* ===== Kenburns Slider style ===== */
.kenburns-section {
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    min-height: 100vh;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.kenburns-section::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -5;
    background: #000;
}

.kenburns-inner {
    position: relative;
    z-index: 15;
}

.kenburns-inner .caption h4 {
    font-family: 'Barlow Condensed', serif;
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
}

.kenburns-inner .caption h1 {
    position: relative;
    margin-bottom: 20px;
    font-family: 'Gilda Display', serif;
    font-size: 55px;
    text-transform: uppercase;
    line-height: 1.35em;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
    color: #fff;
    font-weight: 400;
    letter-spacing: 15px;
}

#kenburnsSliderContainer .vegas-overlay {}

@media screen and (max-width: 767px) {
    .kenburns-inner .caption h4 {
        font-size: 12px;
    }

    .kenburns-inner .caption h1 {
        font-size: 30px;
        margin-bottom: 15px;
        letter-spacing: 5px;
        line-height: 1.35em;
    }
}

/* reservation field for Kenburns slider */
.kenburns-section div.reservation {
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    text-orientation: sideways;
    text-orientation: sideways;
    margin: 0;
    position: absolute;
    top: 0;
    left: 40px;
    height: 60%;
    z-index: 9;
}

.kenburns-section div.reservation .call {
    color: #fff;
    text-transform: uppercase;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 400;
    letter-spacing: 5px;
    font-size: 12px;
    line-height: 1.75em;
    margin-top: 15px;
}

.kenburns-section div.reservation .call span {
    font-family: 'Gilda Display', serif;
    font-size: 24px;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.kenburns-section div.reservation .icon {
    position: absolute;
    left: -1px;
    top: -50px;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    -webkit-animation: pulse 2s infinite;
    animation: pulse 2s infinite;
    border-radius: 100%;
}

.kenburns-section div.reservation a .icon i {
    color: #FFF;
    font-size: 24px;
    transform: rotate(90deg);
}

.kenburns-section div.reservation a .icon:hover {
    border: 1px solid var(--primary-color);
}

@media screen and (max-width: 768px) {
    .kenburns-section div.reservation {
        display: none;
    }
}


/* ======= toTop Button style ======= */
.progress-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    height: 45px;
    width: 45px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    -webkit-box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}
@media (max-width: 992px) {
    .progress-wrap {
        bottom: 80px;
    }
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    font-family: 'themify';
    content: '\e648';
    text-align: center;
    line-height: 45px;
    font-size: 12px;
    font-weight: 700;
    color: #323232;
    left: 0;
    top: 0;
    height: 45px;
    width: 45px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: rgba(0, 0, 0, 0.2);
    stroke-width: 2;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}

.progress-wrap {
    -webkit-box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
}

.progress-wrap::after {
    color: var(--primary-color);
}

.progress-wrap svg.progress-circle path {
    stroke: var(--primary-color);
}


/* light */
.butn-light {
    position: relative;
    line-height: 1.2em;
}

.butn-light a {
    font-weight: 400;
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    background: transparent;
    color: #fff;
    padding: 12px 20px;
    margin: 0;
    position: relative;
    font-size: 15px;
    letter-spacing: 3px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.butn-light a:after {
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 100%;
    z-index: 1;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background: #fff;
}

.butn-light a span {
    position: relative;
    z-index: 2;
}

.butn-light a:hover:after {
    width: 100%;
    left: 0;
    -webkit-transition: width 0.3s ease;
    transition: width 0.3s ease;
}

.butn-light a:hover span {
    color: var(--secondary-color);
}


/* ======= Booking style ======= */
.booking-wrapper {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 5%;
    z-index: 5;
}

.booking2-wrapper {
    position: relative;
    margin-bottom: 40px;
}

.booking-inner {
    border-radius: 0;
}

.form1 {
    display: block;
    padding: 0;
    position: relative;
}

.form1 label {
    display: none;
}

.form1 .col1 {
    float: left;
    width: 20%;
}

.form1 .col2 {
    float: left;
    width: 14%;
}

.form1 .col3 {
    float: left;
    width: 18%;
}

.form1 .c1 {
    border-right: 1px solid #f1eeeb;
    height: 62.5px;
    margin-bottom: 15px;
}

.form1 .c2 {
    border-right: 1px solid #f1eeeb;
    height: 62.5px;
    margin-bottom: 15px;
}

.form1 .c3 {
    border-right: 1px solid #f1eeeb;
    height: 62.5px;
    margin-bottom: 15px;
}

.form1 .c4 {
    border-right: 1px solid #f1eeeb;
    height: 62.5px;
    margin-bottom: 15px;
}

.form1 .c5 {
    border-right: 1px solid #f1eeeb;
    height: 62.5px;
    margin-bottom: 15px;
}


.btn-form1-submit {
    display: block;
    padding: 0;
    border: none;
    margin: 0;
    width: 100%;
    background: var(--primary-color);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    text-decoration: none;
    line-height: 62.5px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease-out;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.btn-form1-submit:hover {
    background: var(--secondary-color);
}

.btn-form1-submit:focus {
    outline: none;
}

.btn-form1-submit:after {
    content: '';
    display: block;
    width: 1px;
    height: 100%;
    position: absolute;
    left: 100%;
    top: 0;
    background: inherit;
}

.input1_inner {
    position: relative;
    position: relative;
}

.input1_inner.date_icon:after {
    content: '';
    display: block;
    position: absolute;
    right: 20px;
    top: 23px;
    pointer-events: none;
    content: "\e6b6";
    font-family: "themify";
    font-size: 15px;
    color: var(--primary-color);
    line-height: 1;
}

.input1_inner input {
    display: block;
    width: 100%;
    font-size: 15px;
    color: var(--secondary-color);
    padding: 20px 40px 20px 20px;
    background: #fff;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

.input1_inner input::placeholder {
    font-size: 15px;
    color: var(--secondary-color) !important;
}

.input1_inner input:focus {
    outline: none;
    box-shadow: none;
    background: #fff;
    color: var(--secondary-color) !important;
}


.selection {
    display: inline-flex;
}

/* responsive */
@media (max-width: 1259.98px) {
    .booking2-wrapper {
        margin-bottom: 30px;
    }
}

@media (max-width: 991.98px) {
    .booking2-wrapper {
        margin-bottom: 40px;
    }

    .form1 .col1 {
        width: 50%;
        border-bottom: 1px solid #ececec;
    }

    .form1 .c2 {
        border-right: none;
    }

    .form1 .col2 {
        width: 25%;
    }

    .form1 .col3 {
        width: 25%;
    }
}

@media (max-width: 767.98px) {
    .form1 .col1 {
        width: 100%;
        border-right: 0;
        border-bottom: 1px solid #ececec;
    }

    .form1 .col2 {
        width: 100%;
        border-right: 0;
        border-bottom: 1px solid #ececec;
    }

    .form1 .col3 {
        width: 100%;
        border-right: 0;
    }

    .btn-form1-submit:after {
        background: none;
    }

    .booking-wrapper {
        position: relative;
        bottom: auto;
        padding: 30px 0;
        background: #f8f5f0;
    }
}

/* booking form */
.booking-box {
    position: relative;
    background: #f8f5f0;
    padding: 60px 45px;
    margin-bottom: -75px;
}

.booking-box .head-box .subtitle-newsletter {
    font-size: 15px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 400;
    color: var(--black-color);
    text-transform: uppercase;
    position: relative;
    letter-spacing: 6px;
    margin-bottom: 10px;
}

.booking-box .head-box h4 {
    font-size: 27px;
    font-weight: 400;
    color: var(--secondary-color);
    border-bottom: 1px solid #ececec;
    padding-bottom: 15px;
}

.booking-box .head-box h4 span {
    color: var(--secondary-color);
}

@media screen and (max-width: 991px) {
    .booking-box {
        margin-bottom: 90px;
        padding: 35px 20px;
    }
}

/****** FORMULARIO DE RESERVAS *******/
.neobookings-mask {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    background-color: #fff;
    margin: 0px auto;
}
.neobookings-mask .field {
    width: 30%;
    height: 100%;
    color: var(--secondary-color);
}
.neobookings-mask .field.neobookings-book-btn {
    width: 20%;
}
.neobookings-mask .field input {
    color: var(--secondary-color);
}

.date_range_picker {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
    position: relative;
}
.neobookings-form__param__promocode {
	background-color: transparent;
	color: #fff;
	border: 0px;
	outline: none;
	width: 100%;
	text-align: center;
}
.neobookings-form__param__date {
	max-width: 40%;
	background-color: transparent;
	border: 0px;
	color: var(--secondary-color);
}

.neobookings-form__param__date--start {
    text-align: right;
	margin-right: 5px;
	margin-bottom: 1px;
}
body #neobookings-form #guestsFake {
	cursor: pointer;
    height: 100%;
	color: var(--secondary-color);
	text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
	text-align: center;
    position: relative;
}
body #neobookings-form .guestsFake::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 26px;
    height: 25px;
    background: url(../../../images/icons/people.svg);
    background-size: cover;
    filter: var(--icons-filter);
}
@media (max-width: 992px) {
    body #neobookings-form .guestsFake::after {
        top: 50%;
        transform: translateY(-50%);
        right: 25px;
    }
}
.mobile-book-container,
.close-neobookings-form {
    display: none;
}
@media (max-width: 992px) {
    .booking-wrapper {
        display: none;
    }
    .booking-wrapper.open {
        background: #fff;
        z-index: 110;
        position: fixed;
        width: 100vw;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 0;
        left: 0;
    }

    .booking-wrapper form {
        flex-direction: column;
        top: 0;
        left: 0;
    }

    .booking-wrapper .neobookings-mask .field {
        width: 100%;
        border: 1px solid var(--secondary-color);
        margin-bottom: 7px;
    }

    .close-neobookings-form {
        display: block;
        margin-bottom: 7px;
    }

    .mobile-book-container {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100vw;
        z-index: 100;
    }

    .mobile-book-container button {
        width: 100%;
        height: 65px;
        background-color: var(--primary-color);
        color: #fff;
    }

    .booking-wrapper .neobookings-mask .field input {
        height: 60px;
    }

    body #neobookings-form #guestsFake {
        display: flex;
		align-items: center;
		justify-content: center;
        height: 60px;
	}

}
/****** FIN FORMULARIO DE RESERVAS *******/










/* ======== CSS ADICIONAL PARA LOS SLIDERS QUE NOS SON HOME ============*/
/* =======  Overlay Effect Bg image style  ======= */
[data-overlay-dark],
[data-overlay-darkgray],
[data-overlay-light] {
    position: relative;
}

[data-overlay-dark] .container,
[data-overlay-darkgray] .container,
[data-overlay-light] .container {
    position: relative;
    z-index: 2;
}

[data-overlay-dark]:before,
[data-overlay-darkgray]:before,
[data-overlay-light]:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

[data-overlay-dark]:before {
    background: #000;
}

[data-overlay-darkgray]:before {
    background: var(--secondary-color);
}

[data-overlay-light]:before {
    background: #fff;
}

[data-overlay-dark] h1,
[data-overlay-dark] h2,
[data-overlay-dark] h3,
[data-overlay-dark] h4,
[data-overlay-dark] h5,
[data-overlay-dark] h6,
[data-overlay-dark] span {
    color: #fff;
}

[data-overlay-darkgray] h1,
[data-overlay-darkgray] h2,
[data-overlay-darkgray] h3,
[data-overlay-darkgray] h4,
[data-overlay-darkgray] h5,
[data-overlay-darkgray] h6,
[data-overlay-darkgray] span {
    color: #fff;
}

[data-overlay-light] h1,
[data-overlay-light] h2,
[data-overlay-light] h3,
[data-overlay-light] h4,
[data-overlay-light] h5,
[data-overlay-light] h6,
[data-overlay-light] span {
    color: #999;
}

[data-overlay-dark] p {
    color: #fff;
}

[data-overlay-darkgray] p {
    color: #999;
}

[data-overlay-light] p {
    color: #999;
}

[data-overlay-dark="0"]:before,
[data-overlay-darkgray="0"]:before,
[data-overlay-light="0"]:before {
    opacity: 0;
}

[data-overlay-dark="1"]:before,
[data-overlay-darkgray="1"]:before,
[data-overlay-light="1"]:before {
    opacity: 0.1;
}

[data-overlay-dark="2"]:before,
[data-overlay-darkgray="2"]:before,
[data-overlay-light="2"]:before {
    opacity: 0.2;
}

[data-overlay-dark="3"]:before,
[data-overlay-darkgray="3"]:before,
[data-overlay-light="3"]:before {
    opacity: 0.3;
}

[data-overlay-dark="4"]:before,
[data-overlay-darkgray="4"]:before,
[data-overlay-light="4"]:before {
    opacity: 0.4;
}

[data-overlay-dark="5"]:before,
[data-overlay-darkgray="5"]:before,
[data-overlay-light="5"]:before {
    opacity: 0.5;
}

[data-overlay-dark="6"]:before,
[data-overlay-darkgray="6"]:before,
[data-overlay-light="6"]:before {
    opacity: 0.6;
}

[data-overlay-dark="7"]:before,
[data-overlay-darkgray="7"]:before,
[data-overlay-light="7"]:before {
    opacity: 0.7;
}

[data-overlay-dark="8"]:before,
[data-overlay-darkgray="8"]:before,
[data-overlay-light="8"]:before {
    opacity: 0.8;
}

[data-overlay-dark="9"]:before,
[data-overlay-darkgray="9"]:before,
[data-overlay-light="9"]:before {
    opacity: 0.9;
}

[data-overlay-dark="10"]:before,
[data-overlay-darkgray="10"]:before,
[data-overlay-light="10"]:before {
    opacity: 1;
}


/* ======= Responsive style ======= */
@media screen and (max-width: 991px) {
    .bg-fixed {
        background-attachment: scroll !important;
    }

    .navbar .logo {
        text-align: left;
        margin-left: 0px;
    }

    .nav-scroll .logo {
        width: 150px;
    }

    .logo-img {
        margin-bottom: 0px;
    }

    .navbar button {
        margin-right: 15px;
        outline: none !important;
        background: transparent;
    }

    .navbar button:hover {
        background: transparent;
    }

    .navbar .container {
        max-width: 100%;
    }

    .navbar .navbar-collapse {
        max-height: 360px;
        overflow: auto;
        background: #fff;
        text-align: left;
        padding: 15px 30px 30px 15px
    }

    .navbar .nav-link {
        margin: 0px auto !important;
    }

    .navbar .navbar-nav .nav-link,
    .navbar .navbar-nav .nav-language,
    .navbar .navbar-nav .nav-language select {
        color: var(--secondary-color);
    }

    .navbar .navbar-nav .nav-language {
        justify-content: flex-end;
        margin: 0;
    }
    .navbar .navbar-nav .nav-language select {
        padding: 8px 0;
    }

    .nav-scroll .navbar-collapse .nav-link {
        color: var(--secondary-color) !important;
    }

    .nav-scroll .navbar-collapse .active {
        color: var(--primary-color) !important;
    }

    .dropdown-menu {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        width: 100%;
        display: none;
    }

    .dropdown-menu .sub-menu {
        position: static;
        margin-top: 15px;
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        width: 100%;
        display: none;
    }

    .dropdown .dropdown-menu,
    .dropdown .mega-menu {
        display: block;
    }

    .dropdown .dropdown-menu:hover .sub-menu {
        display: block;
    }

    .dropdown .mega-menu {
        width: 100%;
        position: static;
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        width: 100%;
        display: none;
    }

    .dropdown .mega-menu .dropdown-menu {
        border: 0;
        margin: 0;
    }

    .dropdown .mega-menu .dropdown-title {
        border-bottom-color: var(--black-color);
    }

    .dropdown-menu .dropdown-item,
    .sub-menu .dropdown-item {
        color: var(--black-color);
    }

    .header {
        background-attachment: scroll !important;
        background-position: 50% 0% !important;
    }

    .header .caption .title {
        font-size: 40px;
    }
}

@media screen and (max-width: 767px) {
    .logo-wrapper .logo h2 {
        display: none;
    }

    .header .caption .title {
        font-size: 30px;
        margin-bottom: 15px;
        letter-spacing: 10px;
        line-height: 1.35em;
    }

    .header .caption .subtitle {
        font-size: 12px;
    }

    .header .caption p {
        font-size: 15px;
        margin-right: 10px;
    }

    .header .caption .butn-light {
        margin-right: 10px;
    }

    .portfolio .filtering span {
        margin-bottom: 10px;
    }

    .news .item .con h5,
    .news .item .con h5 a {
        font-size: 20px;
    }

    .post-comment-section h3 span {
        margin-left: 0px;
    }
}

/* ======= Page Banner Header style ======= */
.banner-header {
    height: 70vh;
    margin-bottom: var(--space-between-sections);
}

.banner-header.full-height {
    min-height: 100vh;
    background-position: center;
}

.banner-header.full-height .subtitle {
    font-family: 'Barlow Condensed', serif;
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
}

.banner-header.full-height .title {
    position: relative;
    margin-bottom: 20px;
    font-family: 'Gilda Display', serif;
    font-size: 55px;
    text-transform: uppercase;
    line-height: 1.35em;
    color: #fff;
    font-weight: 400;
    letter-spacing: 15px;
}

.banner-header .title {
    font-size: 60px;
    color: #fff;
    position: relative;
}

.banner-header .subtitle {
    color: #fff;
    font-size: 15px;
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 10px;
}

.banner-header .subtitle a {
    color: var(--primary-color);
}

.banner-header p {
    font-size: 15px;
    margin-bottom: 0;
    color: #fff;
}

.banner-header p a {
    color: var(--primary-color);
}
@media (max-width: 992px) {
    .banner-header {
        height: 100vh;
    }
}
/* ======== FIN CSS ADICIONAL PARA LOS SLIDERS QUE NOS SON HOME ============*/

/* LISTADO DE BENEFITS DE ROOM DETAIL */
.page-list li {
    position: relative;
    display: flex;
    align-items: center;
}
.page-list-icon img {
    width: 35px;
    filter: var(--icons-filter);
}
/* LISTADO DE BENEFITS DE ROOM DETAIL */

/* ======= ZIGZAGS  ======= */
.zig-zag-list__custom {
    padding: var(--space-between-sections);
    margin-bottom: var(--space-between-sections);
}
.zig-zag-list {
    margin-bottom: var(--space-between-sections);
    position: relative;
}

.zig-zag-list:last-child {
    margin-bottom: 20px;
}

.zig-zag-list figure,
.zig-zag-list .list-images {
    margin: 0;
    position: relative;
    width: 60%;
    margin-left: auto;
}

.zig-zag-list.left figure,
.zig-zag-list.left .list-images {
    margin-left: 0;
    margin-right: auto;
}

.zig-zag-list.mb-90 {
    margin-bottom: 150px !important;
}

@media (max-width: 991px) {

    .zig-zag-list figure,
    .zig-zag-list .list-images {
        width: 100%;
    }
}

.zig-zag-list .caption {
    position: absolute;
    left: 0;
    top: 50%;
    width: 50%;
    padding: 4%;
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.zig-zag-list.left .caption {
    left: auto;
    right: 0;
}

.zig-zag-list .caption .room-title,
.zig-zag-list .caption .room-title a,
.zig-zag-list .caption h4,
.zig-zag-list .caption h4 a {
    font-size: var(--custom-font-size);
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.zig-zag-list .caption h3,
.zig-zag-list .caption h3 a {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 0px;
}

.zig-zag-list .caption h3 span {
    font-size: var(--font-size-text);
    color: var(--black-color);
    font-family: 'Poppins', sans-serif;
}

.zig-zag-list .caption h6 {
    display: inline-block;
    color: var(--black-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 10px;
    margin-bottom: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.zig-zag-list .caption .info-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 15px;
}

.zig-zag-list .caption .info-wrapper .more {
    color: var(--black-color);
    text-decoration: none;
    font-size: var(--font-size-text);
}

.zig-zag-list .caption .info-wrapper .more i {
    color: var(--black-color);
    font-size: 10px;
}

.zig-zag-list .caption .info-wrapper .date {
    color: var(--secondary-color);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    background: transparent;
    border: 1px solid var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 3px 12px;
}

.zig-zag-list .caption .info-wrapper .date:hover {
    background: transparent;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
}

@media (max-width: 991.98px) {
    .zig-zag-list figure {
        width: auto;
        margin: 0;
    }

    .zig-zag-list .caption {
        position: relative;
        left: 0;
        top: 0;
        width: auto;
        padding: 30px 20px;
        -ms-transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}
/* END ZIGZAGS */