@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inria+Serif:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inria+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

body {
    overflow-x: hidden;
    background: #F1F1F1;
}

.container {
    max-width: 1280px;
    padding-left: 62px;
    padding-right: 62px;
}

button {
    background: transparent;
    border: none;
}

button:focus {
    box-shadow: none !important;
}

input:focus {
    box-shadow: none !important;
}

select:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

textarea:focus {
    box-shadow: none !important;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-bottom: 0;
}

/* Mobile navbar menu */
.animated-icon1 {
    width: 30px;
    height: 20px;
    position: relative;
    margin: 0px;
    -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;
}

.animated-icon1 span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    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;
}

button[aria-expanded="false"] .animated-icon1 span {
    background: #fff;
}

button[aria-expanded="true"] .animated-icon1 span {
    background: #fff;
}

.animated-icon1 span:nth-child(1) {
    top: 0px;
}

.animated-icon1 span:nth-child(2) {
    top: 10px;
}

.animated-icon1 span:nth-child(3) {
    top: 20px;
}

.animated-icon1.open span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.animated-icon1.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.animated-icon1.open span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

/* End of Mobile navbar menu */


/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #30463c;
    color: #FFFFFF;
    border-color: transparent;
    z-index: 99;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 20px;
    transition: 1s ease;
}

.back-to-top:focus {
    outline: 0;
    box-shadow: none !important;
}

.back-to-top:active {
    color: #30463c;
    background-color: #fff;
    /* border-color: #30463c; */
}

.back-to-top:hover {
    background-color: #fff;
    color: #30463c;
    /* border: 1px solid #30463c; */
}

/* End of Back to top */

/* Scrollbar */
body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

body::-webkit-scrollbar {
    width: 10px;
    background-color: #04455B;
}

body::-webkit-scrollbar-thumb {
    background-color: #30463c;
}

/* End of Scrollbar */

/* Pre loader */
.preloader {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9999999999;
    top: 0;
    left: 0;
    overflow-x: hidden;
    background: #fff;
    /* background: radial-gradient(#fbfbfb, #e3fcff); */
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-left: -75px;
}

.spinner span {
    position: absolute;
    top: 50%;
    left: var(--left);
    width: 35px;
    height: 7px;
    background: #236E4C;
    animation: dominos 1s ease infinite;
    box-shadow: 2px 2px 3px 0px black;
}

.spinner span:nth-child(1) {
    --left: 80px;
    animation-delay: 0.125s;
}

.spinner span:nth-child(2) {
    --left: 70px;
    animation-delay: 0.3s;
}

.spinner span:nth-child(3) {
    left: 60px;
    animation-delay: 0.425s;
}

.spinner span:nth-child(4) {
    animation-delay: 0.54s;
    left: 50px;
}

.spinner span:nth-child(5) {
    animation-delay: 0.665s;
    left: 40px;
}

.spinner span:nth-child(6) {
    animation-delay: 0.79s;
    left: 30px;
}

.spinner span:nth-child(7) {
    animation-delay: 0.915s;
    left: 20px;
}

.spinner span:nth-child(8) {
    left: 10px;
}

@keyframes dominos {
    50% {
        opacity: 0.7;
    }

    75% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    80% {
        opacity: 1;
    }
}


/* Header */
.header-wrap {
    /* background: #ffffff 0% 0% no-repeat padding-box; */
    width: 100%;
    /* height: 119px; */
    position: fixed;
    z-index: 999999;
    transition: .5s;
}

.header-wrap::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 309px;
    /*background: url('../img/header-overlay.png');*/
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
    transition: .5s;
}

.header-wrap.scrolled::before {
    height: 95px;
}

header.header-wrap.scrolled {
    background: #30463C 0% 0% no-repeat padding-box;
}

/* .header-wrap .container{
    padding-left: 62px;
    padding-right: 62px;
} */
header ul.navbar-nav {
    /* float: right; */
}

.humburger-menu {
    margin-right: 40px;
}

.menu-icon {
    position: relative;
    z-index: 2;
    padding: 0;
}

.menu-icon span {
    width: 100%;
    height: 2px;
    background: #D9D9D9;
    position: relative;
    display: block;
    transition: .7s;
}

.menu-icon:hover span {
    background: #000;
}

.menu-icon span:nth-child(1) {}

.menu-icon span:nth-child(2) {}

.menu-icon span:nth-child(3) {}

.humburger-menu-bar {
    position: absolute;
    background: rgb(217, 217, 217);
    top: 0;
    width: 100vw;
    height: 100vh;
    transition: 1s all;
    position: fixed;
    display: flex;
    left: 0;
    top: 0;
    z-index: 9;
    transform: translateY(0);
}

.menu-collapsed {
    transform: translateY(-100%);
    transition: 1s all;
}

.humburger-menu-bar .menu-icon {
    position: absolute;
    top: 20px;
    left: 20px;
}

.humburger-menu-bar-left-contents {
    width: 70%;
}

.humburger-menu-bar-left-contents-bg {
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    /* padding: 140px 95px 75px; */
    padding: 40px 95px 40px;
    display: flex;
}

.humburger-menu-bar-left-contents ul {
    flex-basis: 50%;
    display: block;
}

.humburger-menu-bar-left-contents ul li {
    margin-bottom: 35px;
}

.humburger-menu-bar-left-contents ul li:last-child {
    margin-bottom: 0;
}

