:root {
    --color-coral: #FFC7A7;
    --color-green: #38624A;
    --color-gray: #3D3D3D;
    --color-white: #F3F3F3;
}

html,
body {
    background-color: var(--color-white);
    color: var(--color-gray);
    float: left;
    font-family: "Manrope", serif;
    margin: 0;
    min-height: 100vh;
    padding: 0;
    width: 100%
}
a {
    color: var(--color-green);
    text-decoration: none;
    transition: all 0.3s ease 0s;
}
a:hover {
    color: var(--color-gray);
    text-decoration: none;
}
strong {
    font-weight: bold;
}
.img-responsive {
    float: left;
    position: relative;
    max-width: 100%;
}
.header--fixed.top {
    transition: none;
    transform: translateY(0);
}
.header--fixed.not-top {
    position: fixed;
    transform: translateY(-100%);
}
.header--fixed.slideDown.not-top {
    transition: transform 0.3s ease-in-out;
    transform: translateY(0);
}
.header--fixed.slideDown.top {
    transition: transform 0.3s ease-in-out;
    position: fixed;
}
.header--fixed.slideUp.not-top {
    transition: transform 0.3s ease-in-out;
    transform: translateY(-100%);
}
.header--fixed.slideUp.top {
    transform: translateY(-100%);
    position: absolute;
}
.ccPage {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: table;
    table-layout: fixed;
    margin: 0 auto !important;
    max-width: 1440px;
    padding: 0 30px;
    width: 100%;
}
.flex-container {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    float: left;
    -webkit-justify-content: center;
    justify-content: center;
    position: relative;
    width: 100%;
}
.mainContainer {
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin: 0;
    min-height: 100vh;
    padding: 0;
    position: relative;
    width: 100%
}
.coverContainer {
    background-image: linear-gradient(
            rgba(0, 0, 0, 0.50),
            rgba(0, 0, 0, 0.50)
    ), url('/assets/images/dji_export_1663432473755.jpg');
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    float: left;
    height: 100vh;
    /*padding-top: 46%;*/
    position: relative;
    margin-bottom: 60px;
    width: 100%;
}
.chooseLangWrapper {
    font-size: 20px;
    margin: 30px 0;
    text-align: right;
    width: 100%;
}
.chooseLangButton {
    font-weight: bold;
    color: var(--color-coral);
    padding: 2px;
}
.chooseLangButton:hover {
    color: var(--color-coral);
    text-decoration: underline;
}
.chooseLangButton.active {
    color: var(--color-green);
    background-color: var(--color-coral);
}
.chooseLangButton.active:hover {
    color: var(--color-green);
}
.navbarWrapper {
    bottom: 0;
    float: left;
    overflow: hidden;
    position: absolute;
    width: 100%;
}
/*.navbarWrapper.headroom {
    background-color: var(--color-green);
}
.navbarWrapper.top {
    display: none;
}*/
.navbarInner {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin-bottom: 30px;
    width: 100%;
}
.headerLogo {
    max-width: 150px;
}
.headerLogo img {
    float: left;
    position: relative;
    max-width: 100%;
}
.mouse {
    border: 3px solid var(--color-coral);
    border-radius: 30px;
    cursor: pointer;
    margin-top: 50px;
    height: 45px;
    position: relative;
    width: 25px;
}
.mouse::before {
     content: '';
     width: 6px;
     height: 6px;
     position: absolute;
     top: 5px;
     left: 50%;
     transform: translateX(-50%);
     background-color: var(--color-coral);
     border-radius: 50%;
     opacity: 1;
     animation: wheel 2s infinite;
     -webkit-animation: wheel 2s infinite;
 }
.headroom--pinned .mouse {
    display: none;
}
@keyframes wheel {
    to {
        opacity: 0;
        top: 30px;
    }
}
@-webkit-keyframes wheel {
    to {
        opacity: 0;
        top: 30px;
    }
}

