@import url('https://fonts.googleapis.com/css2?family=Ibarra+Real+Nova:wght@500;600;700&display=swap');


@font-face {
    font-family: 'Tahoma';
    src: url('../fonts/TahomaRegularfont.ttf') format('ttf');
}


:root {
    --bg-color: #FFF3EE;
    --primary-color: #FF7231;
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
    color: #000;
}

p {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Ibarra Real Nova', serif;
    margin: 0;

}

ul {
    margin: 0;
    padding: 0;
}

a,
button {
    font-family: 'Ibarra Real Nova', serif;
}


h1 {
    font-size: 38px;
    line-height: normal;
    font-weight: 600;
}

h2 {
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.btn-main {
    border-radius: 4px;
    background: #FF7231;
    display: inline-flex;
    padding: 10px;
    justify-content: center;
    align-items: center;
    outline: none;
    border: none;
    color: #ffffff;
    text-decoration: none;
    min-width: fit-content;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    position: relative;
    z-index: 2;
    box-shadow: #B87F64 0px 11px 10px -10px;
    transition: all ease-in-out .3s;
}
.btn-main:hover {
    background-color: transparent;
    color: #000000;
}

.btn-main.login-hide:hover{
    color: #fff!important;
}

.btn--white {
    border-radius: 4px;
    background: #ffffff;
    display: inline-flex;
    padding: 9.5px;
    justify-content: center;
    align-items: center;
    outline: none;
    border: 0.5px solid #8D786F;
    color: #000000;
    text-decoration: none;
    min-width: fit-content;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    position: relative;
    z-index: 2;
    transition: all ease-in-out .3s;
}
.btn--white:hover {
    background: #FF7231;
    color: white;
}




.container {
    max-width: 1254px;
    padding-left: 30px;
    padding-right: 30px;
}

.inner-container {
    max-width: 1000px;
    padding-left: 30px;
    padding-right: 30px;
    margin: 0 auto;
}

body {
    font-size: 16px;
    background-color: var(--bg-color);
    line-height: 1;
}

.top-header {
    text-align: end;
    margin-bottom: 0;
    position: relative;
    top: 5px;
    z-index: 11111;
}


.top-header a {
    margin: 0 4px;
    font-size: 16px;
    font-weight: 600;
    color: #8D786F;
}

.top-header a i {
    margin-right: 4px;
    position: relative;
    top: -2px;
    transition: transform 1s ease;
    }
.top-header a:hover img, .top-header a:hover i {
    transform: rotate(360deg);
}
.top-header a span {
    margin-left: 10px;
    font-family: 'Tahoma';
    font-weight: 400;
    font-size: 14px;
    color: #8D786F;
    line-height: normal;
}

.top-header a {
    text-decoration: none;
}

/* header css */

.site-navbar .site-logo {
    position: relative;
    left: 0;
    font-size: 24px;
}

.site-navbar .site-navigation .site-menu {
    margin-bottom: 0;
}

.site-navbar .site-navigation .site-menu .active {
    color: #FF7231;
    display: inline-block;
    padding: 20px 20px;
}

.site-navbar .site-navigation .site-menu a {
    text-decoration: none !important;
    display: inline-block;
    white-space: nowrap;
    font-family: system-ui;

}

.site-navbar .site-navigation .site-menu>li {
    display: inline-block;
}

.site-navbar .site-navigation .site-menu>li>a {
    padding: 20px 14px;
    font-size: 16px;
    text-transform: capitalize;
    display: inline-block;
    text-decoration: none !important;
    font-weight: 600;
}

.site-navbar .site-navigation .site-menu>li>a:hover {
    color: #FF7231;
}

.site-navbar .site-navigation .site-menu>li.social>a {
    padding-left: 5px;
    padding-right: 5px;
}

.site-navbar .site-navigation .site-menu .has-children {
    position: relative;
}

.site-navbar .site-navigation .site-menu .has-children>a {
    position: relative;
    padding-right: 20px;
}

.site-navbar .site-navigation .site-menu .has-children>a:before {
    position: absolute;
    content: "\f107";
    font-size: 14px;
    font-weight: 900;
    top: calc(50% + 1px);
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: 'Font Awesome 6 Free';
}

.site-navbar .site-navigation .site-menu .has-children .dropdown {
    visibility: hidden;
    opacity: 0;
    top: 100%;
    position: absolute;
    text-align: left;
    border-top: 2px solid var(--primary-color);
    -webkit-box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
    padding: 0px 0;
    margin-top: 20px;
    margin-left: 0px;
    background: #fff;
    -webkit-transition: 0.2s 0s;
    -o-transition: 0.2s 0s;
    transition: 0.2s 0s;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top {
    position: absolute;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
    bottom: 100%;
    left: 20%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
    border-color: rgba(136, 183, 213, 0);
    border-bottom-color: #fff;
    border-width: 10px;
    margin-left: -10px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown a {
    text-transform: none;
    letter-spacing: normal;
    -webkit-transition: 0s all;
    -o-transition: 0s all;
    transition: 0s all;
    color: #000;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown .active {
    color: #FF7231 !important;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li {
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 210px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li>a {
    padding: 9px 20px;
    display: block;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li>a:hover {
    background: #eff1f3;
    color: #000;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children>a:before {
    content: "\e315";
    right: 20px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children>.dropdown,
.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children>ul {
    left: 100%;
    top: 0;
}

.site-navbar .site-navigation .site-menu .has-children:hover>a,
.site-navbar .site-navigation .site-menu .has-children:focus>a,
.site-navbar .site-navigation .site-menu .has-children:active>a {
    color: #FF7231;
}

.site-navbar .site-navigation .site-menu .has-children:hover,
.site-navbar .site-navigation .site-menu .has-children:focus,
.site-navbar .site-navigation .site-menu .has-children:active {
    cursor: pointer;
}

.site-navbar .site-navigation .site-menu .has-children:hover>.dropdown,
.site-navbar .site-navigation .site-menu .has-children:focus>.dropdown,
.site-navbar .site-navigation .site-menu .has-children:active>.dropdown {
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
    margin-top: 0px;
    visibility: visible;
    opacity: 1;
}

.site-mobile-menu {
    width: 100%;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 2000;
    background: #fff;
    height: calc(100vh);
    -webkit-transform: translateX(110%);
    -ms-transform: translateX(110%);
    transform: translateX(110%);
    -webkit-box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
    box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
    -webkit-transition: .3s all ease-in-out;
    -o-transition: .3s all ease-in-out;
    transition: .3s all ease-in-out;
}

.offcanvas-menu .site-mobile-menu {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.site-mobile-menu .site-mobile-menu-header {
    width: 100%;
    float: left;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 1rem;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close {
    float: right;
    margin-top: 8px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span {
    font-size: 16px;
    display: inline-block;
    line-height: 1;
    cursor: pointer;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    background-color: var(--primary-color);
    color: var(--bg-color);
    padding: 4px;
    border-radius: 4px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo {
    float: left;
    margin-top: 10px;
    margin-left: 0px;

}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a {
    display: inline-block;
    text-transform: uppercase;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a img {
    max-width: 70px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a:hover {
    text-decoration: none;
}

.site-mobile-menu .site-mobile-menu-body {
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    position: relative;
    padding: 0 20px 20px 20px;
    height: calc(100vh - 52px);
    padding-bottom: 150px;
}

.site-mobile-menu .site-nav-wrap {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
}

.site-mobile-menu .site-nav-wrap a {
    padding: 10px 20px;
    display: block;
    position: relative;
    color: #212529;
}

.site-mobile-menu .site-nav-wrap a:hover {
    color: #FF7231;
}

.site-mobile-menu .site-nav-wrap li {
    position: relative;
    display: block;
}

.site-mobile-menu .site-nav-wrap li .active {
    color: #FF7231;
}

.site-mobile-menu .site-nav-wrap .social {
    display: inline-block;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse {
    position: absolute;
    right: 0px;
    top: 10px;
    z-index: 20;
    width: 28px;
    height: 28px;
    text-align: center;
    cursor: pointer;
    border-radius: 50%;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse:hover {
    background: #f8f9fa;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse:before {
    position: absolute;
    font-size: 18px;
    z-index: 20;
    font-family: 'Font Awesome 6 Free';
    content: "\f107";
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-180deg);
    -ms-transform: translate(-50%, -50%) rotate(-180deg);
    transform: translate(-50%, -50%) !important;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    font-weight: 900;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse.collapsed:before {
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.site-mobile-menu .site-nav-wrap>li {
    display: block;
    position: relative;
    float: left;
    width: 100%;
}

.site-mobile-menu .site-nav-wrap>li.social {
    float: none !important;
    width: auto !important;
}

.site-mobile-menu .site-nav-wrap>li>a {
    padding-left: 20px;
    font-size: 20px;
}

.site-mobile-menu .site-nav-wrap>li>ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-mobile-menu .site-nav-wrap>li>ul>li {
    display: block;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>a {
    padding-left: 40px;
    font-size: 16px;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>ul {
    padding: 0;
    margin: 0;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>ul>li {
    display: block;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>ul>li>a {
    font-size: 16px;
    padding-left: 60px;
}

.site-mobile-menu .site-nav-wrap[data-class="social"] {
    float: left;
    width: 100%;
    margin-top: 30px;
    padding-bottom: 5em;
}

.site-mobile-menu .site-nav-wrap[data-class="social"]>li {
    width: auto;
}

.is-sticky .site-navbar .row.align-items-end {
    align-items: center !important;
}

.site-mobile-menu .site-nav-wrap[data-class="social"]>li:first-child a {
    padding-left: 15px !important;
}

.sticky-header{
    z-index: 999!important;
    top: 0!important;
    width: 100%;
}
.site-navbar.js-sticky-header.site-navbar-target ul li a, .login-hide.nav-link, .sign__button, .sticky-header{
    color: #000;
}

.top-header a, .top-header a span{
    color: #000;
}

.js-sticky-header{
    padding: 10px 0;
}

.sticky-wrapper {
    margin-bottom: 10px;
    z-index: 9999;
    position: relative;
}

.sticky-wrapper .site-navbar {
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
}

.sticky-wrapper .site-navbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-wrapper .site-navbar .site-menu-toggle {
    color: #fff;
}

.sticky-wrapper .site-navbar .site-logo a {
    color: #000;
}

.sticky-wrapper .site-navbar .site-menu>li>a {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    font-family: system-ui;
}

/* .sticky-wrapper .site-navbar .site-menu>li>a:hover,
.sticky-wrapper .site-navbar .site-menu>li>a.active {
    color: #000000 !important;
} */

.sticky-wrapper.is-sticky .site-navbar {
    -webkit-box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.1);
    box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    background-color: var(--bg-color);

}

.sticky-wrapper.is-sticky .site-navbar .site-logo img {
    width: 110px;
}

.sticky-wrapper.is-sticky .site-navbar .site-menu-toggle {
    color: #000;
}

.sticky-wrapper.is-sticky .site-navbar .site-logo a {
    color: #FF7231;
}

.sticky-wrapper.is-sticky .site-navbar .site-menu>li>a {
    color: #000 !important;
}

.sticky-wrapper.is-sticky .site-navbar .site-menu>li>a:hover,
.sticky-wrapper.is-sticky .site-navbar .site-menu>li>a.active {
    color: #FF7231 !important;
}

.social-icons ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    align-items: center;
}

.social-icons {
    position: relative;
    bottom: -45px;
    margin-right: 30px;
}

/* hero section css */
.hero-slider {
    height: 80vh;
    width: 100%;
    overflow: hidden;
    /* position: relative; */
}
.hero .hero-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-repeat: no-repeat;
}

.hero-slider h1 {
    z-index: 1;
    position: absolute;
    top: 34%;
    left: 50%;
    text-align: center;
    color: #ffffff;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.hero .hero-form {
    position: relative;
    margin-top: -60px;
    z-index: 1;
}

.hero .book-form {
    background-color: #fff;
    padding: 23px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero .book-form-wrapper form {
    display: flex;
    align-items: center;
}

.hero .hero-form .book-from-col {
    min-width: fit-content;
    padding: 10px 30px 10px 0;
    border-right: 1px solid #F08554;
}


.hero .hero-form .book-from-col h2 {
    font-size: 37px;
    font-weight: 700;
    color: #000;
}

.hero .hero-form .book-from-col p {
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.96px;
}

.hero .hero-form .form-g {
    padding: 10px 24px;
    border-right: 1px solid #F08554;
    width: 40%;

}

.hero .hero-form .form-g label {
    color: #8D786F;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 1.2px;
    line-height: normal;
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
}

.hero .hero-form .form-g label img {
    margin-left: 20px;
    width: 18px;
}

.hero .hero-form .form-g input {
    border-radius: 4px;
    background: #FFF3EE;
    border: none;
    padding: 6px 10px;
    color: #2C2927;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.84px;
    width: 100%;
}


.hero .hero-form .form-g input::placeholder {
    color: #2C2927;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.84px;
}

.hero .hero-form .btn-group-wrap {
    padding-left: 25px;
}

.hero .hero-form .btn-group-wrap button {
    margin-left: 12px;
}

/* why us section */
.why-us {
    padding: 72px 0;
}

.why-us h2 {
    color: #000;
    margin-bottom: 21px;
}

.why-us nav {
    border-top: 0.5px solid #d0d0d0;
}

.why-us nav .nav-tabs {
    border: 0;
}

.why-us nav .nav-link {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #8D786F;
    padding-left: 0;
    padding-right: 32px;
    border-radius: 0;
    border: none;
    padding-top: 12px;
}

.why-us nav .nav-link.active {
    color: #F08554;
    background-color: transparent;

    position: relative;
}

.why-us nav .nav-link:hover {
    border: none;
}

.why-us nav .nav-link.active::before {
    width: 100%;
    background-color: #F08554;
    content: '';
    position: absolute;
    height: 5px;
    border-radius: 10px;
    top: -3px;
    left: 0;
}

.why-us .tab-content {
    padding-top: 50px;
}

.why-us .tab-content .tab-wrapper .tab-content-wrapper {
    display: flex;
}

.why-us .tab-content .tab-wrapper .tab-content-wrapper {
    margin-bottom: 50px;
}

.why-us .tab-content .tab-wrapper .image {
    width: 50%;
}

.why-us .tab-content .content {
    width: 50%;

}

.why-us .tab-content .tab-wrapper .tab-content-wrapper .content {
    padding-left: 60px;
}

.why-us .tab-content .tab-wrapper .tab-content-wrapper:nth-child(even) .content {
    padding-right: 60px;
    order: 1;
}

.why-us .tab-content .tab-wrapper .tab-content-wrapper:nth-child(even) .image {
    order: 2;
}

.why-us .tab-content .content h3 {
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 40px;
}


.why-us .tab-content .content p {
    color: rgba(0, 0, 0, 0.60);
    text-align: justify;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.2px;
}

.why-us .tab-content .content .read-more {
    margin-top: 20px;
}

.why-us .tab-content .content .read-more a {
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.why-us .tab-content .content .read-more a i {
    font-size: 17px;
    margin-top: 2px;
}

.why-us .tab-content .tab-wrapper .image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform .3s ease;
}
.why-us .tab-content .tab-wrapper .image {
    overflow: hidden;
}
.why-us .tab-content .tab-wrapper .image:hover img {
    transform: scale(1.1);
}

.why-us .title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.why-us .title-wrapper .arrow {
    display: flex;
    gap: 18px;
}

.why-us .title-wrapper .btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 22px;
    cursor: pointer;
    background-color: #F08554;
}

/* rooms and rates css */
.rooms {
    padding: 35px 0 80px 0;
}

.rooms .title h2 {
    text-align: center;
    color: #000;
    margin-bottom: 40px;
}

.rooms-slider .slider-content .slider-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform .3s ease;
}
.rooms-slider .slider-content .slider-img {
    overflow: hidden;
}
.rooms-slider .slider-content .slider-img:hover img {
    transform: scale(1.06);
}

.rooms-slider .slider-content p {
    color: rgba(0, 0, 0, 0.80);
    text-align: center;
    font-size: 27px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    font-family: 'Ibarra Real Nova', serif;
    padding-top: 35px;
}

.rooms-slider .slick-slide {
    margin: 0 20px;
}

.rooms-slider .slick-prev {
    left: 0;
}

.rooms-slider .slick-next {
    right: 0;
}

.rooms .slick-arrow::before {
    content: '';
    background-image: url(../assets/icons/right-arrow.svg);
    width: 40px;
    height: 40px;
    display: block;
}

.rooms .slick-arrow.slick-next {
    transform: rotate(180deg);
}

.rooms .rooms-slider {
    padding: 0 65px;
}

/* end of rooms and rates css */

/* css for video */
#video-container {
    position: relative;
    height: 100%;
}

/* Styling for the video player */
video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
}

/* Customized control bar at the bottom */
.custom-controls {
    z-index: 99;
    max-width: 1000px;
    margin: 0 auto;
    background-color: #ffffff;
    color: #fff;
    padding: 10px;
    display: flex;
    position: relative;
    margin-top: -43px;
    padding: 30px 30px;
    justify-content: space-between;
}

/* Style the individual control buttons */
.custom-controls button {
    background: none;
    border: none;
    color: rgba(0, 0, 0, 0.80);
    cursor: pointer;
}



/* Centered play/pause buttons */
.centered-buttons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
}

.centered-buttons button {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    width: 90px;
    height: 90px;
    border: 5px solid #fff;
    border-radius: 50%;
}

.centered-buttons button i {
    font-size: 35px;
}

.video-text {
    background: var(--primary-color);
    padding: 20px;
    text-align: center;
    border-radius: 4px;
    z-index: 99;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.video-text p {
    color: #fff;
    font-size: 18px;
    letter-spacing: 1.2px;
    font-weight: 400;
    line-height: normal;
}

.achievement {
    padding: 30px 0 82px 0;
    background: url(../assets/images/bg-achive.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    clip-path: polygon(0 0, 100% 0%, 100% 79%, 0% 100%);
}

.achievement-wrapper {
    padding-top: 100px;
    display: flex;
}

.achievement-wrapper .title {
    width: 35%;
}

.achievement-wrapper .achievement-slider {
    width: 65%;
}

.achievement-wrapper .title h2 {
    font-size: 48px !important;
    color: #000;
    font-weight: 400;
    text-transform: capitalize;
    line-height: normal;
    margin-bottom: 20px;
}

.achievement-wrapper .title p {
    color: rgba(0, 0, 0, 0.60);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 20px;
    padding-right: 50px;
}

.achievement-wrapper .read-more a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 8px;
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}

.achievement-wrapper .read-more a i {
    margin-top: 4px;
    font-size: 15px;
}

.achievement .rotate-text {

    position: absolute;
    top: 50%;
    left: 10px;
    transform: rotate(270deg) translateY(-50%);
    text-transform: uppercase;
    font-size: 20px;
    color: rgba(0, 0, 0, 0.75);
    font-family: 'Tahoma';
    width: 114px;
}

.recog-common {
    position: relative;
    padding: 0 50px;
}

.recog-slider {
    padding-left: 32px;
}

.recog-slider p {
    padding: 40px 10px 100px 10px;
    color: rgba(0, 0, 0, 0.60);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    /* text-transform: capitalize; */
}

.recog-slider .recog-item {
    text-align: center;
    border-left: 1px solid rgba(141, 120, 111, 0.50);
    ;
}

.recog-slider .recog-item img {
    margin: 0 auto;
    object-fit: contain;
    background-position: center center;
    transition: transform .5s ease;
}
.recog-slider .recog-item .recog-img{
    overflow: hidden;
}
.recog-slider .recog-item .recog-img:hover img {
    transform: scale(1.1);
}

/* review section css */

.review {
    padding: 30px 0 85px 0;
}

.review .review-title {
    text-align: center;
}

.review .review-title h2 {
    color: #000;
    font-size: 56px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: relative;
    display: inline-block;
}

.review .review-title h2::before {
    content: '';
    position: absolute;
    right: -65px;
    top: 8px;
    background-image: url(../assets/icons/title-svg.svg);
    background-repeat: no-repeat;
    width: 182px;
    height: 55px;
    z-index: -1;
}

.review .review-slider .slick-list {
    padding: 80px 0 25px 0;
}

.review .review-slider .review-item {
    text-align: center;
}

.review .review-slider .review-item img {
    width: 128px;
    height: 128px;
    border-radius: 148.975px;
    border: 1px solid #F08554;
    box-shadow: 0px 6px 4.5px 0px rgba(0, 0, 0, 0.25);
    margin: 0 auto;
    z-index: 3;
    position: relative;
    object-fit: cover;
}

.review .review-slider .review-item h5 {
    font-family: 'Tahoma';
    padding: 15px 0 30px 0;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #000;
}

.review .review-slider .review-item p {
    color: rgba(0, 0, 0, 0.70);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.review .review-slider .review-item p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
}

.review .review-slider .review-item p.expanded {
    overflow: visible;
    text-overflow: clip;
    -webkit-line-clamp: unset;
    max-height: none;
}

.review .review-slider .review-item .rating {
    list-style: none;
    padding-top: 38px;
}

.review .review-slider .review-item .rating i {
    color: #FF8D58;
}

.review .review-slider .review-item .content {
    border-radius: 10px;
    border: 1px solid #F08554;
    background: #FFF;
    padding: 70px 20px 20px 25px;
    position: relative;
    top: -66px;
}

.review .review-slider .review-item .content::before {
    content: "";
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #D9D9D9;
    filter: blur(10.399999618530273px);
}


.review .review-slider .slick-slide {
    margin: 0 30px;
}

.review .review-slider .slick-prev,
.review .review-slider .slick-next {
    top: unset;
    bottom: 0;
    z-index: 9;
}

.review .review-slider .slick-prev::before,
.review .review-slider .slick-next::before {
    content: "";
    background-image: url(../assets/icons/right-arro.svg);
    width: 40px;
    background-repeat: no-repeat;
    height: 40px;
    display: inline-block;
}

.review .review-slider .slick-prev::before {
    transform: rotate(180deg);
}

.review .review-slider .slick-prev {
    left: calc(50% - 40px);
}

.review .review-slider .slick-next {
    right: calc(50% - 40px);
}


/* end of review section css */

.rating-quote {
    padding-top: 64px;
}

.rating-quote .rating-quote-title {
    text-align: center;
}

.rating-quote .rating-quote-title h2 {
    color: #000;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    display: inline-block;
    position: relative;
}

.rating-quote .rating-quote-title h2::before {
    content: '';
    position: absolute;
    left: -50px;
    top: -8px;
    background-image: url(../assets/icons/quote-icon.svg);
    background-repeat: no-repeat;
    width: 35.413px;
    height: 30px;
    z-index: -1;
    transform: rotate(360deg);
}

.rating-quote .rating-quote-title h2::after {
    content: '';
    position: absolute;
    right: -50px;
    bottom: -4px;
    background-image: url(../assets/icons/quote-right.svg);
    background-repeat: no-repeat;
    width: 35.413px;
    height: 30px;
    z-index: -1;
}

.footer {
    background: #C5683C;
    padding: 20px 0;
}

.footer .footer-logo img {
    width: auto;
    height: 200px;
}

.footer .footer-wrapper {
    display: flex;
    justify-content: space-evenly;
    padding-bottom: 20px;
}

.footer .footer-left {
    display: flex;
}

.footer .footer-left .footer-subscribe {
    padding: 10px 0 0 50px;
}

.footer .footer-left .footer-subscribe h4, .footer .footer-right .footer-links h4 {
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    padding-bottom: 20px;
    line-height: normal;
    white-space: nowrap;
    text-transform: capitalize;
}
.footer .footer-right .footer-links ul li a,  .contact-info li a{
    position:relative;
}
.footer .footer-right .footer-links ul li a::after, .contact-info li a::after {
    position: absolute;
    right: 0;
    bottom: -4px;
    transform: scale(0);
    width: 100%;
    content: '';
    background-color: white;
    height: 2px;
    transition: transform .3s;
}
.footer .footer-right .footer-links ul li a:hover::after, .contact-info li a:hover::after {
    transform: scale(1);
}

.footer .footer-left .footer-subscribe form input {
    border-radius: 4px;
    background: #FFF;
    padding: 16px;
    border: none;
    outline: none;
    width: 70%;
}

.footer .footer-left .footer-subscribe form input::placeholder {
    color: #767576;

    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: lowercase;
}

.footer .footer-left .footer-subscribe form button {
    margin-top: 20px;
    border: none;
    outline: none;
    border-radius: 4px;
    background: #FFF;
    padding: 16px 20px;
    color: #000;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    font-family: 'Tahoma';
    line-height: normal;
    letter-spacing: 1.2px;
    text-transform: capitalize;
}

.footer .footer-left .footer-subscribe ul {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    font-size: 20px;
}

.footer .footer-left .footer-subscribe ul li i {
    color: #fff;
    transition: transform 1s ease;
}
.footer .footer-left .footer-subscribe ul li:hover i {
    transform: rotate(360deg);
}

.footer ul {
    list-style: none;
}

.footer .footer-right {
    display: flex;
    gap: 30px;
}

.footer .footer-right ul li a {
    text-decoration: none;
    color: #FFF;
    font-family: Tahoma;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.32px;
    text-transform: capitalize;
}

.footer .footer-right ul li {
    margin-bottom: 17px;
    white-space: nowrap;
}

.footer .footer-copyright {
    border-top: 1px solid #fff;
}

.footer .footer-copyright p {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-top: 20px;
    padding-bottom: 20px;
}

/* our story css */


.our-story {
    padding: 12px 0;
}

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

.scroll-links ul{
    justify-content: flex-end;
    gap: 15px;
}

.scroll-links ul p{
    font-size: 40px;
}
.scroll-links ul li a{
    text-decoration: none;
    color: #000;
    font-size: 25px;
    font-weight: 800;
    transition: .3s ease-in-out;
    text-transform: uppercase;
}

.scroll-links ul li a:hover{
    color: #C5683C;
}


.our-story-wrapper {
    display: flex;
    padding: 20px 0 40px 0;
    position: relative;
}



.our-story-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    background: #F08554;
    height: 3px;
}


.our-story-wrapper .our-story-img {
    width: 60%;
    height: 500px;
}

 .our-story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*
.sustainability_image {
    width: 100%;
    height: 450px;
}
.sustainability_image img {
    width: 100%;
    height: 100%;
} */
.our-story-wrapper .our-story-content {
    width: 40%;
}
.our-story-wrapper .our-story-content h1 {
    color: #000;
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    font-variant: small-caps;
    letter-spacing: 3.6px;
    line-height: 1.11;
    padding: 0 0 20px 0;
    position: relative;
}

.story-page .our-story-wrapper .our-story-content .content, .our-team .our-story-wrapper .our-story-content .content {
    padding-left: 0 !important;
    padding-right: 35px;
    padding-top: 25px;

}
.story-page .our-story-wrapper .our-story-content .content p, .our-team .our-story-wrapper .our-story-content .content p {
    color: #8D786F;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}

.our-story-wrapper .our-story-content h1::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% + 111px);
    background: #F08554;
    height: 3px;
}


.our-story-wrapper .our-story-content h1::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% + 111px);
    background: #F08554;
    height: 3px;
}

.our-story .our-story-title  {
    position: relative;
}


.our-story .our-story-title p {
    position: absolute;
    top: calc(50% - 20px);
    left: -92px;
    transform: rotate(-90deg) translateY(-50%);
    color: #8D786F;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.our-story .our-story-content .content {
    margin-right: 35px;
}
.our-story:nth-child(even) .our-story-content .content {
    padding-left: 35px;
}

.legislation-wrapper:nth-child(odd) .our-story-title h1 {
    text-align: end;
}


.our-story .our-story-content .content h2 {
    color: rgba(0, 0, 0, 0.85);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.44px;
    padding-top: 20px;
    font-family: 'Tahoma';
    line-height: 1.5;
    padding-bottom: 25px;
}

.our-story .our-story-content .content h2 span {
    color: rgba(0, 0, 0, 0.85);
    font-family: "Tahoma";
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.56px;
    text-transform: uppercase;
}

.our-story .our-story-content .content p {
    color: #8D786F;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}

.our-story .our-story-wrapper .our-story-img {
    padding-top: 30px;
}

.information .background-image{
    height: 80vh;
    background-image: url('../assets/images/aakhi-jhyal.jpg');
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

.counter {
    background-color:#f5f5f5;
    padding: 20px 0;
    border-radius: 5px;
}

.count-title {
    font-size: 40px;
    font-weight: normal;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
}

.count-text {
    font-size: 13px;
    font-weight: normal;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
}

.fa-2x {
    margin: 0 auto;
    float: none;
    display: table;
    color: #4ad1e5;
}

.information{
    position: relative;
}

.information .hotel-information{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.information .hotel-information .container .row .col-lg-3 .counter{
    background-color: rgba(214, 117, 72, 0.8);
    height: 150px;
    width: 150px;
    text-align: center;
    border-radius: 50%;
}
.information .hotel-information .container .row .col-lg-3 .counter h2{
    color: #fff;
}

.information .hotel-information .container .row .col-lg-3 .counter p{
    font-size: 22px;
    color: #fff;
}

.meet-our-hotel .container .col-lg-6{
    padding-left: 50px;
    padding-right: 50px;
}

.meet-our-hotel .container .col-lg-6 p{
    line-height: 2;
}

.meet-our-hotel .container .col-lg-6 h3{
    padding-top: 40px;
    padding-bottom: 20px;
    font-size: 22px;
}

.meet-our-hotel .container .left{
    text-align: right;
}

.meet-our-hotel .container{
    width: 60%;
}


.meet-our-hotel .container .row .line-center{
    width: 1px;
    padding-left: 0px;
    padding-right: 0px;
    position: absolute;
    left: 50%;
    margin-left: -1px;
    top: 0;
    bottom: 0;
    background-color: #7a7a7a;
}

.meet-our-hotel .container .row .line-center::before{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    content: "";
    background-color: #7a7a7a;
    position: absolute;
    left: 50%;
    margin-left: -6px;
}

.meet-our-hotel .container .row .line-center::after{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    content: "";
    background-color: #7a7a7a;
    position: absolute;
    left: 50%;
    margin-left: -6px;
    bottom: 0;
}

.story-img {
    padding: 50px 0;
}

.title-line {
    text-align: center;
}

.title-line h2 {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.title-line h2::before,
.title-line h2::after {
    width: 40px;
    height: 1px;
    position: absolute;
    top: 50%;
    content: "";
    z-index: 1;
    background-color: #F08554;
}

.title-line h2::before {
    left: -52px;
}

.title-line h2::after {
    right: -52px;
}

.title-line p {
    color: #000;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.44px;
    text-transform: capitalize;
    max-width: 58%;
    padding: 30px 0;
    margin: 0 auto;
    padding-bottom: 0px;
}

.story-img .story-banner {
    position: relative;
}

.story-img .story-banner img {
    width: 100%;
    height: auto;
}

.story-img .story-banner span {
    position: absolute;
    left: -30px;
    top: calc(50% - 20px);
    left: -55px;
    transform: rotate(-90deg) translateY(-50%);
    color: #8D786F;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.timeline {
    overflow: hidden;
    padding-top: 35px;
    background: url(../assets/images/story-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.timeline .title-time h2 {
    color: #000;
    font-size: 58px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 3.6px;
    text-transform: capitalize;
    padding-bottom: 10px;
}

.timeline .title-time {
    max-width: 38%;
}

.timeline .title-time p {
    color: #8D786F;
    text-align: justify;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}


.timeline .timeline-slider {
    padding: 0 20px;
}

.timeline .timeline-slider .slick-slide {
    margin: 0 40px;
}

.timeline .timeline-slider .timeline-item {
    position: relative;
    padding: 110px 0;
}

.timeline .timeline-slider .timeline-item span {
    color: rgba(240, 133, 84, 0.40);
    text-align: center;
    font-size: 119px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}


.timeline .timeline-slider .timeline-item ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
}

.timeline .timeline-slider .timeline-item ul li {
    color: rgba(0, 0, 0, 0.70);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}

.timeline .achievement {
    background: none;
    clip-path: none;
    padding: 0;
}

.timeline .achievement-wrapper {
    padding-top: 50px;
}

.team {
    padding: 50px 0 80px 0;
}

.team .team-wrapper {
    padding-top: 30px;
    position: relative;
}

.team .team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 35px;
}

.team .team-grid .team-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team .team-grid .team-item h3 {
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    padding: 10px 0;
}

.team .team-grid .team-item span {
    color: #8D786F;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}

.side-title {
    position: absolute;
    top: 50%;
    left: -55px;
    transform: rotate(-90deg) translateY(-50%);
    color: #8D786F;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    width: 70px;
}

.nav{
    font-size: 24px;
    padding-bottom: 30px;
}

.room-for-slider img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.room-slider .room-img {
    height: 481px;
    position: relative;
}

.room-slider .room-img h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFF3EE;
    font-size: 60px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.room-nav-slider {
    padding: 60px 0;
}

.room-nav-slider .slick-slide {
    margin: 0 20px;
}

.room-nav-slider .room-nav-img img {
    width: 100%;
    height: 90px;
    object-fit: cover;
}


.room-nav-slider .slick-list {
    padding: 0 !important;
}

.room-nav-slider .slick-current .room-nav-img img {
    border: 2px solid #F08554;
}

.room-nav-slider .room-nav-img {
    cursor: pointer;
}

.room-for-slider .slick-arrow {
    z-index: 9;
    width: 98.07px;
    height: 60px;
    background-color: #F08554;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


.room-for-slider .slick-arrow::before {
    position: absolute;
    content: "\f054";
    font-size: 34px;
    font-weight: 900;
    font-family: 'Font Awesome 6 Free';
}

.room-for-slider .slick-prev {
    left: 0;
}

/* .room-for-slider .slick-prev::before {
    transform: rotate(-180deg);
} */


.room-for-slider .slick-next {
    right: 0;
}

.room-selection {
    background: url(../assets/images/story-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 0 100px 0;
}

.room-selection .title {
    text-align: center;
}

.room-selection .title h2 {
    color: #000;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding-bottom: 10px;
}

.room-selection .title p {
    color: #8D786F;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 1052px;
    margin: 0 auto;
}

.room-selection .room-grid, .room-details .room-grid {
    padding-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
}

.room-grid a{
    text-decoration: none;
}

.room-flex a{
    text-decoration: none;
}

.room-flex .col-lg-4{
    padding-top: 30px;
}

.room-selection .room-flex .room-content p{
    color: #8D786F;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-bottom: 13px;
    border-bottom: 1px solid rgba(240, 133, 84, 0.50);
}

.room-selection .room-flex .room-content .btn-wrapper{
    padding-top: 10px;
}
.room-selection .room-flex .room-content .btn-wrapper p{
    color: #fff!important;
}

.room-selection .room-flex .room-item{
    border-radius: 8px;
    border: 1px solid rgba(240, 133, 84, 0.50);
    background: #fff;
    padding: 16px;
}

.room-selection .room-flex .room-content .btn-wrapper p:hover{
    color: #000!important;
}

.room-selection .room-flex .room-content .btn-wrapper .btn-main{
    font-size: 20px;
}

.room-flex .room-content h3{
    color: #000!important;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-bottom: 10px;
}

.room-selection .room-flex .room-item img {
    height: 281px;
    object-fit: cover;
    width: 100%;
    transition: transform .5s ease;
}

.room-selection .room-flex .room-item .room-image {
    overflow: hidden;
}

.room-selection .room-flex .room-item:hover img {
    transform: scale(1.1);
}

.room-grid .room-item .btn-wrapper p{
    color: #fff!important;
}
.room-grid .room-item .btn-wrapper p:hover{
    color: #000!important;
}
.room-selection .room-grid .room-item img {
    height: 281px;
    object-fit: cover;
    width: 100%;
    transition: transform .5s ease;
}

.room-selection .room-grid .room-item .room-image {
    overflow: hidden;
}

.room-selection .room-grid .room-item:hover img {
    transform: scale(1.1);
}

.room-selection .room-grid .room-item {
    border-radius: 8px;
    border: 1px solid rgba(240, 133, 84, 0.50);
    background: #FFF;
    padding: 16px;
}

.room-selection .room-grid .room-content {
    padding-top: 13px;
}

.room-selection .room-grid .room-content h3 {
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-bottom: 10px;
}

.room-selection .room-grid .room-content p {
    color: #8D786F;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-bottom: 13px;
    border-bottom: 1px solid rgba(240, 133, 84, 0.50);
}

.room-selection .room-grid .room-content .btn-wrapper {
    margin-top: 13px;
}

.room-selection .room-grid .room-content .btn-wrapper .btn--white {
    margin-right: 14px;
}

.room-temp {
    background-color: #FFF3EE;
    box-shadow:  0px 0px 10px 0 rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.btn-large {
    padding: 20px 50px;
}

.room-date, .temp-humid, .outdoor-temp-humid, .temp-indoor{
    line-height: 1.5;
}

.outdoor-temp-humid, .status-cool-mode {
    margin-top: 10px;
}
.temp-humid {
    font-weight: bold;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.temp-humid .temp span, .temp-humid .humid span {
    font-weight: lighter;
}

.room-date span, .outdoor-temp-humid span, .status-cool-mode, .temp-indoor {
    color: #8D786F;
    font-size: 14px;
    text-transform: uppercase;
}
.status-cool-mode p {
    color: black;
    font-size: 22px;
    text-transform: uppercase;
}

.temp-indoor p {
    font-size: 4rem;
    color: black;
}

.temp-indoor strong {
    color: black;
}

.inner-banner {
    height: 307px;
    position: relative;
}

.inner-banner .inner-banner-img {
    width: 100%;
    height: 100%;
}

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

.inner-banner .breadcrumb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 100px 0;
}

.inner-banner .breadcrumb ul {
    list-style: none;
    display: flex;
    align-items: center;
}

.inner-banner .breadcrumb ul li a {
    color: #FFF;
    font-size: 53px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 3.6px;
    text-decoration: none;
    white-space: nowrap;
    word-spacing: -16px;
}

.inner-banner .breadcrumb ul li.active a {
    font-size: 30px;
}

.food-menu {
    padding: 80px 0;
}

.food-menu .food-menu-wrapper {
    display: flex;
    justify-content: space-between;
}

.food-menu .food-menu-wrapper .menu {
    width: 75%;
}

.food-menu .food-menu-wrapper .checkout {
    width: 25%;
    padding-left: 50px;
}

.food-menu .food-menu-wrapper .checkout h2 {
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding-bottom: 16px;
}

.food-menu .food-menu-wrapper .checkout .checkout-info {
    border-radius: 8px;
    background: #8D786F;
    margin-bottom: 15px;
}

.food-menu .food-menu-wrapper .checkout .info-item {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    color: #FFF3EE;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.food-menu .food-menu-wrapper .menu .menu-banner {
    height: 188px;
    position: relative;
    margin-bottom: 30px;
}

.food-menu .food-menu-wrapper .menu .menu-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.food-menu .food-menu-wrapper .menu .menu-banner h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 3.6px;
}

.food-menu .food-menu-wrapper .menu .menu-items h3 {
    color: #000;
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    padding-bottom: 20px;
}

.food-menu .food-menu-wrapper .menu .menu-items .menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}


.food-menu .food-menu-wrapper .menu .menu-items {
    padding-top: 60px;
}

.food-menu .food-menu-wrapper .menu .menu-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 25px;
    border-bottom: 2px dashed #8D786F;
}

.food-menu .food-menu-wrapper .menu .menu-item .menu-desc {
    display: flex;
    gap: 10px;
}

.food-menu .food-menu-wrapper .menu .menu-item .menu-desc img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.food-menu .food-menu-wrapper .menu .menu-item .menu-desc h4 a {
    color: #000;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
    text-transform: uppercase;
}

.food-menu .food-menu-wrapper .menu .menu-item .menu-desc p {
    color: #8D786F;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}

.food-menu .food-menu-wrapper .menu .menu-item .menu-desc ul i {
    color: #FF8D58;
}

.food-menu .food-menu-wrapper .menu .menu-item .menu-desc ul {
    padding-top: 10px;
}

.food-menu .food-menu-wrapper .menu .menu-item .menu-price p {
    border-radius: 8px;
    border: 1px solid #F08554;
    padding: 10px;
    color: #F08554;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 18px;
}

.food-menu .food-menu-wrapper .menu .menu-item .menu-price a i {
    color: #8D786F;
}

.food-menu .food-menu-wrapper .menu .menu-item .menu-price {
    text-align: end;
}

.menu-desc-info {
    padding: 80px 0;
}

.menu-desc-info .menu-desc-wrapper {
    display: flex;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px dashed #000;
}

.menu-desc-info .menu-desc-wrapper .menu-img {
    width: calc(50% - 20px);
}

.menu-desc-info .menu-desc-wrapper .menu-img img {
    height: 342px;
    object-fit: cover;
    width: 100%;
}

.menu-desc-info .menu-desc-wrapper .menu-cart h2 {
    color: #000;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}

.menu-desc-info .menu-desc-wrapper .menu-cart {
    width: calc(50% - 20px);
    padding-left: 20px;
    padding-top: 10px;
}

.menu-desc-info .menu-desc-wrapper .menu-cart span {
    color: #8D786F;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    display: block;
    text-align: center;
    line-height: normal;
    text-transform: capitalize;
}

.menu-desc-info .menu-desc-wrapper .menu-cart ul {
    list-style: none;
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.menu-desc-info .menu-desc-wrapper .menu-cart ul li i {
    color: #FFD92E;
}

.menu-desc-info .menu-desc-wrapper .menu-cart p {
    color: #8D786F;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    padding-bottom: 15px;
}

.menu-desc-info .menu-desc-wrapper .menu-cart .add-cart {
    display: flex;
    gap: 30px;
    padding: 15px 0;
}

.menu-desc-info .menu-desc-wrapper .menu-cart .add-remove-cart {
    display: flex;
    align-items: center;
    border-radius: 8px;
    border: 1px solid #F08554;
    background: #FFF3EE;
    gap: 30px;
    padding: 0 10px;
}

.menu-desc-info .menu-desc-wrapper .menu-cart .add-remove-cart button {
    border: none;
    outline: none;
    background-color: transparent;
    color: #F08554;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;

}

.menu-desc-info .menu-desc-wrapper .menu-cart .add-remove-cart p {
    padding-bottom: 0;
    color: #F08554;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}

.menu-desc-info .menu-desc-wrapper .menu-cart .tag-desc {
    margin-top: 16px;
}

.menu-desc-info .menu-desc-wrapper .menu-cart .tag-desc p {
    padding-bottom: 7px;
}

.review-product .review-wrapper {
    padding: 40px;
    background-color: #fff;
    border-radius: 8px;
}


.review-product {
    padding-bottom: 40px;
}

.review-product .review-wrapper h2 {
    color: #000;
    font-family: "Tahoma";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    padding-bottom: 12px;
    line-height: normal;
    text-transform: capitalize;
}

.review-product .review-wrapper p {
    color: #8D786F;
    font-family: "Tahoma";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}

.review-product .review-wrapper p a {
    color: #F08554;
    font-family: "Tahoma";
    text-decoration: none;
}

.related-product .title {
    text-align: center;
}

.related-product {
    padding: 60px 0;
}

.related-product .title p {
    color: #000;
    font-family: 'Ibarra Real Nova', serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}

.related-product .title h2 {
    color: #F08554;
    font-family: "Tahoma";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding-top: 10px;
    text-transform: capitalize;
}

.related-product .related-product-wrapper {
    padding: 50px 0;
}

.related-product .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
}

.related-product .product-grid .product-item {
    padding: 20px;
    background-color: #ffffff;
    text-decoration: none;
    text-align: center;
}

.related-product .product-grid .product-img img {
    height: 207px;
    object-fit: cover;
    width: 100%;
}

.related-product .product-grid .product-item h3 {
    padding-top: 20px;
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.related-product .product-grid .product-item p {
    color: #8D786F;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-bottom: 14px;
}

.related-product .product-grid .product-item span {
    color: #F08554;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.gallery-isotope {
    padding: 75px 0;
    overflow: hidden;
}

.gallery-isotope .filters {
    text-align: center;
    border-bottom: 0.5px solid #8D786F;
}

.gallery-isotope .filters button {
    border: none;
    outline: none;
    background-color: transparent;
    color: #000;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0 24px;
    text-transform: uppercase;
    padding-bottom: 20px;
    position: relative;
}

.gallery-isotope .filters button.active {
    font-weight: 600;
}

.gallery-isotope .filters button.active::after {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    border-radius: 4px 4px 0px 0px;
    background: #F08554;
    content: '';
    position: absolute;
}

#gallery .gallery-item {
    width: calc(33.33% - 30px);
    margin: 0 15px;
    margin-bottom: 30px;
    display: block;
}

#gallery .gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.isotope-wrapper .gallery-wrapper {
    margin-top: 40px;
}

/* inner room detail css */
.room-details {
    padding: 30px 0;
}

.room-details .innerroom-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 20px;
}

.room-details .innerroom-slide {
    width: 50%;

}
.innerroom-wrapper .room-item {
    width: 600px;
    height: 384px   ;
    position: relative;

}
.room-details .innerroom-slide img {
    width: 100%;
    height: 100%;
}

.room-details .innerroom-slide .room-item .room-images-overlay {
    transition: all .5s;
}

.room-details .innerroom-slide .room-item .room-images-overlay {
    position: absolute;
    top: 0;
    z-index: 1;
    background-color: rgba(0, 0, 0, .5);
    opacity: 1;
    height: 100%;
    width: 100%;
}

.room-details .innerroom-slide .room-item:hover .room-images-overlay {
    opacity: 0;
}


.room-selection .room-grid .room-item .room-image {
    position: relative;
}

.room-selection .room-grid .room-item .room-image .room-images-overlay {
    transition: all .5s;
}

.room-selection .room-grid .room-item .room-image .room-images-overlay {
    position: absolute;
    top: 0;
    z-index: 1;
    background-color: rgba(0, 0, 0, .5);
    opacity: 1;
    height: 100%;
    width: 100%;
}

.room-selection .room-grid .room-item .room-image:hover .room-images-overlay {
    opacity: 0;
}

.room-details .innerroom-slide .slick-next {
    right: 10px;
}
.room-details .innerroom-slide .slick-prev {
    z-index: 1;
    left: 10px;
}

.gap {
    gap: 10px;
}
.room-details .innerroom-slide .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
}

.room-details .innerroom-slide .title h1 {
    color: #000;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.room-details .innerroom-slide .title p {
    color: #000;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.room-details .innerroom-slide .title p span {
    color: #F08554;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}


/* blog section  */

.btn--sm {
    border-radius: 4px;
    background: #ffffff;
    display: inline-flex;
    padding: 14px 18px;
    justify-content: center;
    align-items: center;
    outline: none;
    border: 0.5px solid #F08554;
    color: #F08554;
    text-decoration: none;
    min-width: fit-content;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    position: relative;
    z-index: 2;
}


.blog-menu {
    padding: 80px 0 !important;
}

.blog-menu .container .content .bg-blog .row .col-lg-4 a{
    text-decoration: none;
    color: #000;
}

.overlay {
    z-index: -1;
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(0, 0, 0, 0.5);
    transition: all ease-in-out .2s;
    -webkit-transition: all ease-in-out .2s;
    -moz-transition: all ease-in-out .2s;
    -ms-transition: all ease-in-out .2s;
    -o-transition: all ease-in-out .2s;
}

.overlay-hover:hover .overlay {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 112%;
    height: 110%;
    border: 2px solid #F08554;
    z-index: 1;
}
.scroll-me{
    position: absolute;
    right: -100px;
    transform: rotate(90deg); top: 50%;
}

.feature-btn {
    padding: 2px 20px;
    background-color: white;
    border: 1px solid #F08554;
    border-radius: 20px;
    color: #F08554;
    text-decoration: none;
}

.line::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 2px;
    background-color: #F08554;
    left: 30%;
    top: 60%;
}

.line::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 2px;
    background-color: #F08554;
    right: 30%;
    top: 60%;
}
.rating i{
    color: #FF8D58 !important;
}

.blog-slider, .about {
    padding: 0 55px;
}
.blog-slider .slick-slide {
    margin-right: 25px;
}
.w-300 {
    width: 324px !important;
}
.blog-slider .slick-arrow::before {
    content: '';
    background-image: url(../assets/icons/right-arrow.svg);
    width: 40px;
    height: 40px;
    display: none;
}

.blog-slider .slick-arrow.slick-next {
    content: '';
    background-image: url(../assets/icons/right-arrow.svg);
    width: 40px;
    height: 40px;
    transform: rotate(180deg);
    position: absolute;
    top:  -50px;
    right: 0;
}

.explore{
    position: relative;
}
.explore::after {
    content: " ";
    background-color:#FF8D58  ;
    width: 120px;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 5%;
}

.btn--sm:hover {
    background-color: #FF8D58;
    border: none;
    color: white;
    transition: all ease-in-out 0.5s;
}

.blog_all_img {
    height: 172px;
    width: 100%;
}
.blog_all_detail_img {
    height: 172px;
    width: 312px;
}

.blog_multiple_img {
    width: 320px;
    height: 200px;
}
.blog_all_detail_img img,
.blog_multiple_img img,
.blog_all_img img {
    width: 100%;
    height: 100%;;
    object-fit: cover;
}


.blog_more_img {
    height: 636px;
    width: 100%;
}
.blog_more_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* contact here  */

.contact-form input, .contact-form textarea {
    border: 1px solid #FF8D58;
    background-color: transparent;

}


.contact-form textarea:focus,
.contact-form input:focus {
    outline: none !important;
}

input {
    background-color: transparent;
    border: none;
}

.address i, .address img{
    color: #FF8D58;
    padding: 10px;
}
.text-msg {
    line-height: 1.5;
}
.text-msg h3{
    position: relative;
    display: inline;
}
.text-msg h3:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 25px;
    width: 120px;
    height: 2px;
    background-color: #FF8D58;
}


.touch h4{
    position: relative;
    display: inline;
}
.touch h4:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 25px;
    width: 100px;
    height: 2px;
    background-color: #FF8D58;
}

/* sustainability from here  */
.flex {
    display: grid;
    grid-template-columns: 2fr 2fr;
}
.flex li {
    padding: 10px 0;
    font-style: normal;
    color: #8D786F;
}
.flex li a {
    text-decoration: none;
    color: #8D786F;
    font-weight: 700;
}
.flex li:hover a {
    color: #FF8D58;
}

.legislation-wrapper {
    display: flex;
    flex-direction: row-reverse;
    padding: 20px 0 40px 0;
    position: relative;
}

.legislation-wrapper {
    display: flex;
    padding: 20px 0 40px 0;
    position: relative;
}



.legislation-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    background: #F08554;
    height: 3px;
}


.legislation-wrapper .our-story-img {
    width: 55%;
}

.legislation-wrapper .our-story-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.legislation-wrapper .our-story-content {
    width: 45%;
}

.legislation-wrapper .our-story-content h1 {
    color: #000;
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    font-variant: small-caps;
    letter-spacing: 3.6px;
    line-height: 1.11;
    padding: 0 0 20px 0;
    position: relative;
}



.legislation-wrapper .our-story-content h1::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: calc(100% + 111px);
    background: #F08554;
    height: 3px;
}


.legislation-wrapper .our-story-content h1::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: calc(100% + 111px);
    background: #F08554;
    height: 3px;
}

.legislation-wrapper .our-story-title {
    position: relative;
}

.legislation-wrapper .our-story-title p {
    position: absolute;
    top: calc(50% - 20px);
    right: -92px;
    left: auto !important;
    transform: rotate(-90deg);
    color: #8D786F;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
}
.btn-grey {
    border-radius: 20px;
    background: #8D786F;
    display: inline-flex;
    padding: 9px;
    justify-content: center;
    align-items: center;
    outline: none;
    border: 0.5px solid #8D786F;
    color: #ffffff;
    text-decoration: none;
    min-width: fit-content;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    position: relative;
    z-index: 2;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}
/* p{
    color: #8D786F;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
} */


h1.horse-riding-title {
    bottom:0;
    left: 0;
    color: white;
    padding: 50px;
}
.border-top-2px
{
    border-top: 2px solid #8D786F;
}
.service-about h2{
    margin: 15px 0;
    font-weight: bold;
}
.service-about p {
    padding-left: 10px;
    color: #8D786F;
    text-align: start;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    font-size: 16px;;
}

.overview .title::before {
    position: absolute;
    height: 1px;
    width: 100px;
    background-color: #D67548;
    content: "";
    bottom: 0;
    left: 0;
}

.overview-items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}


.overview-items h4 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}
.overview-items p {
    padding: 0;
    font-size: 16px;
}

.reservation-form input, .reservation-form textarea {
    background-color: #FFF3EE;
    outline: none;
    border: 1px solid rgba(0, 0, 0, .5);
}
.reservation-form label {
    margin-bottom: 5px;
}

.explore-grid a {
    color: black;
    text-decoration: none;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.grid .item h2 {
    margin-bottom: 1rem;
    font-size: 28px;
}
.grid .item li{
    color: #8D786F;
    line-height: 26px;
}
.room-special-feature label {
    font-weight: 500;
    font-size: 14px;
}
.related-product-wrapper .menu-slider .product-img{
    width: 400px;
    height: 300px;
}
.related-product-wrapper .menu-slider .product-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-product-wrapper .menu-slider a{
    text-decoration: none;
    padding: 10px;
}

.related-product-wrapper .menu-slider h3, .related-product-wrapper .menu-slider p,.related-product-wrapper .menu-slider span {
    color: #000;
    display: flex;
    justify-content: center;
}

.room-special-feature span {
    color: #8D786F;
    font-size: 14px;
}
.room-amenities {
    padding: 0;
    margin: 0;
}
.room-amenities h2 {
    font-size: 23px;
    font-weight: 600;
    color: #000;
    margin: 2px 0;
}
.room-amenities p {
    font-size: 14px;
    color: #8D786F;
}
.room-explore-more .room-item {
    overflow: hidden;

}
.room-explore-more .room-item img {
    height: 281px;
    object-fit: cover;
    width: 100%;
    transition: transform .5s ease;
}



.room-explore-more .room-item:hover img {
    transform: scale(1.1);
}

.room-explore-more .room-item {
    position: relative;
}
.room-explore-more .room-item .room-images-overlay {
    transition: all .5s;
}

.room-explore-more .room-item .room-images-overlay {
    position: absolute;
    top: 0;
    z-index: 1;
    /* background-color: rgba(0, 0, 0, .5); */
    opacity: 1;
    height: 100%;
    width: 100%;
}

.room-explore-more .room-item:hover .room-images-overlay {
    opacity: 0;
}

.room-explore-more .item  {
    border: 1px solid #767576;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}
.site-mobile-menu-open {
    position: absolute;
    right: 10px;
    top: 56px;
    font-weight: bold;
    font-size: 14px;
    background-color: var(--primary-color);
    border-radius: 4px;
    padding: 4px;
    color: var(--bg-color);
    cursor: pointer;
    z-index: 1;
}


/* login style  */
.login_page {
    margin: 60px 0;
    border-radius: 6px;
}
.login_page .login-form {
    background-color: transparent;
    border: 4px solid #aaa;
    padding: 20px;
}
.login_page .login-form .form-group input {
    background-color: transparent;
    outline: none !important;
    box-shadow: none;
    border: none;
    border: 1px solid #cfcfcf;
    font-size: 18px;
}
.form-control:focus {
    background-color: transparent !important;
    box-shadow: none;
    border: 1px solid #D67548;
    outline: none;
}
.form-checkbox{
    height: 24px;
}

.login_page .login-line::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 2px;
    background-color: #F08554;
    right: 50px;
    top: 60%;
}

.login_page .login-line::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 2px;
    background-color: #F08554;
    left: 50px;
    top: 60%;
}
.login_page form {
    border-radius: 4px;
}
/* login page end  */


/* register page start */
.register_page .login-line::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 2px;
    background-color: #F08554;
    right: 160px;
    top: 60%;
}

.register_page .login-line::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 2px;
    background-color: #F08554;
    left: 160px;
    top: 60%;
}

.collapse {
    display: none;
}

/* single room details   */

.actual_price {
    color: #F08554;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}


.top-header__wrapper a {
    cursor: pointer;
    color: #000;
}

/* cart list  details  */
.box-shadow {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.6);
    padding: 30px;
}
.cart_list .card {
    background-color: transparent;
}
.cart_list .table {
    margin-bottom: 0;
}
.cart_list .table tr td, .cart_list .table tr th{
    background-color: transparent;
}
.cart_list .table input {

display: inline;
width: 20px;
height: 26px;
text-align: center;
border-radius: 6px;
border: 1px solid #D67548;
}



.checkout_form .form-control {
    background-color: transparent;
    border: 1px solid #D67548;
}

.checkout_form .table {
    border-radius: 4px;
}

.checkout_form .table tr th, .checkout_form .table tr td  {
    background-color: transparent;
    border: 1px solid #D67548;
}
.checkout_form .list-group-item {
    background-color: transparent;
    font-weight: 700;
    border: 1px solid #D67548;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.login-hide {
    display: none !important;
}

.service_img {
    height: 516px;
    border-radius: 8px;
    overflow: hidden;
}
.service_img img, .service_multiple-img img {
    transition: transform .5s ease;
}
.service_img:hover img, .service_multiple-img:hover img {
    transform: scale(1.1);
}
.service_multiple-img {
    height: 144px;
    overflow: hidden;
    border-radius: 8px;
}
.service_img img, .service_multiple-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}


.banner-right {
    width: 120px;
    position: absolute;
    top: 30%;
    right: 0%;
}
.banner-left-2 {
    width: 120px;
    position: absolute;
    top: 45%;
    left: 0%;
    transform: translate(0%, -40%);

}

.banner-left-1 {
    width: 120px;
    position: absolute;
    left: 0%;
    top: 0%;

}

.banner-slider-img img {
    width: 100%;
}

.service-photo {
    height: 530px;
    border-radius: 8px;
    overflow: hidden;
}

.servicemultipleimage {
    height: 192px;
    width: 360px;
    border-radius: 8px;
    overflow: hidden;

}

.service-photo img, .servicemultipleimage img {
    transition: transform .5s ease;
}
.service-photo:hover img, .servicemultipleimage:hover img {
    transform: scale(1.1);
}

.service-photo img, .servicemultipleimage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.overview-img {
    width: 60px;
    height: 60px;
}
.overview-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);


}
.gallery .gallery-img {
    overflow: hidden;
}
.gallery .gallery-img img {
    transition: transform .5s ease;
}
.gallery .gallery-img:hover img {
    transform: scale(1.1);
}
.search-overlay i {
    font-size: 28px;
    transition: all ease-in-out .3s;
    color: #fff;
    display: none;
}
.gallery-content:hover .search-overlay i {
    display: block;
    transition: all ease-in-out .3s;
}
.explore-sliders .slick-slide {
    margin: 0 10px;
}


.room-explore-more .slick-arrow::before {
    content: '';
    background-image: url(../assets/icons/right-arrow.svg);
    width: 40px;
    height: 40px;
    display: block;
}
.room-explore-more .slick-arrow.slick-next {
    transform: rotate(180deg);
}

.eye_icon {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    right: 0;
}

.nectar-digit-brand {
    color: white;
    transition: font-size .3s ease;
}
.nectar-digit-brand:hover {
    text-decoration: none;
    font-size: 20px;
}

.food-section p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.2em !important;
    height: 2.4em; /* 2 * line-height */
    border-bottom: none !important;
}