.humburger-menu-bar-left-contents ul li a {
    color: #FFF;
    font-family: "Inria Serif";
    font-size: 29px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.accom-menus {
    flex-basis: 50%;
    display: block;
}

.accom-menus h4 {
    color: #FFF;
    font-family: "Inria Serif";
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 35px;
}

.accom-menus ul {
    float: unset !important;
}

.accom-menus ul li {
    margin-bottom: 41px;
}

.accom-menus ul li:last-child {
    margin-bottom: 0;
}

.accom-menus ul li a {
    color: #FFF;
    font-family: "Inria Serif";
    font-size: 22px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.humburger-menu-bar-right-contents {
    width: 30%;
    background: #3A5366;
    padding: 73px 50px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.humburger-menu-bar-right-contents a.humb-logo {
    margin-bottom: 34px;
    text-align: center;
}

.humburger-menu-bar-right-contents h4 {
    color: #FFF;
    text-align: center;
    font-family: "Inria Serif";
    font-size: 19px;
    font-style: normal;
    font-weight: 300;
    line-height: 32px;
    /* 168.421% */
}

.humburger-menu-bar-right-contents h4 span {
    font-weight: 400;
    display: block;
}

.humburger-menu-bar-right-contents h5 {
    color: #9DB7CA;
    text-align: center;
    font-family: "Inria Serif";
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: 32px;
    /* 188.235% */
    margin-top: 60px;
}

.humburger-menu-bar-right-contents a.humb-contact {
    color: #FFF;
    text-align: center;
    font-family: "Inria Serif";
    font-size: 21px;
    font-style: normal;
    font-weight: 300;
    line-height: 38px;
    /* 180.952% */
}

.social-icons {
    padding-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.social-icons a {}

.social-icons a i {
    font-size: 25px;
    color: #fff;
}

.header-wrap .navbar {
    justify-content: center;
    padding-top: 0;
    padding-bottom: 0;
}

.navbar .collapse ul {
    display: flex;
    align-items: center;
    /* justify-content: end; */
    justify-content: space-between;
}

header.header-wrap.scrolled .navbar .collapse ul {
    margin-top: -5px;
}

.navbar .collapse ul li {
    margin: 0 20px;
}

.navbar .collapse ul li:last-child {
    margin-right: 0;
}

.navbar .collapse ul li a {
    color: #FFF;
    font-family: "Inria Serif";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.head-logo {
    margin: 0 20px 0 18px !important;
}

.head-logo a {
    position: relative;
    display: block;
    width: 157px;
    height: 157px;
    font-size: 0 !important;
}

header.header-wrap.scrolled .head-logo a {
    width: 100px;
    height: 100px;
}

.head-logo a:before {
    content: '';
    position: absolute;
    width: 157px;
    height: 157px;
    background: url('../img/head-logo.png');
    left: 50%;
    transform: translate(-50%, 0);
}

header.header-wrap.scrolled .head-logo a:before {
    transform: translate(-50%, 0) scale(.55);
    top: -26px;
}



/* End of Header */

/* Home page */
.page-sections {
    overflow: hidden;
}

.main-banner-wrap {}

.main-banner-wrap .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.hm-banner-wrap {
    position: relative;
    height: 880px;
}

.hm-banner-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hm-banner-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hm-banner-contents {
    position: absolute;
    z-index: 1;
    top: 38%;
    width: 100%;
}

.hm-banner-contents h1 {
    color: #FFF;
    text-shadow: 0px 4px 14px rgba(0, 0, 0, 0.25);
    font-family: "Inria Serif";
    font-size: 98px;
    font-style: normal;
    font-weight: 700;
    line-height: 99px;
    /* 101.02% */
    letter-spacing: -2.94px;
    margin-bottom: 27px;
    max-width: 510px;
    position: relative;
    z-index: 1;
}

.hm-banner-contents h1::before {
    content: '';
    position: absolute;
    width: 378px;
    height: 463px;
    background: url('../img/main-banner-leaf.png');
    top: 0;
    left: 78px;
    z-index: -1;
}

.hm-banner-contents p {
    color: #FFF;
    font-family: "Inria Sans";
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 33px;
    /* 150% */
    letter-spacing: -0.44px;
    max-width: 450px;
}

.i-want-block-wrap {
    margin-top: -110px;
    position: relative;
    padding-bottom: 90px;
    z-index: 99;
}

.i-want-block-contents {
    /* padding: 25px 30px; */
    width: 848px;
    height: auto;
    margin: auto;
    position: relative;
    z-index: 1;
}

.i-want-block-contents.i-want-block-active {}

.i-want-blocks {
    width: 788px;
    height: auto;
    border-radius: 13px;
    background: #FFFBFB;
    box-shadow: 0px 4px 34px 0px rgba(0, 0, 0, 0.15);
    padding: 15px;
    margin: auto;
}

.i-want-single-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 30px 25px 25px;
    border-radius: 13px;
    transition: .5s;
    cursor: pointer;
}

.i-want-single-block::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 120px;
    background: #EAE7E7;
    top: 50%;
    transform: translate(0, -50%);
    right: -12px;
}

.i-want-blocks .row .col-lg-4:nth-child(3) .i-want-single-block::before {
    display: none;
}

.i-want-single-block.active {
    background: #30463C;
    box-shadow: 0px 4px 34px 0px rgba(0, 0, 0, 0.23);
}

.i-want-single-block.active img {
    filter: brightness(0) invert(1);
}

.i-want-single-block.active h4,
.i-want-single-block.active p {
    color: #fff;
}

.i-want-single-block img {
    margin-bottom: 15px;
}

.i-want-single-block h4 {
    color: #0E0E0E;
    text-align: center;
    font-family: "Inria Serif";
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: 45px;
    /* 180% */
    letter-spacing: -0.5px;
    margin-bottom: 7px;
}

.i-want-single-block p {
    color: #403D3D;
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.28px;
}

.i-want-single-block-details {
    padding: 42px 0 42px;
    display: none;
    transition: .5s;
}

.i-want-single-block-details.active {
    display: block;
    border-radius: 13px;
    transition: .5s;
    background: #F8F8F8;
    box-shadow: 0px 4px 34px 0px rgba(0, 0, 0, 0.10);
    padding: 325px 30px 45px;
    /* margin-top: -260px; */
    position: absolute;
    z-index: -1;
    width: 100%;
    top: -5px;
}

.i-want-single-block-details h3 {
    color: #0E0E0E;
    text-align: center;
    font-family: "Inria Serif";
    font-size: 23px;
    font-style: normal;
    font-weight: 700;
    line-height: 45px;
    /* 195.652% */
    letter-spacing: -0.46px;
}

body.i-want-block-overlay {
    position: relative;
}

body.i-want-block-overlay::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.88;
    background: #EEEAEA;
    backdrop-filter: blur(10px);
    top: 0;
    left: 0;
    /* z-index: 9; */
    z-index: 1;
}

.home-intro-wrap {
    padding-bottom: 40px;
}

.home-intro-wrap h3 {
    color: #0E0E0E;
    text-align: center;
    font-family: "Inria Serif";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 49px;
    /* 136.111% */
    letter-spacing: -0.72px;
    max-width: 850px;
    margin: auto;
    margin-bottom: 35px;
}

.home-intro-wrap p {
    color: #0E0E0E;
    text-align: center;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 33px;
    /* 183.333% */
    letter-spacing: -0.36px;
    max-width: 704px;
    margin: auto;
}

.your-stay-wrap {
    padding: 15px 0 50px;
}

.your-stay-head {
    position: relative;
    z-index: 1;
}

.your-stay-head::before {
    content: '';
    position: absolute;
    width: 640px;
    height: 529px;
    background: url('../img/your-stay-shape.png');
    top: -50px;
    left: -320px;
    z-index: -1;
}

.your-stay-head h2 {
    color: #ACABAB;
    font-family: "Inria Serif";
    font-size: 143px;
    font-style: normal;
    font-weight: 700;
    line-height: 49px;
    /* 34.266% */
    letter-spacing: -2.86px;
    transform: rotate(-90deg);
    position: relative;
    width: max-content;
    left: -80px;
    top: 285px;
}

.your-stay-block {
    margin-top: 70px;
    display: block;
}

.your-stay-block img {
    margin-bottom: 20px;
    width: 100%;
    border-radius: 13px;
}

.your-stay-block h4 {
    color: #0E0E0E;
    font-family: "Inria Serif";
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    line-height: 29px;
    /* 85.294% */
    letter-spacing: -0.68px;
    margin-bottom: 8px;
}

.your-stay-block p {
    color: #1F1D1D;
    font-family: "Inria Serif";
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 29px;
    /* 161.111% */
}

.discover-digital-wrap {
    padding: 50px 0 50px;
}

.discover-digital-wrap h2 {
    color: #0F0F0F;
    text-align: center;
    font-family: "Inria Serif";
    font-size: 42px;
    font-style: italic;
    font-weight: 400;
    line-height: 61px;
    /* 145.238% */
    letter-spacing: -0.84px;
    position: relative;
    margin-bottom: 70px;
}

.discover-digital-wrap h2::before {
    content: '';
    position: absolute;
    width: 352px;
    height: 1px;
    background: #828282;
    bottom: -38px;
    left: 71%;
    transform: translate(-50%, 0);
}

.discover-digital-wrap h2::after {
    content: '';
    position: absolute;
    width: 123px;
    height: 279px;
    background: url('../img/digital-shape.png');
    top: -100px;
    right: -55px;
    z-index: -1;
}

.discover-digital-wrap .row .col-md-12 {
    display: flex;
    align-items: center;
}

.home-co-live-content-slider {
    width: 100%;
}

.home-co-live-contents {
    padding-right: 20px;
}

.home-co-live-contents h3 {
    color: #0E0E0E;
    font-family: "Inria Serif";
    font-size: 54px;
    font-style: normal;
    font-weight: 700;
    line-height: 67px;
    /* 124.074% */
    letter-spacing: -0.54px;
    margin-bottom: 30px;
}

.home-co-live-contents p {
    color: #0E0E0E;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px;
    /* 170% */
    letter-spacing: -0.2px;
}

.home-co-live-contents a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: fit-content;
    padding: 0 45px;
    border-radius: 39px;
    background: #236E4C;
    color: #FFF;
    font-family: "Inria Serif";
    font-size: 23px;
    font-style: normal;
    font-weight: 700;
    line-height: 52px;
    /* 226.087% */
    letter-spacing: -0.23px;
    margin-top: 22px;
    transition: .5s;
}

.home-co-live-contents a:hover {
    background: transparent;
    border: 1px solid #236E4C;
    color: #236E4C;
}

.slider-single {
    width: 90%;
    margin-left: 15px;
    position: relative;
}

.slider-single::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 285px;
    background: url('../img/co-live-round-shape.png');
    bottom: -45px;
    right: -18px;
    z-index: -1;
}

.slider-single .slick-track {
    left: 2%;
    padding: 60px 50px 68px;
}

.slider-single .home-co-live-slide {
    transform: scale(.87);
    transition: .7s;
    left: -12.3%;
    position: relative;
}

.slider-single .slick-prev {
    left: 0;
    z-index: 1;
}

.slider-single .slick-next {
    right: -52px;
}

.home-co-live-slider {
    /* width: 100%; */
    width: 90%;
    /* margin-left: 65px; */
    margin-left: 15px;
    position: relative;
}

.home-co-live-slider::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 285px;
    background: url('../img/co-live-round-shape.png');
    bottom: -45px;
    right: -18px;
    z-index: -1;
}

.home-co-live-slider .slick-track {
    left: -67%;
    /* padding: 50px; */
    padding: 60px 50px 68px;
}

.home-co-live-slide {
    /* padding: 0 0px; */
    transform: scale(.87);
    transition: .7s;
    left: -10.3%;
    /* left: -26%; */
    position: relative;
}

.home-co-live-slide.slick-current {
    transform: scale(1);
    left: 0;
    z-index: 9;
}

.home-co-live-slide img {
    border-radius: 25px;
    /* box-shadow: 0px 4px 64px rgba(0, 0, 0, 0.15); */
}

.home-co-live-slide.slick-current img {
    box-shadow: 0px 4px 64px rgba(0, 0, 0, 0.15);
}

.slick-prev:before,
.slick-next:before {
    content: '';
    font-size: 0;
    display: block;
    width: 20px;
    height: 35px;
}

.slick-prev:before {
    background: url('../img/arrow-left.png');
}

.slick-next:before {
    background: url('../img/arrow-right.png');
}

.home-co-live-slider .slick-prev {
    left: -12px;
}

.home-co-live-slider .slick-next {
    right: -55px;
}

.slider.slider-nav {
    width: 100%;
}

.we-offer-wrap {
    /* padding: 60px 0 60px; */
    padding: 60px 0 60px 55px;
}

.we-offer-wrap h2 {
    color: #0E0E0E;
    font-family: "Inria Serif";
    font-size: 62px;
    font-style: italic;
    font-weight: 700;
    line-height: 70px;
    /* 112.903% */
    margin-bottom: 50px;
    position: relative;
}

.we-offer-wrap h2::before {
    content: '';
    position: absolute;
    width: 582px;
    height: 528px;
    background: url('../img/we-offer-shape.png');
    top: -85px;
    left: -25%;
    z-index: -1;
}

.we-offer-slider {}

.we-offer-slider .slick-track {
    left: -95px;
}

.we-offer-block {
    padding: 0 12px;
}

.we-offer-block img {
    margin-bottom: 35px;
    width: 100%;
    border-radius: 20px;
}

.we-offer-block h4 {
    color: #0E0E0E;
    font-family: "Inria Serif";
    font-size: 31px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
    /* 93.548% */
    letter-spacing: -0.62px;
}

.we-offer-slider .slick-next:before {
    background: url('../img/we-offer-right-arrow.png');
    width: 58px;
    height: 58px;
}

.we-offer-slider .slick-prev:before {
    background: url('../img/we-offer-left-arrow.png');
    width: 58px;
    height: 58px;
}

.we-offer-slider .slick-next,
.we-offer-slider .slick-prev {
    top: 42%;
    z-index: 9;
}

.we-offer-slider .slick-prev {
    left: 32px;
}

.we-offer-slider .slick-next {
    right: 110px;
}

.book-destination-top-shape {
    margin-bottom: -95px;
    position: relative;
    z-index: 1;
}