.bookNowButton .generalButton {
    background: transparent;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 3px solid var(--color-coral);
    border-radius: 50%;
    height: 150px;
    margin: 0;
    width: 150px;
}
.bookNowButton .generalButton:hover {
    border-color: var(--color-green);
}
.textContainer {
    float: left;
    position: relative;
    margin-bottom: 60px;
    width: 100%;
}
.sliderContainer {
    float: left;
    position: relative;
    margin-bottom: 60px;
    width: 100%;
}
.carousel {
    float: left;
    position: relative;
    width: 100%;
}
.sliderWrapper {
    float: left;
    position: relative;
    width: 100%;
}
.carousel-wrapper {
    float: left;
    position: relative;
    width: 100%;
}
.controlContainer {
    cursor: pointer;
    height: 100%;
    position: absolute;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 100px;
    z-index: 1;
}
.controlContainer.prev {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.20) 0, rgba(0, 0, 0, 0) 100%);
    left: 0;
}
.controlContainer.next {
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.20) 0, rgba(0, 0, 0, 0) 100%);
    right: 0;
}
.controlContainer.prev:hover {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.50) 0, rgba(0, 0, 0, 0) 100%);
}
.controlContainer.next:hover {
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.50) 0, rgba(0, 0, 0, 0) 100%);
}
.controlContainer:hover .arrow {
    border-color: var(--color-coral);
}
.controlInner {
    padding: 0 20px 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
}
.arrow {
    border: solid var(--color-green);
    border-width: 0 9px 9px 0;
    display: inline-block;
    padding: 9px;
}
.right {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.left {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}
.is-horizontal .f-carousel__nav .f-button {
    width: 100px;
}
.is-horizontal .f-carousel__nav .f-button.is-prev {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.30) 0, rgba(0, 0, 0, 0) 100%);
    height: 100%;
    left: 0;
}
.is-horizontal .f-carousel__nav .f-button.is-prev:hover {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.60) 0, rgba(0, 0, 0, 0) 100%);
}
.is-horizontal .f-carousel__nav .f-button.is-next {
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.30) 0, rgba(0, 0, 0, 0) 100%);
    height: 100%;
    right: 0;
}
.is-horizontal .f-carousel__nav .f-button.is-next:hover {
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.60) 0, rgba(0, 0, 0, 0) 100%);
}
.f-button svg {
    color: var(--color-green);
    stroke: var(--color-green);
}
.f-button:hover svg {
    color: var(--color-coral);
    stroke: var(--color-coral);
}
.f-progress {
    background: var(--color-coral);
}
.headerLine {
    float: left;
    font-size: 46px;
    font-weight: 300;
    position: relative;
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
}
.line1 {
    float: left;
    font-size: 42px;
    position: relative;
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
}
.line2 {
    float: left;
    font-size: 26px;
    position: relative;
    text-align: center;
    width: 100%;
}
.mainText {
    float: left;
    font-size: 22px;
    position: relative;
    line-height: 1.6;
    text-align: center;
    width: 100%;
}
.mainText > strong {
    font-weight: 900;
}
.bookNowButtonsContainer {
    float: left;
    position: relative;
    margin-bottom: 60px;
    width: 100%;
}
.bookNowButtonsWrapper {
    float: left;
    position: relative;
    width: 100%;
}
.amenitiesContainer {
    background-color: #d0d0d0;
    float: left;
    padding: 30px 0;
    position: relative;
    margin-bottom: 60px;
    width: 100%;
}
.amenitiesWrapper {
    float: left;
    position: relative;
    width: 100%;
}
.amenitiesTitle {
    margin: 30px 0;
}
.amenitiesTitle h3 {
    color: var(--color-green);
    font-size: 36px;
}
.amenitiesItem {
    box-sizing: border-box;
    padding: 30px;
    text-align: center;
    width: 25%;
}
.amenitiesItemIcon {
    color: var(--color-green);
    font-size: 70px;
    margin-bottom: 15px;
}
.amenitiesItemTitle {
    color: var(--color-gray);
    font-size: 18px;
}
.mapContainer {
    float: left;
    position: relative;
    margin-bottom: 60px;
    width: 100%;
}
.linksContainer {
    float: left;
    position: relative;
    margin-bottom: 60px;
    width: 100%;
}
.linksWrapper a {
    font-size: 36px;
    margin-right: 20px;
}
.linksWrapper h3 {
    font-size: 20px;
    margin-bottom: 15px;
}
.linksWrapper strong {
    font-weight: 900;
}
.generalButton {
    -webkit-appearance: none;
    -webkit-align-items: center;
    align-items: center;
    background-color: var(--color-green);
    background-image: none !important;
    border: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    color: var(--color-coral);
    cursor: pointer;
    display: -webkit-flex;
    display: flex;
    float: left;
    font-size: 26px;
    font-weight: 400;
    -webkit-justify-content: center;
    justify-content: center;
    line-height: 1;
    margin-right: 20px;
    outline: none !important;
    padding: 12px 35px;
    position: relative;
    text-align: center;
    text-shadow: none;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.generalButton:hover {
    background-color: var(--color-coral);
    color: var(--color-green);
}
.mainWrapper {
    float: left;
    position: relative;
    width: 100%;
}
.footerContainer {
    background-color: var(--color-green);
    color: var(--color-white);
    float: left;
    width: 100%;
}
.footerWrapper {
    float: left;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 60px 0;
    position: relative;
    width: 100%;
}
.footerLogo {
    max-width: 200px;
    margin-right: 30px;
}
.footerLogo img {
    float: left;
    position: relative;
    max-width: 100%;
}
.footerMenu {
    float: left;
    position: relative;
    width: calc(50% - 30px);
    margin-left: 30px;
}
.menuHeader {
    float: left;
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--color-coral);
    color: var(--color-coral);
    margin-bottom: 20px;
    width: 100%;
}
.menuItem {
    float: left;
    margin-bottom: 20px;
    position: relative;
    width: 100%;
}
.menuItem a {
    color: var(--color-coral);
    font-size: 20px;
    text-decoration: none;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.menuItem a:hover {
    color: var(--color-white);
    text-decoration: underline;
}
.menuItem a span {
    margin-right: 10px;
}
.menuItem a:hover span {
    color: var(--color-white);
    text-decoration: none;
}
.copyrightsContainer {
    background-color: var(--color-gray);
    float: left;
    color: var(--color-coral);
    padding: 20px 0;
    position: relative;
    width: 100%;
}
.copyrightsWrapper {
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.copyrightsWrapper a {
    color: var(--color-coral);
    text-decoration: underline;
}
.copyrightsWrapper a:hover {
    text-decoration: none;
}

@media (max-width: 690px) {
    .amenitiesItem {
        width: 33.33%;
    }
}
@media (max-width: 620px) {
    .coverContainer {
        height: auto;
        padding-top: 46%;
    }
    #scrollToMainPage {
        display: none;
    }
    .headerLogo {
        max-width: 80px;
    }
    .bookNowButton .generalButton {
        font-size: 18px;
        height: 80px;
        width: 80px;
    }
    .headerLine {
        margin-top: 30px;
    }
    .footerWrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
    .footerLogo {
        margin-bottom: 30px;
        margin-right: 0;
        max-width: 200px;
        width: 100%;
    }
    .footerMenu {
        margin-left: 0;
        width: 100%;
    }
    .menuItem a {
        font-size: 20px;
    }
    .copyrightsWrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .copyrights {
        margin-bottom: 10px;
    }
}
@media (max-width: 565px) {
    .amenitiesItem {
        width: 50%;
    }
}
@media (max-width: 430px) {
    .headerLine {
        font-size: 30px;
    }
    .mainText {
        font-size: 20px;
    }
    .line1 {
        font-size: 36px;
    }
    .amenitiesTitle h3 {
        font-size: 28px;
    }
    .amenitiesItemIcon {
        font-size: 56px;
    }
}
@media (max-width: 480px) {
    .amenitiesItem {
        width: 100%;
    }
}
