@charset "utf-8";

:root {
  --yellow: #FFED64;
  --brown: #7E6E64;
}

* {
    margin: 0;
    padding: 0px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -ms-text-size-adjust:     100%;
    -webkit-text-size-adjust: 100%;
    border-spacing: 0px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html, body {
  overflow-x: hidden;
  height: 100%;
}

body{
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    background-color: #FFF;
}

a{
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -ms-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
    text-decoration: none !important;
}
h1,
h2,
.title-font{
    font-family: 'Comfortaa', cursive;
}

:focus {
    outline: 0;
}

.home-header{
    position: relative;
    height: 100%;
    min-height: 600px;
}
    .page-menu .hamburger-menu,
    .home-header .hamburger-menu{
        font-size: 8px;
        color: var(--yellow);
        width: 40px;
        text-align: right;
    }
        .page-menu .hamburger-menu i,
        .home-header .hamburger-menu i{
            font-size: 26px;
            display: block;
            color: var(--yellow);
        }
        .page-menu .hamburger-menu,
        .page-menu .hamburger-menu i{
            color: var(--brown)
        }
    .home-header .home-menu{
        position: relative;
        z-index: 9;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 25px;
        padding-bottom: 25px;
    }
        .home-header .home-menu .logo a{
            display: block;
        }
        .home-header .home-menu .logo a>img{
            width: 180px;
        }
        @media (max-width: 576px) {
            .home-header{
                height: 600px;
                min-height: 600px;
            }
            .home-header .home-menu .logo a>img{
                width: 140px;
            }
        }
    .home-header .home-menu .menu{
        padding-top: 20px;
    }
        .home-header .home-menu .menu a{
            font-family: 'Comfortaa', cursive;
            font-weight: 600;
            display: inline-block;
            padding: 7px 15px;
            margin: 0 5px;
            border: 1px solid #00000000;
            font-size: 12px;
            color: #FFF;
            text-transform: uppercase;
        }
        .home-header .home-menu .menu a:hover{
            background-color: var(--brown);
            border-color: var(--brown);
        }
        .home-header .home-menu .menu a.booknow{
            border-color: var(--yellow);
            color: var(--yellow);
        }
            .home-header .home-menu .menu a.booknow:hover{
                background-color: var(--yellow);
                color: var(--brown);
            }

.home-header .home-banner{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
    
}
    .home-banner:before{
        animation-name: example;
        animation-duration: 60s;
        animation-direction: alternate;
        animation-timing-function: ease-in;
        background-size: cover;
        background-position: center;
    }
    @keyframes example {
      0%   { transform: scale(1.2); }
      50% { transform: scale(1); }
    }
    .home-header .home-banner .banner-shade{
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 110px;
        overflow: hidden;
    }
        .home-header .home-banner .blur-image{
            position: absolute;
            width: 100%;
            height: 110px;
            top: 0;
            background-size: cover;
            background-position: top center;
        }
        .home-header .home-banner .blur-image:before{
            position: absolute;
            left: 0;
            right: 0;
            height: 100%;
            top: 0;
            /*background-color: rgba(0,0,0,0.5);*/
            background-color: rgba(126,110,100, 0.7);
            content: " ";
        }
        .home-header .home-banner .blur-image:after{
            position: absolute;
            left: 0;
            right: 0;
            height: 100%;
            top: 0;
            background-color: rgba(0,0,0,0.5);
            /*background-color: rgba(126,110,100, 0.7);*/
            content: " ";
        }
        @media (max-width: 576px) {
            .home-header .home-banner .banner-shade,
            .home-header .home-banner .blur-image{
                height: 90px;
            }
        }
    .home-header .home-banner .caption{
        background-color: #FFF;
        max-width: 500px;
        position: relative;
        margin-bottom: 50px;
    }
        .home-header .home-banner .caption:before{
            content: " ";
            width: 260px;
            height: 260px;
            background-color: var(--yellow);
            position: absolute;
            right: -100px;
            bottom: 80px;
            border-radius: 260px;
            mix-blend-mode: multiply;
        }
        .home-header .home-banner .caption:after{
            content: " ";
            width: 100%;
            height: 100%;
            background-color: #FFF;
            position: absolute;
            right: 0;
            bottom: 0;
        }
        .home-header .home-banner .caption .content{
            position: relative;
            z-index: 1;
            padding: 40px;
        }
        .home-header .home-banner .caption .content h2{
            color: var(--brown);
            line-height: 1.3em;
            width: calc(100% - 90px);
        }
        .home-header .home-banner .caption .content p{
            color: var(--brown);
            margin-bottom: 0;
            width: calc(100% - 90px);
            opacity: 0.7;
            font-size: 15px;
        }
        .home-header .home-banner .caption .content a{
            position: absolute;
            right: 0;
            bottom: 0;
            background-color: var(--yellow);
            justify-content: center;
            display: flex;
            align-items: center;
            font-size: 24px;
            width: 70px;
            height: 80px;
        }
            .home-header .home-banner .caption .content a>i{
                font-size: 30px;
                color: var(--brown);
            }
        @media (max-width: 576px) {
            .home-header .home-banner .caption .content{
                padding: 30px;
            }
            .home-header .home-banner .caption .content h2{
                width: 100%;
                font-size: 24px;
            }
            .home-header .home-banner .caption .content p{
                width: calc(100% - 50px);
                font-size: 14px;
            }
            .home-header .home-banner .caption{
                margin-right: 20px;
                margin-bottom: 20px;
            }
            .home-header .home-banner .caption:before{
                opacity: 0.5;
            }
        }
.featured-stays{
    padding: 60px 0;
    background-color: #F7F7F7
}
    .featured-stays h2{
        color: var(--brown);
        margin-top: 40px;
    }
    .featured-stays p{
        font-size: 15px;
        font-weight: 400;
        color: #888;
        line-height: 1.5em;
        margin-bottom: 30px;
    }
    @media (max-width: 576px) {
        .featured-stays {
            padding: 30px 0;
        }
        .featured-stays h2{
            font-size: 24px;
            text-align: center;
        }
        .featured-stays p{
            font-size: 14px;
            text-align: center;
        }
    }

.list-resorts{
    padding: 40px 0;
    background-color: #F7F7F7
}
    .list-resorts h2{
        color: var(--brown);
        margin-top: 40px;
    }
    .list-resorts p{
        font-size: 15px;
        font-weight: 400;
        color: #888;
        line-height: 1.5em;
        margin-bottom: 30px;
    }
    @media (max-width: 576px) {
        .list-resorts{
            padding: 10px 0;
        }
    }

.list-resorts .hotel-filters{
    font-size: 13px;
    text-align: center;
    padding: 10px;
    color: #888;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 9;
    background-color: #F7F7F7;
    white-space: nowrap;
} 
    .list-resorts .hotel-filters a{
        display: inline-block;
        padding: 5px 15px;
        border-radius: 50px;
        color: var(--brown);
        background-color: #FFF;
        margin: 3px;
    }
        .list-resorts .hotel-filters a>i{
            opacity: 0.5;
        }
    .list-resorts .hotel-filters a:hover{
        background-color: #d8d3d1;
    }
    .list-resorts .hotel-filters a.selected{
        background-color: var(--yellow);
    }

.card-hotel{
    background-color: #FFF;
    height: 100%;
}
    .card-hotel .hotel-image{
        position: relative;
        display: flex;
        /*justify-content: center;*/
    }
        .card-hotel .hotel-image .hotel-rate{
            background-color: var(--brown);
            padding: 7px;
            font-size: 10px;
            color: rgba(255, 255, 255, 0.7);
            bottom: 10px;
            left: 10px;
            position: absolute;
            text-align: left;
            border-bottom: 2px solid var(--yellow);
        }
            .card-hotel .hotel-image .hotel-rate strong{
                display: block;
                font-size: 22px;
                line-height: 22px;
                margin-top: 5px;
                color: #FFF;
                font-weight: 600;
                font-family: 'Comfortaa', cursive;
            }
            .card-hotel .hotel-image.show-rates:before{
                content: " ";
                width: 50px;
                height: 50px;
                background-color: var(--yellow);
                position: absolute;
                left: 50px;
                bottom: 55px;
                border-radius: 50px;
                mix-blend-mode: multiply;
            }
    .card-hotel .hotel-image img{
        width: 100%;
        object-position: center;
        object-fit: cover;
    }
        @media (max-width: 576px) {
            .card-hotel .hotel-image img{
                max-height: 350px;
            }
        }
    .card-hotel .card-body{
        padding: 30px;
        text-align: center;
    }
        .card-hotel .card-body h3{
            font-family: 'Comfortaa', cursive;
            color: var(--brown);
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
        }
        .card-hotel .card-body p{
            font-size: 14px;
            margin-bottom: 30px;
            color: #444;
            opacity: 0.5;
        }
        .card-hotel .card-body .star-rating{
            font-size: 13px;
            color: var(--brown);
            opacity: 0.3;
            margin-bottom: 20px;
        }
        .card-hotel .card-body a{
            font-family: 'Comfortaa', cursive;
            font-weight: 600;
            display: inline-block;
            padding: 10px 25px;
            color: var(--brown);
            font-size: 13px;
            border: 1px solid #EEE;
        }
            .card-hotel:hover .card-body a{
                border: 1px solid var(--brown);
            }

.card-hotel.card-row{
    display: flex;
    border-bottom: 1px solid #EEE;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 4px;
}
    .card-hotel.card-row img{
        width: 80px;
        height: 80px;
        border-radius: 5px;
    }
    .card-hotel.card-row .card-body label{
        font-size: 14px;
        text-transform: none;
        text-align: left;
        display: block;
        color: var(--brown);
        font-size: 15px;
        flex: 1;
    }
        .card-hotel.card-row .card-body label span{
            font-size: 12px;
            display: block;
            opacity: 0.7;
        }

.card-select{
    cursor: pointer;
     -webkit-transition: all 0.30s ease-in-out;
}
    .card-select .fal{
        color: #CCC;
        margin-right: 20px;
    }
        .card-select:hover.fal{
            color: var(--brown);
        }
    .card-select.selected{
        background-color: var(--yellow)
    }
        .card-select.selected .fal{
            color: var(--brown);
        }

.dest-maldives{

}
    
    .dest-maldives .row .col-md-4{
        padding: 0;
    }
    .dest-maldives .image-cards{
        position: relative;
        width: 100%;
        height: 500px;
        object-position: center;
        object-fit: cover;
        margin-left: -15px;
        margin-right: -15px;
    }
        .dest-maldives .image-cards img{
            width: 100%;
            height: 500px;
            object-position: center;
            object-fit: cover;
        }
    .dest-maldives .image-cards .caption{
        position: absolute;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
        .dest-maldives .image-cards .caption:before{
            content: " ";
            position: absolute;
            width: 100%;
            height: 100%;
            background-color: var(--brown);
            mix-blend-mode: multiply;
        }
        .dest-maldives .image-cards .caption:after{
            content: " ";
            position: absolute;
            width: 100%;
            height: 100%;
            background-color: var(--brown);
            opacity: 0.5;
        }
        .dest-maldives .image-cards .circle{
            position: absolute;
            right: -250px;
            top: 0;
            z-index: 2;
            width: 500px;
            height: 500px;
            border-radius: 500px;
            background-color: var(--yellow);
            position: absolute;
            mix-blend-mode: multiply;
        }
        .dest-maldives .image-cards h2{
            position: relative;
            z-index: 1;
            color: #FFF;
            font-size: 24px;
            text-align: center;
            text-transform: uppercase;
        }
            .dest-maldives .image-cards h2>span{
                display: block;
                font-size: 33px;
                margin-top: 10px;
            }
    .dest-maldives .content{
        max-width: 700px;
        margin: 0 auto;
        padding: 150px 15px;
    }
        .dest-maldives .content h3{
            font-size: 24px;
            color: var(--brown);
            margin-bottom: 30px;
        }
        .dest-maldives .content p{
            font-size: 15px;
            font-weight: 400;
            color: #888;
            line-height: 1.5em;
            margin-bottom: 30px;
        }
        .dest-maldives .content .small-nav{
            margin-left: -20px;
            margin-top: 30px;
        }
            .dest-maldives .content .small-nav a{
                display: inline-block;
                padding-left: 20px;
                padding-right: 20px;
                font-size: 14px;
                color: var(--brown);
            }
            .dest-maldives .content .small-nav a:last-child{
                border-right: none
            }
            .dest-maldives .content .small-nav span{
                font-size: 12px;
                color: var(--yellow)
            }
    @media (max-width: 576px) {
        .dest-maldives .content{
            padding: 75px 15px;
        }
        .dest-maldives .content h3{
            
        }
        .dest-maldives .content .small-nav{
            text-align: left;
        }
    }
.why-us{
    /*background-color: var(--brown);*/
    position: relative;
    padding: 150px 15px;
    text-align: center;
    background-image: url(https://images.unsplash.com/photo-1448582649076-3981753123b5?ixid=MXwxMjA3fDB8MHxzZWFyY2h8NHx8bHVnZ2FnZXxlbnwwfHwwfA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=900&q=60);
    background-size: cover;
    background-attachment: fixed;
}
    .why-us:before{
        position: absolute;
        content: " ";
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--brown);
        mix-blend-mode: multiply;
    }
    .why-us:after{
        position: absolute;
        content: " ";
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0.8;
        background-color: var(--brown);
    }
    .why-us .container{
        position: relative;
        z-index: 1;
    }
    .why-us h2{
        color: #FFF;
        margin-bottom: 50px;
    }
    .why-us .usp{
        color: #FFF;
    }
        .why-us .usp .icon{
            display: inline-block;
            background-color: var(--yellow);
            width: 150px;
            height: 150px;
            border-radius: 150px;
            line-height: 150px;
            font-size: 70px;
            color: var(--brown);
            margin-bottom: 30px;
        }
        .why-us .usp strong{
            display: block;
            font-size: 17px;
            margin-bottom: 10px;
            text-transform: uppercase;
        }
        .why-us .usp p{
            font-size: 14px;
            opacity: 0.8;
        }
    @media (max-width: 576px) {
        .why-us{
            padding: 75px 15px;
        }
        .why-us h2{
            font-size: 24px;
        }
        .why-us .usp .icon{
            width: 100px;
            height: 100px;
            line-height: 100px;
        }
    }
.home-quote{
    width: 100%;
    height: 800px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center bottom;
    background-attachment: fixed;
    background-image: url(https://images.prismic.io/chevalblanc/84fd03ca531e2fdcb633c4bce4a1ce4ade222c26_cbr--homepage----villas---homepage-8.jpg?auto=compress,format&q=1000)
}
    .home-quote .content{
        max-width: 750px;
        padding: 40px;
        background-color: rgba(126, 110, 100, 0.7);
    }
    .home-quote .content strong{
        font-family: 'Comfortaa', cursive;
        font-size: 25px;
        display: block;
        margin-bottom: 30px;
        color: #FFF;
    }
    .home-quote .content a{
        display: inline-block;
        padding: 10px 25px;
        border: 2px solid #FFF;
        color: #FFF;
    }
    @media (max-width: 576px) {
        .home-quote{
            height: 600px;
        }
        .home-quote .content{
            text-align: center;
        }
        .home-quote .content strong{
            font-size: 21px;
        }
    }

.page-header{
    position: relative;
    border-bottom: 1px solid #EEE;
}
    .page-header .page-menu{
        position: relative;
        z-index: 9;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 25px 15px;
    }
        .page-header .page-menu .logo a{
            display: block;
        }
        .page-header .page-menu .logo a>img{
            width: 180px;
        }
        @media (max-width: 576px) {
            .page-header .page-menu .logo a>img{
                width: 140px;
            }
        }
    .page-header .page-menu .menu{

    }
        .page-header .page-menu .menu a{
            font-family: 'Comfortaa', cursive;
            font-weight: 600;
            display: inline-block;
            padding: 7px 15px;
            margin: 0 5px;
            border: 1px solid #00000000;
            font-size: 12px;
            color: var(--brown);
            text-transform: uppercase;
        }
        .page-header .page-menu .menu a:hover{
            background-color: var(--brown);
            border-color: var(--brown);
            color: #FFF;
        }
        .page-header .page-menu .menu a.booknow{
            border-color: var(--yellow);
            color: var(--brown);
            background-color: var(--yellow);
        }
            .page-header .page-menu .menu a.booknow:hover{
                background-color: var(--yellow);
                color: var(--brown);
            }

.hotel-header{
    position: relative;
}
    .hotel-header .hotel-slider{

    }
        .hotel-header .hotel-slider img{
            width: 100%;
            height: 750px;
            object-fit: cover;
            object-position: center;
        }
    .hotel-header .hotel-title{
        padding: 50px;
        color: var(--brown);
        text-align: center;
        z-index: 99999;
    }
        .hotel-header .hotel-title h1{
            /*font-weight: 600;*/
        }
        .hotel-header .hotel-title .meta{

        }
        .hotel-header .hotel-title .meta span{
            display: inline-block;
            margin-right: 20px;
            font-size: 14px;
            color: #888;
        }
    @media (max-width: 576px) {
        .hotel-header .hotel-title{
            padding: 30px;
        }
        .hotel-header .hotel-title h1{
            font-size: 30px;
        }
        .hotel-header .hotel-slider img{
            height: 400px
        }
    }

.hotel-content{
    background-color: #F7F7F7;
    padding: 60px;
}
    .hotel-facts .container,
    .hotel-amenities .container,
    .hotel-content .container{
        max-width: 700px;
    }
    .hotel-content .hotel-description{

    }
        .hotel-content .hotel-description-readmore{
            font-size: 14px;
            color: var(--brown);
            display: inline-block;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--yellow);
        }

        .hotel-facts h2,
        .hotel-facts h3,
        .hotel-content .hotel-description h2,
        .hotel-content .hotel-description h3{
            font-family: 'Comfortaa', cursive;
            color: var(--brown);
            line-height: 1.5em;
        }
            .hotel-facts h2,
            .hotel-content .hotel-description h2{
                font-size: 24px;
                margin-bottom: 30px;
            }
            .hotel-facts h3,
            .hotel-content .hotel-description h3{
                font-family: 'Noto Sans', sans-serif;
                font-weight: 400;
                font-size: 15px;
                color: #A5A5A5;
                margin-bottom: 15px;
                text-transform: uppercase;
            }
        .hotel-facts p,
        .hotel-facts ul li,
        .hotel-facts ol li,
        .hotel-content .hotel-description ul li,
        .hotel-content .hotel-description ol li,
        .hotel-content .hotel-description p{
            font-size: 15px;
            font-weight: 400;
            color: #888;
            line-height: 1.5em;
            margin-bottom: 30px;
        }

        .hotel-facts ul,
        .hotel-facts ol,
        .hotel-content .hotel-description ol,
        .hotel-content .hotel-description ul{
            /*list-style: none;*/
            margin-left: 30px;
            margin-bottom: 30px;
        }
        .hotel-facts ul li,
        .hotel-facts ol li,
        .hotel-content .hotel-description ol li,
        .hotel-content .hotel-description ul li{
            margin-bottom: 0;
        }
    @media (max-width: 576px) {
        .hotel-content{
            padding: 30px 15px;
        }
    }
.hotel-amenities,
.hotel-rooms{
    padding: 50px;
}
    .hotel-amenities h2,
    .hotel-rooms h2{
        color: var(--brown);
        font-size: 30px;
        text-align: center;
        margin-bottom: 30px;
    }
    @media (max-width: 576px) {
        .hotel-amenities,
        .hotel-rooms{
            padding: 30px 15px;
        }
        .hotel-amenities h2,
        .hotel-rooms h2{
            font-size: 24px;
            text-align: center;
        }

        .hotel-rooms .card-hotel{
            border-bottom: 1px solid #EEE;
        }
    }

.hotel-amenities{
    text-align: left;
    background-color: #F7F7F7;
}
    .hotel-amenities h2{
        text-align: left;
    }
    .hotel-amenities ul{
        list-style: none;
        vertical-align: top;
    }
        .room-details .room-body ul li,
        .hotel-amenities ul li{
            display: inline-block;
            width: 49%;
            color: var(--brown);
            font-size: 15px;
            position: relative;
            padding-left: 25px;
            vertical-align: top;
        }
            .room-details .room-body ul li i,
            .hotel-amenities ul li i{
                position: absolute;
                font-size: 14px;
                color: var(--brown);
                margin-right: 10px;
                left: 0;
                top: 5px;
            }
        .room-details .room-body ul{
            max-width: 400px;
            margin: 0 auto;
        }
        .room-details .room-body ul li{
            font-size: 14px;
            color: #888;
        }
    @media (max-width: 576px) {
        .room-details .room-body ul li,
        .hotel-amenities ul li{
            width: 100%;
        }
    }

.share-icons{
    margin-bottom: 30px;
    font-size: 11px;
    color: #888;
}
    .share-icons a{
        display: inline-block;
        width: 30px;
        height: 30px;
        line-height: 30px;
        text-align: center;
        background-color: #EEE;
        font-size: 18px;
        color: #FFF;
    }
    .share-icons a[data-sharer="facebook"]{
        background-color: #4267B2;
    }
    .share-icons a[data-sharer="twitter"]{
        background-color: #1DA1F2;
    }
    .share-icons a[data-sharer="telegram"]{
        background-color: #0088cc;
    }
    .share-icons a[data-sharer="whatsapp"]{
        background-color: #128C7E;
    }
    .share-icons a[data-sharer="viber"]{
        background-color: #7360f2;
    }
    .share-icons a[data-sharer="linkedin"]{
        background-color: #2867b2;
    }

.modal-content{
    border: none;
}
.modal-backdrop{
    background-color: var(--brown);
}

.room-details{

    position: relative;
}
    .room-details .close-modal{
        position: absolute;
        background-color: var(--yellow);
        width: 50px;
        height: 50px;
        top: 10px;
        right: 10px;
        color: var(--brown);
        border-radius: 50px;
        line-height: 50px;
        font-size: 21px;
        text-align: center;
    }
    .room-details img{
        width: 100%;
        max-height: 400px;
        object-fit: cover;
        border-radius: .3rem .3rem 0 0;
    }
    .room-details .room-body{
        padding: 25px;
    }
    .room-details .room-body h2{
        font-size: 21px;
        color: var(--brown);
        margin-bottom: 20px;
        text-align: center;
    }
    .room-details .room-body h3{
        font-size: 16px;
        color: var(--brown);
        text-align: left;
        margin-bottom: 20px;
        text-align: center;
    }
    .room-details .room-body p{
        font-size: 14px;
        color: #888;
        margin-bottom: 30px;
        text-align: center;
    }
    .room-details .loading{
        padding: 50px;
        text-align: center;
        font-size: 12px;
    }
        .room-details .loading i{
            font-size: 31px;
            color: var(--brown);
        }
        .room-details .loading strong{
            display: block;
            font-weight: 400;
            text-transform: uppercase;
            font-size: 10px;
            margin-top: 10px;
            color: #999;
        }

.hotel-facts{
    padding: 50px 15px;
}

.floating-booknow{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    z-index: 99;
    text-align: center;
    background: rgb(255,255,255);
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%); 
}
    .floating-booknow .booknow{
        display: inline-block;
        font-family: 'Comfortaa', cursive;
        font-weight: 400;
        padding: 15px 20px;
        text-transform: uppercase;
        background-color: var(--yellow);
        text-align: center;
        color: var(--brown);
        width: 100%;
        max-width: 750px;
    }
.cpage-header{
    position: relative;
}
    .cpage-header .cpage-slider{

    }
        .cpage-header .cpage-slider img{
            width: 100%;
            max-height: 750px;
            object-fit: cover;
            object-position: center;
        }
    .cpage-header .cpage-title{
        padding: 50px;
        color: var(--brown);
        text-align: center;
        z-index: 99999;
    }
        .cpage-header .cpage-title h2{
            font-size: 24px;
            color: #888;
        }
        .cpage-header .cpage-title p{
            font-size: 14px;
            color: #777;
        }
    @media (max-width: 576px) {
        .cpage-header .cpage-title{
            padding: 30px 25px;
        }
        .cpage-header .cpage-title h1{
            font-size: 24px;
        }
        .cpage-header .cpage-title h2{
            font-size: 18px;
        }
    }   

l
.page-content{
    background-color: #F7F7F7;
    padding: 60px;
}
    .page-content .container{
        max-width: 750px;
    }
    .page-content .page-summary{
        padding: 30px;
        background-color: #F0F0F0;
        color: var(--brown);
        font-size: 17px;
        line-height: 1.5em;
        margin-bottom: 30px;
    }
    .page-content .page-body ul li,
    .page-content .page-body ol li,
    .page-content .page-body p{
        font-size: 15px;
        font-weight: 400;
        color: #888;
        line-height: 1.5em;
        margin-bottom: 30px;
    }
    .page-content .page-body h3,
    .page-content .page-body h2{
        font-family: 'Comfortaa', cursive;
        color: var(--brown);
        line-height: 1.5em;
    }
    .page-content .page-body h2{
        font-size: 24px;
    }
    .page-content .page-body h3{
        font-size: 18px;
    }
    .page-content .page-body table tr td {
        padding: 10px 0;
    }
    .page-content .page-body table tr td p{
        margin: 0;
    }
    .page-content .page-body img{
        width: 100%;
        margin-bottom: 20px;
    }
    @media (max-width: 576px) {
        .page-content{
            background-color: #F7F7F7;
            padding: 15px 0;
        }
        .page-content .page-summary{
            font-size: 16px;
            line-height: 1.7em;
        }
    }
.page-navigation{
    border-top: 1px solid #EEE;
    background-color: #F7F7F7;
}
.card-subpages{
    width: 100%;
    height: 250px;
    position: relative;
    display: block;
    overflow: hidden;
}
    .card-subpages img{
        width: 100%;
        height: 250px;
    }
    .card-subpages .title{
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
        .card-subpages .title strong{
            display: block;
            font-size: 21px;
            color: #FFF;
            z-index: 9;
            font-family: 'Comfortaa', cursive;
            margin-bottom: 5px;
        }
        .card-subpages .title p{
            display: block;
            font-size: 16px;
            color: #FFF;
            z-index: 9;
            margin-bottom: 0;
            opacity: 0.7;
        }
    .card-subpages .title:before{
        content: " ";
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: var(--brown);
        mix-blend-mode: multiply;
        -webkit-transition: all 0.30s ease-in-out;
        -moz-transition: all 0.30s ease-in-out;
        -ms-transition: all 0.30s ease-in-out;
        -o-transition: all 0.30s ease-in-out;
    }
    .card-subpages .title:after{
        content: " ";
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: var(--brown);
        opacity: 0.5;
        webkit-transition: all 0.30s ease-in-out;
        -moz-transition: all 0.30s ease-in-out;
        -ms-transition: all 0.30s ease-in-out;
        -o-transition: all 0.30s ease-in-out;
    }
        .card-subpages .title:hover:before,
        .card-subpages .title:hover:after{
            opacity: 1;
        }
    
.footer{
    padding: 40px;
    font-size: 13px;
    color: #888;
    border-top: 1px solid #EEE;
    position: relative;
    z-index: 999;
    background-color: #FFF;
}
    .copyright a,
    .footer a{
        display: inline-block;
        font-size: 13px;
        padding: 10px;
        color: #888;
        vertical-align: middle;
    }
        .footer a>i{
            color: var(--brown);
            font-size: 17px;
            vertical-align: middle;
        }
    .footer a.social{
        font-size: 20px;
    }
        .footer a.social.twt i{
            color: #1da1f2;
        }
        .footer a.social.fb i{
            color: #4267B2;
        }
        .footer a.social.ig i{
            color: #833AB4;
        }
        .footer a.social.lkd i{
            color: #2867b2;
        }
        .footer a.social.ytb i{
            color: #df0000;
        }
.copyright{
    border-top: 1px solid #EEE;
    padding: 10px;
    text-align: center;
}
    .copyright p{
        margin-bottom: 0;
        font-size: 10px;
        text-align: center;
        color: #888;
    }
    .copyright a{
        font-size: 10px;
        padding: 0 10px;
        border-left: 1px solid #EEE;
    }
    .copyright .accepted-cards{
        font-size: 11px;
        color: #888;
    }
    .copyright .accepted-cards img{
        width: 130px;
    }
.booknow-form{
    background-color: #F7F7F7;
}
    .booknow-form .container{
        max-width: 750px;
    }
    .booknow-form .thank-you{
        background-color: var(--yellow);
        padding: 20px;
        text-align: center;
        color: var(--brown);
    }
    .booknow-form .panel{
        padding: 20px;
        
        margin-bottom: 30px;
    }
        .booknow-form .panel h2{
            font-size: 21px;
            text-transform: uppercase;
            padding: 20px 0;
            text-align: left;
            position: relative;
        }
        .booknow-form .panel h2:before{
            position: absolute;
            content: " ";
            left: 0;
            bottom: 10px;
            width: 100px;
            border-bottom: 1px solid var(--yellow);
        }
    .booknow-form .form-field{
        margin-bottom: 20px;
    }
        .booknow-form .form-field label{
            font-size: 14px;
            color: #888;
        }
        .booknow-form .form-field strong{
            display: block;
            font-size: 12px;
            text-transform: uppercase;
            margin: 20px 0;
            margin-top: 40px;
        }
        .booknow-form .form-field textarea,
        .booknow-form .form-field select,
        .booknow-form .form-field input[type="text"],
        .booknow-form .form-field input[type="email"],
        .booknow-form .form-field input[type="phpne"]{
            width: 100%;
            border: 1px solid #FFF;
            padding: 20px;
            color: var(--brown);
            border-radius: 5px;
            background-color: #FFF;
            -webkit-appearance: none;
                    appearance: none;
        }
    .booknow-form .submit{
        display: inline-block;
        padding: 15px 25px;
        color: var(--brown);
        font-size: 15px;
        background-color: var(--yellow);
    }


.lang-selector{
    text-align: right;
    font-size: 9px;
    color: #888;
    padding-right: 5px;
}
    .lang-selector.desktop{
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 999;
    }

    .lang-selector .dropdown a.btn{
        font-size: 10px;
        border-radius: 0 0 3px 3px;
        color: #FFF;
        background-color: var(--brown);
        outline: none;
    }
    .lang-selector .dropdown-menu{
        background-color: var(--brown);
        border: none;
        padding: 0;
        border-radius: 4px;
        overflow: hidden;
    }
        .lang-selector .dropdown-menu>a{
            font-size: 12px;
            color: #FFF;
            display: block;
            padding: 10px 15px;
        }
        .lang-selector .dropdown-menu>a:hover{
            background-color: rgba(0,0,0,0);
            color: var(--yellow);
        }

.mobile-menu{
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    top: 0;
    right: 0;
    z-index: 999;
    background-color: rgba(126, 110, 100, 0.8);
    -webkit-backdrop-filter: blur(5px);
}
    .mobile-menu .mobile-close{
        position: absolute;
        right: 0;
        top: 20px;
        width: 50px;
        height: 50px;
        line-height: 50px;
        color: #FFF;
        text-align: center;
        background-color: var(--brown);
    }
    .mobile-menu .content{
        display: flex;
        height: 100%;
        flex-direction: column;
        justify-content: center;
        align-content: center;
    }
    .mobile-menu .content>a{
        display: block;
        font-size: 26px;
        padding: 20px 30px;
        color: var(--yellow);
        font-family: 'Comfortaa', cursive;
    }

.mobile-menu .lang-selector{
    position: absolute;
    color: #FFF;
    text-align: center;
    top: 20px;
    right: 50px;
}
    .mobile-menu .lang-selector .dropdown a.btn{
        border-radius: 5px;
    }

#google_translate_element{
    text-align: center;
}
#google_translate_element select{
    /*display: none;*/
}

.grecaptcha-badge{
    opacity: 0.1;
}

/* Portrait phones and smaller */
@media (max-width: 576px) {
    .kint{
        display: none;
    }
}