.book-destination-top-shape img {
    width: 100%;
}

.book-destination-wrap {
    width: 100%;
    height: auto;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    padding: 70px 0 70px;
}

.book-destintion-contents {
    width: 790px;
    height: 739px;
    background-repeat: no-repeat !important;
    padding: 195px 235px 150px 115px;
    position: relative;
    right: -230px;
    margin-top: -110px;
    float: right;
}

.book-destintion-contents h2 {
    color: #FFF;
    font-family: "Inria Serif";
    font-size: 66px;
    font-style: normal;
    font-weight: 700;
    line-height: 68px;
    /* 103.03% */
    letter-spacing: -0.66px;
    margin-bottom: 22px;
}

.book-destintion-contents p {
    color: #F2F2F2;
    font-family: Inter;
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: 32px;
    /* 188.235% */
    letter-spacing: -0.17px;
}

.book-destintion-contents a {
    color: #FFF;
    font-family: "Inria Serif";
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: 52px;
    /* 208% */
    letter-spacing: -0.25px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: 62px;
    border-radius: 39px;
    background: #289664;
    padding: 0 20px 0 36px;
    margin-top: 22px;
    transition: .5s;
}

.book-destintion-contents a:hover {
    background: transparent;
    border: 1px solid #FFF;
}

.book-destintion-contents a img {
    margin-left: 40px;
    transition: .5s;
}

/* End of Home page */

/* Footer */
.footer-shape {
    margin-bottom: -2px;
    margin-top: -44px;
}

footer {
    background: #1C1C1F;
    padding: 40px 0 32px;
}

.weather-block {}

