@charset "UTF-8";

body {
    font-family: 'Merriweather', serif;
    font-size: 15px;
    font-weight: 400;
    background: #f8f4ed;
    color: #194049;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Merriweather', serif;
    color: #194049;
}

p {
    color: #194049;
}

.btn-primary {
    color: #fff;
    background-color: #194049;
    border-color: #194049;
}

    .btn-primary:hover {
        color: #fff;
        background-color: #006670;
        border-color: #006670;
    }

.light-grey {
    background-color: #f9f9f9;
}

.bg-color {
    background: #eaeeee;
}

.navbar-light .additional-navigation a {
    font-weight: bold;
}

    .navbar-light .additional-navigation a:hover {
        color: #006670;
    }

a {
    color: #00acbc;
    transition: all 0.2s linear;
}

    a:hover {
        text-decoration: none;
    }

    a h5, h3 a {
        color: #000000;
    }

ul, ol {
    margin-bottom: 0 !important;
}

img {
    max-width: 100%;
}

.navbar {
    padding: 0.5rem 2rem;
}

.navbar-collapse .navbar-nav li a.nav-link {
    color: #194049;
}

    .navbar-collapse .navbar-nav li a.nav-link:hover {
        color: #006670;
    }

.breadcrumb {
    padding: 3px 1rem;
    background-color: #f9f9f9;
    border-radius: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

    .breadcrumb li {
        font-size: 12px;
    }

.home .page-title {
    padding: 40px;
}

    .home .page-title h1 span {
        display: block;
    }

.button-action {
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    color: black;
    border-bottom: 1px solid #00acbc;
    font-size: 13px;
}

.form-group input,
.form-group select {
    font-weight: 400;
    height: calc(2.25rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    border-radius: 0;
    width: 100%;
}

.jumbotron {
    height: 840px;
    min-height: 100vh;
    position: relative;
    border-radius: 0;
    padding: 0;
}

    .jumbotron #jumbotron-content {
        position: absolute;
        bottom: 2rem;
        top: 30%;
        width: 100%;
    }

        .jumbotron #jumbotron-content .page-header {
            padding: 20px 80px;
        }

    .jumbotron h1 {
        color: white;
        color: white;
        font-size: 37px;
        line-height: 50px;
        text-shadow: 0 0 9px rgba(0, 0, 0, 0.8);
    }

.internal-page .jumbotron {
    height: 500px;
    min-height: 60vh;
}

.internal-page.login .jumbotron {
    height: 500px;
    min-height: 100vh;
}

.navbar-collapse li a {
    padding: 10px;
    color: #fff;
}

.svg-icon svg {
    height: 80px !important;
    margin: 0 auto;
    display: block;
    margin-bottom: 15px;
}

.card {
    background: none;
    border: none;
}

    .card .card-body {
        padding: 10px 0;
    }

    .card .card-img-top,
    .card img {
        border-radius: 5px;
    }

.card-img {
    overflow: hidden;
    position: relative;
}

    .card-img:after {
        content: '\A';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.2);
        opacity: 0;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
    }

    .card-img:hover:after {
        opacity: 1;
    }

.card-img-top {
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    transition: all 0.5s ease-in-out;
    transform: translateZ(0);
}

a:hover .card-img-top {
    -ms-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}

.navbar-light .additional-navigation {
    display: flex;
}

    .navbar-light .additional-navigation a {
        color: #414142;
        padding-right: 15px;
        line-height: 5em;
    }

.navbar-light .navbar-toggler {
    border: none;
}

    .navbar-light .navbar-toggler:hover, .navbar-light .navbar-toggler:focus {
        border-color: transparent;
        outline: none;
    }

