:root {
    --navbar-background: rgba(192, 191, 191, .35);
    --navbar-background-mobile: rgba(192, 191, 191, 1);
    --light-chocolate: #f6ebd2;
    --dark-chocolate: #7d5a42;
    --text-black: #1a1919;
}

a {
    color: var(--dark-chocolate);
}

html, body {
    font-family: "Inter";
    font-weight: 400;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

.grecaptcha-badge {
    display: none!important;
}

table {
    max-width: 100%;
}

img[data-lazy] {
    background: #eee !important;
    width: 100%;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}

h1, h2, h3, h4, h5 h6 {
    font-family: "Roboto";
}

.transition {
    transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    -webkit-transition: .3s ease;
    -ms-transition: .3s ease;
}


#loading {
    position: fixed;
    z-index: 99999;
    background: #fff;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
}
#loading img {
    display: block;
    margin-bottom: 3rem;
}
.loader {
    width: 28px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #E3AAD6;
    transform-origin: top;
    display: grid;
    animation: l3-0 1s infinite linear;
}
.loader::before,
.loader::after {
    content: "";
    grid-area: 1/1;
    background:#F4DD51;
    border-radius: 50%;
    transform-origin: top;
    animation: inherit;
    animation-name: l3-1;
}
.loader::after {
    background: #F10C49;
    --s:180deg;
}
@keyframes l3-0 {
    0%,20% {transform: rotate(0)}
    100%   {transform: rotate(360deg)}
}
@keyframes l3-1 {
    50% {transform: rotate(var(--s,90deg))}
    100% {transform: rotate(0)}
}

/* GENERAL COMPONENT */
#hover-icon {
    position: fixed; 
    z-index: 2000;
    bottom: 1rem; 
    right: 1rem;
}
#hover-icon a {
    text-decoration: none;
}

.container {
    max-width: 90%;
}

/* HOMEPAGE */
#carousel-homepage {
    width: 100%;
    height: 80dvh;
    position: relative;
    top: 20dvh;
}

#carousel-homepage .carousel-inner, #carousel-homepage .carousel-item, #carousel-homepage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#carousel-homepage .grad {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -moz-linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.19793855042016806) 100%);
    background: -webkit-linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.19793855042016806) 100%);
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.19793855042016806) 100%);
}

#homepage-header {
    padding: 1rem 0;
    background: #fff;
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}
.home-action-button a {
    text-decoration: none;
}

/* HEADER */
#header {
    position: fixed; 
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    background: -moz-linear-gradient(0, rgba(0,0,0,0) 0%, rgba(0,0,0,0.19793855042016806) 100%);
    background: -webkit-linear-gradient(0, rgba(0,0,0,0) 0%, rgba(0,0,0,0.19793855042016806) 100%);
    background: linear-gradient(0, rgba(0,0,0,0) 0%, rgba(0,0,0,0.19793855042016806) 100%);
}

#header .main-logo img {
    height: 50px;
}

#header .main-menu, #header .main-menu li, #header .main-menu ul {
    list-style: none;
    display: block;
    padding: 0;
    margin: 0;
}

#header .main-menu a {
    color: #fff;
    text-decoration: none;
    position: relative;
    top: 25px;
}
#header .main-menu li:hover > a, #header .main-menu li a.active {
    text-decoration: underline;
}

#header .main-menu > li {
    float: left;
}

#header .main-menu::after {
    content: "";
    display: block;
    clear: both;
}

#header .main-menu a {
    padding: 0 .75rem;
    display: inline-block;
    line-height: 50px;
}

#header .main-menu ul.submenu {
    display:none;
    position: absolute;
    padding: 1rem 0;
}

#header .main-menu > li:hover ul.submenu {
    display: block;
} 

#header .main-menu ul.submenu a {
    line-height: 30px;
    top: 0;
}

#header .main-menu ul.submenu .submenu-wrapper {
    position: relative;
    z-index: 10;
    padding: 1rem 0;
}

#header .main-menu ul.submenu .submenu-wrapper::before {
    display: block;
    content: "";
    width: 10000%;
    height: 100%;
    left: -3000%;
    background: var(--navbar-background);
    border: 1px solid #C0BFBF;
    position: absolute;
    top: 0;
    z-index: -1;
}

#header img.scrolled {
    display: none;
}

#header.scrolled {
    background: #fff;
    border: 1px solid #ccc;
}

#header.scrolled img.main {
    display: none;
}

#header.scrolled img.scrolled {
    display: block;
}

#header.scrolled .main-menu a {
    color: #000;
    text-decoration: none;
}
#header.scrolled .main-menu ul.submenu .submenu-wrapper::before {
    background: rgba(255, 255, 255,.75);
    border: 1px solid rgba(255, 255, 255, 1);
}



section {
    padding: 3.5rem 0;
}
.section-title {
    position: relative;
    margin-bottom: 3rem;
}
.section-title::after {
    content: "";
    width: 10000%;
    height: 1px; 
    background: rgba(0,0,0,.25);
    position: absolute; 
    left: -5000%;
    bottom: 0;
}

section p {
    text-align: justify;
}