.weather-block h4 {
    color: #A79595;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 29px;
    /* 207.143% */
    letter-spacing: 0.84px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.weather-time {
    display: flex;
    align-items: center;
}

.weather {
    color: #FFF;
    font-family: "Inria Serif";
    font-size: 61px;
    font-style: normal;
    font-weight: 300;
    line-height: 75px;
    /* 122.951% */
    letter-spacing: -0.61px;
    position: relative;
    display: flex;
    align-items: center;
}

.weather::before {
    content: '';
    position: absolute;
    width: 90px;
    height: 1px;
    background: #FFF;
    right: -120px;
}

.foot-time {
    color: #FFF;
    font-family: "Inria Serif";
    font-size: 63px;
    font-style: normal;
    font-weight: 300;
    line-height: 67px;
    /* 106.349% */
    letter-spacing: -0.63px;
    margin-left: 148px;
}

.foot-time sup {
    font-size: 39px;
    letter-spacing: -0.39px;
    position: relative;
    top: -30px;
    left: 5px;
}

.footer-social {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-social h5 {
    color: #A79595;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 29px;
    /* 207.143% */
    letter-spacing: 0.84px;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
}

.footer-social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.footer-social-links a {}

.footer-social-links a i {
    font-size: 35px;
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #2E2E2E;
    padding: 32px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 90px;
}

.foot-links {}

.foot-links ul {
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 55px;
    margin-bottom: 0;
}

.foot-links ul li {
    list-style: none;
}

.foot-links ul li a {
    color: #747474;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    /* 233.333% */
    letter-spacing: 0.72px;
    text-transform: uppercase;
    transition: .5s;
}

.copyrights {}

.copyrights p {
    color: #747474;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    text-align: right;
    letter-spacing: 0.72px;
    text-transform: uppercase;
}

.copyrights p a {
    color: #747474;
    transition: .5s;
}

.footer-bottom a:hover {
    color: #fff;
}

/* End of Footer */

/* About page */
.inner-banner-wrap {
    width: 100%;
    height: 615px;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    position: relative;
    z-index: 2;
}

.inner-banner-contents .row {
    height: 615px;
    padding-bottom: 60px;
}

.inner-banner-contents .col-md-12 {
    display: flex;
    align-items: end;
}

.inner-banner-left {
    position: relative;
    z-index: 1;
}

.inner-banner-left::before {
    content: '';
    position: absolute;
    width: 378px;
    height: 463px;
    background: url(../img/main-banner-leaf.png);
    left: 80px;
    bottom: -220px;
    z-index: -1;
}

.inner-banner-left h1 {
    color: #FFF;
    text-shadow: 0px 4px 14px rgba(0, 0, 0, 0.25);
    font-family: "Inria Serif";
    font-size: 65px;
    font-style: normal;
    font-weight: 700;
    line-height: 99px;
    /* 152.308% */
    letter-spacing: -1.95px;
}

.inner-banner-left p {
    color: #FFF;
    font-family: "Inria Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 32px;
    /* 160% */
    letter-spacing: -0.4px;
    max-width: 636px;
}

.inner-banner-right {
    position: relative;
}

.inner-banner-right .form-group {
    width: 295px;
    height: 88px;
    border-radius: 13px;
    background: #FFFBFB;
    box-shadow: 0px 4px 34px 0px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    padding: 15px 25px;
    position: relative;
    cursor: pointer;
    z-index: 10;
}

.inner-banner-right .form-group label {
    color: #363636;
    font-family: "Inria Serif";
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 27px;
    letter-spacing: -0.34px;
    cursor: pointer;
}

.select-drop-arrow {
    position: relative;
}

.inner-banner-right .select-drop-arrow::before {
    content: '';
    position: absolute;
    width: 9px;
    height: 9px;
    border-left: 2px solid #403B3B;
    border-bottom: 2px solid #403B3B;
    right: 0;
    top: 9px;
    transform: rotate(-45deg);
    z-index: 9;
}

.form-group.active .select-drop-arrow::before {
    top: 14px;
    transform: rotate(135deg);
}

.choose {
    color: #979797;
    font-family: "Inria Serif";
    font-size: 21px;
    font-style: normal;
    font-weight: 700;
    line-height: 31px;
    letter-spacing: -0.42px;
}

.options {
    max-height: 0;
    overflow: hidden;
    transition: 0.5s ease-out;
    width: 100%;
    position: absolute;
    background: #FFFBFB;
    box-shadow: 0px 4px 34px 0px rgba(0, 0, 0, 0.15);
    z-index: 9;
    padding: 15px 25px 15px;
    transform: translate(0, -52px);
}

.options.open {
    max-height: 200px;
    transform: translate(0, 0);
    border-radius: 13px;
}

.options a {
    display: block;
    margin-bottom: 5px;
    color: #363636;
    font-family: "Inria Serif";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: -0.42px;
}

.about-brief-wrap {
    padding: 70px 0 55px;
}

.about-brief {}

.about-brief h4 {
    color: #0E0E0E;
    font-family: "Inria Serif";
    font-size: 24px;
    font-style: italic;
    font-weight: 300;
    line-height: 49px;
    /* 204.167% */
    letter-spacing: -0.48px;
    margin-bottom: 22px;
}

.about-brief h2 {
    color: #0E0E0E;
    font-family: "Inria Serif";
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
    /* 131.579% */
    letter-spacing: -0.76px;
    margin-bottom: 32px;
}

.about-brief p {
    color: #0E0E0E;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 33px;
    /* 183.333% */
    letter-spacing: -0.36px;
    max-width: 450px;
}

.about-brief-pic {
    position: relative;
    text-align: right;
    z-index: 1;
}

.about-brief-pic::before {
    content: '';
    position: absolute;
    width: 519px;
    height: 505px;
    background: url(../img/about-brief-shape.png);
    right: -25%;
    top: -122px;
    z-index: -1;
}

.about-brief-pic img {
    border-radius: 13px
}

.vision-mission-wrap {
    padding: 60px 0 50px;
}

.vision-mission-wrap .row .col-md-12 {
    display: flex;
    align-items: center;
}

.vision-mission-contents {
    padding-right: 115px;
}

.vision-mission-contents h2 {
    color: #0E0E0E;
    font-family: "Inria Serif";
    font-size: 62px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px;
    /* 90.323% */
    letter-spacing: -1.24px;
    margin-bottom: 47px;
}

.vision-mission-contents h4 {
    color: #0E0E0E;
    font-family: Inter;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
    /* 171.429% */
    letter-spacing: -0.63px;
    margin-bottom: 40px;
}

.vision-mission-contents p {
    color: #0E0E0E;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    /* 177.778% */
    letter-spacing: -0.54px;
}

.did-u-know {
    width: 459px;
    height: 556px;
    background: url('../img/vision-misson-shape.png');
    background-repeat: no-repeat;
    padding: 130px 50px 100px 150px;
    position: relative;
}

.did-u-know h3 {
    color: #E4DFDF;
    font-family: "Inria Serif";
    font-size: 70px;
    font-style: normal;
    font-weight: 400;
    line-height: 56px;
    /* 80% */
    letter-spacing: -1.4px;
    transform: rotate(-90deg);
    width: max-content;
    position: absolute;
    left: -120px;
    top: 180px;
}

.did-u-know h6 {
    color: #FFF;
    font-family: "Inria Serif";
    font-size: 143px;
    font-style: normal;
    font-weight: 700;
    line-height: 153px;
    /* 39.161% */
    letter-spacing: -2.86px;
    margin-bottom: 8px;
}

.did-u-know h6 span {}

.did-u-know p {
    color: #FFF;
    font-family: Inter;
    font-size: 23px;
    font-style: normal;
    font-weight: 300;
    line-height: 37px;
    /* 160.87% */
    max-width: 240px;
}

.founder-wrap {
    padding: 70px 0 50px;
}

.founder-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.founder-contents {
    width: 808px !important;
    height: 757px;
    background: url('../img/founder-shape.png');
    background-repeat: no-repeat;
    padding: 120px 175px 80px 130px;
    position: relative;
    margin-right: -32%;
}

.founder-contents::before {
    content: '';
    position: absolute;
    width: 228px;
    height: 177px;
    background: url('../img/founder-icon.png');
    background-repeat: no-repeat;
    top: -25px;
    left: 52px;
}

.founder-contents h2 {
    color: #FFF;
    font-family: "Inria Serif";
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 50px;
    /* 125% */
    letter-spacing: -0.8px;
    margin-bottom: 10px;
}

.founder-contents p {
    color: #FFF;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
    /* 161.111% */
    letter-spacing: -0.18px;
    margin-top: 20px;
    max-width: 475px;
}

.founder-pic {
    position: relative;
	left: 78px;
}

.founder-pic img {}

.founder-det {
    position: absolute;
    right: 40px;
    bottom: 5px;
}

.founder-det h4 {
    color: #1B3127;
    font-family: "Inria Serif";
    font-size: 24px;
    font-style: italic;
    font-weight: 400;
    line-height: 34px;
    /* 216.667% */
    letter-spacing: -0.48px;
}

.founder-det span {
    color: #264638;
    font-family: "Inria Serif";
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    line-height: 26px;
    /* 325% */
    letter-spacing: -0.32px;
}

.why-choose-wrap {
    padding: 50px 0 130px;
}

.why-choose-wrap .col-lg-6 {
    display: flex;
    align-items: center;
}

.why-choose-wrap h4 {
    color: #0E0E0E;
    text-align: center;
    font-family: "Inria Serif";
    font-size: 24px;
    font-style: italic;
    font-weight: 300;
    line-height: 49px;
    /* 204.167% */
    letter-spacing: -0.48px;
}

.why-choose-wrap h2 {
    color: #0E0E0E;
    text-align: center;
    font-family: "Inria Serif";
    font-size: 52px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px;
    /* 107.692% */
    letter-spacing: -1.04px;
}

.destination-1 {
    position: relative;
}

.destination-1::before {
    content: '';
    position: absolute;
    width: 1280px;
    height: 1962px;
    background: url('../img/our-destination-line.png');
    background-repeat: no-repeat;
    top: 75px;
    left: -52px;
    z-index: -1;
}

.destination-1::after {
    content: '';
    position: absolute;
    width: 43px;
    height: 43px;
    background: url('../img/destination-circle.png');
    background-repeat: no-repeat;
    top: 130px;
    left: 22px;
}

.our-destination-pic {
    position: relative;
}

.destination-1 .our-destination-pic::before {
    content: '';
    position: absolute;
    width: 498px;
    height: 401px;
    background: url('../img/destination-shape-1.png');
    background-repeat: no-repeat;
    top: 82px;
    left: 80px;
    z-index: -1;
}

.our-destination-pic img {
    position: relative;
    z-index: 1;
}

.our-destination-contents {
    max-width: 430px;
    margin-left: 90px;
}

.our-destination-contents h3 {
    color: #0E0E0E;
    font-family: "Inria Serif";
    font-size: 34px;
    font-style: normal;
    font-weight: 400;
    line-height: 47px;
    /* 138.235% */
    letter-spacing: -0.68px;
    margin-bottom: 25px;
}

.our-destination-contents p {
    color: #0E0E0E;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    /* 177.778% */
    letter-spacing: -0.18px;
}

.destination-2 {
    flex-direction: row-reverse;
    position: relative;
}

.destination-2::before {
    content: '';
    position: absolute;
    width: 189px;
    height: 145px;
    background: url('../img/destination-leaf-1.png');
    background-repeat: no-repeat;
    top: -140px;
    left: 489px;
}

.destination-2 .our-destination-contents {
    margin-left: 80px;
}

.destination-2 .our-destination-pic {
    margin-left: -80px;
}

.destination-2 .our-destination-pic::before {
    content: '';
    position: absolute;
    width: 540px;
    height: 438px;
    background: url('../img/destination-shape-2.png');
    background-repeat: no-repeat;
    top: 5px;
    left: 25px;
    z-index: -1;
}

.destination-3 {
    position: relative;
}

.destination-3::before {
    content: '';
    position: absolute;
    width: 174px;
    height: 114px;
    background: url('../img/destination-leaf-2.png');
    background-repeat: no-repeat;
    top: -32px;
    left: 480px;
}

.destination-3::after {
    content: '';
    position: absolute;
    width: 43px;
    height: 43px;
    background: url('../img/destination-circle.png');
    background-repeat: no-repeat;
    bottom: -125px;
    right: 365px;
}

.destination-3 .our-destination-pic {
    margin-left: 50px;
}

.destination-3 .our-destination-pic::before {
    content: '';
    position: absolute;
    width: 427px;
    height: 397px;
    background: url('../img/destination-shape-3.png');
    background-repeat: no-repeat;
    top: 90px;
    left: 10px;
    z-index: -1;
}

.glimpse-wrap {
    padding: 20px 0 0;
}

.glimpse-wrap .col-md-12 {
    display: flex;
    align-items: center;
}

.glimpse-contents {}

.glimpse-contents h3 {
    color: #0E0E0E;
    font-family: "Inria Serif";
    font-size: 43px;
    font-style: normal;
    font-weight: 700;
    line-height: 59px;
    /* 137.209% */
    letter-spacing: -0.43px;
    margin-bottom: 26px;
}

.glimpse-contents p {
    color: #0E0E0E;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    /* 177.778% */
    letter-spacing: -0.18px;
}

.glimpse-contents a {
    width: fit-content;
    height: 57px;
    border-radius: 39px;
    border: 1px solid #2A2C2B;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #322A2A;
    font-family: "Inria Serif";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 52px;
    /* 288.889% */
    letter-spacing: -0.18px;
    padding: 0 25px;
    transition: .5s;
    margin-top: 25px;
}

.glimpse-contents a:hover {
    color: #fff;
    background: #322A2A;
}

.glimpse-wrap .home-co-live-slider::after {
    width: 582px;
    height: 528px;
    background: url('../img/we-offer-shape.png');
    top: -12px;
    left: -52%;
    z-index: -1;
}

.glimpse-wrap .home-co-live-slider .slick-next {
    right: -40px;
}

/* End of About page */

/* Co-work / Co-live page */
.inner-intro-wrap {
    padding: 80px 0 80px;
}

.inner-intro-contents {
    max-width: 972px;
    margin: auto;
    position: relative;
    z-index: 1;
}

.inner-intro-contents::before {
    content: '';
    position: absolute;
    width: 519px;
    height: 505px;
    background: url('../img/about-brief-shape.png');
    top: -410px;
    right: -218px;
    z-index: -1;
}

.inner-intro-contents h2 {
    color: #0E0E0E;
    text-align: center;
    font-family: "Inria Serif";
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: 54px;
    /* 142.105% */
    letter-spacing: -0.76px;
    margin-bottom: 38px;
}

.inner-intro-contents p {
    color: #0E0E0E;
    text-align: center;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 33px;
    /* 183.333% */
    letter-spacing: -0.36px;
}

.middle-banner {
    width: 100%;
    height: 580px;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
}

.co_work-co_live-wrap {
    padding: 100px 0;
    background: #FFF;
}

.co_work-co_live-wrap .row {
    margin-top: 100px;
}

.co_work-co_live-wrap .row:nth-child(1) {
    margin-top: 0;
}

.co_work-co_live-wrap .col-md-12 {
    display: flex;
    align-items: center;
}

.co_work-co_live-contents {
    width: 100%;
}

.co_work-co_live-contents h2 {
    color: #000;
    font-family: "Inria Serif";
    font-size: 47px;
    font-style: normal;
    font-weight: 700;
    line-height: 67px;
    /* 142.553% */
    letter-spacing: -0.47px;
    margin-bottom: 24px;
}

.co_work-co_live-contents p {
    color: #0E0E0E;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 175% */
    letter-spacing: -0.16px;
    max-width: 340px;
}

.co_work-co_live-points {
    display: flex;
    flex-wrap: wrap;
    margin-top: 42px;
}

.co_work-co_live-block {
    display: flex;
    align-items: center;
    justify-content: start;
    padding-right: 15px;
    flex-basis: 50%;
}

.co_work-co_live-block:nth-child(Even) {
    padding-right: 0;
}

.co_work-co_live-block img {}

.co_work-co_live-block h5 {
    display: block;
    color: #0E0E0E;
    font-family: "Inria Serif";
    font-size: 16px;
    font-style: italic;
    font-weight: 300;
    line-height: 20px;
    /* 306.25% */
    letter-spacing: -0.32px;
    margin-top: 5px;
    margin-left: 15px;
}

.co_work-co_live-block h5 span {
    display: block;
    color: #0E0E0E;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    /* 193.75% */
    letter-spacing: -0.32px;
}

.co_work-co_live-contents a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: 53px;
    border-radius: 39px;
    background: #236E4C;
    padding: 0 32px;
    color: #FFF;
    font-family: "Inria Serif";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 52px;
    letter-spacing: -0.2px;
    transition: .5s;
    margin-top: 35px;
}

.co_work-co_live-contents a:hover {
    background: transparent;
    border: 1px solid #236E4C;
    color: #236E4C;
}

.co_work-co_live-slider {
    width: 100%;
    padding-left: 32px;
}

.co_work-co_live-slide {
    position: relative;
    margin: 0 1px;
}

.co_work-co_live-slide img {
    border-radius: 25px;
}

.co_work-co_live-slide h6 {
    position: absolute;
    right: 120px;
    bottom: 48px;
    color: #FFF;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    /* 160% */
    letter-spacing: -0.2px;
}

.co_work-co_live-slider .slick-next:before {
    background: url('../img/co-work-arrow-right.png');
    width: 12px;
    height: 16px;
}

.co_work-co_live-slider .slick-prev:before {
    background: url('../img/co-work-arrow-left.png');
    width: 13px;
    height: 16px;
}

.co_work-co_live-slider .slick-next {
    right: 30px;
}

.co_work-co_live-slider .slick-prev {
    left: unset;
    right: 70px;
    z-index: 1;
}

.co_work-co_live-slider .slick-next,
.co_work-co_live-slider .slick-prev {
    top: 89%;
}

.co_work-co_live-wrap .row:nth-child(Even) {
    flex-direction: row-reverse;
}

.co_work-co_live-wrap .row:nth-child(Even) .co_work-co_live-slider {
    padding-left: 0;
}

.co_work-co_live-wrap .row:nth-child(Even) .co_work-co_live-contents {
    margin-left: -22px;
}

.co_work-co_live-wrap .row:nth-child(Even) .co_work-co_live-slide h6 {
    right: 180px;
}

.co_work-co_live-wrap .row:nth-child(Even) .co_work-co_live-slider .slick-prev {
    right: 125px;
}

.co_work-co_live-wrap .row:nth-child(Even) .co_work-co_live-slider .slick-next {
    right: 80px;
}

.check-availability-wrap {
    padding: 60px 0 0;
    margin-bottom: -28px;
}

.check-availability-block {
    max-width: 788px;
    max-width: 820px;
    margin: auto;
}

.check-availability-block div>h2 {
    color: #000;
    text-align: center;
    font-family: "Inria Serif";
    font-size: 37px;
    font-style: normal;
    font-weight: 700;
    line-height: 67px;
    /* 181.081% */
    letter-spacing: -0.37px;
    margin-bottom: 15px;
}

.check-availability-block div>p {
    color: #0E0E0E;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 175% */
    letter-spacing: -0.16px;
    max-width: 740px;
    margin: auto;
}

.check-availability-block .i-want-block-contents {
    margin-top: 40px;
    width: 100%;
}

.check-availability-block .i-want-single-block {
    padding: 30px 18px 25px;
}

.check-availability-block .i-want-blocks {
    width: 100%;
}

.faq-block {
    margin-top: 45px;
}

.faq-block h3 {
    color: #000;
    text-align: center;
    font-family: "Inria Serif";
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: 35px;
    /* 268% */
    letter-spacing: -0.25px;
    margin-bottom: 10px;
}

.faq-block h4 {
    color: #0E0E0E;
    text-align: center;
    font-family: Inter;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
    /* 215.385% */
    letter-spacing: -0.13px;
    max-width: 740px;
    margin: auto;
}

.faq-accordion {
    margin-top: 18px;
}

.accordion-item {
    background: transparent !important;
    border: none;
    border-bottom: 2px solid #D9D3D3;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-item h2 {
    margin-bottom: 0 !important;
}

.accordion-item h2 button {
    color: #0E0E0E !important;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    /* 140% */
    letter-spacing: -0.2px;
    box-shadow: unset !important;
    background: transparent !important;
    padding: 28px 20px 28px 0;
}

.accordion-body {
    /* padding: 0 0 28px; */
    padding: 0 70px 28px 0;
}

.accordion-body p {
    text-align: left !important;
    max-width: unset !important;
}

.accordion-button::after {
    width: 21px;
    height: 2px;
    background-image: none;
    background: #767676;
    top: 50%;
    transform: translate(-50%, 0);
    right: 25px;
    transition: .5s;
    position: absolute;
}

.accordion-button::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 21px;
    background-image: none;
    background: #767676;
    top: 51%;
    transform: translate(0, -50%);
    right: 45px;
    transition: .5s;
}

