/*
Theme Name: Hotel Raj
*/
:root {
	--h1size: 40px;
	--h2size: 32px;
	--h3size: 24px;
	--h4size: 20px;
	--h5size: 18px;
	--h6size: 16px;
	--bodysize: 16px;
	--h1height: 56px;
	--h2height: 42px;
	--h3height: 32px;
	--h4height: 28px;
	--h5height: 26px;
	--h6height: 26px;
	--bodyheight: 26px;
	--pfamily: "Montserrat", serif;
	--hfamily: "Lora", serif;
	--red: #ff3838;
	--gray: #F1EFF0;
	--text: #8F8F8F;
	--blue: #1494a9;
	--white: #ffffff;
	--chalk: #EBEEEC;
	--chalk2: #FCFAFF;
	--green: #23BB75;
	--purple: #9C6FFF;
	--orange: #e86121;
	--yellow: #ffab10;
	--body: #fff;
	--border: #E8E8E8;
	--heading: #3b3b3b;
	--primary: #F70606;
	--secondary: #D5B8FF;
	--sub-heading: #7a7a7a;
	--green-chalk: #ddffd5;
	--dark: #000000;
	--harddark: #000000;
	--gray-chalk: #cccccc;
	--intro-bg: #f8fffa;
	--facebook: #3b5998;
	--linkedin: #0e76a8;
	--twitter: #00acee;
	--google: #e60023;
	--instagram: #f77737;
	--primary-bshadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.1);
	--primary-tshadow: 2px 3px 8px rgba(0, 0, 0, 0.1);
}
* {
	margin: 0px;
	padding: 0px;
	outline: 0px;
    box-sizing: border-box;
}

img {
	vertical-align: middle;
    max-width: 100%;
}

a {
	text-decoration: none;
	display: inline-block;
	color: var(--primary);
}

a:hover {
	text-decoration: none;
}

ul,
ol {
	padding: 0px;
	list-style: none;
}

ol,
ul,
li,
span,
label {
	margin-bottom: 0px;
}

html,
body {
	scroll-behavior: smooth;
}

body {
	color: var(--dark);
	background: var(--body);
	font-size: var(--bodysize);
	font-family: var(--pfamily);
	line-height: var(--bodyheight);
	overflow-x: hidden;
	font-weight: 400;
	font-optical-sizing: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 500;
	color: var(--heading);
	font-family: var(--hfamily);
}

h1 {
	font-size: var(--h1size);
	line-height: var(--h1height);
}

h2 {
	font-size: var(--h2size);
	line-height: var(--h2height);
}

h3 {
	font-size: var(--h3size);
	line-height: var(--h3height);
}

h4 {
	font-size: var(--h4size);
	line-height: var(--h4height);
}

h5 {
	font-size: var(--h5size);
	line-height: var(--h5height);
}

h6 {
	font-size: var(--h6size);
	line-height: var(--h6height);
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	font-size: 14px;
	color: var(--gray);
	text-transform: capitalize;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	font-size: 14px;
	color: var(--gray);
	text-transform: capitalize;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
	font-size: 14px;
	color: var(--gray);
	text-transform: capitalize;
}

input::placeholder,
textarea::placeholder {
	font-size: 14px;
	color: var(--gray);
	text-transform: capitalize;
}

input,
button {
	border: none;
	outline: none;
	background: none;
}

button:focus {
	outline: none;
}
.top-header{
    padding: 10px 0;
    position: relative;
    z-index: 11;
}
.top-links{
    display: flex;
    gap: 15px;
}
.top-links li a{
    color: var(--white);
	display: flex;
	align-items: center;
	gap: 8px;
}