.footer, .footer a {
    background: var(--light-chocolate);
    color: var(--text-black);
    padding: .5rem 1rem;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.home-gallery img {
    height: 400px;
    width: 100%;
    object-fit: cover;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
    position: absolute; 
    top: 48%; 
    left: -3%;
    font-size: 40px;
}

.owl-carousel .owl-nav button.owl-next {
    left: auto;
    right: -3%;
}

.card-review, .card {
    position: relative;
    border-radius: 30px;
}

.card-review .card-header {
    background: #fff;
    display: flex;
    justify-content: space-between;
    padding: 1.5rem;
    border-radius: 30px 30px 0 0 ;
}
.card-review .card-header u {
    font-size: 20px;
    font-family: "Roboto";
}
.card-review .card-body, .card .card-body {
    padding: 1.5rem;
}

.card-review .review-star {
    width: 120px!important;
    height: 20px;
    width: auto;
    object-fit: contain;
}

.form-control {
    padding: 1rem;
    font-size: larger;
    border-radius: 0;
}

.btn {
    padding: .75rem 2rem;
    border-radius: 12px;
}

.btn-primary {
    background: #fff;
    color: var(--dark-chocolate);
    border: 1px solid var(--dark-chocolate);
}
.btn-primary:hover {
    color: #fff;
    background: var(--dark-chocolate);
}

.btn-primary-reverse {
    background: var(--dark-chocolate)!important;
    color: #fff!important;
    border: 1px solid var(--dark-chocolate)!important;
}
.btn-primary-reverse:hover {
    background: #fff!important;
    color: var(--dark-chocolate)!important;
}

.contact-map {
    max-width: 90%;
}
.contact-map .well.villa {
    background: var(--light-chocolate);
    color: var(--dark-chocolate);
    border-radius: 12px;
}
.contact-map .well.suite {
    background: var(--dark-chocolate);
    color: var(--light-chocolate);
    border-radius: 12px;
}

.fullpage-banner img {
    width: 100%;
    object-fit: cover;
}

.tab-item {
    color: var(--text-black);
    font-size: 22px;
    text-transform: uppercase;
    margin-right: 1rem;
    text-decoration: none;
}
.tab-item:hover, .tab-item.active {
    text-decoration: underline;
}

.gallery-holder {
    min-height: 700px;
}
.gallery-holder img {
    width: 100%;
}
.gallery-holder .item {
    margin-bottom: 1.25rem;
}

.modal-gallery .modal-content {
    padding: 3rem;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-gallery .modal-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.modal-gallery .control-button .arrow-left, .modal-gallery .control-button .arrow-right {
    position: absolute; 
    top: 50%;
    margin-top: -20px;
    left: 10px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    opacity: .85;
}
.modal-gallery .control-button .arrow-left:hover, .modal-gallery .control-button .arrow-right:hover {
    opacity: 1;
}

.modal-gallery .control-button .arrow-right {
    left: auto;
    right: 10px;
}

.modal-backdrop.show {
    background: var(--dark-chocolate);
    opacity: .75;
}

.mobile-nav-trigger {
    display: none;
}

.contact-links, .contact-links a {
    color: var(--dark-chocolate);
    text-decoration: none;
}
.contact-links a:hover {
    text-decoration: underline;
}

.dynamic-content img {
    max-width: 100%;
    height: auto;
}

.dynamic-content table {
    width: 100%!important;
    border-spacing: 0!important;
    border-left: 1px solid #ccc!important;
    border-top: 1px solid #ccc!important;
    background: #fff!important;
}
.dynamic-content table td, .dynamic-content table th {
    padding: .5rem 1rem!important;
    border-right: 1px solid #ccc!important;
    border-bottom: 1px solid #ccc!important;
}
.dynamic-content table th {
    background: var(--dark-chocolate)!important;
    color: #fff!important;
    text-align: center;
    text-transform: uppercase;
}

#contact-form .form-control {
    padding: .5rem .75rem;
}

@media (max-width: 992px) {
    .contact-map {
        max-width: 100%;
    }    
}

@media (max-width: 767px) {
    .carousel-control-next, .carousel-control-prev {
        top: 30%;
    }
    .footer-text-copyright span {
        display: block;
    }
    .footer .container.py-5 {
        max-width: 100%;
    }
    .mobile-nav-trigger {
        color: #fff;
        display: block;
        padding: .5rem 0;
    }
    #header.scrolled .mobile-nav-trigger {
        color: var(--text-black);
    }
    /* .main-navigation {
        display: none;
    } */

    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
    }

    #header .main-menu {
        background: var(--navbar-background-mobile);
        color: var(--text-black);
        display: none;
    }

    #header.scrolled .main-menu ul.submenu .submenu-wrapper::before {
        background: var(--navbar-background-mobile);
    }

    #header .main-menu > li, #header .main-menu a {
        float: none; 
        clear: both;
        display: block;
        color: var(--text-black);
        top: 0;
    }
    #header .main-menu > li > a {
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    #header .main-menu ul.submenu .submenu-wrapper {
        padding: .4rem 0;
    }

    #header .main-menu ul.submenu {
        display: block; 
        position: relative;
        padding: 0;
    }

    #header .main-menu ul.submenu a {
        text-indent: 30px;
    }

    .contact-title {
        flex-flow: column;
    }
    .contact-title h1, .contact-title h5 {
        width: 100%;
    }
    .contact-title h5 {
        font-size: smaller;
    }

    .tab-item {
        font-size: 15px;
    }
}