.accordion-button[aria-expanded="true"]::before {
    height: 0;
}

.accordion-button[aria-expanded="false"]::before {
    height: 21px;
}

.accordion-button:not(.collapsed)::after {
    background-image: none;
    transform: translate(-50%, 0);
}

/* End of Co-work / Co-live page */

/* What we offer page */
.offer-intro-wrap .inner-intro-contents::before {
    width: 462px;
    height: 460px;
    background: url('../img/whatweoffer-brief-shape.png');
    top: -135px;
    right: unset;
    left: -26%;
}

.what-we-offer-layout-1-wrap {}

.what-we-offer-layout-1-block {
    width: 100%;
    height: 586px;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    border-radius: 20px;
    padding: 50px;
    display: flex;
    align-items: end;
    justify-content: start;
}

.what-we-offer-layout-1-block-contents {
    width: 503px;
    height: auto;
    padding: 27px 43px 45px;
    border-radius: 21px;
    background: #FFF;
}

.what-we-offer-layout-1-block-contents h2 {
    color: #000;
    font-family: "Inria Serif";
    font-size: 37px;
    font-style: normal;
    font-weight: 700;
    line-height: 67px;
    /* 181.081% */
    letter-spacing: -0.37px;
}

.what-we-offer-layout-1-block-contents p {
    color: #0E0E0E;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 175% */
    letter-spacing: -0.16px;
}

.what-we-offer-layout-2-wrap {
    padding: 75px 0 60px;
}

.what-we-offer-layout-2-wrap .row {
    margin-top: 75px;
}

.what-we-offer-layout-2-wrap .row:first-child {
    margin-top: 0;
}

.what-we-offer-layout-2-wrap .row .col-md-12 {
    display: flex;
    align-items: center;
}

.what-we-offer-layout-2-contents {
    padding-left: 20px;
}

.what-we-offer-layout-2-contents h3 {
    color: #000;
    font-family: "Inria Serif";
    font-size: 37px;
    font-style: normal;
    font-weight: 700;
    /* line-height: 67px; */
    line-height: 50px;
    letter-spacing: -0.37px;
    margin-bottom: 15px;
}

.what-we-offer-layout-2-contents p {
    color: #0E0E0E;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 175% */
    letter-spacing: -0.16px;
    max-width: 340px;
}

.what-we-offer-layout-2-pic {
    width: 100%;
    text-align: right;
}

.what-we-offer-layout-2-pic img {
    border-radius: 35px;
}

.what-we-offer-layout-2-wrap .row:nth-child(Even) {
    flex-direction: row-reverse;
}

.what-we-offer-layout-2-wrap .row:nth-child(Even) .what-we-offer-layout-2-pic {
    text-align: left;
}

.what-we-offer-layout-2-wrap .row:nth-child(Even) .what-we-offer-layout-2-contents {
    padding-left: 0;
    margin-left: -30px;
}

.what-we-offer-layout-3-wrap {
    padding: 40px 0 10px;
}

.what-we-offer-layout-3-block {}

.what-we-offer-layout-3-block img {
    border-radius: 35px;
    margin-bottom: 25px;
    width: 100%;
}

.what-we-offer-layout-3-block h3 {
    color: #000;
    font-family: "Inria Serif";
    font-size: 37px;
    font-style: normal;
    font-weight: 700;
    line-height: 67px;
    letter-spacing: -0.37px;
    margin-bottom: 18px;
}

.what-we-offer-layout-3-block p {
    color: #0E0E0E;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.16px;
    max-width: 550px;
}

/* End of What we offer page */

/* Accomodation page */
.accomodation-intro-wrap .inner-intro-contents::before {
    width: 462px;
    height: 308px;
    background: url('../img/accomodation-brief-shape.png');
    top: -155px;
    right: unset;
    left: -29%;
}

.accomodations-wrap {
    padding-bottom: 70px;
}

.accomodation-block {
    margin-top: 55px;
}

.accomodations-wrap .col-lg-4:nth-child(1) .accomodation-block,
.accomodations-wrap .col-lg-4:nth-child(2) .accomodation-block,
.accomodations-wrap .col-lg-4:nth-child(3) .accomodation-block {
    margin-top: 0;
}

.accomodation-block>img {
    margin-bottom: 26px;
    border-radius: 15px;
    width: 100%;
}

.accomodation-contents {
    display: flex;
    justify-content: space-between;
}

.accomodation-contents h4 {
    display: block;
    color: #0E0E0E;
    font-family: "Inria Serif";
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 29px;
    letter-spacing: -0.52px;
}

.accomodation-contents h4 span {
    display: block;
    color: #1F1D1D;
    font-size: 18px;
    font-weight: 300;
    line-height: 29px;
    margin-top: 4px;
}

.person-counts {
    width: fit-content;
    height: 44px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-radius: 30px;
    background: #EAEAEA;
    transition: .5s;
}

.person-counts:hover {
    background: #1F1D1D;
}

.person-counts img {
    transition: .5s;
}

.person-counts:hover img {
    filter: invert(1);
}

.person-count {
    color: #1F1D1D;
    font-family: Inter;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
    transition: .5s;
}

.person-counts:hover .person-count {
    color: #FFF;
}

.accomodation-block a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 39px;
    border: 1px solid #2A2C2B;
    width: fit-content;
    height: 47px;
    padding: 0 30px;
    color: #322A2A;
    font-family: "Inria Serif";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 42px;
    /* 262.5% */
    letter-spacing: -0.16px;
    margin-top: 22px;
    transition: .5s;
}

.accomodation-block a:hover {
    background: #2A2C2B;
    color: #fff;
}

.accomodation-contents-wrap {
    background: #EEEBEB;
    padding: 85px 0 70px;
}

.accomodation-contents-wrap .row {
    margin-top: 85px;
}

.accomodation-contents-wrap .row:first-child {
    margin-top: 0;
}

.accomodation-contents-wrap .col-md-12 {
    display: flex;
    align-items: end;
}

.accomodation-content-details h2 {
    color: #000;
    font-family: "Inria Serif";
    font-size: 37px;
    font-style: normal;
    font-weight: 700;
    line-height: 67px;
    /* 181.081% */
    letter-spacing: -0.37px;
    margin-bottom: 13px;
}

.accomodation-content-details p {
    color: #0E0E0E;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 175% */
    letter-spacing: -0.16px;
    max-width: 423px;
}

.accomodation-content-detail-pic {
    width: 100%;
    text-align: right;
}

.accomodation-content-detail-pic img {
    border-radius: 15px;
}

.accomodation-contents-wrap .row:nth-child(Even) {
    flex-direction: row-reverse;
}

.accomodation-contents-wrap .row:nth-child(Even) .accomodation-content-details {}

.accomodation-contents-wrap .row:nth-child(Even) .accomodation-content-detail-pic {
    text-align: left;
}

