<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500;600;700;800&amp;display=swap');
/*******************************************************************************
    Variable
*******************************************************************************/

:root {
    /* Color */
    --clr-primary: #0081A0;
    --clr-primary-light: #00C4F4;
    --clr-secondary: #4A4A4A;
    --clr-secondary-dark: #3C3C3C;
    --clr-neutral-100: #F9F8F6;
    --clr-neutral-200: #cecdcc;
    --clr-neutral-800: #4D4D4D ;
    --clr-white: #ffffff;
    --clr-black: #000000;

    /* Font */
    --heading-1: 5.6rem;
    --heading-2: 3.6rem;
    --heading-3: 2.6rem;
    --heading-small: 1.4rem;

    
    --fs-large: 2.2rem;
    --fs-navigation: 1.8rem;
    --fs-base: 1.6rem;
    --fs-second: 1.4rem;
    --fs-small: 1.2rem;

    --font-color: #777777;

    --fw-100: 100;
    --fw-300: 300;
    --fw-400: 400;
    --fw-500: 500;
    --fw-600: 600;
    --fw-700: 700;

    --line-height-base: 1.5;
    --line-height-heading: 1.2;

    --drop-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}

/*******************************************************************************
    Base
*******************************************************************************/
*,
::before,
::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    --font-size: 62.5%;
    font-size: var(--font-size);
}

body {
    font-family: "Roboto", sans-serif;
    font-size: var(--fs-base);
    font-weight: var(--fw-400);
    line-height: var(--line-height-base);
    color: var(--font-color);
    overflow-x: hidden;
    /* background-color: var(--clr-secondary); */
    background-color: var(--clr-secondary-dark);
}