.custom-select-wrapper {
    position: relative;
    user-select: none;
    width: 100%;
    box-shadow: 0px 16px 32px rgba(0, 0, 0, 0.15), 0px 3px 8px rgba(0, 0, 0, 0.1) !important;
}

    .custom-select-wrapper .custom-select-container {
        display: flex;
        flex-direction: column;
    }

        .custom-select-wrapper .custom-select-container .custom-select__trigger {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 22px;
            font-size: 14px;
            color: #3b3b3b;
            height: 60px;
            line-height: 60px;
            background: #ffffff;
            cursor: pointer;
            border: 1px solid #e5e5e5;
            border-radius: 5px;
        }

            .custom-select-wrapper .custom-select-container .custom-select__trigger .arrow {
                position: relative;
                height: 15px;
                width: 15px;
            }

                .custom-select-wrapper .custom-select-container .custom-select__trigger .arrow::before, .custom-select-wrapper .custom-select-container .custom-select__trigger .arrow:after {
                    content: "";
                    position: absolute;
                    bottom: 0px;
                    width: 0.15rem;
                    height: 100%;
                    transition: all 0.5s;
                }

                .custom-select-wrapper .custom-select-container .custom-select__trigger .arrow::before {
                    left: -5px;
                    transform: rotate(45deg);
                    background-color: #00acbc;
                }

                .custom-select-wrapper .custom-select-container .custom-select__trigger .arrow::after {
                    left: 5px;
                    transform: rotate(-45deg);
                    background-color: #00acbc;
                }

            .custom-select-wrapper .custom-select-container .custom-select__trigger span {
                font-weight: 400;
            }

        .custom-select-wrapper .custom-select-container .custom-options-container {
            position: absolute;
            display: block;
            top: 100%;
            left: 0;
            right: 0;
            border: 2px solid #e5e5e5;
            border-top: 0;
            background: #fff;
            transition: all 0.5s;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            z-index: 2;
        }

        .custom-select-wrapper .custom-select-container.open .custom-options-container {
            opacity: 1;
            visibility: visible;
            pointer-events: all;
            border-bottom-left-radius: 5px;
            border-bottom-right-radius: 5px;
        }

        .custom-select-wrapper .custom-select-container .custom-options-container .custom-option {
            position: relative;
            display: block;
            padding: 0 22px 0 22px;
            font-size: 14px;
            color: #3b3b3b;
            line-height: 60px;
            cursor: pointer;
            transition: all 0.5s;
        }

            .custom-select-wrapper .custom-select-container .custom-options-container .custom-option:hover {
                cursor: pointer;
                background-color: #b2b2b2;
            }

            .custom-select-wrapper .custom-select-container .custom-options-container .custom-option.selected {
                color: #ffffff;
                background-color: #00acbc;
            }

        .custom-select-wrapper .custom-select-container.open .arrow::before {
            left: -5px;
            transform: rotate(-45deg);
        }

        .custom-select-wrapper .custom-select-container.open .arrow::after {
            left: 5px;
            transform: rotate(45deg);
        }

        .custom-select-wrapper .custom-select-container.open .custom-select__trigger {
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0;
        }

.enquire-button {
    width: 100%;
    border: 1px solid #00acbc;
    color: #00acbc;
}

    .enquire-button:hover {
        background: #006670;
        color: white;
    }

.sidebar {
    border: 1px solid #dddddd;
    border-radius: 12px;
    padding: 24px 0;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 6px 16px;
}

.jumbotron-text-container, jumbotron-map-container {
    height: 600px;
    position: relative;
}

.jumbotron-text-container {
    margin: 0 100px;
    overflow: hidden;
}

    .jumbotron-text-container .header-half-content {
        position: absolute;
        top: 50%;
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 100%;
    }

    .jumbotron-text-container .download-button {
        font-family: "Nunito", sans-serif;
        font-weight: 600;
        border-bottom: 1px solid #00acbc;
        font-size: 18px;
    }

.nav-slider-container {
    position: relative;
    height: 100%;
}

    .nav-slider-container .nav-slider {
        position: absolute;
        top: 50%;
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 100%;
    }

        .nav-slider-container .nav-slider .slider-nav .slick-next, .nav-slider-container .nav-slider .slider-nav .slick-prev {
            top: 110%;
        }

        .nav-slider-container .nav-slider img {
            padding: 0 5px;
        }