.accomodation-location-wrap {
    padding: 60px 0 0;
}

.accomodation-location-wrap h2 {
    color: #000;
    font-family: "Inria Serif";
    font-size: 47px;
    font-style: normal;
    font-weight: 700;
    line-height: 67px;
    letter-spacing: -0.47px;
    margin-bottom: 35px;
    text-align: center;
}

.accomodation-location-block {
    width: 100%;
    height: 463px;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    position: relative;
    padding: 40px;
    border-radius: 40px;
}

.accomodation-location-marks {
    position: relative;
}

.location-point {
    position: absolute;
    width: 27px;
    height: 27px;
    display: block;
    cursor: pointer;
}

.location-point:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #859789;
    border-radius: 50%;
    transition: .5s;
}

.location-point.active:before {
    background: #65B777;
}

.location-point.active:after {
    content: '';
    position: absolute;
    width: 43px;
    height: 43px;
    background: transparent;
    border: 2px solid #65B777;
    border-radius: 50%;
    transition: .5s;
    top: -8px;
    left: -8px;
}

.accomodation-location-details {
    position: absolute;
    left: 30px;
    bottom: 30px;
}

.location-point-details {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 428px;
    height: auto;
    padding: 30px;
    border-radius: 21px;
    background: #FFF;
}

.location-point-details h3 {
    color: #000;
    font-family: "Inria Serif";
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 38px;
    /* 239.286% */
    letter-spacing: -0.28px;
    margin-bottom: 12px;
}

.location-point-details h5 {
    color: #0E0E0E;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    /* 185.714% */
    letter-spacing: -0.14px;
}

.accomodation-location-wrap p {
    color: #0E0E0E;
    text-align: center;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 31px;
    /* 172.222% */
    letter-spacing: -0.18px;
    max-width: 870px;
    margin: auto;
    margin-top: 40px;
}

.location-point-1 {
    top: 125px;
    left: 24%;
}

.location-point-2 {
    top: 40px;
    left: 43%;
}

.location-point-3 {
    top: 55px;
    left: 71%;
}

.location-point-4 {
    top: 130px;
    left: 88%;
}

.location-point-5 {
    top: 290px;
    left: 83%;
}

.location-point-6 {
    top: 370px;
    left: 46%;
}

/* End of Accomodation page */

/* Single Accomodation page */
.single-banner-wrap,
.single-banner-wrap .inner-banner-contents .row {
    height: 765px;
}

.back-arrow {
    position: relative;
    left: -50px;
    top: 70px;
    display: inline-block;
}

.single-banner-wrap .inner-banner-left p {
    max-width: 805px;
    font-family: Inter;
    font-size: 20px;
    font-weight: 400;
    line-height: 36px;
    letter-spacing: -0.2px;
}

.book-now-dates {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 38px;
}

.check-in-out-dates {
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
    width: 575px;
    height: 83px;
    border-radius: 9px;
    border: 1px solid #DFDFDF;
    background: #FFF;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.06);
    padding: 15px 0;
    display: none;
}

.check-date {
    flex-basis: 50%;
    padding-left: 25px;
    padding-right: 25px;
    display: block;
}

.check-date:first-child {
    border-right: 1px solid #CBCBCB;
}

.check-date label {
    color: #635C5C;
    text-align: center;
    font-family: "Inria Serif";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.3px;
    margin-bottom: 3px;
}

.check-date input {
    color: #0E0E0E;
    /* text-align: center; */
    font-family: "Inria Serif";
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.42px;
    border: none;
    width: 100%;
    cursor: pointer;
}

.check-date input:focus-visible {
    outline: none;
}

.book-now-dates a {
    width: max-content;
    height: 75px;
    background: #236E4C;
    padding: 0 68px;
    color: #FFF;
    font-family: "Inria Serif";
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 52px;
    /* 200% */
    letter-spacing: -0.26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    border-radius: 40px;
}

.book-now-dates a:hover {
    background: #FFF;
    color: #236E4C;
}

.accomodation-single-intro-wrap .inner-intro-contents::before {
    width: 469px;
    height: 583px;
    background: url('../img/accomodation-single-intro-shape.png');
    top: -155px;
    right: unset;
    left: -31%;
}

.accomodation-single-intro-wrap .inner-intro-contents p {
    max-width: 795px;
    margin: auto;
}

.places-wrap {
    padding-bottom: 100px;
}

.places-wrap h2 {
    color: #000;
    text-align: center;
    font-family: "Inria Serif";
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 58px;
    /* 193.333% */
    letter-spacing: -0.3px;
    margin-bottom: 30px;
}

.places-slider {
    padding-left: 8%;
}

.places-slider .slick-track {
    left: -25%;
}

.place-slide {}

.place-slide img {
    border-radius: 15px;
}

.place-slide h4 {
    color: #0E0E0E;
    font-family: "Inria Serif";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
    /* 145% */
    letter-spacing: -0.4px;
    margin-top: 10px;
}

.fancybox__container {
    z-index: 999999;
}

.places-slider .slick-prev {
    left: 145px;
    z-index: 1;
}

.places-slider .slick-next {
    right: 155px;
}

.places-slider .slick-next:before {
    background: url('../img/place-slider-arrow-right.png');
    width: 27px;
    height: 47px;
    opacity: 1;
}

.places-slider .slick-prev:before {
    background: url('../img/place-slider-arrow-left.png');
    width: 27px;
    height: 47px;
    opacity: 1;
}

.places-slider .slick-next,
.places-slider .slick-prev {
    top: 45%;
}

.amenities-wrap {
    background: #F4F4F4;
    padding: 105px 0 120px;
}

.amenities-title {
    position: relative;
}

.amenities-title h2 {
    position: absolute;
    color: #E2E2E2;
    font-family: "Inria Serif";
    font-size: 163px;
    font-style: normal;
    font-weight: 700;
    line-height: 169px;
    /* 103.681% */
    letter-spacing: -3.26px;
    transform: rotate(-90deg);
    left: -30%;
    top: 142px;
}

.amenities-contents-block {
    padding-left: 135px;
}

.amenities-contents-block h3 {
    color: #000;
    font-family: "Inria Serif";
    font-size: 43px;
    font-style: normal;
    font-weight: 700;
    line-height: 58px;
    /* 134.884% */
    letter-spacing: -0.43px;
    max-width: 807px;
}

.amenities-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 38px;
    margin-top: 65px;
}

.amenities-single-block {
    flex-basis: 30%;
}

.amenities-single-block img {
    margin-bottom: 20px;
}

.amenities-single-block h4 {
    color: #2B5944;
    font-family: "Inria Serif";
    font-size: 27px;
    font-style: normal;
    font-weight: 700;
    line-height: 37px;
    letter-spacing: -0.27px;
    margin-bottom: 15px;
}

.amenities-single-block p {
    color: #0E0E0E;
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 186.667% */
    letter-spacing: -0.15px;
}

.vacation-wrap {
    width: 100%;
    height: 679px;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    position: relative;
}

.vacation-wrap::before {
    content: '';
    position: absolute;
    width: 538px;
    height: 523px;
    background: url(../img/vacation-shape.png);
    right: -10%;
    bottom: -122px;
}

.vacation-contents {
    position: relative;
    height: 679px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 130px 0;
}

.vacation-contents h2 {
    color: #FFF;
    font-family: "Inria Serif";
    font-size: 57px;
    font-style: normal;
    font-weight: 700;
    line-height: 73px;
    /* 128.07% */
    letter-spacing: -1.14px;
    max-width: 580px;
}

.place-booking-wrap {
    padding: 70px 0 70px;
}

.place-booking-contents {}

.place-booking-contents h2 {
    color: #000;
    text-align: center;
    font-family: "Inria Serif";
    font-size: 37px;
    font-style: normal;
    font-weight: 700;
    line-height: 67px;
    /* 181.081% */
    letter-spacing: -0.37px;
    margin-bottom: 12px;
}

.place-booking-contents p {
    color: #0E0E0E;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 175% */
    letter-spacing: -0.16px;
    max-width: 708px;
    margin: auto;
}

.place-booking-contents .book-now-dates {
    justify-content: center;
    margin-top: 48px;
}

.place-booking-contents .book-now-dates a {
    border: 1px solid #236E4C;
}

.other-rooms-wrap {
    background: #FFF;
    padding: 62px 0 15px;
}

.other-rooms-wrap h2 {
    color: #000;
    text-align: center;
    font-family: "Inria Serif";
    font-size: 37px;
    font-style: normal;
    font-weight: 700;
    line-height: 67px;
    /* 181.081% */
    letter-spacing: -0.37px;
    margin-bottom: 50px;
}

.other-rooms-wrap .accomodation-block {
    margin-top: 0;
    padding-right: 28px;
}

.accom-single-shape {
    margin-bottom: -85px;
}

.accom-single-shape img {
    width: 100%;
}

.accom-single-shape~.footer-shape {
    display: none;
}

.accom-single-shape~.footer-shape~footer {
    padding-top: 125px;
}

.other-rooms-wrap .other-rooms-slider .slick-next,
.other-rooms-wrap .other-rooms-slider .slick-prev {
    top: 36%;
}

.other-rooms-slider {
    padding-left: 70px;
}

.other-rooms-slider .slick-track {
    left: -21%;
}

.other-rooms-slider .slick-prev:before {
    background: url('../img/place-slider-arrow-left.png');
    width: 27px;
    height: 47px;
    opacity: 1;
}

.other-rooms-slider .slick-next:before {
    background: url('../img/place-slider-arrow-right.png');
    width: 27px;
    height: 47px;
    opacity: 1;
}

.other-rooms-slider .slick-prev {
    left: 112px;
    z-index: 1;
}

.other-rooms-slider .slick-next {
    right: 180px;
    z-index: 1;
}

/* End of Single Accomodation page */

