@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

* {
	padding: 0;
	margin: 0;
	text-decoration: none;
	outline: none;
	box-sizing: border-box;
}
:root {
    --bs-jost: "Jost", sans-serif;
    --bs-cormorant: "Cormorant Garamond", serif;
    --bs-white: #fff;
    --bs-gradient1: #DD7761;
    --bs-gradient2: #9F4F3D;
    --bs-darkgrey: #414141;
    --bs-lightgrey: #F9F9F9;
    --bs-maroon:  #B95C47;  
    --bs-h1: 65px;
    --bs-h2: 55px;
    --bs-h3: 28px;
    --bs-fs30: 24px;
    --bs-fs24: 20px;
    --bs-fs22: 19px;
    --bs-fs20: 17px;
    --bs-lineheight: 1.15;
}
body{
 	font-family: var(--bs-jost);
    font-weight: 400;
    color: var(--bs-darkgrey);
	font-size: var(--bs-fs24);
    line-height: 1.5;
}
h1, h2, h3{
    color: inherit;
}
h1, h2 {
    font-family: var(--bs-cormorant);
}
h1 {
    font-size: var(--bs-h1);
    line-height: 1.10;
    font-weight: 700;
}
h2 {
	font-size: var(--bs-h2);
    font-weight: 700;
}
h3{
    font-family: var(--bs-jost);
    font-size: var(--bs-h3);
    font-weight: 600;
}
p{
	font-size: inherit;
    color: inherit;
    font-weight: 300;
}
a{
	text-decoration: none;
	color: inherit;
}
img {
    max-width: 100%;
}
del {
    text-decoration: line-through;
}
.container-xxl {
    max-width: 2000px;
    --bs-gutter-x: 160px;
}
.py_3{
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.mt_3 {
    margin-top: 4rem;
}
.mb_3 {
    margin-bottom: 4rem;
}
.wi_full{
    width: 100%;
    display: inline-block;
}
.btn_block{
	display: flex;
	flex-wrap: wrap;
	margin-top: 1.25rem;
}
.button {
	min-width: 170px;
    width: auto;
    display: inline-block;
    font-family: var(--bs-jost);
    font-weight: 500;
    font-size: var(--bs-fs24);
    color: inherit;
    border-radius: 60px;
    padding: 12px 35px;
    line-height: normal;
    text-align: center;
    box-shadow: none;
    border: inherit;
    background: transparent;
    text-decoration: none !important;
    outline: none !important;
    transition: .5s all;
}
.fill_btn, .fill_btn:hover {
    color: #fff;
    background: linear-gradient(to bottom, var(--bs-gradient1), var(--bs-gradient2));
    border: 0;
}
.bg-light-grey {
    background-color: var(--bs-lightgrey);
}
.text-maroon {
    color: var(--bs-maroon);
}
.custom_list {
    ul {
        list-style: none;
        padding-left: 0;
        li {
            position: relative;
            padding-left: 30px;
            font-weight: 300;
            margin: 7px 0;
            strong {
                color: var(--bs-orange);
                font-weight: 500;
            }
            &:before {
                content: '';
                position: absolute;
                left: 0;
                top: 3px;
                width: 20px;
                height: 20px;
                background: url(../images/li-tick.svg) no-repeat center;
                background-size: contain;
            }
        }
    }
}

form {
    .form-group {
        margin-bottom: 1.5rem;
        label {
            font-weight: 400;
            margin-bottom: 5px;
            font-size: var(--bs-fs22);
        }
    }
    .form-control {
        width: 100%;
        height: 50px;
        border-radius: 5px;
        outline: none !important;
        box-shadow: none !important;
        border: 1px solid #E4E4E4 !important;
        padding: 7px 18px;
        background: #FAFAFA;
        color: #000000;
        font-weight: 300;
        font-size: var(--bs-fs22);
    }
    textarea {
    	height: auto !important;
    }
}


.top_navbar {
    background-color: var(--bs-darkgrey);
    color: #fff;
    font-size: 80%;
    .container-xxl {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .top_nav_left, .top_nav_right {
        padding: 10px 0;
    }
    .top_nav_right {
        display: inline-flex;
        align-items: center;
        gap: 1.5rem;
        & > a {
            display: flex;
            align-items: center;
            img {
                width: 20px;
                height: 20px;
                object-fit: contain;
                margin-right: 5px;
            }
        }
    }
}
header {   
    width: 100%; 
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    .navbar {
        border: 0;
        width: 100%;
        padding: .75rem 0;
        background: #fff;
        box-shadow: 0 1px 6px rgb(0 0 0 / 8%), 0 1px 7px rgb(0 0 0 / 5%);
        transition: 0.4s; 
        &.sticky {
            z-index: 999;
            position: fixed;
            top: 0;
            left: 0;
        }
    }
    .navbar-brand{
        max-width: 100%;
        padding: 0;
        transition: .4s all;
        img {
            width: 170px;
            transition: .4s all;
        }
    }
    .navbar-nav {
    li {
        margin-left: 10px;
        margin-right: 10px;
        a.nav-link {
            padding: 4px 0 !important;
            color: var(--bs-darkgrey);
            font-size: var(--bs-fs24);
            position: relative;
            text-transform: uppercase;
            &:after {
                content: '';
                width: 0;
                height: 1px;
                background: var(--bs-maroon);
                position: absolute;
                left: 0;
                bottom: 0;
            }
            &.active:after {
                width: 100%;
            }
            &.active {
                color: var(--bs-maroon);
            }
        }
    }
    li.book_now_btn {
        a.nav-link {
            border: 0;
            padding: 8px 25px !important;
            color: #fff;
            font-weight: 500;
            background: linear-gradient(to bottom, var(--bs-gradient1), var(--bs-gradient2));
            border-radius: 60px;
            text-transform: capitalize;
            &:after {
                display: none !important;
            }
        }
    }
}
}

.main_banner {
    /* padding: 3rem 0; */
    .banner_content {
        padding: 2rem 0 4rem;
    }
    .subtitle {
        background-color: #F1DEDA;
        padding: 6px 15px 6px 8px;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        width: max-content;
        max-width: 100%;
        border-radius: 50px;
        letter-spacing: 3px;
        font-size: var(--bs-fs20);
        font-weight: 300;
        margin-bottom: 1.5rem;
        img {
            width: 40px;
            height: 40px;
            margin-right: 10px;
            object-fit: contain;
            box-shadow: 0 2px 10px #00000033;
            border-radius: 50%;
        }
    }
	.img_pos {
		overflow: hidden;
		.owl-carousel, .owl-stage-outer, .owl-stage, .owl-stage * {
			height: 100%;
		}
		.owl-dots {
			position: absolute;
			bottom: 0;
			left: 50%;
			transform: translateX(-50%);
		} 
    }
}

.inner_banner {
    height: 450px;
    display: flex;
    align-items: center;
    .banner_content {
        border-left: 10px solid var(--bs-maroon);
        background: rgb(255 255 255 / 30%);
        width: max-content;
        max-width: 100%;
        padding: 17px 35px;
        backdrop-filter: blur(10px);
        h1 {
            margin-bottom: 0;
        }
    }
}

.sec_title.text-center {
    max-width: 900px;
    margin: 0 auto 1rem;
}

.why_list {
    .col--item {
        margin-top: 1.5rem;
        .item--inner {
            width: 100%;
            height: 100%;
            background-color: #fff;
            border-radius: 30px;
            padding: 2rem;
            transition: .3s all;
            img.item--icon {
                height: 80px;
                height: 80px;
                object-fit: contain;
            }
            h3 {
                font-family: var(--bs-cormorant);
                margin: 1.5rem auto 1rem;
                max-width: 80%;
            }
            p {
                margin-bottom: 0;
            }
            &:hover {
                box-shadow: 0 2px 20px rgb(0 0 0 / 8%);
            }
        }
    }
}

.room_carousel {
    .item {
        margin-left: 15px;
        display: inline-block;
        width: calc(100% - 15px);
        &:hover {
            h3 {
                color: var(--bs-maroon);
            }
        }
        img.item--image {
            height: 250px;
            object-fit: cover;
            width: calc(100% - 40px) !important;
            border-radius: 20px;
            margin-bottom: -100px;
            margin-left: 20px;
            position: relative;
            z-index: 1;
        }
        .item--text {
            background: #fff;
            box-shadow: 0 2px 20px rgb(0 0 0 / 8%);
            padding: 1rem;
            padding-bottom: 2.5rem;
            padding-top: 120px;
            border-radius: 20px;
            position: relative;
        }
        h3 {
            font-family: var(--bs-cormorant);
            margin: 0;
            font-weight: 600;
            font-size: var(--bs-fs30);
        }
        p {
            font-size: var(--bs-fs20);
        }
        .rent_pric {
            color: #fff;
            font-size: var(--bs-fs20);
            font-weight: 600;
            padding: 8px 15px;
            background: linear-gradient(to bottom, var(--bs-gradient1), var(--bs-gradient2));
            border-radius: 20px 0 20px 0;
            position: absolute;
            bottom: 0;
            right: 0;
        }
    }
}

.read_more {
    .btn_style {
        position: relative;
        background: none;
        border: none;
        color: var(--bs-maroon);
        font-size: var(--bs-fs24);
        font-weight: 500;
        padding: 10px 25px;
        display: inline-block;
        &:before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            border-radius: 50px;
            background-color: var(--bs-maroon);
            overflow: hidden;
            transition: .4s all;
            opacity: 20%;
            z-index: 0;
        }
        &:hover:before {
            width: 100%;
        }
    }
}

.custom_carousel_btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    .item_counter {
        display: flex;
        align-items: center;
        font-weight: 300;
        span {
            width: 100px;
            height: 1px;
            background: #000000;
            display: inline-block;
            margin-left: 1rem;
            margin-right: 1rem;
        }
    }
    .prev-slidee {
        margin-left: auto;
        margin-right: 1rem;
    }
    button {
        border: 0 !important;
        background: transparent !important;
    }
}