#includedInStay p {
    line-height: 1.3em;
}

footer {
    background: #194049;
    clear: both;
}

    footer a {
        color: #fff;
        font-size: 13px;
        text-align: center;
    }

    footer .footer-links {
        padding-top: 80px;
        padding-bottom: 50px;
    }

.center-location {
    width: 100%;
}

    .center-location.slick-slider {
        padding: 0;
    }

.slick-initialized.slick-slider .slick-prev:before {
    content: "\f104";
    color: white;
    font-size: 30px;
}

.slick-initialized.slick-slider .slick-next:before {
    content: "\f105";
    color: white;
    font-size: 30px;
}

.slick-initialized.slick-slider .slick-prev {
    left: 15px;
}

.slick-initialized.slick-slider .slick-next, .slick-initialized.slick-slider .slick-prev {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 0;
    display: block;
    position: relative;
    position: absolute;
    top: 30%;
    width: 100%;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 2;
    padding: 15px 25px;
    border: none;
    outline: none;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.slick-initialized.slick-slider .slick-next {
    right: 15px;
}

.slick-initialized.slick-slider .slick-slide:focus {
    outline: none;
}

.photos-responsive.slick-initialized .slick-slide {
    padding: 0 5px;
}

.generalAmenities li {
    list-style: none;
}

    .generalAmenities li:before {
        content: '✓';
        font-weight: 900;
        float: left;
        margin-left: -1.5em;
        color: #00acbc;
    }

.accommodationHighlights .hightlight-item:before {
    content: '✓';
    font-weight: 900;
    float: left;
    margin-left: -1.5em;
    color: #00acbc;
}

.accommodationHighlights .hightlight-item h6, .accommodationHighlights .hightlight-item p {
    color: #959595;
}

.included-stay li {
    list-style: none;
}

.reviewContainer {
    background: #e8e8e8;
}

    .reviewContainer .reviews-page .card {
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        background-color: #fff;
        color: #333;
        border: 1px solid #e6e6e6;
        border-radius: 2px;
        padding: 16px;
        display: inline-block;
    }

        .reviewContainer .reviews-page .card a {
            display: block;
            color: white;
            background: black;
        }

        .reviewContainer .reviews-page .card .image-cont {
            position: relative;
        }

            .reviewContainer .reviews-page .card .image-cont a {
                position: absolute;
                bottom: 0;
                width: 100%;
                background: rgba(0, 0, 0, 0.5);
            }

        .reviewContainer .reviews-page .card img {
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0;
        }

        .reviewContainer .reviews-page .card h4 {
            color: #000;
            text-decoration: none;
            font-size: 16px;
            font-weight: 700;
            line-height: 24px;
        }

        .reviewContainer .reviews-page .card p {
            font-size: 13px;
            font-weight: 400;
            line-height: 20px;
            color: #6b6b6b;
        }

        .reviewContainer .reviews-page .card .review-author {
            font-weight: bold;
        }

        .reviewContainer .reviews-page .card .review-rating .secondary-content {
            font-size: 10px;
        }

.accordion {
    border-bottom: 1px solid #e6e6e6;
}

    .accordion .card-header {
        list-style: none;
        border-radius: 2px;
        border: 1px solid #e6e6e6;
        margin: 0;
        padding: 0;
        color: #333;
        background: #fff;
    }

        .accordion .card-header button {
            padding: 16px;
        }

            .accordion .card-header button .icon {
                float: right;
            }

            .accordion .card-header button.collapsed .icon-minus {
                display: block;
            }

            .accordion .card-header button.collapsed .icon-plus {
                display: none;
            }

            .accordion .card-header button .icon-minus {
                display: none;
            }

            .accordion .card-header button .icon-plus {
                display: block;
            }

.homeOwner .circle {
    background: rgba(0, 0, 0, 0.03);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: block;
    text-align: center;
    vertical-align: middle;
    padding: 10px 0;
    margin: 0 auto;
    color: #00acbc;
    font-size: 24px;
}

.homeOwner .homeOwnerHighlights img {
    display: block;
    margin: auto;
    border-radius: 100%;
}

.page-banner section {
    min-height: 500px;
    text-align: center;
    position: relative;
    background-attachment: fixed;
}

    .page-banner section .bannerText {
        position: absolute;
        left: 0;
        right: 0;
        z-index: 2;
        color: white;
        padding-top: 100px;
    }

    .page-banner section .overlay-effect {
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.3);
    }

    .page-banner section h2 p {
        color: white;
    }