/* Special offers page */
.special-intro-wrap {
    padding: 65px 0 65px;
}

.special-intro-wrap .inner-intro-contents::before {
    width: 746px;
    height: 344px;
    background: url('../img/special-offers-brief-shape.png');
    top: -105px;
    right: -47%;
}

.special-intro-wrap .inner-intro-contents p {
    max-width: 795px;
    margin: auto;
}

.special-offers-wrap {
    position: relative;
    z-index: 1;
}

.special-offers-block {
    margin-top: 65px;
}

.special-offers-wrap .col-lg-6:nth-child(1) .special-offers-block,
.special-offers-wrap .col-lg-6:nth-child(2) .special-offers-block {
    margin-top: 0;
}

.special-offer-pic-block {
    position: relative;
    margin-bottom: 25px;
}

.special-offer-pic-block img {
    width: 100%;
    border-radius: 15px;
}

.special-offer-pic-block h5 {
    width: fit-content;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-radius: 30px;
    background: #4D4C4B;
    color: #FFF;
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 29px;
    /* 193.333% */
    text-transform: uppercase;
    position: absolute;
    top: 25px;
    right: 30px;
}

.special-offers-block h2 {
    color: #0E0E0E;
    font-family: "Inria Serif";
    font-size: 27px;
    font-style: normal;
    font-weight: 700;
    line-height: 29px;
    /* 107.407% */
    letter-spacing: -0.54px;
    margin-bottom: 15px;
}

.special-offers-block p {
    color: #0E0E0E;
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    /* 180% */
    letter-spacing: -0.15px;
    max-width: 497px;
}

.special-offers-block h3 {
    color: #236E4C;
    font-family: "Inria Serif";
    font-size: 21px;
    font-style: italic;
    font-weight: 400;
    line-height: 29px;
    /* 138.095% */
    letter-spacing: -0.42px;
    margin-top: 20px;
}

.special-offers-block button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: 47px;
    margin-top: 23px;
    border-radius: 39px;
    border: 1px solid #2A2C2B;
    color: #322A2A;
    font-family: "Inria Serif";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 42px;
    /* 262.5% */
    letter-spacing: -0.16px;
    transition: .5s;
    padding: 0 30px;
}

.special-offers-block button:hover {
    color: #FFF;
    background: #322A2A;
}

.modal {
    z-index: 999999;
}

.modal-dialog {
    max-width: 1190px;
    margin: auto;
    height: 100%;
    /* display: flex;
    align-items: center;
    justify-content: center; */
}

.modal-content>button {
    position: absolute;
    right: 30px;
    top: 35px;
    z-index: 9;
}

.modal-content {
    border-radius: 21px;
    overflow: hidden;
    border: none !important;
}

.modal-body {
    background: #FFF;
    padding: 35px;
}

.modal-body .row {
    /* width: 100%; */
}

.modal-body .row .col-md-12 {
    display: flex;
    align-items: center;
}

.model-left {
    width: 100%;
}

.model-pic-slider {
    max-height: 522px;
    overflow: hidden;
}

.model-pic-slider .slick-track {
    max-height: 522px;
    min-width: 452px;
}

.model-pic {
    min-height: 522px;
    min-width: 452px;
}

.model-pic img {
    width: 100%;
    border-radius: 24px;
}

.offer-promo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* width: 100%; */
    height: auto;
    padding: 70px 26px 30px;
    border-radius: 24px;
    border: 1px solid #C9BFBF;
    margin-top: -45px;
}

.offer-promo h4 {
    color: #343232;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.22px;
}

.offer-promo h4 span {
    display: block;
    color: #1F1D1D;
    font-family: "Inria Serif";
    font-size: 16px;
    font-weight: 300;
    line-height: 29px;
}

.offer-promo a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 45px;
    width: fit-content;
    height: 54px;
    background: #236E4C;
    border: 1px solid #236E4C;
    color: #FFF;
    font-family: "Inria Serif";
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 52px;
    letter-spacing: -0.22px;
    transition: .5s;
    border-radius: 35px;
}

.offer-promo a:hover {
    background: #FFF;
    color: #236E4C;
}

.model-pic-slider .slick-next:before {
    background: url('../img/model-slider-arrow-right.png');
    width: 35px;
    height: 35px;
}

.model-pic-slider .slick-prev:before {
    background: url('../img/model-slider-arrow-left.png');
    width: 35px;
    height: 35px;
}

.model-pic-slider .slick-prev {
    left: unset;
    right: 100px;
    z-index: 1;
}

.model-pic-slider .slick-next {
    right: 30px;
}

.model-pic-slider .slick-next,
.model-pic-slider .slick-prev {
    top: 90%;
    width: 35px;
    height: 35px;
}

.special-offer-model-contents {
    position: relative;
    padding-left: 25px;
    width: 100%;
}

.special-offer-model-contents:before {
    content: '';
    position: absolute;
    background: url('../img/special-offer-model-shape.png');
    width: 477px;
    height: 637px;
    top: -57px;
    right: -36px;
}

.special-offer-model-contents h2 {
    color: #0E0E0E;
    font-family: "Inria Serif";
    font-size: 33px;
    font-style: normal;
    font-weight: 700;
    line-height: 29px;
    /* 87.879% */
    letter-spacing: -0.66px;
    margin-bottom: 22px;
}

.special-offer-model-contents p {
    color: #0E0E0E;
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    /* 180% */
    letter-spacing: -0.15px;
    max-width: 480px;
}

.special-offer-model-contents h3 {
    color: #1D6745;
    font-family: "Inria Serif";
    font-size: 24px;
    font-style: italic;
    font-weight: 400;
    line-height: 29px;
    /* 120.833% */
    letter-spacing: -0.48px;
    margin-top: 25px;
}

.special-offer-model-contents h6 {
    color: #0E0E0E;
    font-family: "Inria Serif";
    font-size: 19px;
    font-style: normal;
    font-weight: 700;
    line-height: 29px;
    /* 152.632% */
    letter-spacing: -0.38px;
    margin-top: 30px;
}

.special-offer-model-contents ul {
    padding-left: 20px;
    margin-top: 12px;
}

.special-offer-model-contents ul li {
    color: #0E0E0E;
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 186.667% */
    letter-spacing: -0.15px;
}

/* End of Special offers page */

/* Gallery page */
.gallery-intro-wrap .inner-intro-contents::before {
    width: 821px;
    height: 678px;
    background: url('../img/gallery-brief-shape.png');
    top: -120px;
    right: -32%;
}

main.cd-main-content {
    position: relative;
    z-index: 1;
}

.cd-tab-filter-wrapper {
    /* margin-top: 35px; */
}

.cd-tab-filter {}

.cd-filters {
    display: flex;
    justify-content: space-between;
    margin-bottom: 35px;
    padding-left: 0;
}

.cd-filters li {
    list-style: none;
    position: relative;
}

.cd-filters li a {
    color: #8B8282;
    text-align: center;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 33px;
    /* 183.333% */
    letter-spacing: -0.36px;
    transition: .5s;
    position: relative;
    display: inline-block;
    padding: 0 5px;
}

.cd-filters li a:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #000;
    bottom: -5px;
    left: 50%;
    transform: translate(-50%, 0);
    opacity: 0;
    transition: .5s;
}

.cd-filters li a:hover {
    color: #000;
}

.cd-filters li a.selected {
    color: #000;
}

.cd-filters li a.selected:before {
    opacity: 1;
}

.cd-gallery {
    padding-top: 10px;
}

.cd-gallery ul {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 0;
    padding-left: 0;
}

.cd-gallery ul li {
    flex-basis: 23.4%;
}

.cd-gallery ul li img {
    width: 100%;
    position: relative;
    border-radius: 15px;
    /* filter: grayscale(1); */
    transition: .5s;
}

.cd-gallery ul li img:hover {
    filter: grayscale(0);
}

/* End of Gallery page */

/* Contact page */
.contact-details-wrap {
    padding: 70px 0 30px;
}

.contact-details {
    max-width: 477px;
    padding-top: 18px;
}

.contact-details h2 {
    color: #0E0E0E;
    font-family: "Inria Serif";
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px;
    /* 133.333% */
    letter-spacing: -0.84px;
    margin-bottom: 25px;
}

.contact-details>p {
    color: #0E0E0E;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
    /* 181.25% */
    letter-spacing: -0.32px;
}

.contact-methods {
    display: flex;
    flex-wrap: wrap;
}

.contact-method-single {
    flex-basis: 50%;
    margin-top: 40px;
}

.contact-method-single:nth-child(Even) {
/*     padding-left: 40px; */
}

.contact-method-single h5 {
    color: #000;
    font-family: Inter;
    font-size: 19px;
    font-style: normal;
    font-weight: 500;
    line-height: 33px;
    /* 173.684% */
    letter-spacing: -0.38px;
    margin-bottom: 4px;
}

.contact-method-single div {
    display: flex;
    align-items: center;
}

.contact-method-single div img {
    margin-left: 12px;
}

.contact-method-single a {
    color: #0E0E0E;
    font-family: Inter;
    font-size: 21px;
    font-style: normal;
    font-weight: 300;
    line-height: 27px;
    /* 128.571% */
    letter-spacing: -0.21px;
    transition: .5s;
}

.contact-method-single a:hover {
    text-decoration: underline;
}

.contact-method-single p {
    color: #0E0E0E;
    font-family: Inter;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    /* 176.471% */
    letter-spacing: -0.17px;
}

.contact-direction {
    width: fit-content;
    height: 51px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 39px;
    border: 1px solid #2A2C2B;
    padding: 0 55px;
    color: #322A2A;
    font-family: "Inria Serif";
    font-size: 19px;
    font-style: normal;
    font-weight: 700;
    line-height: 42px;
    /* 221.053% */
    letter-spacing: -0.19px;
    margin-top: 45px;
    transition: .5s;
}

.contact-direction:hover {
    color: #FFF;
    background: #322A2A;
}

