:root {
    --font: "Marcellus", sans-serif;
    --font2: "Jost", sans-serif;
    --liner: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    --pri: #ab8965;
    --sec: #fff5ed;
    --text-color: #181818;
    --text-light: #888;
    --para-color: #606060;
}

body {
    background: #fff;
    font-family: var(--font2);
    color: var(--para-color);
    font-size: 15px;
    margin: 0;
    padding: 0;
    /* overflow-x: hidden; */
    font-weight: 400;
    line-height: normal;
    min-height: 100vh;
    letter-spacing: 0.2px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font);
}

img {
    max-width: 100%;
    width: auto;
    height: auto;
}

p {
    color: var(--para-color);
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 15px;
    font-family: var(--font2);
}

a {
    display: block;
    text-decoration: none;
}

p a {
    display: inline;
}

.main-btn {
    padding: 8px 15px;
    color: white;
    border: 1px solid var(--pri);
    display: inline-flex;
    gap: 5px;
    align-items: center;
    font-size: 15px;
    font-weight: 400;
    font-family: var(--font2);
    text-transform: capitalize;
    white-space: nowrap;
    background: var(--pri);
    outline: none;
    letter-spacing: 1px;
    transition: 0.2s ease-in-out;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    justify-content: center;
}

.main-btn:hover {
    background: var(--text-color);
    color: white;
    border-color: var(--text-color);
}

.main-btn.light {
    background: transparent;
    color: var(--pri);
    font-weight: 500;
}

.main-btn.light:hover {
    background: var(--pri);
    color: white;
    border-color: var(--pri);
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(24, 24, 24, 0.9) 83%);
}

header.stricky-fixed {
    position: fixed;
    z-index: 999;
    background: var(--text-color);
    box-shadow: 0 1px 5px rgba(0, 0, 0, .1);
    animation-name: fadeInDown;
    animation-duration: 0.5s;
    animation-fill-mode: both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}


.topbar {
    border-bottom: solid 1px rgba(255, 255, 255, .25);
    padding: 10px 0;
}

.con-bx {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--sec);
}

.con-bx p,
.con-bx a {
    color: var(--sec);
    margin-bottom: 0;
}

.con-bx a:hover {
    color: var(--pri);
}

.social {
    display: flex;
    justify-content: end;
    list-style: none;
    gap: 18px;
    margin-bottom: 0;
}

.social li a {
    color: #ccc0b5;
}

.social li a:hover {
    color: var(--sec);
}

.navigation .nav-header {
    display: none;
    padding: 12px 20px
}

.navigation .navbar button {
    width: 40px;
    height: 40px;
    background: var(--liner);
    background-color: var(--pri);
    border: 0;
    outline: 0;
    color: #fff;
    font-size: 25px;
    border-radius: 0;
    display: inline-block;
    text-align: center;
    line-height: 40px;
    position: relative;
    z-index: 99;
    padding: 5px;
    position: relative;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
}

.navigation .navbar button span {
    display: block;
    position: absolute;
    height: 3px;
    width: 70%;
    background: #fff;
    border-radius: 9px;
    opacity: 1;
    left: 15%;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.navigation .navbar button span:nth-child(1) {
    top: 8px;
}

.navigation .navbar button span:nth-child(2),
.navigation .navbar button span:nth-child(3) {
    top: 18px;
}

.navigation .navbar button span:nth-child(4) {
    top: 28px;
}

.navigation .navbar button.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}

.navigation .navbar button.open span:nth-child(2) {
    transform: rotate(45deg);
}

.navigation .navbar button.open span:nth-child(3) {
    transform: rotate(-45deg);
}

.navigation .navbar button.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}

.navigation .menu {
    display: block
}

.navigation .menu ul {
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
    display: block;
}

.navigation .menu ul li {
    display: inline-block;
    position: relative;
}