.offer--list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    /* padding: 3rem 0;
    margin-top: 3rem; */
    .list-item-col {
        width: 30%;
    }
    .col--item {
        background: #fff;
        box-shadow: 0 2px 20px rgb(0 0 0 / 8%);
        padding: 1rem;
        position: relative;
        margin: 2rem 0;
        display: flex;
        align-items: center;
        border-radius: 20px;
        transition: .3s all;
        img {
            width: 60px;
            height: 60px;
            margin-right: 1rem;
            object-fit: contain;
        }
        h3 {
            font-family: var(--bs-cormorant);
            font-size: var(--bs-fs30);
        }
        &:hover {
            background: var(--bs-maroon);
            color: #fff;
            img {
                filter: brightness(0) invert(1);
            }
        }
    }
    .col-image-holder {
        width: 30%;
        height: 100%;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 0;
        border-radius: 300px;
        overflow: hidden;
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
}

.owl-carousel .owl-dots {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    button.owl-dot span {
        width: 30px;
        height: 4px;
        display: inline-block;
        border-radius: 0;
        margin: 4px;
        background: var(--bs-maroon);
        opacity: 50%;
    }
    button.owl-dot.active span {
        opacity: 1;
        width: 50px;
    }
}

.room_suits, .testimonial_sec {
    overflow: hidden;
    .room_carousel, .testimonial_carousel {
        clip-path: inset(-100vw -100vw -100vw 0);
        .owl-stage-outer {
            overflow: unset !important;
        }
    }
}

