<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
@font-face {
    font-family: 'century_gothicregular';
    src: url('../fonts/gothic-webfont.ttf');
}

body {
    padding: 0;
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #575757;
    background: #f4f4f4;
    letter-spacing: 1px;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    font-family: 'century_gothicregular', 'sans-serif';
    overflow-x: hidden;

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

}
h1, h2, h3 {
    color: #295eb3;
    font-family: century_gothicregular, sans-serif;
    text-transform: capitalize;
    line-height: 1.3;
    font-weight: bold;
    margin: 0;
}

h1 {
    font-weight: lighter;
    font-size: 36px;
}


h2 {
    font-weight: lighter;
    font-size: 26px;
}

h3 {
    font-weight: lighter;
    font-size: 24px;
}

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

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


a {
    text-decoration: none;
}

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


.text-header h1:first-letter {
    border-bottom: 1px solid #ffffff;
}

.lined-heading {
    position: relative;
    text-align: center;
    display: block;
    margin-bottom: 30px;
}

h1.lined-heading:before {
    top: 50%;
    width: 100%;
    height: 1px;
    content: "";
    display: block;
    position: absolute;
    border-top: 1px solid #000000;
}

h1.lined-heading div {
    font-weight: 100;
    padding: 0px 20px;
    position: relative;
    display: inline-block;
    background: #ffffff;
}
.show-distop {
    display: block;
}
.show-mobile {
    display: none;
}

.explore-info {
    width: 150px;
    padding: 10px;
    color: #ffffff;
    cursor: pointer;
    font-size: 20px;
    margin: 30px 0px;
    text-align: center;
    transition-duration: 2s;
    text-transform: uppercase;
    background: #a1c4fd;
    border: 1px solid #a1c4fd;
}
.explore-info:hover {
    color: #a1c4fd;
    background: none;
}
.explore-info a {
    color: #ffffff;
}
.explore-info a:hover {
    color: #a1c4fd;
}
/*-----------------------------------------------------------------------------------*/
/*  SLIDER SHOW
/*-----------------------------------------------------------------------------------*/
.wrap-slider {
    position: relative;
    background: black;
}
.slider-arrow {
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 75px 50px;
    z-index: 5
}
.slider-arrow a {
    opacity: .3;
    margin: 0 15px;
    cursor: pointer;
}
.slider-arrow a:hover {
    opacity: .8;
}
.slider-arrow img {
    width: 45px;
}

.text_slide {
    position: absolute;
    width: 50%;
    bottom: 0;
    left: 0;
    color: #fff;
    text-align: left;
    height: 200px;
    margin: auto;
    padding: 50px;
    z-index: 9;
}

.text_slide h1 {
    margin: 0;
    color: #fff;
    letter-spacing: 3px;
}

.text_slide p {
    text-transform: uppercase;
    font-size: 18px;
    margin: 0;
    padding: 6px 0;
    letter-spacing: 2px;
}

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

.text_slide ul li {
    margin: 0;
    list-style: none;
}
.overlay_slide:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 600px;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
    background: -o-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
    background: -moz-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
    z-index: 9;
}
/*---------------------------------------------*/
/* WRAP SCROLL DOWN */
/*---------------------------------------------*/
.scroll_down {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    z-index: 5;
    display: inline-block;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    color: #fff;
    letter-spacing: .1em;
    text-decoration: none;
    transition: opacity .3s;
    opacity: 0.7;
    margin: auto;
    width: 110px;
}

.scroll_down a {
    color: #fff;
}

.scroll_down:hover {
    opacity: .5;
}

.scroll_down {
    padding-top: 60px;
}

.scroll_down span {
    position: absolute;
    top: 0;
    left: 50%;
    width: 30px;
    height: 50px;
    margin-left: -15px;
    border: 2px solid #fff;
    border-radius: 50px;
    box-sizing: border-box;
}

.scroll_down a span::before {
    position: absolute;
    top: 10px;
    left: 50%;
    content: '';
    width: 6px;
    height: 6px;
    margin-left: -3px;
    background-color: #fff;
    border-radius: 100%;
    -webkit-animation: sdb10 2s infinite;
    animation: sdb10 2s infinite;
    box-sizing: border-box;
}