.navigation .menu ul li a {
    padding: 22px 11px;
    display: block;
    color: #fff;
    transition: all 0.3s ease;
    font-size: 16px;
    background: transparent;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.navigation .menu ul li.active a,
.navigation .menu ul li:hover a {
    color: var(--pri);
    background: transparent;
}

.navigation .menu ul li ul.cs-dropdown {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.navigation .menu ul li ul.cs-dropdown li:last-child {
    border: 0
}

.navigation .menu ul li ul.cs-dropdown li ul.cs-dropdown {
    left: 100%;
    margin-top: -36px
}

.navigation .menu ul li ul.cs-dropdown li ul.cs-dropdown li ul.cs-dropdown {
    left: -100%;
    margin-top: -31px
}

.navigation .menu ul li ul.cs-dropdown {
    position: absolute;
    width: 285px;
    display: none;
    z-index: 99999;
    box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.4);
    background: #fff;
    margin: 0;
    padding: 0;
    transition: all .3s ease
}

.navigation .menu ul li:hover ul.cs-dropdown {
    display: block
}

.navigation .menu ul li:hover ul.cs-dropdown li ul.cs-dropdown {
    display: none;
    transition: all .3s ease;
    width: 250px;
}

.navigation .menu ul li ul.cs-dropdown li:hover ul.cs-dropdown {
    display: block
}

.navigation .menu ul li ul.cs-dropdown li {
    display: block;
    padding: 0;
    border-bottom: 1px solid #eee;
    width: 100%
}

.navigation .menu ul li ul.cs-dropdown li:last-child a:after {
    display: none
}

.navigation .menu ul li ul.cs-dropdown li a:hover {
    background: var(--pri);
    color: #fff;
}

.navigation .menu ul li ul.cs-dropdown li:hover a {
    background: var(--pri);
    color: #fff;
}

.navigation .menu ul li ul.cs-dropdown li:hover ul.cs-dropdown li a {
    background: #fff;
    color: #333
}

.navigation .menu ul li ul.cs-dropdown li:hover ul.cs-dropdown li a:hover {
    color: #fff;
    background: var(--pri)
}

.navigation .menu ul li ul.cs-dropdown li a {
    color: var(--text-color);
    font-size: 15px;
    padding: 5px 16px;
    position: relative;
    display: block;
    text-transform: capitalize;
    font-weight: 400;
    /* background: #f8f8f8; */
    transition: all 0.3s ease;
    border-bottom: 1px solid #eee;
}

.navigation ul li.cs-submenu a button {
    border: 0;
    background: transparent;
    outline: 0;
    padding: 0;
    margin: 0 0 0 3px;
    color: #fff;
}

.navigation ul li.cs-submenu a button svg {
    width: 16px;
    height: 16px;
}

.navigation ul li.cs-submenu:hover svg {
    transform: rotateZ(180deg);
    color: var(--pri);
}

.navigation ul li.cs-submenu:hover ul.cs-dropdown li.cs-submenu svg {
    color: #242424
}

.navigation ul li.cs-submenu ul.cs-dropdown li a button {
    float: right;
    color: #333;
}

.navigation ul li.cs-submenu ul.cs-dropdown li a button svg {
    transform: rotateZ(-90deg);
}

.navigation ul li.cs-submenu ul.cs-dropdown li.cs-submenu:hover svg {
    color: #fff;
}

.navigation .navbar {
    display: none;
    padding: 12px 0;
    margin: 0
}

.navigation .menu ul>li:hover>ul.cs-dropdown {
    visibility: visible;
    opacity: 1;
}

.navigation .menu ul>li>ul.cs-dropdown>li>ul.cs-dropdown {
    left: 100%;
    margin-top: -36px;
}

.navigation .menu ul>li>ul.cs-dropdown>li>ul.cs-dropdown>li>ul.cs-dropdown {
    left: -100%;
    margin-top: -31px;
}


.navigation .menu ul>li>ul.cs-dropdown>li:hover>ul.cs-dropdown {
    visibility: visible;
    opacity: 1;
}

.navigation .menu ul>li ul.cs-dropdown {
    position: absolute;
    width: max-content;
    opacity: 0;
    min-width: 210px;
    visibility: hidden;
    z-index: 99;
    transition: all .3s ease;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.2);
    background: #f8f8f8;
    margin: 0;
    padding: 0;
    text-align: left;
}

.navigation .menu ul>li ul.cs-dropdown li {
    display: block;
    padding: 0;
    border-bottom: 0;
    width: 100%;
}