.header-main{
    position: sticky;
    top: 0;
    z-index: 99;
    width: 100%;
}
.header-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(9px);
    padding: 5px 10px;
    border-radius: 9px;
}
#primary-menu{
    display: flex;
    gap: 20px;
}
#primary-menu li a{
    color: var(--dark);
    padding: 20px 10px;
    font-weight: 500;
}
@media (max-width:991px) {
    #primary-menu{
        display: none;
    }
}
.homeslider, .single-banner{
    margin-top: -121px;
}
.home-index-slider{

}
.single-banner{
	position: relative;
	padding: 150px 0px 60px;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    height: 300px;
    background-position: center center;
    background-size: cover;
    align-items: center;
	color: var(--white);
	text-align: center;
}
.single-banner h1, .single-banner h2{
	color: var(--white);
}
.home-index-slider .banner-part{
    padding: 60px 0px;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    height: 700px;
    background-position: center center;
    background-size: cover;
    align-items: center;
}
.home-index-slider .banner-part::after, .single-banner::after {
    position: absolute;
    z-index: -1;
    height: 100%;
    width: 100%;
    background-color: #03204C;
    opacity: 0.5;
    top: 0;
    left: 0;
    content: "";
}
.home-index-slider .banner-part > .container, .home-index-slider .banner-part > .container > .row{
    height: 100%;
}
.home-index-slider .banner-part h1, .home-index-slider .banner-part h2{
    font-family: var(--hfamily);
    font-size: 52px;
    line-height: 58px;
    font-weight: bold;
}
.video-banner {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
}
.video-banner iframe, .video-banner video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
}
@media screen and (max-width: 768px) {
    .video-banner iframe, .video-banner video {
        width: 100vw;
        height: 100vh;
		object-fit: cover;
    }
	.single-banner h1, .single-banner h2{
		font-size: 22px;
	}
	.single-banner{
		padding: 130px 0px 0px;
		height: 200px;
	}
	.top-header{
		padding: 5px 0;
	}
	.header-content .btn{
		padding: 8px 20px;
		font-size: 12px;
	}
}
.banner-content {
    position: relative;
    z-index: 2; /* Place content over the video */
    text-align: center;
}
.dandik,
.bamdik {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	font-size: 18px;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	border-radius: 50%;
	color: var(--primary);
	background: var(--white);
	visibility: hidden;
	opacity: 0;
	cursor: pointer;
	z-index: 1;
	transition: all linear 0.3s;
	-webkit-transition: all linear 0.3s;
	-moz-transition: all linear 0.3s;
	-ms-transition: all linear 0.3s;
	-o-transition: all linear 0.3s;
}

.dandik:hover,
.bamdik:hover {
	color: var(--white);
	background: var(--primary);
}
.slick-slider:hover .dandik,
.slick-slider:hover .bamdik {
	visibility: visible;
	opacity: 1;
}
.dandik {
	left: 10px;
}