#headerPageContent h3 {
    color: white;
}

#headerPageContent p {
    color: white;
}

.affix {
    top: 0;
    width: 350px;
    z-index: 9999 !important;
    position: fixed;
}

#nav-icon1 {
    width: 40px;
    height: 34px;
    position: relative;
    margin: 0px auto;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
    transition: color 0.3s ease-in-out;
}

    #nav-icon1 span {
        display: block;
        position: absolute;
        height: 4px;
        width: 100%;
        background: #333;
        border-radius: 9px;
        opacity: 1;
        left: 0;
        -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;
    }

        #nav-icon1 span:nth-child(1) {
            top: 0px;
            transition: all 1.3s;
        }

        #nav-icon1 span:nth-child(2) {
            top: 14px;
            transition: all 1.3s;
        }

        #nav-icon1 span:nth-child(3) {
            top: 28px;
            transition: all 1.3s;
        }

    #nav-icon1.open span:nth-child(1) {
        top: 18px;
        -webkit-transform: rotate(135deg);
        -moz-transform: rotate(135deg);
        -o-transform: rotate(135deg);
        transform: rotate(135deg);
    }

    #nav-icon1.open span:nth-child(2) {
        opacity: 0;
        left: -60px;
    }

    #nav-icon1.open span:nth-child(3) {
        top: 18px;
        -webkit-transform: rotate(-135deg);
        -moz-transform: rotate(-135deg);
        -o-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }

    #nav-icon1:hover span {
        background: #006670;
        transform: scale(1.4);
    }

    #nav-icon1:hover #nav-icon1 {
        transform: scale(1.4);
    }

.nav-slider-container .nav-slider img {
    border-radius: 5px;
}

.slider-for img {
    border-radius: 5px;
}

@media (max-width: 1200px) {
    .jumbotron #jumbotron-content {
        position: absolute;
        bottom: 2rem;
        top: 20%;
        width: 100%;
    }

    .affix {
        top: 0;
        width: 100%;
        z-index: 9999 !important;
        position: relative;
    }
}

@media (max-width: 778px) {
    .navbar-light .additional-navigation {
        display: block;
        width: 100%;
    }

        .navbar-light .additional-navigation ul {
            text-align: right;
        }

        .navbar-light .additional-navigation a {
            padding-right: 15px;
            padding-left: 15px;
            line-height: 1em;
        }

    .browser-resized .resize-class {
        display: flex;
    }

        .browser-resized .resize-class .additional-navigation {
            width: auto;
        }

            .browser-resized .resize-class .additional-navigation a {
                padding-left: 0;
                line-height: 5em;
            }

        .browser-resized .resize-class .navbar-brand img {
            width: 200px;
        }

    .jumbotron-text-container {
        margin: 0;
        overflow: hidden;
        min-height: auto;
        height: 100%;
        padding: 50px 0 20px 0;
    }

        .jumbotron-text-container .header-half-content {
            position: relative;
            top: 30%;
            -ms-transform: none;
            transform: none;
        }

    .nav-slider-container .nav-slider {
        position: relative;
        top: 0;
        -ms-transform: none;
        transform: none;
        width: 100%;
        padding-top: 15px;
    }

        .nav-slider-container .nav-slider .slider-nav .slick-next, .nav-slider-container .nav-slider .slider-nav .slick-prev {
            top: 30%;
        }
}