.contact-location {
    width: 100%;
    height: 672px;
    position: relative;
    z-index: 1;
}

.contact-location::before {
    content: '';
    position: absolute;
    width: 635px;
    height: 724px;
    background: url('../img/contact-detail-shape.png');
    bottom: -54px;
    left: -170px;
    z-index: -1;
    opacity: .4;
}

.contact-location iframe {
    width: 100%;
    height: 100%;
    border-radius: 50px;
}

.contact-middle-shape {}

.contact-middle-shape img {
    width: 100%;
}

.contact-form-wrap {
    padding: 0 0 0;
    background: #FFF;
}

.contact-form-pic {}

.contact-form-pic img {
    border-radius: 25px;
}

.contact-form-contents {
    margin-left: -20px;
}

.contact-form-contents h2 {
    color: #0E0E0E;
    font-family: "Inria Serif";
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: 57px;
    /* 135.714% */
    letter-spacing: -0.84px;
    margin-bottom: 36px;
}

.contact-form-contents p {
    color: #0E0E0E;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    /* 150% */
    letter-spacing: -0.18px;
}

.contact-form {
    margin-top: 8px;
}

.form-field {
    position: relative;
    min-height: 61px;
    border-radius: 9px;
    border: 1px solid #A5A4A4;
    background: #FFF;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.06);
    margin-top: 23px;
}

.form-field input {}

.form-field label {
    color: #242424;
    font-family: "Inria Serif";
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 141.176% */
    letter-spacing: -0.34px;
    top: 18px;
    position: absolute;
    display: block;
    transition: all 0.2s;
    padding-left: 20px;
    z-index: 10;
}

.form-field.active label {
    top: 5px;
    font-size: 12px;
    z-index: 20;
}

.form-field input,
.form-field select,
.form-field textarea {
    position: relative;
    display: block;
    width: 100%;
    border: none;
    background: transparent;
    -webkit-appearance: none;
    outline: none;
    z-index: 15;
    color: #242424;
    font-family: "Inria Serif";
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.34px;
    padding-left: 20px;
    padding-top: 23px;
    height: 61px;
    border-radius: 9px;
}

.form-field select {
    cursor: pointer;
}

.select-drop-arrow {
    position: relative;
}

.select-drop-arrow::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-left: 1px solid #000;
    border-bottom: 1px solid #000;
    right: 25px;
    top: 22px;
    transform: rotate(-45deg);
}

.form-field.active .select-drop-arrow::before {
    z-index: 21;
}

.form-field textarea {
    height: 130px;
}

.contact-inquiry-btn {
    margin-top: 31px;
    width: 100%;
    text-align: left;
}

.contact-inquiry-btn input {
    width: 242px;
    height: 60px;
    border: none;
    border-radius: 40px;
    background: #236E4C;
    text-align: center;
    color: #FFF;
    font-family: "Inria Serif";
    font-size: 21px;
    font-style: normal;
    font-weight: 700;
    line-height: 52px;
    /* 247.619% */
    letter-spacing: -0.21px;
    padding-top: 0;
    padding-left: 0;
    transition: 0.5s;
}

.contact-inquiry-btn input:hover {
    background: #fff;
    color: #236E4C;
    border: 1px solid #236E4C;
}

.radio-inputs {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.radio-inputs .radio {}

.radio-inputs .radio input {
    display: none;
}

.radio-inputs .radio .name {
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all .15s ease-in-out;
    width: auto;
    height: 51px;
    padding: 0 24px;
    border-radius: 9px;
    border: 1px solid #A5A4A4;
    background: #FFF;
    color: #242424;
    font-family: "Inria Serif";
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 141.176% */
    letter-spacing: -0.34px;
}

.radio-inputs .radio input:checked+.name {
    background: #434343;
    color: #FFF;
}

.form-field-radio {
    margin-top: 23px;
}

.form-field-radio label {
    color: #272727;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: -0.16px;
    margin-bottom: 7px;
}

/* End of Contact page */

.mob-gallery-categories-drop {
    display: none;
}

.your-stay-wrap .row .col-lg-4:nth-child(2) {
    display: none;
}

a.mob-head-logo {
    display: none;
}

.accomodation-location-tab-mob-block {
    display: none;
}

.amenities-blocks-slider {
    display: none;
}

.whatsapp-chat {
	position: fixed;
	bottom: 140px;
	right: 25px;
	display: block;
	z-index: 1;
}

.whatsapp-chat img {
	width: 48px;
	height: 48px;
}

.find-space-btn {
    display: none;
}

.wpcf7-not-valid-tip {
    position: absolute;
    font-size: 13px;
}

.wpcf7-radio .wpcf7-list-item {
    margin: 0 0 0 0;
    cursor: pointer;
}

.wpcf7-radio .wpcf7-list-item input {
    opacity: 0;
}

.wpcf7-radio {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.wpcf7-radio .wpcf7-list-item span {
    color: #272727;
    font-family: "Inria Serif";
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: -0.34px;
    transition: .5s;
}

.wpcf7-radio .wpcf7-list-item label {
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all .15s ease-in-out;
    width: auto;
    height: 51px;
    padding: 0 15px 0 24px;
    border-radius: 9px;
    border: 1px solid #A5A4A4;
    background: #FFF;
    position: relative;
}

.wpcf7-radio .wpcf7-list-item label.active-radio {
    background: #434343;
}

.wpcf7-radio .wpcf7-list-item label.active-radio span {
    color: #FFF;
}

/* Contact form country */
.country-select.inside .flag-dropdown {
    width: 100%;
}

.country-select.inside .selected-flag {
    width: 100%;
}

.country-select .selected-flag .arrow {
    border-right: none;
    border-top: none;
    border-left: 0.800000011920929px solid #707070;
    border-bottom: 0.800000011920929px solid #707070;
    right: 22px;
    top: 26px;
    transform: rotate(-45deg);
    width: 12px;
    height: 12px;
}

.country-select .selected-flag .arrow.up {
    border-bottom: 0.800000011920929px solid #707070;
}

.country-select .flag {
    display: none;
}

.country-select.inside input,
.country-select.inside input[type=text] {
    padding-left: 18px;
}

.form-field.country-field label {
    top: 9px;
    color: #929498;
    font-size: 12px;
    z-index: 20;
}

.country-select.inside .flag-dropdown:hover .selected-flag {
    background-color: transparent;
}

.country-select ul.country-list {
    width: 100%;
    overflow-x: hidden;
}

.country-select ul.country-list::-webkit-scrollbar {
    width: 10px;
}

.country-select ul.country-list::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #ffffff;
}

.country-select ul.country-list::-webkit-scrollbar-thumb {
    background-color: #24342d;
}

.tour-booking-form .country-select .selected-flag .arrow {
    top: 22px;
}

.iti__flag-container {
    width: 100%;
}

.iti__arrow {
    border-right: none;
    border-top: none;
    border-left: 0.800000011920929px solid #000;
    border-bottom: 0.800000011920929px solid #000;
    position: absolute;
    right: 18px;
    top: 26px;
    transform: rotate(-45deg);
    width: 12px;
    height: 12px;
}

.iti__flag {
    display: none;
}

.iti__selected-flag {
    justify-content: end;
}

.iti--allow-dropdown input,
.iti--allow-dropdown input[type=tel],
.iti--allow-dropdown input[type=text],
.iti--separate-dial-code input,
.iti--separate-dial-code input[type=tel],
.iti--separate-dial-code input[type=text] {
    padding-left: 15px;
    padding-top: 10px;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
    background-color: transparent;
}

.iti__flag-box .iti__flag {
    display: block;
}

.country-field {
    position: relative;
    z-index: 1;
}

.code-num {
    position: relative;
    z-index: 1;
}

span.iti__country-name {
    display: none;
}

.iti__country-list {
    width: 100%;
    overflow-x: hidden;
}

.iti__country-list::-webkit-scrollbar {
    width: 5px;
}

.iti__country-list::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #ffffff;
}

.iti__country-list::-webkit-scrollbar-thumb {
    background-color: #24342d;
}

span[data-name="start-date"]~label {
    top: 6px !important;
    font-size: 12px !important;
}

.i-want-block-contents>h3 {
    color: #FFF;
    text-align: center;
    font-family: "Inria Serif";
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    line-height: 64px;
    /* 188.235% */
    letter-spacing: -0.68px;
    transition: .5s;
}

.i-want-block-contents.i-want-block-active>h3 {
    color: #000;
}

.accomodation-location-block:before {
    content: '';
    position: absolute;
    width: 82px;
    height: 81px;
    background: url('../img/location-surround-logo.png');
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/* 404 page */
.error-page .inner-banner-wrap {
    height: 500px;
}

.error-page .inner-banner-left {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
}

.error-page h1 {
    font: normal normal bold 120px/58px Open Sans;
}

.error-page h4 {
    text-align: center;
    margin: 80px 0;
    color: #30463c;
    font-family: Inter;
    font-size: 50px;
    font-weight: bold;
    line-height: 60px;
}

/* End of 404 page */

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #ff0000;
    text-align: center;
    /*margin: 25px 0 0;*/
    margin: 0 0 0;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
    border-color: #ff0000;
    text-align: center;
    margin: 25px 0 0;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
    text-align: center;
    margin: 15px 0 0;
}
.grecaptcha-badge{
    display: none !important;
}

.hm-banner-wrap iframe {
    width: 100%;
    height: 100%;
}
video::-webkit-media-controls {
    display: none !important;
}
video::-webkit-media-controls-enclosure {
    display: none !important;
}

.call-button {
	display: block;
	position: fixed;
	bottom: 80px;
	right: 25px;
	background: #30463c;
	z-index: 9999;
	color: #fff;
	border: none;
	border-radius: 50%;
	padding: 5px;
	cursor: pointer;
	font-size: 20px;
	height: 45px;
	width: 45px;
}