.room-images .room-item {
    height: 80px;
    margin-top: 10px;
}
.room-images .room-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.room-images .slick-slide {
    margin-right: 15px;
}
.room-images .slick-slide:first-child{
    margin-right: 0;
}
/*
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
} */

.login-hide.nav-link, .sign__button {
    color: black;
    font-weight: 600;
    text-decoration: none;
}
.login-hide.nav-link:hover, .sign__button:hover {
    color: #FF7231;
}

.sustainability {
    background-color: #C5683C;
    color: white;
    padding: 7rem 0;
}
.sustainability_content-banner {
    /* margin-top: 4rem; */
    margin-right: 1rem;
}
.sustainability .sustainability-banner h1 {
    position: relative;
    font-size: 70px;
    line-height: 108px;
    z-index: 1;
    text-transform: uppercase;

}

.sustainability .sustainability-banner p {
    line-height: 28px;
    font-size: 18px;
}
.sustainability .sustainability-banner .sustain-item {
    height: 600px;
}
.sustainability .sustainability-banner .sustain-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.sustainability-title h1 {
    width: 62%;
    font-size: 62px;
}

.contact-info li {
    list-style: none;
    margin-bottom: 17px;
}
.contact-info li i {
    color: #fff;
}
.contact-info li a {
    text-decoration: none;
    color: #FFF;
    font-family: Tahoma;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.32px;
    /* text-transform: capitalize; */
}
.chatbox {
    width: 350px;
    position: fixed;
    z-index: 999999;
    bottom: 95px;
    right: 20px;
    background-color: #fff;
    border-radius: 8px;
}
.chatbox .header {
    display: flex;
    align-items: center;
    background-color: #FF7231;
    color: white;
    display: flex;
    padding: 20px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.chatbox .header .name {
    margin-left: -14px;
}
.chatbox .header .name h4 {
    font-size: 18px;
    font-weight: 600;
    font-family: sans-serif;
}
.chatbox .header .name p {
    font-size: 14px;
    margin-top: 10px;
}
.chatbox .header .logo-image {
    height: 60px;
    margin-right: 12px;
}
.chatbox .header .logo-image img {
    width: 100%;
    height: 100%;
}

.text-wrapper .box-shadow {
    padding: 12px 16px;
    background: #fff;
    box-shadow: 0 0 8px rgba(0,0,0,.12);
    border-radius: 16px;
    word-wrap: break-word;
}
.text-wrapper .box-shadow h4 {
    color: grey;
    font-size: 14px;
    margin-bottom: 10px;
    font-family: sans-serif;
}

.text-wrapper .box-shadow p {
    font-size: 16px;
    color: #1a1a1a;
    white-space: pre-wrap;
    word-wrap: break-word;
    max-width: 270px;
}
.button-container{
    background: #fff;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    padding: 20px 20px;
    display: flex;
    justify-content: center;
}

.widget-btn {

    box-sizing: border-box;
    display: inline-flex;
    background: #16be45;
    padding: 6px 55px;
    box-shadow: 0 0 8px 1px rgba(0,0,0,.12);
    color: #fff;
    align-items: center;
    cursor: pointer;
    border-radius: 40px;
    text-decoration: none;
}
.widget-btn img {
    width: 25px;
    height: 25px;
}

.widget-btn span {

    margin-left: 8px !important;
    font-style: normal;
    font-size: 16px;
    line-height: 20px;
    font-family: sans-serif;

}

.close-btn {
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
}
.close-btn a {
    color: #fff;
}
.close-btn a i {
    font-size: 18px;
}

.whatsapp-image {
    position: fixed;
    z-index: 999999;
    bottom: 40px;
    right: 20px;
    width: 65px;
    height: 65px;
}

.whatsapp-image img {
    width: 100%;
    height: 100%;
}

.availabililty_items .room-image {
    width: 270px;
}
.availabililty_items img {
    width: 100%;
}

.availabililty_items .room-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}
.availabililty-items a {
    display: inline-block;
    color: #2a2a2a;
    text-decoration: none;
    font-weight: 600;
    margin-top: 0;
    line-height: 30px;
}
.availabililty-items a h3 {
    font-size: 30px;
    font-family: 'Tahoma';
}