main img {
    height: 100vh;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

main .swiper-button-next:after,
main .swiper-button-prev:after {
    color: var(--pri);
    font-size: 22px;
    font-weight: bold;
}

main .swiper-pagination-fraction {
    color: white;
    font-size: 20px;
    text-align: right;
    padding-inline-end: 30px;
    padding-bottom: 20px;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: 20px;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: 20px;
}

main .swiper-slide .tx-bx {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);
    width: 100%;
    max-width: 850px;
    text-align: center;
    z-index: 2;
    padding-block: 130px 60px;
}

main .swiper-slide::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.4);
}

main .swiper-slide .tx-bx .tt {
    font-family: var(--font);
    color: white;
    font-size: 50px;
    margin-bottom: 15px;
    text-shadow: 0 2px 3px rgba(65, 48, 62, .3);
    -webkit-transition: all 1000ms ease;
    transition: all 1000ms ease;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
    opacity: 0;
    visibility: hidden;
}


main .swiper-slide.swiper-slide-active .tx-bx .tt {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 400ms;
    transition-delay: 400ms;
}

main .swiper-slide .tx-bx p {
    color: white;
    font-size: 17px;
    letter-spacing: 0.5px;
    max-width: 600px;
    margin-inline: auto;
    margin-bottom: 20px;
    text-shadow: 0 2px 3px rgba(65, 48, 62, .3);
    -webkit-transition: all 800ms ease;
    transition: all 800ms ease;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
    opacity: 0;
    visibility: hidden;
}

main .swiper-slide.swiper-slide-active .tx-bx p {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 400ms;
    transition-delay: 400ms;
}

main .swiper-slide .tx-bx .main-btn {
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
    opacity: 0;
    visibility: hidden;
}

main .swiper-slide.swiper-slide-active .tx-bx .main-btn {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 400ms;
    transition-delay: 400ms;
}

.reservation-sec {
    padding: 30px 0;
    background-color: var(--text-color);
    text-align: center;
}

.reservation-sec .tt {
    color: white;
    font-size: 30px;
    font-family: var(--font);
}

.reservation-sec .sub-tt {
    color: var(--pri);
    margin-bottom: 5px;
}

.reservation-sec #date-range {
    color: white;
    background-color: transparent;
    border: 0 !important;
    outline: 0 !important;
    width: 100%;
    font-size: 16px;
    text-align: center;
}

.daterangepicker {
    font-family: var(--font2);
}

.daterangepicker td.available:hover,
.daterangepicker th.available:hover {
    background-color: var(--sec);
}

.daterangepicker .drp-buttons .btn.btn-primary {
    box-shadow: none !important;
    background-color: var(--pri);
    border-color: var(--pri);
    font-weight: 400;
}

.daterangepicker td.in-range {
    background-color: var(--sec);
}

.daterangepicker td.active,
.daterangepicker td.active:hover {
    background-color: var(--pri);
}

.section {
    position: relative;
    padding: 60px 0;
}

.section.after:before {
    content: '';
    top: 0;
    height: 100%;
    position: absolute;
    border-left: solid 1px rgba(0, 0, 0, .15);
    left: 17.5%;
    z-index: -1;
}

.section.after:after {
    content: '';
    top: 0;
    height: 100%;
    position: absolute;
    border-left: solid 1px rgba(0, 0, 0, .15);
    right: 17.5%;
    z-index: -1;
}

.bg-light {
    background-color: var(--sec) !important;
}

.counter-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-align: center;
}

.counter-controls button {
    background: var(--pri);
    border: none;
    color: white;
    font-size: 18px;
    border-radius: 50%;
    font-weight: 400;
    width: 30px;
    height: 30px;
    cursor: pointer;
    outline: none;
    line-height: 1;
}

.counter-controls input {
    color: white;
    background-color: transparent;
    border: 0 !important;
    outline: 0 !important;
    width: 100%;
    max-width: 30px;
    font-size: 16px;
    text-align: center;
}

.abt-tx-bx{
    text-align: center;
}

.abt-tx-bx .sub-tt{
    color: var(--pri);
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 10px;
}

.abt-tx-bx .main-tt{
    color: var(--text-color);
    font-family: var(--font);
}