.container {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wider {
    max-width: 150rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
    background-color: var(--clr-white);
}

.section__content {
    width: 50%;
}

.section-slider {
    background-color: var(--clr-white);
}

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

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

.bg-transparent {
    background-color: transparent;
}

.img-box {
    height: 25rem;
}

.btn-big {
    padding: 1.4rem 4rem;
    font-size: var(--fs-base);
    text-transform: uppercase;
    font-weight: var(--fw-500);
    border: 1px solid transparent;
    transition: .3s ease;
}

.btn-big:hover {
    background-color: transparent;
    color: var(--clr-primary);
    border: 1px solid var(--clr-primary);
}

.btn-medium {
    padding: .8rem 2.4rem;
    font-size: var(--fs-base);
    text-transform: uppercase;
    font-weight: var(--fw-500);
    border: 1px solid transparent;
    transition: .3s ease;
}

.btn-medium:hover {
    background-color: transparent;
    color: var(--clr-primary);
    border: 1px solid var(--clr-primary);
}

.fa-arrow-right {
    transition: transform .4s ease;
}

.btn-arrow {
    font-size: var(--fs-base);
    padding: 0;
    font-weight: var(--fw-700);
    
}

.btn-arrow:hover .fa-arrow-right {
    transform: translateX(.5rem);
}

a {
    text-decoration: none;
    color: var(--clr-primary-light);
    transition: .4s ease;
}

a:hover {
    color: var(--clr-neutral-100);
}

.back-primary {
    background-color: var(--clr-primary);
}

.back-primary-light {
    background-color: var(--clr-primary-light);
}

.back-secondary {
    background-color: var(--clr-secondary);
}

.back-secondary-dark {
    background-color: var(--clr-secondary-dark);
}

.back-neutral {
    background-color: var(--clr-neutral-100);
}

.back-white {
    background-color: var(--clr-white);
}

.clr-primary {
    color: var(--clr-primary);
}

.clr-primary-light {
    color: var(--clr-primary-light);
}

.clr-secondary {
    color: var(--clr-secondary);
}

.clr-secondary-dark {
    color: var(--clr-secondary-dark);
}

.clr-neutral {
    color: var(--clr-neutral-100);
} 

.clr-neutral-200 {
    color: var(--clr-neutral-200);
}

.clr-black {
    color: var(--clr-black);
}

.clr-white {
    color: var(--clr-white);
}

ul {
    margin: 0;
    padding: 0;
}

ul li {
    list-style: none;
    padding: .5rem 0;
}

.p-large {
    padding: 3rem;
}

.p-xxl {
    padding: 8rem;
}

hr {
    margin-bottom: 3rem;
}

/*******************************************************************************
    Typography
*******************************************************************************/
[class^="heading-"] {
    color: var(--clr-secondary);
    /* font-family: "EB Garamond", serif; */
}

.heading-1 {
    font-size: var(--heading-1);
    line-height: var(--line-height-heading);
    font-weight: var(--fw-400);
}

.heading-2 {
    font-size: var(--heading-2);
    line-height: var(--line-height-base);
}

.heading-3 {
    font-size: var(--heading-3);
    line-height: var(--line-height-heading);
    font-weight: 500;
}

.small-heading {
    text-transform: uppercase;
    font-size: var(--fs-second);
    font-weight: 500;
}

.fw-300 {
    font-weight: var(--fw-300);
}

.fw-500 {
    font-weight: var(--fw-500);
}

.fw-700 {
    font-weight: var(--fw-700);
}

.fs-small {
    font-size: var(--fs-small);
}

.fs-large {
    font-size: var(--fs-large);
}

.fs-base {
    font-size: var(--fs-base);
}

.w-4 {
    width: 4rem;
}

.w-3 {
    width: 3rem;
}


/*******************************************************************************
    Header
*******************************************************************************/
.header {
    background-color: var(--clr-white);
}

.header-top {
    padding: 3rem 0;
    position: relative;
}

.logo {
    height: 50px;
}

.header__contact-box {
    margin-right: 6rem;
}

.header .icon-contact {
    margin-right: 2rem;
}

.header .fa-map {
    font-size: 4.6rem;
}

.header .fa-phone {
    font-size: 4rem;
}

.header .icon-language {
    font-size: 2.2rem;
}

.header .text {
    line-height: 1.2;
}

.header span {
    color: var(--clr-secondary-dark);
    font-size: 1.4rem;
    font-weight: 900;
}

.language {
    font-size: 1.4rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    color: var(--clr-secondary);
}

.language:hover{
    color: var(--clr-primary);
}

.language__items {
    position: absolute;
    top: 2.5rem;
    left: 0;
    width: 6rem;
    padding: 1rem;
    display: none;
    z-index: 10;
}

.header .navigation {
    background-color: var(--clr-secondary);
}

.header .navigation__item:not(:last-child) {
    border-right: 1px solid var(--clr-white);
}

.header .navigation__item {
    padding: 2.2rem 3rem;
    font-size: 1.4rem;
    font-weight: 500;
    text-transform: uppercase;
}

.header .navigation__link{
    color: var(--clr-white);
}

.header .navigation__link:hover{
    color: var(--clr-primary-light);
}

.header .navigation__link.active {
    color: var(--clr-primary-light);
}

.menu {
    width: 3rem;
    height: 3rem;
    right: 0;
    top: 2.7rem;
    cursor: pointer;
    position: absolute;
    z-index: 9;
}

.nav-mobile .nav-mobile__item {
    padding: 1rem;
    border-bottom: 1px solid #eee; /*var(--clr-primary-light)*/;
    font-size: 2rem;
}

.nav-mobile .nav-mobile__item a {
    color: #333;
}


/*******************************************************************************
    Slider main
*******************************************************************************/
.slider__content {
    background-color: rgba(0, 0, 0, .6);
    padding: 5rem 10rem;
}

.slider__content .heading-1 {
    color: var(--clr-white);
    text-transform: uppercase;
}

.slider__content--text {
    font-size: 2.2rem;
}

.slider__img {
    padding-bottom: 66%;
    /* width: 96%; */
    margin: 5px;
}


/*******************************************************************************
    Sections
*******************************************************************************/
.image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image__item {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: .4s ease;
}

.image:hover .image__item {
    transform: scale(1.1);
}

.card-img {
    width: 100%;
    height: 23rem;
}

.section-grid__content, .section-grid__content--reverse {
    padding-top: 3rem;
}

.section-image {
    height: 50vh;
}

.room-img {
    width: 100%;
    padding-bottom: 55%;
}

.icon-room {
    width: 4rem;
}

.icon-set-box {
    margin-right: 8rem;
}

.price {
    font-size: 3.2rem;
    font-weight: 500;
    line-height: 1.5;
}

.input-field {
    width: 100%;
    border: none;
    padding: 1.5rem 3rem;
    margin-bottom: .5rem;
    background-color: var(--clr-neutral-100);
    font-size: 16px;
    border-radius: 0;
    color: #666;
}

.input-group-append {
    cursor: pointer;
    color: #666;
    border-radius: 0;
}

.input-group-text {
    font-size: 24px;
    background-color: var(--clr-primary) !important;
    color: #fff;
    border: 1px solid var(--clr-primary) !important;
    padding: 8px 15px;
    border-radius: 0;
}

.alert-error {
    background-color: #C21B22;
    padding: 1rem;
    color: white;
    margin-bottom: 10px;
}

/* datepicker */
.datepicker.dropdown-menu {
    list-style: none;
    color: #333;
    font-size: 16px !important;
    line-height: 20px;
}

.datepicker td, .datepicker th {
    width: 25px;
    height: 25px;
}

.datepicker table tr td.active {
    background-color: var(--clr-primary);
    background-image: linear-gradient(to bottom,var(--clr-primary),var(--clr-primary)) !important;
}

.form-help-block {
    color: var(--clr-primary);
    font-size: 1.2rem;
    font-weight: 500;
    padding-bottom: 15px;
}

.contact__info {
    padding: 1.5rem 0;
}

.contact__info a {
    color: var(--clr-secondary);
}

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

.contact__info i {
    font-size: 25px;
    color: var(--clr-primary);
}

/*******************************************************************************
    Pagination
*******************************************************************************/
.pagination-link {
    position: relative;
    display: block;
    padding: 0.9rem 0.9rem;
    font-weight: 600;
    margin-left: -1px;
    line-height: 1.25;
    color: #222222 !important;
    background-color: #F1F1F1;
    border: 1px solid #F1F1F1;
    margin-right: 5px;
    border-radius: 0px !important;
    min-width: 40px;
    text-align: center;
    /*-webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;*/
}
.pagination-item.disabled .pagination-link {
    color: #868e96;
    pointer-events: none;
    cursor: auto;
    background-color: #CEFFCE;
    border-color: #718393;
}
.pagination-item.active .pagination-link {
    z-index: 1;
    color: #fff !important;
    background-color: var(--clr-primary);
    border-color: var(--clr-primary);
}
.pagination-link:focus, .pagination-link:hover {
    color: #fff !important;
    text-decoration: none;
    background-color: var(--clr-primary);
    border-color: var(--clr-primary);
}

/*******************************************************************************
    Modal
*******************************************************************************/

.modal-content {
    border: 0;
    border-radius: 0;
  }

.modal-header {
    padding: 1.4rem 2rem !important;
}

.modal-title {
    font-size: 1.8rem !important;
    text-transform: uppercase !important;
    color: var(--clr-primary);
}

.modal-body {
    padding: 1.4rem 2rem !important;
}

.btn-modal {
    display: inline-block;
    font-size: 14px !important;
    font-weight: 500;
    border-radius: 0;
    text-transform: uppercase;
    padding: .5rem 1rem !important;
    background-color: var(--clr-primary);
    color: #ffffff  !important;
    -webkit-transition: .6s;
    border: 1px solid transparent;
    transition: .3s ease;
}
.btn-modal:hover {
    background-color: transparent;
    color: var(--clr-primary) !important;;
    border: 1px solid var(--clr-primary);
}


/*******************************************************************************
    Error
*******************************************************************************/
.error__content {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 50vh;
    background-color: var(--clr-white);
}

.error__title {
    font-size: 12rem;
    font-weight: 600;
    line-height: 1;
}


/*******************************************************************************
    Footer
*******************************************************************************/
.footer {
    padding-top: 6rem;
}

.footer .heading-3 {
    color: var(--clr-white);
}

.footer__link {
    color: var(--clr-white);
}

.footer__link:hover {
    color: var(--clr-primary-light);
}

.footer .fa-brands {
    font-size: 2rem;
}

.copyright {
    padding: 3rem 0;
    margin-top: 6rem;
    color: var(--clr-neutral-200);
    font-size: 14px;
}

/*******************************************************************************
    Media Query
*******************************************************************************/

@media screen and (max-width: 1400px) {
    .header .navigation__item {
        padding: 2.2rem 2rem;
        font-size: 1.4rem;
        font-weight: 500;
        text-transform: uppercase;
    }
}

@media screen and (max-width: 1280px) {
    .header .navigation__item {
        padding: 2.2rem 1.8rem;
        font-size: 1.4rem;
        font-weight: 500;
        text-transform: uppercase;
    }
}


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

    .header-top {
        padding: 1.3rem 0;
    }

    .logo {
        height: 5rem;
    }

    .language {
        margin-right: 3rem;
        width: 4rem;
    }

    .header .icon-language {
        font-size: 1.8rem;
    }

    .offcanvas-header .logo img {
        max-width: 90%;
    }

    .offcanvas-header .btn-close{
        padding-right: 30px;
    }

    .slider__content {
        padding: 2rem;
    }

    .slider__content .heading-1 {
        font-size: 3rem;
    }

    .slider__content--text {
        font-size: 1.8rem;
    }
}

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

    html {
        --font-size: 58%;
    }

    .heading-1 {
        font-size: 3.8rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section__content {
        width: 100%;
    }
 
    .heading-2 {
        --line-height-base: 1.2
    }

    .room-img {
        padding-bottom: 64%;
        width: 100%;
    }

    .footer__logo {
        width: 50%;
    }

}