.availabililty-items ul  {
    font-size: 18px;
    font-family: 'Tahoma';
}
.availabililty-items ul li {
    list-style-type: none;
    margin: 30px 0;
}

.availabililty-items ul li label {

    width: auto;
    font-weight: 400;
    color: #2a2a2a;
    margin-bottom: 0;
    white-space: nowrap;

}

.availabililty-items ul li .price span {
    color: #FF7231;
}

.quantity select {
    padding: 12px;
    border: 1px solid #FF7231;
    margin-left: 20px;
    margin-top: -12px;
}
.availabililty-items .btn-main a {
    color: white;
}
.availabililty-items .btn-main:hover a {
    color: #000;
}

.nav-price-breakdown {
    position: relative;
}
.breakdown-price {
    position: absolute;
    top: 100%;
    z-index: 11;
}
.nav-price-breakdown td {
    padding: 18px;
}

.package {
    margin-left: 15px;
}
.package-title {
    padding: 0;
    text-transform: none;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
}

.package p {
    margin-bottom: 10px;;
}

.package .price-per {
    font-style: italic;
}
.package .price-per .amount {
    color: #FF7231;
    font-style: normal;
    font-weight: 600;
}


.optional-package h3::after {
    content: '\f103';
    font: 400 15px / 1 FontAwesome;
    font-weight: 900;
    padding: 5px 0;
    margin-left: 15px;
}

.optional-package h3 {
    display: block;
    color: #333 !important;
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    text-transform: none;
    padding: 0;
    margin-bottom: 15px;
}

.availabilitty-section .title h2{
    font-size: 40px;
    color: #2a2a2a;
    margin: 0 0 15px;
    line-height: 40px;
}
.booking h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2a2a2a;
    line-height: 30px;
    margin: 0;
    margin-top: 23px;
}
.booking label {
    color: #2a2a2a;
    line-height: 30px;
}
.booking-line {
    text-align: center;
}
.booking-line h3 {
    position: relative;
    display: inline;
}
.booking-line h3::after
{
    content: '';
    position: absolute;
    bottom: -6px;
    left: 6px;
    width: 90px;
    height: 2px;
    background-color: rgb(217, 216, 218);
}

.nav-pills .nav-link {
    color: #000;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    background-color: var(--primary-color);
}

.sticky-right {
    position: sticky;
    top: 130px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .09);
}


@keyframes slideUp {
    from {
      opacity: 0;
      transform: translate(-50%, 100%);
    }
    to {
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }

  .slide-up {
    opacity: 0;
  }

  .slide-up.animate {
    opacity: 1;
    animation: slideUp 1s ease-in-out;
  }