.bamdik {
	right: 10px;
}
.text-white{
    color: var(--white);
}
.text-center{
    text-align: center;
}
.w-full{
    width: 100%;
}
.slider-dots ul {
	position: absolute;
	bottom: -20px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.slider-dots ul li {
	width: 15px;
	height: 15px;
	margin: 0px 5px;
	border-radius: 30px;
	cursor: pointer;
	display: inline-block;
	background: var(--gray);
	transition: all linear 0.3s;
	-webkit-transition: all linear 0.3s;
	-moz-transition: all linear 0.3s;
	-ms-transition: all linear 0.3s;
	-o-transition: all linear 0.3s;
}

.slider-dots ul li button {
	display: none;
}

.slider-dots ul li.slick-active {
	background: var(--primary);
	transition: all linear 0.3s;
	-webkit-transition: all linear 0.3s;
	-moz-transition: all linear 0.3s;
	-ms-transition: all linear 0.3s;
	-o-transition: all linear 0.3s;
}
.form-control{
	border-radius: 4px;
	border: 1px solid var(--dark);
	box-shadow: 2px 2px 0 var(--dark);
}
@media (max-width: 575px) {
	.slider-dots ul li {
		margin: 0px 6px;
	}
	.top-links{
		font-size: 12px;
	}
	.form-control{
		font-size: 12px;
	}
	table th, table td{
		font-size: 12px;
	}
}

@media (max-width: 991px) {
	.slider-dots ul {
		bottom: 20px;
	}

	.slider-dots ul li {
		margin: 0px 6px;
	}
	.home-index-slider .banner-part h2{
		font-size: 32px;
		line-height: 40px;
	}
	.home-index-slider .banner-part{
		height: 380px;
		padding-top: 100px;
	}
}
@media (max-width: 767px) {
	.slider-dots ul {
		bottom: 20px;
	}

	.slider-dots ul li {
		margin: 0px 6px;
	}
}
.btn{
    padding: 10px 20px;
    border-radius: 4px;
    transition: all linear 0.3s;
	-webkit-transition: all linear 0.3s;
	-moz-transition: all linear 0.3s;
	-ms-transition: all linear 0.3s;
	-o-transition: all linear 0.3s;
}
.btn-primary{
	background: var(--primary);
	color: var(--white);
	border-color: var(--primary);
}
.btn-primary:hover{
	background: var(--dark);
	color: var(--white);
	border-color: var(--dark);
}
.btn-white{
	background: var(--white);
	color: var(--dark);
	border-color: var(--white);
}
.btn-lg{
	padding: 14px 30px;
}
.btn-sm{
	padding: 8px 20px;
}
.btn-xs{
	padding: 4px 10px;
	font-size: 12px;
}
.homebooking{
    padding: 50px 30px 30px;
    background: var(--chalk);
    margin-top: -60px;
    position: relative;
    z-index: 11;
    border-radius: 9px;
    
}

.section{
	padding: 80px 0;
	display: block;
}
.section-heading{
	margin-bottom: 30px;
}
.section-heading h2, .section-heading h3{
	margin-bottom: 0;
}
.section-heading .subtitle{
	text-transform: uppercase;
}
/*service box*/
.service-box{
	border: 1px solid var(--border);
	padding: 30px;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	height: 100%;
	border-radius: 20px;
	background: var(--white);
	position: relative;
}
.service-thumb{
	margin-bottom: 30px;
}
.service-thumb img{
	height: 80px;
	object-fit: contain;
	width: auto;
}
.service-icon{
	margin-bottom: 30px;
}
.service-icon i{
	font-size: 70px;
	color: var(--primary);
}
.service-box-title{
	margin-bottom:0;
	font-weight: bold;
	font-size: 20px;
}
.service-box-text{
	margin-top:10px;
}
.service-box-content p{
	margin: 0;
}
.service-box-content a.link{
	margin-top:20px;
	color: var(--dark);
}
.service-box-text ul{
	list-style: none;
	margin: 0;
}
.service-box-text ul li a{
	color: var(--dark);
}
.service-box.style-1{
	text-align: center;
}
.service-box.style-2{
	display: flex;
	padding: 0;
	font-size: 16px;
	border:0;
	background: transparent;
}
.service-box.style-2 .service-thumb{
	width: 80px;
	min-width: 80px;
	margin-bottom: 0;
	background: var(--primary);
	border-radius: 50%;
	height: 80px;
	margin-right: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.service-box.style-2 .service-thumb img{
	width: 50px;
	height: 50px;
}
.service-box.style-2 .service-icon{
	min-width:40px;
	margin-right:0;
	margin-bottom: 0;
}
.service-box.style-2 .service-box-title{
	margin-bottom: 0;
}
.service-box.style-2 .service-box-text{
	line-height: 24px;
}
.service-box.style-2 .service-icon i{
	font-size: 55px;
	color: var(--primary);
}
.service-box.style-2 .service-box-content{
	display: flex;
	flex-direction: column;
}
.service-box.style-2 .service-box-content a.link{
	margin-top:auto;
}
.service-box.style-2:hover{
	
}
.service-box.style-2:hover .service-box-title, .service-box.style-2:hover i, .service-box.style-2:hover .link{
	color: var(--dark);
}
.process .service-box .service-thumb{
	position: absolute;
	right: -28px;
	top: 20px;
	opacity: 0.2;
}
.process .service-box.style-2:hover .service-thumb, .process .service-box.style-3:hover .service-thumb{
	filter: brightness(0) invert(1);
	opacity: 0.4;
}
/* style 3 */
.service-box.style-3{
	display: flex;
	padding: 10px;
	font-size: 16px;
	background: var(--white);
	border: 1px solid var(--border);

}
.service-box.style-3 .service-thumb{
	width: 100px;
	min-width: 100px;
	margin-bottom: 0;
	height: 100px;
	margin-right: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.service-box.style-3 .service-thumb img{
	width: 100px;
	height: 100px;
	border-radius: 10px;
	object-fit: cover;
}
.service-box.style-3 .service-icon{
	min-width:40px;
	margin-right:0;
	margin-bottom: 0;
}
.service-box.style-3 .service-box-title{
	margin-bottom: 0;
}
.service-box.style-3 .service-box-text{
	line-height: 24px;
}
.service-box.style-3 .service-icon i{
	font-size: 55px;
	color: var(--primary);
}
.service-box.style-3 .service-box-content{
	display: flex;
	flex-direction: column;
}
.service-box.style-3 .service-box-content a.link{
	margin-top:auto;
}

.service-box.style-4{
	text-align: center;
}
.service-box.style-4 .service-box-title{
	margin-bottom: 0;
}
.service_style_4{
	background:var(--primary);
	color:var(--white);
	border-radius:5px;
	padding: 60px;
}
.service-box.style-4 .service-icon, .service-box.style-4 .service-thumb{
	width: 130px;
	height: 130px;
	border-radius:50%;
	margin: 0 auto 20px;
	background: var(--blue);
	display: flex;
	justify-content: center;
	align-items: center;
}
.service-box.style-4 .service-icon i, .service-box.style-4 .link{
	color:var(--white);
}
.service_style_4 .service-box{
	background:transparent;
	border-color: transparent;
	color: var(--white);
}
.service_style_4 .service-box:hover{
	background:transparent;
	box-shadow: none;
}
.service_style_4 .section-heading h2, .service_style_4 .sub-title{
	color:var(--white);
}

.service-slider .slick-list {
	margin: 0 -20px;
}
.service-card {
	padding: 20px;
}
.service-card a{
	width: 100%;
}
.service-card .case-item-thumb {
	position: relative;
	z-index: 1;
}
.service-card .case-item-thumb:before {
	content: "";
	position: absolute;
	bottom: -20px;
	right: -20px;
	width: 100%;
	border-radius: 16px;
	background-color: var(--chalk);
	top: 20px;
	transition-duration: .2s;
	z-index: -1;
}
.service-card:hover .case-item-thumb:before {
	bottom: -10px;
	right: -10px;
}
.service-card img{
	width: 100%;
	height: 300px;
	object-fit: cover;
	border-radius: 20px;
}

.service-box.style-5{
	padding: 10px;
}
.service-box.style-5 .service-thumb{
	margin-bottom: 0;
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}
.service-box.style-5 .service-thumb img{
	width: 100%;
	height: 230px;
	object-fit: cover;
	margin-bottom: 0;
	border-radius: 10px;
	transition: all 0.3s ease-in-out;
	transform: scale(1);
}
.service-box.style-5:hover .service-thumb img{
	transform: scale(1.2);
}
.service-box.style-5 .service-box-content{
	padding: 10px;
}


.service-box.style-6{
	padding: 0;
	border-radius: 10px;
	border: 0;
	background: transparent;
}
.service-box.style-6 .service-thumb{
	margin-bottom: 0;
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}
.service-box.style-6 .service-thumb img{
	width: 100%;
	height: 390px;
	object-fit: cover;
	margin-bottom: 0;
	border-radius: 10px;
}
.service-box.style-6 .service-box-content{
	padding: 40px 20px 20px 20px;
	z-index: 11;
	position: absolute;
	font-size: 14px;
	line-height: 20px;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	color: var(--white);
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #03204C);
	border-radius: 10px;
}
.service-box.style-6 .service-box-content h3{
	color: var(--white);
	font-size: 20px;
}
.service-box.style-7{
	text-align: center;
}
.service-box.style-7 .service-thumb img{
	height:130px;
}
.service-box.style-7 .service-icon{
	min-width:130px;
	margin-bottom: 10px;
}
.service-box.style-7 .service-box-title{
	margin-bottom: 10px;
}
.service-box.style-7 .service-icon i{
	font-size: 60px;
	color: var(--blue);
}
.service-box.style-7:hover .service-icon i{
	color: var(--white);
}
.service-box.style-8{
	background: var(--primary);
	color: var(--white);
}
.service-box.style-8 .service-box-title, .service-box.style-8 .service-icon i, .service-box.style-8 .link{
	color: var(--white);
}
@media screen and (max-width: 768px) {
	.service-box.style-6 .service-thumb img{
		height: 280px;
	}
	.service-box.style-6 .service-box-content{
		padding: 10px;
	}
	.service-box.style-6 .service-box-content h3{
		font-size: 18px;
	}
	.service-box.style-6 .service-box-content p{
		font-size: 13px;
		line-height: 16px;
	}
}

.about-single-image{
	padding: 20px;
}
.about-single-image img{
	border-radius: 10px;
}

.footer-part {
	background: var(--chalk);
	color: var(--dark);
	padding-block: 50px;
}
.footer-bottom{
	padding: 5px 0;
	background: var(--chalk);
	font-size: 12px;
}
.intro-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}
.intro-icon {
	margin-right: 20px;
	width: 50px;
	min-width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--primary);
	display: flex;
	justify-content: center;
	align-items: center;
}
.intro-icon img {
	filter: brightness(100%) invert(100%);
}
.intro-content h5 {
	font-size: 17px;
	line-height: 16px;
	margin-bottom: 8px;
}
.intro-content p {
	font-size: 15px;
	line-height: 22px;
}
.intro-content a {
	color: var(--dark);
}
.intro-social {
	display: flex;
	gap: 15px;
}
.intro-social li a img{
	filter: brightness(100%) invert(100%);
}
.intro-social li a {
	width: 50px;
	height: 50px;
	background: var(--primary);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--white);
	font-size: 20px;
	line-height: 26px;
}
.footer-logo{
	text-align: center;
	padding-bottom: 20px;
}
.mobile-menu {
	position: fixed;
	bottom: 0px;
	left: 0px;
	width: 100%;
	z-index: 5001;
	background: var(--white);
	border-radius: 10px 10px 0px 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	display: none;
}
.mobile-menu a, .mobile-menu button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 80px;
	padding: 8px 0px;
	border-radius: 8px;
	position: relative;
}
.mobile-menu a span, .mobile-menu button span, .mobile-menu label.header-cart span {
	font-size: 9px;
	line-height: 11px;
	color: var(--text);
	text-transform: uppercase;
}
.mobile-menu a img, .mobile-menu button img{
	font-size: 20px;
	margin-bottom: 5px;
	color: var(--text);
	text-shadow: 2px 3px 8px rgba(0,0,0,0.1);
}
@media (max-width: 991px){
	.mobile-menu {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.footer-part {
		padding-bottom: 70px;
	}
	.homebooking{
		padding: 30px 20px 20px;
	}
	.homebooking .col{
		padding: 0 5px;
	}
	.homebooking .col-sm{
		max-width: 100px;
	}
	.about-single-image{
		padding: 0;
	}
	#about{
		background-image: none !important;
	}
}
iframe{
	border: 0;
	padding: 0;
	display: block;
}