.video_container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    width: 100%;
    height: 400px;
    video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .video_overlay {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgb(0 0 0 / 25%);
        padding: 2rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        h2 {
            max-width: 650px;
        }
        button.full-screen {
            background: transparent !important;
            border: 0 !important;
            width: 40px;
            position: absolute;
            bottom: 2rem;
            right: 2rem;
        }
    }
}

.testimonial_carousel {
    .item {
        position: relative;
        border: 10px solid;
        border-image-slice: 1;
        border-width: 1px;
        padding: 1.5rem;
        border-radius: 20px;
        margin-left: 2px;        
        border-image-source: linear-gradient(-30deg, #e5e5e5, #b2ff5900);
        &:before {
            content: '';
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            width: 50px;
            height: 50px;
            background: url(../images/quote.svg) no-repeat center;
            background-size: contain;
        }
        img.client-img {
            width: 100px !important;
        }
        h3 {
            font-weight: 500;
            font-size: var(--bs-fs24);
            margin: 1rem 0 10px;
        }
        p {
            font-size: var(--bs-fs20);
        }
        img.star_img {
            width: 120px !important;
        }
    }
}

.gallery_carousel {
    a.fancybox {
        img {
            border-radius: 20px;
        }
    }
}

.blog_carousel {
    .item {
        margin: 15px;
        &:hover {
            h3 {
                color: var(--bs-maroon);
            }
            .post--date {
                background: var(--bs-maroon);
                color: #fff;
            }
        }
        .item--image {
            height: 320px;
            object-fit: cover;
            width: calc(100% - 40px) !important;
            border-radius: 20px;
            margin-bottom: -100px;
            margin-left: 20px;
            position: relative;
            overflow: hidden;
            z-index: 1;
            display: inline-block;
            img {
                height: 100%;
                object-fit: cover;
            }
        }
        .item--text {
            background: #fff;
            box-shadow: 0 2px 20px rgb(0 0 0 / 8%);
            padding: 1rem;
            padding-top: 120px;
            border-radius: 20px;
            position: relative;
        }
        h3 {
            margin-bottom: 10px;
            font-weight: 500;
            font-size: var(--bs-fs30);
        }
        p {
            font-size: var(--bs-fs20);
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;  
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .post--date {
            position: absolute;
            top: 1rem;
            right: 0;
            background: #fff;
            padding: 5px 17px;
            border-radius: 50px 0 0 50px;
            color: var(--bs-maroon);
            font-weight: 400;
            font-size: var(--bs-fs22);
        }
    }
}

.room_carousel_list {
    .item {
        margin-bottom: 2.5rem;
        .item_inner {
            height: 100%;
            width: 100%;
            display: inline-block;
            &:hover {
                h3 {
                    color: var(--bs-maroon);
                }
            }
        }
        .item--image {
            height: 250px;
            object-fit: cover;
            width: calc(100% - 40px) !important;
            border-radius: 20px;
            margin-bottom: -100px;
            margin-left: 20px;
            position: relative;
            z-index: 1;
        }
        .item--text {
            background: #fff;
            box-shadow: 0 2px 20px rgb(0 0 0 / 8%);
            padding: 1rem;
            padding-bottom: 2.5rem;
            padding-top: 120px;
            border-radius: 20px;
            position: relative; 
        }
        h3 {
            font-family: var(--bs-cormorant);
            margin: 0;
            font-weight: 600;
            font-size: var(--bs-fs30);
        }
        .rent_pric {
            color: #fff;
            font-size: var(--bs-fs20);
            font-weight: 600;
            padding: 8px 15px;
            background: linear-gradient(to bottom, var(--bs-gradient1), var(--bs-gradient2));
            border-radius: 20px 0 20px 0;
            position: absolute;
            bottom: 0;
            right: 0;
        }
    }
}

.testimonial_list_row {
    .item--inner {
        width: 100%;
        height: 100%;
        position: relative;
        border: 10px solid;
        border-image-slice: 1;
        border-width: 1px;
        padding: 1.5rem;
        border-radius: 20px;
        margin-left: 2px;        
        border-image-source: linear-gradient(-30deg, #e5e5e5, #b2ff5900);
        &:before {
            content: '';
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            width: 50px;
            height: 50px;
            background: url(../images/quote.svg) no-repeat center;
            background-size: contain;
        }
        img.client-img {
            width: 100px !important;
        }
        h3 {
            font-weight: 500;
            font-size: var(--bs-fs24);
            margin: 1rem 0 10px;
        }
        p {
            font-size: var(--bs-fs20);
        }
        img.star_img {
            width: 120px !important;
        }
    }
}

.blog_carousel_row {
    .item {
        margin-bottom: 2rem;
    }
    .item--inner {
        width: 100%;
        height: 100%;
        &:hover {
            h3 {
                color: var(--bs-maroon);
            }
            .post--date {
                background: var(--bs-maroon);
                color: #fff;
            }
        }
        .item--image {
            height: 320px;
            object-fit: cover;
            width: calc(100% - 40px) !important;
            border-radius: 20px;
            margin-bottom: -100px;
            margin-left: 20px;
            position: relative;
            overflow: hidden;
            z-index: 1;
            display: inline-block;
            img {
                height: 100%;
                object-fit: cover;
            }
        }
        .item--text {
            background: #fff;
            box-shadow: 0 2px 20px rgb(0 0 0 / 8%);
            padding: 1rem;
            padding-top: 120px;
            border-radius: 20px;
            position: relative;
        }
        h3 {
            margin-bottom: 10px;
            font-weight: 500;
            font-size: var(--bs-fs30);
        }
        p {
            font-size: var(--bs-fs20);
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;  
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .post--date {
            position: absolute;
            top: 1rem;
            right: 0;
            background: #fff;
            padding: 5px 17px;
            border-radius: 50px 0 0 50px;
            color: var(--bs-maroon);
            font-weight: 400;
            font-size: var(--bs-fs22);
        }
    }
}

.contact_detail_row {
    .item-inner {
        width: 100%;
        height: 100%;
        background-color: var(--bs-lightgrey);
        padding: 1.5rem;
        border-radius: 15px;
        font-size: var(--bs-fs22);
        .itm_icon {
            margin-bottom: 1rem;
        }
        p {
            margin-bottom: 0;
        }
    }
}

.contact_form_row {
    .form_shadow {
        background: #fff;
        box-shadow: 0 2px 20px rgb(0 0 0 / 8%);
        padding: 2rem;
        border-radius: 20px;
    }
    .map_wrapper {
        border-radius: 20px;
        overflow: hidden;
    }
}

ul.nav.nav-tabs {
    justify-content: center;
    border: 0;
    background: #fff;
    box-shadow: 0 2px 20px rgb(0 0 0 / 8%);
    padding: 8px;
    margin-bottom: 2rem;
    border-radius: 60px;
    width: max-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    a.nav-link {
        border-radius: 60px !important;
        border: 0 !important;
        padding: 12px 40px;
        font-weight: 600;
        color: var(--bs-darkgrey);
        &.active {
            background: linear-gradient(to bottom, var(--bs-gradient1), var(--bs-gradient2));
            color: #fff;
        }
    }
}

.gallery_carousel_list {
    img.w-100, .gal_video_wrap {
        height: 350px;
        object-fit: cover;
        border-radius: 20px;
        overflow: hidden;
    }
    .gal_video_wrap {
        position: relative;
        button {
            width: 60px;
            height: 60px;
            padding: 0;
            border: 0;
            background: transparent;
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
        }
    }
}

.thankyou_error {
    padding-top: 7rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
    .sec__img {
        padding: 1rem;
        max-width: 400px;
        margin: 2rem auto;
    }
}
.gallery-sec .btn_block {
	text-align: center;
    display: block;
}

/* ------------------- footer style -------------- */
footer {
    background: var(--bs-lightgrey);
    font-size: var(--bs-fs22);
    margin-top: 4rem;
    a:hover {
        color: var(--bs-maroon);
    }
    img.ftr_logo {
        width: 170px;
        margin-bottom: 1.5rem;
    }
    ul {
        padding-left: 0;
    }
    ul li {
        list-style: none;
        font-size: var(--bs-fs22);
    }
    .ftr_block {
        padding-top: 3rem;
    }
    .ftr_menu li {
        margin-bottom: 10px;
        text-transform: capitalize;
    }
    .ftr_block h3 {
        font-family: var(--bs-cormorant);
        margin-bottom: 1rem;
        position: relative;
        font-weight: 700;
    }
    .footer_address .li--item {
        position: relative;
        padding-left: 55px;
        min-height: 40px;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        img {
            width: 40px;
            height: 40px;
            position: absolute;
            left: 0;
            top: 0;
        }
    }
    .ftr_form {
        background: #fff;
        box-shadow: 0 2px 20px rgb(0 0 0 / 8%);
        padding: 2rem;
        border-radius: 20px;
        position: relative;
        margin-top: -4rem;
        .form-control {
            font-size: var(--bs-fs22);
            padding-left: 0;
            padding-right: 0;
            border-radius: 0;
            border: 0 !important;
            background: #fff !important;
            border-bottom: 1px solid #C8C8C8 !important;
        }
    }
    .copyright_footer {
        border-top: 1px solid #DDC9A9;
        padding-top: 1rem;
        margin-top: 2rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        img {
            width: 40px;
        }
    }
}

.accordion {
    .card {
        border-radius: 0;
        margin: 1em 0 0;
        border: none;
        border-top: 1px solid #EAEAEA;
        border-bottom: 1px solid #EAEAEA;
        overflow: hidden;
    }
    .card .card-header {
        background: transparent;
        margin-bottom: 0;
        border: 0;
    }
    .card-header a {
        width: 100%;
        display: inline-block;
        padding: 10px 0;
        padding-right: 50px;
        border-radius: 0;
        position: relative;
        background: #fff;
        color: var(--bs-darkgrey);
        font-size: var(--bs-fs24);
    }
    .card-header a:before {
        content: ' ';
        position: absolute;
        right: 0;
        top: 6px;
        width: 35px;
        height: 35px;
        background-image: url(../images/accordion-minus.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 32px;
    }
    .card-header a.collapsed:before {
        background-image: url(../images/accordion-plus.svg);
    }
    .card-body {        
        padding: 1rem 0;
        font-weight: 300;
        font-size: var(--bs-fs22);
    }
}

.video_modal {
    button.close {
        position: absolute;
        right: 10px;
        top: 10px;
        background: #fff;
        border: 0;
        border-radius: 50%;
        z-index: 1;
    }
    video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin-bottom: -10px;
    }
    .modal-content {
        border-radius: 12px;
        overflow: hidden;
    }
    .modal-body {
        padding: 0;
    }
}
.page-breadcrumb {
    width: 100%;
    display: inline-block;
    ul.breadcrumb {
        background: #fff;
        box-shadow: 0 2px 7px hsl(0deg 0% 0% / 9.02%);
        width: max-content;
        max-width: 100%;
        padding: 8px;
        border-radius: 8px;
        flex-wrap: nowrap;
    }
    ul.breadcrumb li {
        position: relative;
        a {
            color: var(--bs-maroon);
        }
    }
    ul.breadcrumb li+li {
        padding-left: 30px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: flex;
        align-items: center;
    }
    ul.breadcrumb li+li:before {
        content: '|';
        width: 5px;
        height: 30px;
        line-height: 1;
        position: absolute;
        font-size: 30px;
        font-weight: 300;
        color: var(--bs-maroon);
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
    }
    ul.breadcrumb li:first-child a {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
}
.blogg_single {
    h1, h2 {
        font-size: var(--bs-h2);
    }
    img {
        border-radius: 15px;
    }
    figure {
        display: flex;
        gap: 15px;
        img {
            width: 50%;
        }
    }
}
.widget_column {
    h3 {
        font-weight: 700;
        font-size: var(--bs-fs30);
    }
    .rp_title {
        font-family: var(--bs-cormorant);
        font-size: var(--bs-fs22);
        font-weight: 700;
    }
    .widget_search, .widget_inner {
        background: #fff;
        border-radius: 20px;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        border: 1px solid #EAEAEA;
    }
    .widget_search form {
        margin-top: 1.25rem;
    }
   .widget_inner .recent_item {
        width: 100%;
        display: flex;
        margin-top: 1.25rem;
        &:not(:first-child) {
            padding-top: 1.25rem;
            border-top: 1px solid #EAEAEA;
        }
    }
    .widget_inner .recent_item img {
        width: 80px;
        height: 80px;
    }
    .widget_inner .recent_item .post_title {
        width: calc(100% - 80px);
        padding-left: 15px;
        line-height: 1.15;
        color: #636363;
    }
    .widget_inner .recent_item small.date_ {
        font-size: var(--bs-fs20);
        margin-top: 10px;
        display: block;
        color: #969696;
    }
    .input-group {
        border: 1px solid #EAEAEA;
        background: #fff;
        padding: 5px;
        border-radius: 8px;
        overflow: hidden;
    }
    input.form-control {
        height: 45px;
        font-size: var(--bs-fs22);
        padding: 8px;
        border: 0 !important;
        border-radius: 0 !important;
        background: #fff !important;
    }
    button.search_btn {
        border: 0 !important;
        outline: none !important;
        box-shadow: none !important;
        width: 45px;
        height: 45px;
        background: transparent;
        img {
            border-radius: 0 !important;
        }
    }
}
.rooms_suites-Single {
    h1, h2 {
        font-size: var(--bs-h2);
    }
    .room_title_price {
        display: flex;
        justify-content: space-between;
        span {
            font-size: var(--bs-fsh3);
            font-weight: 700;
            display: inline-block;
            padding-top: 1rem;
        }
    }
    .list_delux_ {
        display: flex;
        flex-wrap: wrap;
    }
    .li_item {
        display: flex;
        align-items: center;
        img {
            width: 50px;
            margin-right: 15px;
        }
        p {
            margin-bottom: 0;
            line-height: 1.25;
            font-size: var(--bs-fs22);
            padding-right: 1rem;
        }
    }
    .rsuites_detail {
        .li_item {
            flex-grow: 0;
            flex-shrink: 0;
            flex-basis: 33.33%;
            margin: 10px 0;
        }
    }
    .room_facilities {
        .li_item {
            flex-grow: 0;
            flex-shrink: 0;
            flex-basis: 50%;
            margin: 10px 0;
        }
    }
    .family_suite {
        .li_item {
            flex-grow: 0;
            flex-shrink: 0;
            flex-basis: auto;
            margin: 10px 0;
        }
    }
    .form_wrapper {
        background: #fff;
        box-shadow: 0 2px 20px rgb(0 0 0 / 8%);
        padding: 2rem;
        border-radius: 20px;
    }
}


.single_room_slider {
    .item {
        width: 100%;
        height: 350px;
        display: inline-block;
        border-radius: 20px;
        overflow: hidden;
        /*user-select: none;
        pointer-events: none;
        transition: transform .75s cubic-bezier(.3,.1,.3,1), opacity .75s cubic-bezier(.3,.1,.3,1), -webkit-transform .75s cubic-bezier(.3,.1,.3,1);
        -webkit-transform: scaleY(0.80) scaleX(0.95);
        -moz-transform: scaleY(0.80) scaleX(0.95);
        -o-transform: scaleY(0.80) scaleX(0.95);
        -ms-transform: scaleY(0.80) scaleX(0.95);
        transform: scaleY(0.80) scaleX(0.95);*/
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
    /*.owl-item.center {
        .item {
            pointer-events: auto;
            -webkit-transform: scaleY(1) scaleX(0.95);
            -moz-transform: scaleY(1) scaleX(0.95);
            -o-transform: scaleY(1) scaleX(0.95);
            -ms-transform: scaleY(1) scaleX(0.95);
            transform: scaleY(1) scaleX(0.95);
        }
    }*/
    .item_video {
        position: relative;
        img.w-100 {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        button {
            border-radius: 50%;
            border: 0 !important;
            background: transparent;
            width: 60px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
    }
}

span.g-recaptcha > div {
    transform: scale(0.80);
    -webkit-transform: scale(0.80);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
}

.whatsapp_wedget {
    width: 60px;
    height: 60px;
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 9;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 22px rgb(0 0 0 / 5%);
}