@media screen and (max-width: 576px) {
    .section-image {
        height: 30vh;
    }
}

@media screen and (min-width: 576px) {
    .section-grid {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        grid-template-rows: 5rem max-content 5rem;
    }
    
    .section-grid__img {
        grid-column: 1 / 9;
        grid-row: 1 / -1;
    }
    
    .section-grid__img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .section-grid__content {
        grid-column: 7 / -1;
        grid-row: 2 / 3;
        padding: 5rem;
        position: relative;
    }
    
    
    .section-grid__content::before {
        content: '';
        width: 10rem;
        height: 10rem;
        border-top: 1px solid var(--clr-neutral-200);
        border-right: 1px solid var(--clr-neutral-200);
        position: absolute;
        right: 0;
        top: 0;
        z-index: 1;
    }
    
    .section-grid__content::after {
        content: '';
        width: 10rem;
        height: 10rem;
        border-bottom: 1px solid var(--clr-neutral-200);
        border-right: 1px solid var(--clr-neutral-200);
        position: absolute;
        right: 0;
        bottom: 0;
        z-index: 1;
    }
    
    .section-grid__img--reverse {
        grid-column: 5 / -1;
        grid-row: 1 / -1;
    }
    
    .section-grid__img--reverse img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .section-grid__content--reverse {
        grid-column: 1 / 7;
        grid-row: 2 / 3;
        padding: 5rem;
        position: relative;
    }
    
    
    .section-grid__content--reverse::before {
        content: '';
        width: 10rem;
        height: 10rem;
        border-top: 1px solid var(--clr-neutral-200);
        border-left: 1px solid var(--clr-neutral-200);
        position: absolute;
        left: 0;
        top: 0;
        z-index: 1;
    }
    
    .section-grid__content--reverse::after {
        content: '';
        width: 10rem;
        height: 10rem;
        border-bottom: 1px solid var(--clr-neutral-200);
        border-left: 1px solid var(--clr-neutral-200);
        position: absolute;
        left: 0;
        bottom: 0;
        z-index: 1;
    }
}

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