.rj-search-results{

}
.rj-room{
	margin-bottom: 15px;
}
.room-box{
	display: flex;
	padding: 20px;
	background: var(--white);
	border: 1px solid var(--dark);
	box-shadow: 2px 2px 0 var(--dark);
	border-radius: 10px;
}
.room-box .room-box-thumb{
	flex: 0 0 35%;
	width: 35%;
}
.room-box .room-box-thumb a{
	
}
.room-box .room-box-thumb a img{
	width: 100%;
	max-height: 240px;
	object-fit: cover;
	border-radius: 10px;
}
.room-box .room-box-content{
	padding: 0 20px;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
}
.room-box .room-box-content h4{
	margin-bottom: 15px;
}
.room-box .room-meta{
	display: flex;
	gap: 15px;
}
.room-box .room-meta li{
	display: flex;
	gap: 10px;
	align-items: center;
}
.room-box .room-meta li span{
	font-weight: 600;
}
.room-box .price{
	margin-top: 10px;
	display: flex;
	gap: 15px;
}
.room-box .price span{
	font-weight: 600;
}
.room-box-content .btn{
	width: -webkit-fit-content !important;
	width: -moz-fit-content !important;
	width: fit-content !important;
}
.room-box .room-btn{
	background: var(--primary);
	color: var(--white);
	border-color: var(--primary);
	display: inline-block;
	padding: 10px 25px;
	border-radius: 30px;
	margin-top: auto;
}
.card-img, .card-img-top{
	border-radius: 10px;
}
.widget{
	background: var(--chalk);
	padding: 20px;
	border-radius: 10px;
	margin-bottom: 15px;
	border: 1px solid var(--dark);
	box-shadow: 2px 2px 0 var(--dark);
}
.widget-box{
	display: flex;
	gap: 15px;
}
.widget-date{
	font-size: 42px;
	line-height: 48px;
	font-weight: 500;
}
.divider{
	height: 1px;
	width: 100%;
	background: var(--border);
	margin: 15px 0;
}
.room-add-widget{
	background: var(--white);
	padding: 20px;
	border-radius: 10px;
}
.box-price-element-total{
	display: flex;
	justify-content: space-between;
	padding-top: 15px;
	margin-top: 15px;
	border-top: 1px solid var(--border);
}
.booking-button{
	background: var(--white);
	padding: 20px;
}
@media (max-width:991px) {
	.room-box{
		padding: 15px;
		flex-wrap: wrap;
	}
	.room-box .room-box-thumb{
		flex: 0 0 100%;
		width: 100%;
	}
	.room-box .room-box-content{
		padding:15px 0 0 0;
		width: 100%;
	}
	.room-box .room-btn{
		margin-top: 15px;
	}
	.mobile-reverse{
		flex-direction: row-reverse;
	}
	.mobile-reverse .col-lg-4{
		order: 1;
	}
	.mobile-reverse .col-lg-8{
		order: 0;
	}
	.booking-button{
		position: sticky;
		left: 0;
		bottom: 0;
		width: 100%;
		z-index: 9999;
	}
	.booking-button-fixed{
		position: fixed;
		left: 0;
		bottom: 0;
		width: 100%;
		z-index: 9999;
		background: var(--white);
		padding: 20px;
	}
	.section{
		padding: 30px 0;
	}
}
@media (max-width:575px) {
	.widget-box{
		font-size: 13px;
		line-height: 18px;
	}
	.widget-date{
		font-size: 28px;
		line-height: 34px;
	}
}
.card{
	background: var(--white);
	margin-bottom: 30px;
	border-radius: 8px;
	border: 1px solid var(--dark);
	box-shadow: 2px 2px 0 var(--dark);
}
.card-header{
	background: var(--white);
	padding: 10px 20px;
	border-top-left-radius: 8px !important;
	border-top-right-radius: 8px !important;
}
.card-body{
	padding: 20px;
}
.box-shadow-0{
	box-shadow: none !important;
}
.icon-box{
	display: flex;
	gap: 15px;
}
.icon-box .icon-box-icon{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--primary);
	color: var(--white);
}
.icon-box .icon-box-icon svg{
	width: 20px;
	height: 20px;
	filter: brightness(100%) invert(100%);
}
.icon-box .icon-box-content{
	font-size: 14px;
	line-height: 20px;
}
.icon-box .icon-box-content h6{
	font-size: 14px;
	line-height: 20px;
	font-family: var(--pfamily);
}
.icon-box .icon-box-content a{
	font-size: 18px;
	line-height: 20px;
	font-weight: 600;
}