@-webkit-keyframes sdb10 {
    0% {
        -webkit-transform: translate(0, 0);
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
    80% {
        -webkit-transform: translate(0, 20px);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@keyframes sdb10 {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
    80% {
        transform: translate(0, 20px);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

/*-----------------------------------------------------------------------------------*/
/*  CSS Header
/*-----------------------------------------------------------------------------------*/
header, a, img, li {
    transition: all 1s;
    -moz-transition: all 1s; /* Firefox 4 */
    -webkit-transition: all 1s; /* Safari and Chrome */
    -o-transition: all 1s; /* Opera */
}

header .logo {
    right: 0px;
    position: absolute;
    background: #ffffff;
}

header {
    width: 100%;
    z-index: 2;
    position: fixed;
}

/* Sizes for the bigger menu */
header.large {
    padding: 0px;
}

header.large img {
    width: 300px;
    height: 100px;
}

/* Sizes for the smaller menu */
header.small {
    z-index: 5;
    height: 70px;
    background: rgba(0,0,0,0.85) !important;
}

header.small img {
    width: 210px;
    height: 70px;
}
header.small .header-menu {
    top: 0px;
    height: 70px;
    padding: 10px;
    border: none !important;
    background: #000000;
}

/*-----------------------------------------------------------------------------------*/
/*  header-box-rContent
/*-----------------------------------------------------------------------------------*/
.header-box-right {
    right: 0px;
    top: 100px;
    z-index: 2;
    width: 300px;
    cursor: pointer;
    position: absolute;
}
.header-box-right .content {
    padding: 20px;
    color: #ffffff;
    background:rgba(0,0,0,0.55) !important;
}
.header-box-right .content h3 {
    color: #a1c4fd;
    font-size: 24px;
    font-family: 'Allura';
    font-weight: 100;
    line-height: 0px;
    letter-spacing: 3px;
}
.header-box-right .content h2 {
    font-size: 20px;
    letter-spacing: 3px;
    font-weight: normal !important;
    text-transform: uppercase;
    font-family: 'futuratligregular';
}
.header-box-right .content p {
    font-size: 18px;
    margin: 20px 0px;
    color: #b1b1b1;
    letter-spacing: 1px;
}
.header-text-slide {
    z-index: 2;
    left: 50px;
    bottom: 10px;
    position: absolute;
}
.header-text-slide h1 {
    color: #ffffff;
    font-size: 48px;
    text-align: left;
    line-height: normal;
    letter-spacing: 0.1em;
    font-weight: 100 !important;
    margin: 20px 0px;
}
.header-text-slide h1:first-letter {
    border-bottom: 1px solid #ffffff;
}
.header-text-slide p {
    margin: 0px;
    color: #ffffff;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.animate-bottom {
    z-index: 2;
    bottom: 40px;
    left: 45%;
    position: absolute;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 3s;
    animation-name: animatebottom;
    animation-duration: 5s;
}
.animate-bottom h4 {
    color: #ffffff;
    font-size: 22px;
    text-align: center;
    letter-spacing: 2px;
    line-height: 30px;
    margin: 0px;
    font-weight: 100;
    font-family: 'Allura';
}
.animate-bottom img {
    width: 35px;
    margin: 0 auto;
}

/*-----------------------------------------------------------------------------------*/
/*  CSS Menu-Nav
/*-----------------------------------------------------------------------------------*/
.header-menu {
    z-index: 1;
    top: 30px;
    left: 50px;
    width: 70px;
    color: #ffffff;
    cursor: pointer;
    text-align: center;
    font-size: 20px;
    font-size: 16px;
    padding: 15px 10px;
    text-transform: uppercase;
    background:rgba(0,0,0,0.55) !important;
    position: absolute;
}
.header-menu i {
    color: #a1c4fd;
    font-size: 30px;
    font-weight: 100;
}
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    overflow-x: hidden;
    transition: 1s;
    padding-top: 100px;
    background-color: rgba(0,0,0,0.9);
}

.sidenav a {
    outline:0px !important;
    color: #ffffff;
    font-size: 18px;
    font-weight: 100;
    display: block;
    transition: 0.3s;
    text-align: left;
    letter-spacing: 2px;
    text-decoration: none;
    padding: 10px 5px 10px 50px;
    text-transform: uppercase;

}
.sidenav a:hover{
    color: #a1c4fd;
}
.sidenav .closebtn {
    top: 0px;
    right: 50px;
    font-size: 60px;
    position: absolute;
}

@media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
}

.social-icons {
   text-align: center;
    margin-bottom: 30px;
}
.social-icons h2 {
    margin: 0 0 20px 0;
    color: white;
}
.social-icons a {
    margin: 0 6px;
}
.social-icons i {
    color: #fff;
    font-size: 24px;
}
.social-icons i:hover , .contact-footer a:hover {
    color: #285eb3;
}
.contact-footer {
    text-align: center;
}
.contact-footer p {
    color: white;
    margin: 6px 0;
}
.contact-footer a {
    color: white;

}
.contact-footer span {
    margin: 0 6px;
    color: #fff;
}
.contact-footer i {
    color: white;
}
/*-----------------------------------------------------------------------------------*/
/*  CSS-Margin
/*-----------------------------------------------------------------------------------*/
.margint5 {
    margin-top: 5px !important;
}

.margint10 {
    margin-top: 10px !important;
}

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

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

.margint40 {
    margin-top: 40px !important;
}

.margint45 {
    margin-top: 45px !important;
}

.margint50 {
    margin-top: 50px !important;
}

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

.margint70 {
    margin-top: 70px !important;
}

.margint80 {
    margin-top: 80px !important;
}

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

.margint100 {
    margin-top: 100px !important;
}

.margint120 {
    margin-top: 120px !important;
}

.marginb10 {
    margin-bottom: 10px !important;
}

.marginb20 {
    margin-bottom: 20px !important;
}

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

.marginb40 {
    margin-bottom: 40px !important;
}

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

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

.marginb100 {
    margin-bottom: 100px !important;
}

.marginb120 {
    margin-bottom: 120px !important;
}

.marginr10 {
    margin-right: 10px !important;
}

.marginr20 {
    margin-right: 20px !important;
}

.marginr30 {
    margin-right: 30px !important;
}

.marginr40 {
    margin-right: 40px !important;
}

.marginr90 {
    margin-right: 90px !important;
}

.marginr100 {
    margin-right: 100px !important;
}

.marginr120 {
    margin-right: 120px !important;
}

.marginl10 {
    margin-left: 10px !important;
}

.marginr20 {
    margin-left: 20px !important;
}

.marginl30 {
    margin-left: 30px !important;
}

.marginl40 {
    margin-left: 40px !important;
}

.marginl60 {
    margin-left: 60px !important;
}

.marginl90 {
    margin-left: 90px !important;
}

.marginl100 {
    margin-left: 100px !important;
}

.marginl120 {
    margin-left: 120px !important;
}

.padding30 {
    padding: 20px;
}
.padding50 {
    padding: 50px;
}

/*-----------------------------------------------------------------------------------*/
/*  CSS-Center
/*-----------------------------------------------------------------------------------*/

.overlay-fullscreen {
    width: 100%;
    height: 100%;
    z-index: 1;
    position: absolute;
    background: rgba(0,0,0,0.3);
}
#video-fullscreen {
    position: fixed;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    background-size: cover;
}

.border-line {
    width: 100%;
    border-bottom: 1px solid #e0dede;
}
.border-line i {
    top: 25px;
    color: #e0dede;
    font-size: 30px;
    margin: 0 auto;
    padding: 10px;
    position: relative;
    background: #ffffff;
}

/*-----------------------------------------------------------------------------------*/
/*  Center hovereffect
/*-----------------------------------------------------------------------------------*/
.hovereffect {
    width: 100%;
    height: 100%;
    float: left;
    overflow: hidden;
    position: relative;
    text-align: center;
    cursor: default;
}

.hovereffect .overlay {
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.hovereffect img {
    display: block;
    position: relative;
    -webkit-transition: all .4s linear;
    transition: all .4s linear;
}

.hovereffect:hover img {
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.hovereffect:hover .overlay {
    opacity: 1;
    filter: alpha(opacity=100);
}

.hovereffect:hover h2, .hovereffect:hover a.info {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform: translatey(0);
    -webkit-transform: translatey(0);
    transform: translatey(0);
}

/*-----------------------------------------------------------------------------------*/
/*  Center Specail-offer
/*-----------------------------------------------------------------------------------*/
.specail-offer {
    background: #f4f4f4 !important;
}
.specail-offer-box {
    padding-left: 0;
    /*border: 15px solid #ffffff;*/
}

.specail-offer-box .booknow {
    z-index:9;
    right: 20px;
    bottom: 150px;
    font-size: 40px;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
    position: absolute;
}

.specail-offer-box .discount {
    z-index:9;
    right: 30px;
    bottom: 100px;
    font-size: 30px;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
    position: absolute;
}
.specail-offer-box .discount span {
    color: #ffffff;
    font-size: 50px;
    font-family: 'Allura';
    text-transform: none;
}
.specail-offer-box img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}
.specail-offer-box .content {
    z-index: 1;
    right: 0;
    bottom: 0;
    text-align: right;
    position: absolute;
    background: rgba(255,255,255,0.85) !important;
}
.specail-offer-box .content h3 {
    font-size: 20px;
    margin: 0px;
    padding: 10px 20px 10px 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.specail-offer-box span {
     color: #a1c4fd;
     font-family: 'Allura';
     text-transform: none;
}
.specail-offer-box .explore {
    color: #ffffff;
    width: 100%;
    padding: 10px 20px;
    text-transform: uppercase;
    background: #a1c4fd;
}

/*-----------------------------------------------------------------------------------*/
/*  Homepage
/*-----------------------------------------------------------------------------------*/
.homepage {
    width: 100%;
}
.homepage .col-xs-6 {
    padding: 0;
}
.homepage-box {
    position: relative;
    height: 500px;
    padding: 50px;
    text-align: left;
    background: #fff;
}
.homepage-box h1 {
    text-align: left;
}

.home-page-content {
    padding: 80px 80px 0;
    position: relative;
    width: 100%;
    display: inline-block;
}


.homepage-box .right {
    z-index: 2;
    border-bottom: 10px solid #a1c4fd;
    margin-bottom: -80px;
    position: relative;
}

.homepage-myCarousel {
    width: 100%;
}
.homepage-myCarousel .overlay {
    width: 100%;
    height: 100%;
    z-index: 1;
    position: absolute;
    background: rgba(0,0,0,0.5) !important;
}
.homepage-myCarousel img {
    width: 100%;
    object-fit: cover;
}
.homepage .box-content {
    z-index: 3;
    color: #ffffff;
    font-size: 20px;
    margin: 100px;
    text-align: center;
    position: absolute;
}
.homepage .box-content h1 {
    color: #ffffff;
    font-size: 70px;
    font-weight: 100;
    margin-bottom: 50px;
}
.homepage .box-content h1:first-letter {
    border-bottom: 1px solid #ffffff;
}
.homepage .box-content .explore {
    width: 150px;
    padding: 10px;
    margin: 0 auto;
    color: #ffffff;
    border: 1px solid #ffffff;
}
.homepage .box-content .explore:hover {
    color: #000000;
    transition-duration: 3s;
    background: #ffffff;
}

.homepage .carousel-inner {
    height: 700px;
}
.homepage .carousel-control i{
    font-size: 50px;
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-block;
    margin-top: -10px;
    opacity: 0.3;
}
.homepage .carousel-control i:hover {
    opacity: 1;
}
.homepage .content-title {
    z-index: 9;
    width: 500px;
    color: #a1c4fd;
    float: right;
    margin-top: -130px;
    position: relative;
    border-top: 10px solid #a1c4fd;
    background: #ffffff;
}

/*-----------------------------------------------------------------------------------*/
/*  Accommodation
/*-----------------------------------------------------------------------------------*/
.villa-info-size {
    width: 100%;
    margin: 30px 0px;
}

.villa-capacity {
    margin: 1em 0 2.5em 0;
    font-size: 16px;
    width: 30%;
    float: left;
}
.villa-capacity .villa-size {
    margin: 10px 0px;
}
.villa-info-size .explore {
    width: 150px;
    padding: 10px;
    color: #ffffff;
    font-size: 20px;
    text-align: center;
    transition-duration: 2s;
    text-transform: uppercase;
    background: #a1c4fd;
    border: 1px solid #a1c4fd;
}
.villa-info-size .explore:hover {
    background: none;
}
.villa-info-size .explore a {
    color: #ffffff;
}
.villa-info-size .explore a:hover {
    color: #a1c4fd;
}


/*-----------------------------------------------------------------------------------*/
/*  Page Download
/*-----------------------------------------------------------------------------------*/
.page-download {
    width: 30.333%;
    float: left;
    margin-right: 20px;
}
.page-download img {
    width: 100% !important;
}
.page-download .padding-bt-download {
    margin: 20px 0px;
}
.page-download .btn-info {
    color: #fff;
    background-color: #a1c4fd;
    border-color: #a1c4fd;
    border-radius: 0px;
    padding: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 16px;
}

/*-----------------------------------------------------------------------------------*/
/*  Footer
/*-----------------------------------------------------------------------------------*/
footer {
    width: 100%;
    color: #ffffff;
    padding: 50px 50px 30px 50px;
    font-size: 16px;
    text-align: center;
    letter-spacing: 2px;
    background: #a1c4fd;
}

footer p {
    font-size: 16px;
    margin: 7px 0px;
}

footer a {
    color: #ffffff;
}
footer a:hover {
    color: #000;
    transition-duration: 5s;
}
footer .form-group {
    margin: 0px;
}
footer .newsletter {
    width: 500px;
    padding: 13px 15px;
    margin-top: -80px;
    margin-bottom: 30px;
    background: #a1c4fd;
}
footer .newsletter .form-control {
    width: 70%;
    height: 50px;
    float: left;
    border: none;
    border-radius: 0px;
    padding: 6px 12px;
    background-color: #fff;
}
footer .newsletter .next {
    width: 30%;
    height: 50px;
    color: #ffffff;
    padding: 10px;
    letter-spacing: 2px;
    background: #000000;
}

footer #footerlinks {
    padding: 10px 0px;
}
footer ul {
    padding: 0px;
}
footer ul li {
    float: left;
    list-style: none;
    padding: 0px 15px;
    margin-right: 15px;
    border-right: 1px solid #ffffff;
}
footer #footerlinks a {
    color: #ffffff;
    letter-spacing: 2px;
}
footer #footerlinks a:last-child {
    border: none;
}
footer .social-icons {
    letter-spacing: 1px;
}
footer .social-icons a {
    float: none;
    font-size: 26px;
    color: #fff;
    padding: 0px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

footer .social-icons i {
    color: #ffffff;
    font-size: 24px;
    margin-right: 20px;
}
footer .social-icons i:hover {
    color: #000;
    transition-duration: 1.5s;
}

address {
    width: 100%;
    margin: 0px !important;
    padding: 15px 50px;
    text-align: center;
    background: #ffffff;
}

/*-----------------------------------------------------------------------------------*/
/*  Resize : Screen 1200px
/*-----------------------------------------------------------------------------------*/
@media (max-width: 1300px) {
    .homepage-box img {
        height: 700px;
    }
}

/*---------------------------------------------*/
/* WRAP BODY */
/*---------------------------------------------*/
.wrap-main-offers {
    position: relative;
    width: 100%;
    display: inline-block;
    overflow-x: hidden !important;
}
.wrap-main {
    position: relative;
    width: 100%;
    display: flex;
}
.wrap-box {
    position: relative;
    width: 100%;
    padding: 80px;
    display: inline-block;
    text-align: center;
}
.wrap-inner {
    position: relative;
    width: 100%;
    padding: 0 80px 80px;
    display: inline-block;
}
.photos-info {
    position: relative;
    width: 100%;
    padding: 0 80px;
    display: inline-block;
}
.wrap-main hr {
    margin: 15px auto;
    width: 40%;
    border-top: 1px solid #dce5f5;
}

/*-----------------------------------------------------------------------------------*/
/*  OWL
/*-----------------------------------------------------------------------------------*/
.slide-offers .owl-nav , .gallery-home .owl-nav {
    display: none;
}
.slide-offers .owl-dots {
    margin-top: 30px;
}
.gallery-home {
    position: relative;
    width: 100%;
    border-bottom: 10px solid #a1c4fd;
   margin-bottom: -80px;
    z-index: 6;
}

.slide-accom .owl-nav {
    position: absolute;
    left: 0;
    bottom: 6%;
    margin: 6px 125px;
}
.slide-accom.slider-info .owl-stage-outer {
    overflow: inherit !important;
}
.slide-accom.slider-info.owl-drag .owl-item {
    opacity: .6;
}
.slide-accom.slider-info.owl-drag .owl-item.active {
    opacity: 1;
}
.slide-accom.slider-info .owl-nav {
    top: 0;
    width: 100%;
    height: 45px;
    right: 0;
    margin: auto;
    bottom: 0;
}
.slide-accom.slider-info .owl-nav .owl-prev {
   position: absolute;
    left: 0;
    margin: 0 30px;
}
.slide-accom.slider-info .owl-nav .owl-next {
   position: absolute;
    right: 0;
    margin: 0 30px;
}
/*-----------------------------------------------------------------------------------*/
/*  DAKANDA RESORT */
/*-----------------------------------------------------------------------------------*/

.show-img {
    position: relative;
    /*cursor: pointer;*/
}
.icon-show {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    padding: 50px;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-content: center;
    align-content: center;
    justify-content: center;

}
.ui-icon {
    opacity: 0;
    transition: all .6s;
}
.box-slide-accom {
    position: relative;
    width: 100%;
}
.box-slide-accom .default_img:before {
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: block;
}
.pop-content {
    position: absolute !important;
    height: 100%;
    top: 0;
    left: 0;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-content: center;
    align-content: center;
    padding: 50px 130px !important;
    text-align: left;
    z-index: 9;
    color: #fff;

}
.pop-content h1 {
    margin: 0 0 20px 0;
    color: #fff;
}
.pop-content p {
    width: 100%;
    margin-bottom: 20px;
}
.title-accom {
    position: absolute;
    width: auto;
    height: 100px;
    background: white;
    border-top: 10px solid #a1c4fd;
    top: -100px;
    z-index: 6;
    right: 80px;
    padding: 0 50px;
}
.title-accom h1 {
    margin: 20px 0 !important;
}
.content-accom {
    position: relative;
    width: 100%;
    background: white;
    padding: 80px;
    text-align: left;
}
.footer {
    position: relative;
    width: 100%;
    background: #a1c4fd;
    display: block;
    text-align: center;
}
.btn-info {
    position: relative;
    display: inline-block;
    padding: 10px 30px;
    background: none;
    border: 1px solid #a1c4fd;

}
.home-page-content .btn-info {
    margin-top: 20px;
}
.ui-style {
    position: relative;
    width: 35px;
    height: 20px;
    top: 0;
    bottom: 0;
    left: 0;
    margin: 8px auto;
    cursor: pointer;
}
.style-icon {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.style-icon:after {
    content: "Menu";
    position: relative;
    color: white;
    display: block;
    left: -7px;
    top: 24px;
    transition: .23s ease-in-out;
}
.style-icon.active:after {
    content: "Close";
}
/*---------------------------------------------*/
/* STYLE 3 */
/*---------------------------------------------*/

.style-icon .amburgers1 {
    position: absolute;
    top: 0;
    width: 40%;
    height: 2px;
    background: #fff;
    border-radius: 1.5px;
    -webkit-transition: .23s ease-in-out;
    -moz-transition: .23s ease-in-out;
    -o-transition: .23s ease-in-out;
    transition: .23s ease-in-out;
}

.style-icon .amburgers2 {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #fff;
    top: 7px;
    left: 0;
    opacity: 1;
    border-radius: 1.5px;
    webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.style-icon .amburgers3 {
    position: absolute;
    width: 70%;
    height: 2px;
    background: #fff;
    top: 14px;
    border-radius: 1.5px;
    -webkit-transition: .23s ease-in-out;
    -moz-transition: .23s ease-in-out;
    -o-transition: .23s ease-in-out;
    transition: .23s ease-in-out;
}

.style-icon:hover .amburgers1, .style-icon:hover .amburgers3 {
    width: 100%;
}

.style-icon.active .amburgers1 {
    width: 100%;
    top: 10px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);

}

.style-icon.active .amburgers2 {
    left: -20px;
    opacity: 0;
}

.style-icon.active .amburgers3 {
    width: 100%;
    top: 10px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.wrap-menu {
    position: absolute;
    width: 100%;
    /*height: 90px;*/
    top: 0;
    background: none;
    transition: all .6s;
    z-index: 11;
}
.wrap_scroll {
    position: fixed;
    background: white;
    box-shadow: 0 13px 10px -9px rgba(0,0,0,0.09);
}
.wrap_scroll .navbar-brand {
    height: 100px !important;
}
.wrap_scroll .navbar-brand img {
    width: 215px;
}
.wrap_scroll .open-nav {
    margin: 12px 50px;
}
.open-nav {
    position: absolute;
    width: 70px;
    height: 70px;
    padding: 6px;
    background: rgba(0,0,0,0.4) !important;
    top: 0;
    margin: 22px 50px;
    z-index: 10;
}
.panel-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}
.box-menu {
    position: fixed;
    background: #dee6f5;
    width: 100%;
    height: 100%;
    z-index: 9;
    opacity: 0;
    pointer-events: none;
    webkit-transition: .23s ease-in-out;
    -moz-transition: .23s ease-in-out;
    -o-transition: .23s ease-in-out;
    transition: .23s ease-in-out;
}
.box-menu.open{
    opacity: 1;
    pointer-events: auto;
}
.menu-container   {
    position: relative;
    background-color: white;
    height: 100%;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    transition: all 500ms ease;
    padding-left: 15% !important;
    padding-right: 0 !important;
    display: flex;
     display: -webkit-flex;
    -webkit-align-items: center;
    -webkit-justify-content: flex-end;
    align-items: center;
    justify-content: space-between;
    z-index: 16;
}
.box-menu.open .menu-container {
    transform: translateX(0);
    -webkit-transform: translateX(0);
}

.menu-container ul {
    width: 100%;
    padding: 0;
    margin: 0;
}
.menu-container li {
    list-style: none;
    cursor: pointer;
}
.menu-container a {
     position: relative;
     padding: 6px;
     display: block;
     color: #b3b0b0;
     font-size: 22px;
     text-transform: capitalize;
 }
.menu-container a:hover , .menu-container a.active {
    color: #295eb3;
}
.submenu .info-sub {
    position: absolute;
    top: 0;
    left: 100%;
    height: 100%;
    background-color: #a1c4fd;
    width: 0;
    z-index: 2;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    -webkit-justify-content: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    transition: all 0.6s ease;
    text-align: left;
}
.submenu:hover .info-sub {
    width: 100%;
}
.submenu .info-sub li {
    width: 100%;
}
.submenu .info-sub li a {
    position: relative;
    width: 40vw;
    padding: 6px 50px;
    display: block;
    color: #fff;
    font-size: 20px;
    text-align: left;
    text-transform: capitalize;
}
.submenu .info-sub li a:hover {
    color: black;
}
.submenu:hover .info-sub li a {
    opacity: 1;
    transform: translateX(0%);
    -webkit-transform: translateX(0%);
    -webkit-transition: transform 0.45s ease, opacity 0.1s linear;
    -moz-transition: transform 0.45s ease, opacity 0.1s linear;
    -ms-transition: transform 0.45s ease, opacity 0.1s linear;
    transition: transform 0.45s ease, opacity 0.1s linear;
}
.navbar-brand {
    float: right !important;
    height: 110px !important;
    background: white;
    width: 385px;
    text-align: center;
}
.navbar-brand img {
    width: 260px;
}
/*---------------------------------------------*/
/* PAGE INFO */
/*---------------------------------------------*/
.content-child {
    position: relative;
    width: 100%;
}
.default_img {
    width: 100%;
    object-fit: cover;
    height: 600px;
}
/*.box-content-child .default_img {*/
/*    border: 15px solid #fff;*/
/*}*/
.content-info {
    position: relative;
    width: 100%;
    height: 281px;
    padding: 50px 30px;
    text-align: center;
}
.content-info h2{
    margin: 0 0 20px 0;
}
.page-info h1 {
    margin: 0 0 20px;
}
.content-info p {
    margin: 20px 0;
}


.amenities {
    position: relative;
    width: 100%;
    margin-top: 30px;
}
.amenities ul {
    padding: 0;
    margin: 0;
}
.amenities li {
    list-style: none;
    display: block;
    padding: 10px;
    text-transform: capitalize;
    width: 25%;
    height: 145px;
    float: left;
    text-align: center;
}
.amenities .icon-amenities {
    width: 60px;
    height: 60px;
    display: inline-block;
    border: 1px solid #a1a1a1;
    border-radius: 50%;
    padding: 13px;
    margin: 10px;
}
.amenities .icon-amenities img{
    width: 55px;
}
/*---------------------------------------------*/
/* GALLERY */
/*---------------------------------------------*/


.demo-gallery {
    position: relative;
    width: 100%;
    text-align: center;
}
.demo-gallery .col-xs-4 {
    padding: 0;
}
.demo-gallery ul {
    padding: 0;
    margin: 0;
}

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

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


.item_img_box img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}
.lg-dropdown, .lSPager, .lSAction {
    display: none !important;
}
.wrapper-filter-controls {
    position: relative;
    text-align: center;
    margin-top: 30px;
}

.hidepic{
    display:none;
}

.demo-gallery .item_img_box {
    width: 100%;
    transition: all 1s;
    cursor: pointer;
    z-index: 60;
}

.demo-gallery .item_img_box:hover {
    transform: scale(1.05);
}
.album-title {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 120px;
    cursor: pointer;
    background: none;
    padding: 15px 70px;
    color: #f7f7f7;
    margin: auto;
    font-size: 18px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.6s ease-in-out;
}

.album-title i {
    background: #a1c4fd;
    border-radius: 50%;
    margin: auto;
    padding: 12px;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.5s;
}

.box-album p {
    margin: 20px 0;
}
.item-box {
    position: relative;
    overflow: hidden;

}
.padding_gallery {
    padding: 10px;
}
.section_content:hover .item_img_box .item_img {
    transform: scale(1.05);
}

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

.demo-gallery .item_img_box:hover img {
    -webkit-filter: brightness(40%);
    filter: brightness(40%);
}

.demo-gallery .item_img_box:hover .album-title {
    opacity: 1;
    pointer-events: auto;
    -webkit-animation: fadeIn 1s;
    -webkit-animation-play-state: play;
    animation: fadeIn 1s;
    animation-play-state: play;
}
/*---------------------------------------------*/
/* WRAP CONTACT */
/*---------------------------------------------*/
.contact-from {
    position: relative;
    width: 100%;
}

.box-contact {
    position: relative;
    padding: 10px;
}

.box-contact input {
    position: relative;
    width: 100%;
    background: none;
    border: none;
    border-bottom: 1px solid #bbbaba;
    color: #a1c4fd;
    outline: none;
    font-size: 14px;
    padding: 6px 0;
}

.secur-box input {
    position: relative;
    width: 30%;
    text-align: center;
    background: none;
    border: none;
    border-bottom: 1px solid #bbbaba;
    color: #a1c4fd;
    outline: none;
    font-size: 14px;
    padding: 6px 0;
}

#captcha {
    margin-top: 10px;
}

.refresh-ico {
    cursor: pointer;
}

.box-contact textarea {
    position: relative;
    width: 100%;
    background: none;
    border: 1px solid #bbbaba;
    outline: none;
    color: #a1c4fd;
    padding: 15px;
    height: 150px;
    margin: 6px 0;
}

.box-contact input::-webkit-input-placeholder {
    color: #888;
}

.box-contact .text-primary {
    position: relative;
    text-align: left;
    color: #285eb3;
}

.secur-box .text-primary {
    position: relative;
    text-align: center;
    color: #285eb3;
}

.box-contact button {
    position: relative;
    display: inline-block;
    padding: 7px 30px;
    background: #a0c3fd;
    border: 1px solid #a0c3fd;
    color: #fff;
    outline: none;
    font-family: playfairdisplay;
    font-size: 18px;
    transition: all .6s;
}

.box-contact button i {
    margin-right: 6px;
}

.box-contact button:hover {
    color: #a0c3fd;
    background: none;
}

.required {
    color: #a0c3fd;
    font-size: 16px;
}
/*---------------------------------------------*/
.box-collapsible {
    position: relative;
    margin-top: 30px;
}
.collapsible {
    position: relative;
    background: none;
    border: 1px solid #a0c3fd;
    border-radius: 4px;
    color: #000;
    padding: 10px;
    width: 100%;
    text-align: left;
    outline: none;
    font-size: 16px;
    margin: 10px;
    cursor: pointer;
    z-index: 9;
}
.collapsible img {
    margin-right: 10px;
    vertical-align: middle;
    width: 20px;
}
.collapsible h4 {
    margin: 0 !important;
    text-transform: capitalize !important;
    color: #737372;
    display: inline-block;
}

.content-collapsible {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background: none;
    text-align: left;
}
.collapsible .arrow-coll {
    position: relative;
    float: right;
    transition: all .5s;

}
.collapsible .arrow-coll i {
    color: #295eb3;
}
.collapsible:hover h4 {
    color: #295eb3;
}
.collapsible.open .arrow-coll {
    transform: rotate(180deg);
}
/*---------------------------------------------*/
.copy-right {
    position: relative;
    width: 100%;
    font-size: 14px;
    padding: 20px;
    text-align: center;
    display: inline-block;
}
.book-mobile {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    display: inline-block;
    z-index: 9999;
    display: none;
}
.book-mobile .col-xs-2 {
    padding: 15px;
    background: #295eb3;
}
.book-mobile .col-xs-8 {
    padding: 15px;
    background: #a1c4fd;
}
.book-mobile a {
    color: #fff;
}









.icon-size{
    position: relative;
    margin: 0 0 30px;
    display: block;
    width: 100%;
    text-align: center;
}
.icon-size ul {
    width: 100%;
    padding: 0;
    margin: 0;
}
.icon-size li {
    position: relative;
    list-style: none;
    display: inline-block;
    padding: 10px;
}
.icon-size li:nth-child(1){
    padding-right: 15px;
    border-right: 1px solid #9e9e9e ;
}
.icon-size li &gt; p {
    margin-top: 6px;
}
.icon-size img {
    width: 32px;
}

</pre></body></html>