/*gallery updated style*/
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
    margin: 40px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-box {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-icon {
    color: white;
    font-size: 24px;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.gallery-box:hover img {
    transform: scale(1.1);
}

.gallery-box:hover .gallery-overlay {
    opacity: 1;
}

.gallery-box:hover .gallery-icon {
    transform: scale(1);
}

@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
		grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
}
.author-bx{
	display: flex;
	gap: 5px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin-bottom: 20px;
}
.author-bx .dz-media{
	width: 100px;
	height: 100px;
	border-radius: 50%;
	overflow: hidden;
}
.author-bx .dz-media img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.author-bx .dz-content{
	display: flex;
	flex-direction: column;
}
.author-bx .dz-content .name{
	font-size: 28px;
	font-weight: 600;
	margin: 0;
}
.author-bx .dz-content .text-primary{
	font-size: 14px;
	color: var(--primary);
}
.author-bx{
	margin-top: -50px;
	z-index: 1;
	position: relative;
}
.widget_guest{
	display: flex;
	flex-direction: column;
	gap: 15px;
	background: var(--white);
	padding: 20px;
	border-radius: 10px;
	border: 1px solid var(--dark);
	box-shadow: 2px 2px 0 var(--dark);
	margin-bottom: 30px;
}

.widget_guest ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.widget_guest ul li{
	display: flex;
	gap: 15px;
	align-items: center;
	margin-bottom: 15px;
}
.widget_guest ul li:last-child{
	margin-bottom: 0;
}
.widget_guest ul li .icon-bx{
	font-size: 24px;
	width: 50px;
	height: 50px;
	background: var(--primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.widget_guest ul li .icon-bx svg{
	filter: brightness(100%) invert(100%);
}
.widget_guest ul li .sub-title{
	font-size: 14px;
	font-weight: 400;
	margin: 0;
}
.widget_guest ul li .title{
	font-size: 18px;
	font-weight: 600;
	margin: 0;
}

.widget_guest ul li .text a{
	color: var(--primary);
}

.widget_guest ul li .text a:hover{
	color: var(--primary);
}

.widget_guest ul li .text a:hover{
	color: var(--primary);
}

.widget_guest ul li .text a:hover{
	color: var(--primary);
}	
@media (max-width: 575px) {
	.author-bx .dz-media{
		width: 80px;
		height: 80px;
	}
	.btn-lg{
		padding: 10px 20px;
		font-size: 14px;
	}
}
table{
	border: 1px solid var(--dark);
	box-shadow: 2px 2px 0 var(--dark);
}
table, table td, table th{
	border: 1px solid var(--dark);
}
.table-bordered>:not(caption)>*>*{
	border: 1px solid var(--dark) !important;
}
table th{
	white-space: nowrap;
}
table.dataTable > tbody > tr.child ul.dtr-details{
	width: 100%;
}
table.dataTable > tbody > tr.child ul.dtr-details > li{
	display: flex;
	justify-content: space-between;
}
.bg-primary{
	background-color: var(--primary) !important;
	color: var(--white) !important;
}
.bg-Confirmed{
	background-color: var(--green);
	color: var(--white);
}
.bg-Cancelled{
	background-color: var(--red);
	color: var(--white);
}
.bg-Pending{
	background-color: var(--yellow);
	color: var(--white);
}