:root {
    --primary: #834226;
    --secondary: #F5EAD8;
    --third: #F9C80E;
    --light: #4F4F4F;
    --white:#fff;
    --dark: #000;

    --glow1: linear-gradient(227.07deg, #3746A0 14.56%, #B62E9C 85.87%);
    --glow2: linear-gradient(249.4deg, #04B7EC 12.53%, #14193A 99.68%);
    --glow3: linear-gradient(262.81deg, #B62E9C 13.68%, #4D429F 46.56%, #3746A0 58.02%, #2C5FB1 74.79%, #04B7EC 106.84%);
    
}
.bg-primary{
	background-color: var(--primary) !important;
}

html, body {
	height: 100%;
	font-family: "Lora", serif;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0;
	color: #111111;
	font-weight: 400;
	font-family: "Lora", serif;
}
a {
    text-decoration: none;
}
h1 {
	font-size: 42px;
}
h2 {
	font-size: 36px;
}
h3 {
	font-size: 30px;
}
h4 {
	font-size: 24px;
}
h5 {
	font-size: 18px;
}
h6 {
	font-size: 16px;
}


p {
	font-size: 16px;
	font-family: "Lora", serif;
	color: #4F4F4F;
	font-weight: 400;
	line-height: 26px;
	margin: 0 0 15px 0;
}
img {
	max-width: 100%;
}
input:focus, select:focus, button:focus, textarea:focus {
	outline: none;
}
a:hover, a:focus {
	text-decoration: none;
	outline: none;
	color: #fff;
}
ul, ol {
	padding: 0;
	margin: 0;
}
/*---------------------
  Helper CSS
-----------------------*/

.section-title {
	margin-bottom: 22px;
}

.section-title h2 {
	font-size: 42px;
	color: var(--dark);
	line-height: 58px;
	margin-top: 10px;
	font-weight: bold;
}
.set-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}
.spad {
	padding-top: 100px;
	padding-bottom: 100px;
}
.spad-2 {
	padding-top: 50px;
	padding-bottom: 70px;
}
.text-white h1, .text-white h2, .text-white h3, .text-white h4, .text-white h5, .text-white h6, .text-white p, .text-white span, .text-white li, .text-white a {
	color: #fff;
}
/* buttons */

.primary-btn {
	display: inline-block;
	font-size: 13px;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 700;
	position: relative;
}
.primary-btn:after {
	position: absolute;
	left: 0;
	bottom: -5px;
	width: 100%;
	height: 2px;
	background: #dfa974;
	content: "";
}
/* Preloder */

#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #ffffff;
	display:none !important; 
}
.loader {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	animation: loader 0.8s linear infinite;
	-webkit-animation: loader 0.8s linear infinite;
}
@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}
@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}
.spacial-controls {
	position: fixed;
	width: 111px;
	height: 91px;
	top: 0;
	right: 0;
	z-index: 999;
}
.spacial-controls .search-switch {
	display: block;
	height: 100%;
	padding-top: 30px;
	background: #323232;
	text-align: center;
	cursor: pointer;
}
.search-model {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #000;
	z-index: 99999;
}
.search-model-form {
	padding: 0 15px;
}
.search-model-form input {
	width: 500px;
	font-size: 40px;
	border: none;
	border-bottom: 2px solid #333;
	background: none;
	color: #999;
}
.search-close-switch {
	position: absolute;
	width: 50px;
	height: 50px;
	background: #333;
	color: #fff;
	text-align: center;
	border-radius: 50%;
	font-size: 28px;
	line-height: 28px;
	top: 30px;
	cursor: pointer;
	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;
}
/*---------------------
  Header
-----------------------*/

.header-section.header-normal .menu-item {
	-webkit-box-shadow: 0px 12px 15px rgba(36, 11, 12, 0.05);
	box-shadow: 0px 12px 15px rgba(36, 11, 12, 0.05);
}
.top-nav {
	border-bottom: 1px solid #e5e5e5;
}
.top-nav .tn-left li {
	list-style: none;
	display: inline-block;
	font-size: 16px;
	color: #19191a;
	font-weight: 500;
	padding: 14px 0 12px;
	margin-right: 64px;
	position: relative;
}
.top-nav .tn-left li:after {
	position: absolute;
	right: -32px;
	top: 0;
	width: 1px;
	height: 100%;
	background: #e5e5e5;
	content: "";
}
.top-nav .tn-left li:last-child {
	margin-right: 0;
}
.top-nav .tn-left li:last-child:after {
	display: none;
}
.top-nav .tn-left li i {
	color: #dfa974;
	margin-right: 4px;
}
.top-nav .tn-right {
	text-align: right;
}
.top-nav .tn-right .top-social {
	display: inline-block;
	margin-right: 35px;
	padding: 13px 0;
}
.top-nav .tn-right .top-social a {
	display: inline-block;
	font-size: 16px;
	color: #19191a;
	margin-left: 15px;
}
.top-nav .tn-right .bk-btn {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	padding: 16px 28px 15px;
	background: #dfa974;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 2px;
}
.top-nav .tn-right .language-option {
	display: inline-block;
	margin-left: 30px;
	cursor: pointer;
	padding: 13px 0px 11px;
	position: relative;
}
.top-nav .tn-right .language-option:hover .flag-dropdown {
	top: 40px;
	opacity: 1;
	visibility: visible;
}
.top-nav .tn-right .language-option img {
	height: 26px;
	width: 26px;
	border-radius: 50%;
	margin-right: 10px;
}
.top-nav .tn-right .language-option span {
	font-size: 16px;
	color: #19191a;
	text-transform: uppercase;
	font-weight: 500;
}
.top-nav .tn-right .language-option .flag-dropdown {
	position: absolute;
	left: 0;
	top: 60px;
	width: 100px;
	background: #ffffff;
	display: block;
	padding: 10px 15px;
	-webkit-box-shadow: 0px 9px 10px rgba(25, 25, 26, 0.2);
	box-shadow: 0px 9px 10px rgba(25, 25, 26, 0.2);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	z-index: 99;
}
.top-nav .tn-right .language-option .flag-dropdown ul li {
	list-style: none;
	text-align: left;
}
.top-nav .tn-right .language-option .flag-dropdown ul li a {
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 500;
	color: #19191a;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.top-nav .tn-right .language-option .flag-dropdown ul li a:hover {
	color: #dfa974;
}
.nav-menu{
	max-width: 585px;
    width: 100%;
}
.menu-item {
    position: relative;
    z-index: 9;
    background-color: rgba(255 255 255 / 0.7) !important;
    padding: 3px 0;
    width: 100%;
}
.menu-item .logo {
	padding: 25px 0;
	max-width:260px;
}
.menu-item .logo a {
	display: inline-block;
}

.menu-item .nav-menu .mainmenu {
	display: inline-block;
}
.menu-item .nav-menu .mainmenu li {
	list-style: none;
	display: inline-block;
	position: relative;
	z-index: 1;
}
.menu-item .nav-menu .mainmenu li.active a {
	color: var(--primary);
}
.menu-item .nav-menu .mainmenu li.active a:after {
	opacity: 1;
}
.menu-item .nav-menu .mainmenu li:hover>a:after {
	opacity: 1;
}
.menu-item .nav-menu .mainmenu li:hover .dropdown {
	top: 77px;
	opacity: 1;
	visibility: visible;
}
.menu-item .nav-menu .mainmenu li a {
    font-size: 17px;
    color: var(--dark);
    font-weight: 500;
    display: block;
    padding: 27px 10px;
    position: relative;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    font-weight: 600;
	white-space: nowrap;
}
.menu-item .nav-menu  a.nav-link.dropdown-toggle .fa-angle-down {
    position: relative;
    right: -10px;
}
.menu-item .nav-menu  a.nav-link.dropdown-toggle.show .fa-angle-down:before{
	content:"\f106";
}
.menu-item .nav-menu .mainmenu li a:after {
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 4px;
    background: var(--primary);
    content: "";
    opacity: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.menu-item .nav-menu .mainmenu li .dropdown {
	position: absolute;
	left: 0;
	top: 97px;
	width: 180px;
	background: #ffffff;
	z-index: 9;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	-webkit-box-shadow: 0px 9px 15px rgba(25, 25, 26, 0.05);
	box-shadow: 0px 9px 15px rgba(25, 25, 26, 0.05);
}
.menu-item .nav-menu .mainmenu li .dropdown li {
	list-style: none;
	display: block;
}
.menu-item .nav-menu .mainmenu li .dropdown li a {
	font-size: 16px;
	color: #19191a;
	display: block;
	text-align: left;
	padding: 8px 15px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.menu-item .nav-menu .mainmenu li .dropdown li a:hover {
	color: #dfa974;
}
.menu-item .nav-menu .mainmenu li .dropdown li a:after {
	display: none;
}
.menu-item .nav-menu .nav-right {
	display: inline-block;
	margin-left: 43px;
	padding: 27px 0px;
}
.menu-item .nav-menu .nav-right i {
	font-size: 16px;
	color: #19191a;
	cursor: pointer;
}
.canvas-open {
	display: none;
}
.offcanvas-menu-wrapper {
	display: none;
}
ul.dropdown-menu {
    background: url('../img/navbarbg.png') no-repeat;
    background-size: cover;
    background-color: #fff;
    padding: 0;
    border-radius: 0;
    margin-top: 7px !important;
	border:0;
}
.dropdown-item:focus, .dropdown-item:hover {
    color: var(--bs-dropdown-link-hover-color);
    background-color: #824226;
    color: #fff !important;
}
/*---------------------
  Hero
-----------------------*/
.hero-section.sm .hero-text {
    padding: 135px 0px 180px 0;
}

.hero-section.xsm .hero-text {
    padding: 120px 0px 140px 0;
}

.hero-section {
	position: relative;
	padding-top: 60px;
	padding-bottom: 100px;
}
.hero-section .container {
	position: relative;
	z-index: 5;
}
.hero-text {
    padding: 175px 0px 225px 0;
}
.hero-text h1 {
	font-size: 42px;
    line-height: normal;
    color: var(--white);
    margin-bottom: 16px;
    text-align: center;
	font-weight: bold;
}
.hero-text p {
	font-size: 18px;
	color: #ffffff;
	line-height: 28px;
	margin-bottom: 35px;
}
.booking-form {
	background: #ffffff;
	padding: 44px 40px 50px 40px;
	border-radius: 4px;
}
.booking-form h3 {
	color: #19191a;
	margin-bottom: 36px;
}
.booking-form form .check-date {
	position: relative;
	margin-bottom: 15px;
}
.booking-form form .check-date label {
	font-size: 14px;
	color: #707079;
	display: block;
	margin-bottom: 10px;
}
.booking-form form .check-date input {
	width: 100%;
	height: 50px;
	border: 1px solid #ebebeb;
	border-radius: 2px;
	font-size: 16px;
	color: #19191a;
	text-transform: uppercase;
	font-weight: 500;
	padding-left: 20px;
}
.booking-form form .check-date i {
	color: #dfa974;
	position: absolute;
	right: 18px;
	bottom: 17px;
}
.booking-form form .select-option {
	margin-bottom: 15px;
}
.booking-form form .select-option label {
	font-size: 14px;
	color: #707079;
	display: block;
	margin-bottom: 10px;
}
.booking-form form .select-option .nice-select {
	border-radius: 2px;
	border: 1px solid #ebebeb;
	height: 50px;
	line-height: 50px;
	outline: none;
	padding-left: 20px;
	width: 100%;
	float: none;
}
.booking-form form .select-option .nice-select:after {
	border-bottom: 2px solid #dfa974;
	border-right: 2px solid #dfa974;
	height: 10px;
	margin-top: 0;
	right: 20px;
	width: 10px;
	top: 36%;
}
.booking-form form .select-option .nice-select span {
	font-size: 16px;
	color: #19191a;
	text-transform: uppercase;
	font-weight: 500;
}
.booking-form form .select-option .nice-select .list {
	margin-top: 0;
	width: 100%;
}
.booking-form form button {
	display: block;
	font-size: 14px;
	text-transform: uppercase;
	border: 1px solid #dfa974;
	border-radius: 2px;
	color: #dfa974;
	font-weight: 500;
	background: transparent;
	width: 100%;
	height: 46px;
	margin-top: 30px;
}
.hero-slider {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}
.hero-slider .set-bg {
    max-height: 630px;
}
.hero-slider.owl-carousel .owl-dots {
	position: absolute;
	left: 0;
	bottom: 23px;
	width: 100%;
	text-align: center;
}
.hero-slider.owl-carousel .owl-dots button {
	height: 6px;
	width: 6px;
	background: #ffffff;
	opacity: 0.5;
	border-radius: 50%;
	margin-right: 10px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.hero-slider.owl-carousel .owl-dots button.active {
	width: 30px;
	border-radius: 50px;
	opacity: 1;
}
.hero-slider.owl-carousel .owl-dots button:last-child {
	margin-right: 0;
}
.hero-slider .owl-stage-outer, .hero-slider .owl-stage, .hero-slider .owl-item, .hero-slider .hs-item {
	height: 100%;
}
/*---------------------
  About US
-----------------------*/

/* .about-text {
	padding: 0 35px;
} */
.services-section .about-text p {
	color: #000000!important;
}

.about-text p {
	color: #4F4F4F;
	font-weight: 500;
}
.about-text p.f-para {
	margin-bottom: 10px;
}
.about-text p.s-para {
	margin-bottom: 35px;
}
.about-text .about-btn {
	color: #19191a;
}
.about-pic img {
	min-width: 100%;
}
/*---------------------
  Service Section
-----------------------*/

.services-section {
	padding-bottom: 60px;
}
.services-section .section-title {
	margin-bottom: 36px;
}
.service-item {
    padding: 15px 15px 13px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    background: var(--white);
    margin-bottom: 25px;
	border: 1px solid #C7ADA2;
}
.service-item:hover {
	background: #BB9B8D;
}
.service-item:hover  img{
	filter: brightness(10);
}
.service-item:hover i {
	color: #ffffff;
}
.service-item:hover h4 {
	color: #ffffff;
}
.service-item:hover p {
	color: #ffffff;
}
.service-item i {
	display: inline-block;
	color: #dfa974;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.service-item h4 {
	color: var(--dark);
	font-size: 24px;
	margin-bottom: 15px;
	margin-top: 10px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	font-weight: bold;
}
.service-item p {
	color: #000;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
/*------------------------
  Home Page Room Section 
-------------------------*/

.hp-room-items {
	overflow: hidden;
}
.hp-room-items .hp-room-item {
	height: 600px;
	margin-right: -15px;
	position: relative;
	overflow: hidden;
}
.hp-room-items .hp-room-item:hover .hr-text {
	bottom: 135px;
}
.hp-room-items .hp-room-item:hover .hr-text h2 {
	margin-bottom: 30px;
}
.hp-room-items .hp-room-item .hr-text {
	position: absolute;
	left: 45px;
	right: 25px;
	bottom: -250px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
.hp-room-items .hp-room-item .hr-text h3 {
	color: #ffffff;
	margin-bottom: 15px;
}
.hp-room-items .hp-room-item .hr-text h2 {
	color: #dfa974;
	font-weight: 700;
	margin-bottom: 50px;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}
.hp-room-items .hp-room-item .hr-text h2 span {
	font-family: "Lora", serif;
	font-size: 16px;
	font-weight: 400;
	color: #ffffff;
}
.hp-room-items .hp-room-item .hr-text table {
	margin-bottom: 30px;
}
.hp-room-items .hp-room-item .hr-text table tbody tr td {
	font-size: 16px;
	color: #ffffff;
	line-height: 36px;
}
.hp-room-items .hp-room-item .hr-text table tbody tr td.r-o {
	width: 120px;
}
.hp-room-items .hp-room-item .hr-text .primary-btn:after {
	background: #ffffff;
}
/*---------------------
  Testimonial Slider
-----------------------*/


.testimonial-section .section-title {
	margin-bottom: 30px;
}
.testimonial-slider.owl-carousel .owl-item img {
	width: auto;
	margin: 0 auto;
}
.testimonial-slider.owl-carousel .owl-nav button {
	height: 44px;
	width: 44px;
	border: 1px solid #ebebeb;
	font-size: 24px;
	color: var(--white);
	background: var(--primary);
	line-height: 43px;
	text-align: center;
	border-radius: 50%;
	position: absolute;
	left: -60px;
	top: 50%;
	-webkit-transform: translateY(-6px);
	-ms-transform: translateY(-6px);
	transform: translateY(-6px);
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.testimonial-slider.owl-carousel .owl-nav button:hover {
    border-color: #ffffff;
    color: #ffffff;
}
.testimonial-slider.owl-carousel .owl-nav button.owl-next {
	left: auto;
	right: -60px;
}
.testimonial-slider .ts-item {
	text-align: center;
}
.testimonial-slider .ts-item p {
	font-size: 17px;
	color: var(--dark);
	line-height: 30px;
}
.testimonial-slider .ts-item .ti-author {
	margin-bottom: 60px;
}
.testimonial-slider .ts-item .ti-author .rating {
	display: inline-block;
}
.testimonial-slider .ts-item .ti-author .rating i {
	color: #f5b917;
	font-size: 16px;
}
.testimonial-slider .ts-item .ti-author h5 {
	font-size: 20px;
	color: #19191a;
	display: inline-block;
}
/*---------------------
  Blog and Event
-----------------------*/

.blog-section {
	padding-bottom: 70px;
}
.blog-section .section-title {
	margin-bottom: 36px;
}
/*---------------------
  Footer Section
-----------------------*/
.footer{
	padding: 0 !important;
}
.footer-section {
	background: var(--primary);
}
.footer-section .footer-text {
	padding: 80px 0 30px;
}
.footer-section .footer-text .ft-about {
	margin-bottom: 30px;
}
.footer-section .footer-text .ft-about .logo {
	margin-bottom: 20px;
}
.footer-section .footer-text .ft-about .logo a {
	display: inline-block;
}
.footer-section .footer-text .ft-about p {
	color: #aaaab3;
	margin-bottom: 20px;
}
.footer-section .footer-text .ft-about .fa-social a {
	display: inline-block;
	height: 40px;
	width: 40px;
	font-size: 16px;
	line-height: 40px;
	text-align: center;
	color: #ffffff;
	border: 1px solid #5A4D48;
	border-radius: 50%;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	margin-right: 7px;
}
.footer-section .footer-text .ft-about .fa-social a:hover {
	background: #dfa974;
	border-color: #dfa974;
}
.footer-section .footer-text .ft-contact {
	margin-bottom: 30px;
}
.footer-section .footer-text .ft-contact h6 {
    font-size: 18px;
    color: var(--white);
    text-transform: capitalize;
    font-weight: 500;
    letter-spacing: normal;
    font-family: "Lora", serif;
    margin-bottom: 10px;
    text-decoration: underline;
}
.footer-section .footer-text .ft-contact ul li {
	font-size: 16px;
	color: #aaaab3;
	line-height: 32px;
	list-style: none;
}
.footer-section .footer-text .ft-newslatter h6 {
	font-size: 14px;
	color: #dfa974;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 3px;
	font-family: "Lora", serif;
	margin-bottom: 20px;
}
.footer-section .footer-text .ft-newslatter p {
	color: #aaaab3;
	margin-bottom: 20px;
}
.footer-section .footer-text .ft-newslatter .fn-form {
	position: relative;
}
.footer-section .footer-text .ft-newslatter .fn-form input {
	width: 100%;
	height: 50px;
	border-radius: 2px;
	background: #393D4A;
	border: none;
	padding-left: 20px;
	font-size: 16px;
	color: #707079;
}
.footer-section .footer-text .ft-newslatter .fn-form button {
	position: absolute;
	right: 0;
	top: 0;
	font-size: 16px;
	background: #dfa974;
	color: #ffffff;
	padding: 0 16px;
	height: 50px;
	border: none;
	border-radius: 0 2px 2px 0;
}
.footer-section .container{
	border-top: 1px solid #ffffff25;
    padding-top: 20px;
}
.footer-section .copyright-option {
	padding: 20px 0;
}
.footer-section .copyright-option ul li {
	list-style: none;
	display: inline-block;
	margin-right: 34px;
}
.footer-section .copyright-option ul li:last-child {
	margin-right: 0;
}
.footer-section .copyright-option ul li a {
	font-size: 16px;
	color: #aaaab3;
}
.footer-section .copyright-option .co-text {
	font-size: 16px;
	color: #707079;
	text-align: right;
}
/* --------------------------------- Other Pages Styles ----------------------------------- */

/*---------------------
  Breadcrumb Section
-----------------------*/

.breadcrumb-section {
	padding-top: 70px;
	padding-bottom: 80px;
}
.breadcrumb-text {
	text-align: center;
}
.breadcrumb-text h2 {
	font-size: 44px;
	color: #19191a;
	margin-bottom: 12px;
}
.breadcrumb-text .bt-option a {
	display: inline-block;
	font-size: 18px;
	color: #19191a;
	margin-right: 20px;
	position: relative;
	font-weight: 500;
}
.breadcrumb-text .bt-option a:after {
    position: absolute;
    right: -15px;
    top: 5px;
    content: "";
    width: 2px;
    height: 20px;
    background: #ffffff;
    transform: rotate(25deg);
}
.breadcrumb-text .bt-option span {
	display: inline-block;
	font-size: 18px;
	color: #aaaab3;
}
/*------------------------
  About Us Page Section
-------------------------*/

.aboutus-page-section {
	padding-top: 0;
	padding-bottom: 70px;
}
.about-page-text {
	margin-bottom: 65px;
}
.about-page-text .ap-title {
	margin-bottom: 30px;
}
.about-page-text .ap-title h2 {
	font-size: 44px;
	color: #19191a;
	margin-bottom: 18px;
}
.about-page-text .ap-title p {
	font-size: 18px;
	color: #707079;
	line-height: 28px;
}
.about-page-text .ap-services li {
	list-style: none;
	font-size: 20px;
	color: #707079;
	line-height: 42px;
}
.about-page-text .ap-services li i {
	color: #dfa974;
	margin-right: 5px;
}
.about-page-services .ap-service-item {
	position: relative;
	height: 420px;
	border-radius: 5px;
	margin-bottom: 30px;
}
.about-page-services .ap-service-item .api-text {
	position: absolute;
	left: 0;
	bottom: 40px;
	width: 100%;
	text-align: center;
}
.about-page-services .ap-service-item .api-text h3 {
	color: #ffffff;
}
/*---------------------
  Video Section
-----------------------*/

.video-section {
	/* height: 100%; */
    position: relative;
	padding:57% 0 0;
}
.video-section .video-text {
	text-align: center;
}
.video-section .video-text h2 {
	font-size: 48px;
	color: #ffffff;
	margin-bottom: 16px;
}
.video-section .video-text p {
	font-size: 20px;
	color: #ffffff;
	margin-bottom: 40px;
}
.video-section .video-text .play-btn {
	display: inline-block;
}
/*---------------------
  Gallery Section
-----------------------*/

.gallery-section {
	padding-bottom: 80px;
}
.gallery-section .section-title {
	margin-bottom: 38px;
}
.gallery-item {
	position: relative;
	height: 279px;
	margin-bottom: 20px;
	border-radius: 5px;
	position: relative;
	z-index: 1;
}
.gallery-item:hover:after {
	opacity: 1;
}
.gallery-item:hover .gi-text {
	opacity: 1;
}
.gallery-item:after {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(25, 25, 26, 0.3);
	content: "";
	z-index: -1;
	border-radius: 5px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	opacity: 0;
}
.gallery-item.large-item {
	height: 576px;
}
.gallery-item .gi-text {
	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;
	width: 100%;
	height: 100%;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	opacity: 0;
}
.gallery-item .gi-text h3 {
	color: #ffffff;
}
/*---------------------
  Room Section
-----------------------*/

.rooms-section {
	padding-top: 0;
	padding-bottom: 80px;
}
.room-item {
    margin-bottom: 30px;
    padding: 15px;
    background: #fff;
    border-radius: 15px;
}
a.btn-white {
    color: var(--primary) !important;
	font-weight: 700;
    text-align: right;
    display: block;
}
.room-item:hover{

}
.room-item img {
	min-width: 100%;
}
.room-item .ri-text {
    border-top: none;
    padding: 15px 15px 15px 15px;
}
.room-item .ri-text h4 {
	color: #19191a;
	margin-bottom: 17px;
}
.room-item .ri-text h3 {
	color: #dfa974;
	font-weight: 700;
	margin-bottom: 14px;
}
.room-item .ri-text h3 span {
	font-family: "Lora", serif;
	font-size: 14px;
	font-weight: 400;
	color: #19191a;
}
.room-item .ri-text table {
	margin-bottom: 18px;
}
.room-item .ri-text table tbody tr td {
	font-size: 16px;
	color: #707079;
	line-height: 36px;
}
.room-item .ri-text table tbody tr td.r-o {
	width: 125px;
}
.room-item .ri-text .primary-btn {
	color: #19191a;
}
.room-pagination {
	text-align: center;
	padding-top: 20px;
}
.room-pagination a {
	font-size: 16px;
	color: #707079;
	border: 1px solid #EFD4B9;
	border-radius: 2px;
	padding: 7px 13px 5px;
	margin-right: 7px;
	display: inline-block;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.room-pagination a:last-child {
	margin-right: 0;
}
.room-pagination a:hover {
	background: #dfa974;
	color: #ffffff;
}
/*-----------------------
  Room Details Section
-------------------------*/

.room-details-section {
	padding-top: 0;
	padding-bottom: 80px;
}
.room-details-item {
	margin-bottom: 50px;
}
.room-details-item img {
	margin-bottom: 40px;
}
.room-details-item .rd-text .rd-title {
	overflow: hidden;
	margin-bottom: 8px;
}
.room-details-item .rd-text .rd-title h3 {
	color: #19191a;
	float: left;
}
.room-details-item .rd-text .rd-title .rdt-right {
	float: right;
	text-align: right;
}
.room-details-item .rd-text .rd-title .rdt-right .rating {
	display: inline-block;
	margin-right: 25px;
	margin-bottom: 10px;
}
.room-details-item .rd-text .rd-title .rdt-right .rating i {
	color: #f5b917;
}
.room-details-item .rd-text .rd-title .rdt-right a {
	display: inline-block;
	color: #ffffff;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	background: #dfa974;
	padding: 14px 28px 13px;
}
.room-details-item .rd-text h2 {
	color: #dfa974;
	font-weight: 700;
	margin-bottom: 25px;
}
.room-details-item .rd-text h2 span {
	font-family: "Lora", serif;
	font-size: 16px;
	font-weight: 400;
	color: #19191a;
}
.room-details-item .rd-text table {
	margin-bottom: 32px;
}
.room-details-item .rd-text table tbody tr td {
	font-size: 16px;
	color: #19191a;
	line-height: 36px;
}
.room-details-item .rd-text table tbody tr td.r-o {
	width: 120px;
	color: #707079;
}
.room-details-item .rd-text p {
	color: #707079;
}
.room-details-item .rd-text p.f-para {
	margin-bottom: 22px;
}
.rd-reviews {
    margin-bottom: 50px;
    padding-right: 25px;
    max-height: 620px;
    overflow-x: auto;
    overflow-y: scroll;
	border: none;
}
.rd-reviews h4 {
	color: #19191a;
	letter-spacing: 1px;
	margin-bottom: 45px;
}
.rd-reviews .review-item {
    margin-bottom: 20px;
    display: flex;
    background: #f3eadb;
    align-items: center;
	position: relative;
}
.rd-reviews .review-item:before
{
	content: '';
	position: absolute;
	top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	transform-origin: 0 50%;
	transform: scaleX(0);
	transform-origin: 0 50%;
    z-index: 0;
}
.rd-reviews .review-item:hover::before, .rd-reviews .review-item.active::before{
	
	border: 2px solid var(--primary);
    outline: 1px solid var(--primary);
    outline-offset: -7px;
    background: #fff;
    transition: transform .4s ease .15s, visibility 03s ease;
	transform: scaleX(1);
    visibility: visible;
	z-index: 0;
}
/* .rd-reviews .review-item:hover .ri-text p {
    color: var(--white);
} */
/* .rd-reviews .review-item:hover .badge{
	background: var(--white) !important;
	color: var(--primary) !important;
} */
.review-item {
    padding-right: 20px;
}
.rd-reviews .review-item .ri-pic {
	margin-right: 20px;
	z-index: 1;
}
.rd-reviews .review-item .ri-pic img {
	width:300px;
	border-radius: 0px;
}
.rd-reviews .review-item .ri-text {
	overflow: hidden;
	position: relative;
}

.rd-reviews .review-item .ri-text span {
	font-size: 12px;
	color: #dfa974;
	text-transform: uppercase;
	letter-spacing: 3px;
}
.rd-reviews .review-item .ri-text .rating {
	position: absolute;
	right: 0;
	top: 0;
}
.rd-reviews .review-item .ri-text .rating i {
	color: #f5b917;
}
.rd-reviews .review-item .ri-text h5 {
	color: #19191a;
	margin-top: 4px;
	margin-bottom: 8px;
}
.rd-reviews .review-item .ri-text p {
	color: #4F4F4F;
    margin-bottom: 0;
    margin-right: 10px;
}
.review-add h4 {
	color: #19191a;
	letter-spacing: 1px;
	margin-bottom: 45px;
}
.review-add .ra-form input {
	width: 100%;
	height: 50px;
	border: 1px solid #e5e5e5;
	font-size: 16px;
	color: #aaaab3;
	padding-left: 20px;
	margin-bottom: 25px;
}
.review-add .ra-form input::-webkit-input-placeholder {
	color: #000;
}
.review-add .ra-form input::-moz-placeholder {
	color: #000;
}
.review-add .ra-form input:-ms-input-placeholder {
	color: #000;
}
.review-add .ra-form input::-ms-input-placeholder {
	color: #000;
}
.review-add .ra-form input::placeholder {
	color: #000;
}
.review-add .ra-form h5 {
	font-size: 20px;
	color: #19191a;
	margin-bottom: 24px;
	float: left;
	margin-right: 10px;
}
.review-add .ra-form .rating {
	padding-top: 3px;
	display: inline-block;
}
.review-add .ra-form .rating i {
	color: #f5b917;
	font-size: 16px;
}
.review-add .ra-form textarea {
	width: 100%;
	height: 132px;
	border: 1px solid #e5e5e5;
	font-size: 16px;
	color: #aaaab3;
	padding-left: 20px;
	padding-top: 12px;
	margin-bottom: 24px;
	resize: none;
}
.review-add .ra-form textarea::-webkit-input-placeholder {
	color: #000;
}
.review-add .ra-form textarea::-moz-placeholder {
	color: #000;
}
.review-add .ra-form textarea:-ms-input-placeholder {
	color: #000;
}
.review-add .ra-form textarea::-ms-input-placeholder {
	color: #000;
}
.review-add .ra-form textarea::placeholder {
	color: #000;
}
.review-add .ra-form button {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	color: #ffffff;
	letter-spacing: 2px;
	background: #dfa974;
	border: none;
	padding: 14px 34px 13px;
	display: inline-block;
}
.room-booking .btn::before {
    width: 104%;
    height: 130%;
}

.room-booking {
    padding: 10px 15px 20px 15px;
    border: 4px var(--primary) double;
	
		position: sticky;
		top: 10px;
}
@media (max-width:991px) {
	.hero-section .hr-bottom:before{
		bottom: -62px !important;
		width: 110px !important;
	}
	body {
		margin-top: 80px;
	}

	.menu-item{
		background-color: rgb(255 255 255) !important;
	}
	#header {
		position: fixed;
		top: 0;
		width: 100%;
		z-index: 99999999;
	}
	.blog-section .row.align-items-center .about-text, .section .row.align-items-center .about-text, .aboutus-section .row.align-items-center .about-text{
		width: 100% !important;
	}
	.room-booking {
		position: static;
		
	}

	#exampleModal .modal-body {
		max-width: 100% !important;
	}
	.d-flex.emoji {
		gap: 14px !important;
	}
	#exampleModal input[type=radio] + .form-check-label img {
		max-width: 35px !important;
		max-height: 35px !important;
	}
	#exampleModal input[type=radio] + .form-check-label{
		font-size: 14px !important;
	}

}
.room-booking h3 {
	color: #19191a;
	margin-bottom: 30px;
}
.room-booking form .check-date {
	position: relative;
	margin-bottom: 15px;
}
.room-booking form .check-date label {
	font-size: 17px;
	color: #000;
	display: block;
	margin-bottom: 10px;
}
.room-booking form .check-date input {
	width: 100%;
	height: 50px;
	border: 1px solid #ebebeb;
	border-radius: 2px;
	font-size: 16px;
	color: #19191a;
	text-transform: uppercase;
	font-weight: 500;
	padding-left: 20px;
}
.room-booking form .check-date i {
	color: var(--dark);
	position: absolute;
	right: 18px;
	bottom: 17px;
}
.room-booking form .select-option {
	margin-bottom: 15px;
}
.room-booking form .select-option label {
	font-size: 17px;
	color: #000;
	display: block;
	margin-bottom: 10px;
}
.room-booking form .select-option .nice-select {
	border-radius: 2px;
	border: 1px solid #ebebeb;
	height: 50px;
	line-height: 50px;
	outline: none;
	padding-left: 20px;
	width: 100%;
	float: none;
}
.room-booking form .select-option .nice-select:after {
	border-bottom: 2px solid #dfa974;
	border-right: 2px solid #dfa974;
	height: 10px;
	margin-top: 0;
	right: 20px;
	width: 10px;
	top: 36%;
}
.room-booking form .select-option .nice-select span {
	font-size: 16px;
	color: #19191a;
	text-transform: uppercase;
	font-weight: 500;
}
.room-booking form .select-option .nice-select .list {
	margin-top: 0;
	width: 100%;
}
.room-booking form button {
    display: block;
    width: 96%;
    margin-top: 30px;
}
/*---------------------
  Blog Section
-----------------------*/

.blog-section.blog-page {
	padding-top: 0;
	padding-bottom: 88px;
}
.blog-item {
	height: 450px;
	position: relative;
	margin-bottom: 30px;
	border-radius: 5px;
}
.blog-item.small-size {
	height: 400px;
}
.blog-item .bi-text {
	position: absolute;
	left: 0;
	bottom: 25px;
	width: 100%;
	padding-left: 30px;
	padding-right: 30px;
}
.blog-item .bi-text .b-tag {
	display: inline-block;
	color: #ffffff;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	background: #dfa974;
	padding: 3px 10px;
	border-radius: 2px;
}
.blog-item .bi-text h4 {
	margin-top: 18px;
	margin-bottom: 18px;
}
.blog-item .bi-text h4 a {
	color: #ffffff;
}
.blog-item .bi-text .b-time {
	font-size: 12px;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 3px;
}
.load-more {
	text-align: center;
	padding-top: 30px;
}
.load-more .primary-btn {
	color: #19191a;
}
/*----------------------------
  Blog Details Hero Section
----------------------------*/

.blog-details-hero {
	height: 530px;
	padding-top: 165px;
}
.bd-hero-text {
	text-align: center;
}
.bd-hero-text span {
	font-size: 12px;
	color: #ffffff;
	background: #dfa974;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	display: inline-block;
	padding: 4px 16px;
	border-radius: 2px;
}
.bd-hero-text h2 {
	font-size: 44px;
	color: #ffffff;
	line-height: 54px;
	margin-top: 30px;
	margin-bottom: 12px;
}
.bd-hero-text ul li {
	list-style: none;
	font-size: 14px;
	color: #dfa974;
	margin-right: 35px;
	display: inline-block;
}
.bd-hero-text ul li:last-child {
	margin-right: 0;
}
.bd-hero-text ul li.b-time {
	text-transform: uppercase;
}
/*---------------------
  Blog Details Section
-----------------------*/

.blog-details-section {
	padding-top: 55px;
}
.blog-details-text .bd-title {
	margin-bottom: 52px;
}
.blog-details-text .bd-title p {
	font-size: 18px;
	color: #707079;
	line-height: 30px;
}
.blog-details-text .bd-pic {
	overflow: hidden;
	margin-bottom: 35px;
}
.blog-details-text .bd-pic .bp-item {
	width: calc(33.33% - 10px);
	float: left;
	margin-right: 15px;
}
.blog-details-text .bd-pic .bp-item:last-child {
	margin-right: 0;
}
.blog-details-text .bd-pic .bp-item img {
	min-width: 100%;
}
.blog-details-text .bd-more-text {
	margin-bottom: 50px;
}
.blog-details-text .bd-more-text .bm-item {
	margin-bottom: 30px;
}
.blog-details-text .bd-more-text .bm-item h4 {
	color: #19191a;
	margin-bottom: 20px;
}
.blog-details-text .bd-more-text .bm-item p {
	font-size: 18px;
	color: #707079;
	line-height: 30px;
}
.blog-details-text .tag-share {
	overflow: hidden;
	border-top: 1px solid #ebebeb;
	padding-top: 30px;
	margin-bottom: 75px;
}
.blog-details-text .tag-share .tags {
	float: left;
}
.blog-details-text .tag-share .tags a {
	font-size: 12px;
	color: #707079;
	background: #ebebeb;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	display: inline-block;
	padding: 4px 16px;
	border-radius: 2px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	margin-right: 6px;
}
.blog-details-text .tag-share .tags a:hover {
	color: #ffffff;
	background: #dfa974;
}
.blog-details-text .tag-share .social-share {
	float: right;
}
.blog-details-text .tag-share .social-share span {
	display: inline-block;
	font-size: 18px;
	color: #707079;
}
.blog-details-text .tag-share .social-share a {
	display: inline-block;
	font-size: 16px;
	color: #707079;
	margin-left: 30px;
}
.blog-details-text .comment-option {
	margin-bottom: 75px;
}
.blog-details-text .comment-option h4 {
	color: #19191a;
	margin-bottom: 35px;
}
.blog-details-text .comment-option .single-comment-item {
	margin-bottom: 30px;
}
.blog-details-text .comment-option .single-comment-item.first-comment .sc-text {
	padding-left: 22px;
}
.blog-details-text .comment-option .single-comment-item.first-comment .sc-text:before {
	position: absolute;
	left: 0;
	top: 0;
	width: 1px;
	height: 255px;
	background: #ebebeb;
	content: "";
}
.blog-details-text .comment-option .single-comment-item.reply-comment {
	padding-left: 120px;
	margin-bottom: 52px;
}
.blog-details-text .comment-option .single-comment-item.second-comment .sc-text {
	padding-left: 22px;
}
.blog-details-text .comment-option .single-comment-item.second-comment .sc-text:before {
	position: absolute;
	left: 0;
	top: 0;
	width: 1px;
	height: 100px;
	background: #ebebeb;
	content: "";
}
.blog-details-text .comment-option .single-comment-item .sc-author {
	float: left;
	margin-right: 28px;
}
.blog-details-text .comment-option .single-comment-item .sc-author img {
	height: 70px;
	width: 70px;
	border-radius: 50%;
}
.blog-details-text .comment-option .single-comment-item .sc-text {
	display: table;
	position: relative;
}
.blog-details-text .comment-option .single-comment-item .sc-text span {
	font-size: 12px;
	color: #dfa974;
	text-transform: uppercase;
	letter-spacing: 2px;
}
.blog-details-text .comment-option .single-comment-item .sc-text h5 {
	font-size: 20px;
	color: #19191a;
	margin-top: 4px;
	margin-bottom: 8px;
}
.blog-details-text .comment-option .single-comment-item .sc-text p {
	color: #707079;
	margin-bottom: 18px;
}
.blog-details-text .comment-option .single-comment-item .sc-text a {
	display: inline-block;
	color: #19191a;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 5px 24px;
	border: 1px solid #F9EEE3;
	border-radius: 50px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	margin-right: 10px;
}
.blog-details-text .comment-option .single-comment-item .sc-text a:hover {
	background: #dfa974;
	color: #ffffff;
	border-color: #dfa974;
}
.blog-details-text .leave-comment h4 {
	color: #19191a;
	margin-bottom: 35px;
}
.blog-details-text .leave-comment .comment-form input {
	width: 100%;
	height: 50px;
	color: #707079;
	font-size: 16px;
	padding-left: 20px;
	border: 1px solid #e5e5e5;
	border-radius: 2px;
	margin-bottom: 20px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.blog-details-text .leave-comment .comment-form input:focus {
	border-color: #dfa974;
}
.blog-details-text .leave-comment .comment-form textarea {
	width: 100%;
	height: 116px;
	color: #707079;
	font-size: 16px;
	padding-left: 20px;
	border: 1px solid #e5e5e5;
	border-radius: 2px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	margin-bottom: 42px;
	resize: none;
	padding-top: 12px;
}
.blog-details-text .leave-comment .comment-form textarea:focus {
	border-color: #dfa974;
}
.blog-details-text .leave-comment .comment-form button {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	color: #ffffff;
	letter-spacing: 2px;
	background: #dfa974;
	border: none;
	padding: 14px 42px 13px;
	display: inline-block;
	border-radius: 2px;
}
/*---------------------
  Recommend Blog
-----------------------*/

.recommend-blog-section {
	padding-top: 65px;
	padding-bottom: 50px;
}
.recommend-blog-section .section-title {
	margin-bottom: 37px;
}
.recommend-blog-section .section-title h2 {
	margin-top: 0;
}
/*---------------------
  Contact Section
-----------------------*/

.contact-section {
	padding-top: 80px;
	padding-bottom: 80px;
}
.contact-text h2 {
	font-size: 44px;
	color: #19191a;
	margin-bottom: 24px;
}
.contact-text p {
	color: #707079;
}
.contact-text table tbody tr td {
	font-size: 16px;
	color: #19191a;
	line-height: 36px;
	font-weight: 500;
}
.contact-text table tbody tr td.c-o {
	color: #707079;
	width: 75px;
}
.contact-form input {
    width: 100%;
    height: 50px;
    border: 1px solid #4F4F4F;
    font-size: 16px;
    color: #000;
    padding-left: 25px;
    margin-bottom: 28px;
    padding: 9px 15px;
    border-radius: 5px;
    background: var(--secondary);
}
.contact-form input::-webkit-input-placeholder {
	color: #000;
}
.contact-form input::-moz-placeholder {
	color: #000;
}
.contact-form input:-ms-input-placeholder {
	color: #000;
}
.contact-form input::-ms-input-placeholder {
	color: #000;
}
.contact-form input::placeholder {
	color: #000;
}
.contact-form{
    border: 1px solid #4F4F4F;
    padding: 30px 30px;
    border-radius: 5px;
}
.contact-form textarea {
	width: 100%;
	height: 150px;
	border: 1px solid #4F4F4F;
	font-size: 16px;
	color: #000;
	padding-left: 25px;
	padding-top: 12px;
	margin-bottom: 33px;
	resize: none;
	border-radius: 5px;
    background: var(--secondary);
}
.contact-form textarea::-webkit-input-placeholder {
	color: #000;
}
.contact-form textarea::-moz-placeholder {
	color: #000;
}
.contact-form textarea:-ms-input-placeholder {
	color: #000;
}
.contact-form textarea::-ms-input-placeholder {
	color: #000;
}
.contact-form textarea::placeholder {
	color: #000;
}
.contact-form button {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--primary);
	letter-spacing: 2px;
	background: transparent;
	border: none;
	padding: 14px 34px 13px;
	display: inline-block;
}
.map {
	height: 470px;
	-webkit-box-shadow: 0px 14px 35px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 14px 35px rgba(0, 0, 0, 0.15);
	margin-top: 75px;
}
.map iframe {
	width: 100%;
}



.hr-bottom{
	position: relative;
	margin-bottom: 80px;
}

.hr-bottom:before {
    content: '';
    background: url(../img/divider-graphic.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 280px;
    height: 100px;
    position: absolute;
    left: 50%;
    bottom: -90px;
    transform: translate(-50%, 0px);
}

.hr-bottom.dark:before {
    background: url(../img/divider-graphic-dark.png);
	background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.hr-bottom.left.dark:before{
 left: 0px !important;
 transform: translate(0%, 0px);
}
.bg-light{
	background-color: var(--secondary) !important;
}
.text-left{
	text-align: left !important;
}
.btn-outline-primary{
	/* color: var(--primary);
    border-color: var(--primary);
	border:4px double var(--primary);
	 */
}
.btn{
	position: relative;
	border-radius: 0;
	padding: 6px 38px;
	margin-left: 6px;
}
/* .btn::before {
    content: '';
    width: 108%;
    height: 130%;
    background: transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -2;
    transform: translate(-50%, -50%) scale(1);
    border: 1px solid var(--primary);
} */

.text-primary{
	color: var(--primary) !important;
}
.text-secondary{
	color: var(--secondary) !important;
}
.text-light{
	color: var(--light) !important;
}

.btn-outline-primary:hover {
    color: var(--white);
    background-color: var(--primary);
    border-color: var(--primary);
}
:not(.btn-check)+.btn:active, .btn:focus-visible {
    color: var(--white) !important;
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
	box-shadow:none !important; 
}
.badge{
	border-radius: 0px;
}
.testimonial-slider .ts-item .d-flex {
    display: flex!important;
    align-items: center;
    gap: 30px;
}
.card {
    border-color: #BB9B8D;
}
.aboutus-section .card {
    min-height: 120px;
    justify-content: center;
}
.footer-section li a{
	color: var(--white);
}
.address  li {
	display: flex;
    vertical-align: middle;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
.address  li .ti {
	font-size: 20px;
}
.fa-social a {
    width: 30px;
    height: 30px;
    background: #fff;
    display: block;
    text-align: center;
    border-radius: 20px;
    color: #7d432a;
    line-height: 2;
}
.fa-social {
    display: flex;
    gap: 10px;
    align-items: center;
	justify-content: flex-end;
}
figure{
	position: relative;
}
figure::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: transparent;
    border: 1px solid var(--primary);
    z-index: -1;
   transition: 0.2s;
}

figure.left::before{
	top: 30px;
    right: 30px;
}

figure.right::before{
	top: -30px;
    right: -30px;
}

.owl-carousel figure {
    width: 100%;
    max-width: 100%;
    margin-left: 40px;
	margin-bottom: 40px;
}
video{
	margin: 0;
    width: 100% !important;
    height: 100% !important;
}
a.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.subscribe{
	background-color: #EAE4E1;
	position: relative;
}
.subscribe img{
	position: absolute;
    left: 0;
    bottom: 0;
    max-width: 420px;
}
a.btn.btn-outline-primary {
    padding: 5px 10px !important;
    text-align: center;
    min-width: 150px;
}
.navbar-expand-lg .navbar-collapse {
    flex-basis: auto !important;
    align-items: center !important;
	justify-content: space-between !important;
}
.menu-item .nav-menu .mainmenu li:last-child a:after{
 opacity: 0;
}
#navbarNavDropdown .btn-outline-primary .ti{
font-size: 22px;
}
#navbarNavDropdown .btn-outline-primary{
    color: var(--dark);
    display: flex;
    gap: 8px;
	align-items:center;
    font-weight: 500;
    min-width: 140px;
    padding: 5px;
    /* margin-top: 12px !important; */
    margin-left: 15px;
    padding: 12px !important;
    border-radius: 20px;
    box-shadow: none;
    border: 2px solid var(--primary);
}
#navbarNavDropdown .btn-outline-primary:hover{
	color: var(--white);
	font-weight: 500;
	background: var(--primary) !important;
}

.dropdown .dropdown-menu li{
 width: 100%;
}
.dropdown .dropdown-menu li a{
	padding: 10px 20px !important;
}
.dropdown .dropdown-menu li a::after{
	display:none;
}
.about-text h4 {
    font-size: 34px;
    margin: 15px 0;
}
.listing{
	margin: 20px 0px 0px 20px;
    column-count: 2;
	color: #4F4F4F;
	font-size: 17px;
}
.blog-section .container .row{
	margin-bottom: 170px;
}
.blog-section .container .row:last-child{
	margin-bottom: 30px;
}
.blog-section .hr-bottom:before{
	width: 200px;
}
ul.listing li {
    padding-bottom: 8px;
}
form.subscribe {
    display: flex;
    width: 60%;
    margin: 0 auto;
}
.subscribe .btn-primary {
    border: none;
    width: 220px;
    margin: 0;
    background: #7d422a;
    padding: 15px 0px;
}
form.subscribe .form-control{
 border-radius: 0;
 border-color: #4F4F4F;
}
.listing.amenities li{
 color: #000;
}
.listing.amenities li {
    color: #000;
    display: flex;
    align-items: center;
    gap: 20px;
	padding-bottom:20px
}
.form-check{
	font-size: 17px;
    color: #000;
	
}
.form-check-input{
	border-color: #000000;
	--bs-form-check-bg: transparent;
}
.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}
.room-booking form .select-option .nice-select:after {
    border-bottom: 1px solid #000000;
    border-right: 1px solid #000000;
}
.service-item img {
    width: 50px;
    height: auto;
}
@media (max-width:767px) {
	.service-slider	 .owl-item .service-item img{
		width:36px;
	}
	.service-item h4{
		font-size:17px;
		margin: 10px 0 5px;
	}
	.service-item p{
		font-size:12px;
	}}
.bigger{
	font-size: 10em !important;
}
.listing.cc1{
	column-count: 1;
}
.listing.cc2{
	column-count: 2;
}
.joining {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #BB9B8D;
    padding: 25px;
    border-radius: 5px;
}
.joining {
    margin-bottom: 20px;
}
.joining:hover {
    outline: 4px solid #bb9b8d79;
    background: inherit;
}
.hr-top{
	position: relative;
}
.hr-top::after {
    background-image: url(../img/hrborder.png);
    background-repeat: no-repeat;
    background-position: top;
    content: '';
    position: absolute;
    top: -80px;
    width: 100%;
    height: 50px;
    background-size: contain;
	left: 0;
}
 .btn-secondary[for='fileinput']{
    margin-bottom: 15px;
    background: transparent;
    color: #4F4F4F;
    padding: 10px 40px;
    border-radius: 7px;
	border-color: #4F4F4F;
}
.hero-text.small {
    padding: 100px 0;
}
.text-justify{
	text-align: justify;
}
.accordion-item:first-of-type {
    background: transparent;
    border: none;
}
.accordion-item {
    background: transparent;
    border: none !important
}

button.accordion-button {
    background-color: transparent;
	border: 1px solid #000;
	border-radius: 50px !important;
	color: #000;
	margin-bottom: 20px;
	font-weight: 600;
	font-size: 20px;
}
.accordion-button::after {
    border: 1px solid #000;
    text-align: center !important;
    height: 40px;
    width: 40px;
    border-radius: 30px;
    background-position: center;
    background-size: 17px;
	right: 11px;
    top: 11px;
	position: absolute;
}
.accordion-body p{
 color: var(--dark);
}
.accordion-button:not(.collapsed){
	color: var(--primary) !important;
	background: transparent;
}
.faq-section .nav-tabs .nav-item .nav-link,.faq-section .nav-tabs .nav-item a.nav-pills {
    color: #4F4F4F;
    background: transparent;
    border: transparent;
    padding: 0;
	font-weight: 500;
}
.faq-section .nav-item .nav-pills.active,.faq-section .nav-item .nav-link.active {
    color: #000 !important;
    border-bottom: 1px solid #834226 !important;
    padding-bottom: 6px !important;
}
.faq-section .nav-tabs {
border-color: #F5EAD8;
}
.seo_filter{
	color:var(--dark);
}
.seo_filter .form-control{
	width: 200px;
    height: 34px;
    border: 1px solid #4F4F4F;
    font-size: 16px;
    color: #000;
    padding-left: 25px;
    margin-bottom: 0;
    padding: 1px 11px;
    border-radius: 0;
    background: var(--secondary);
    line-height: 29px;
}

.seo_filter .nice-select:after {
    content: '\ea5f';
    font-family: 'tabler-icons';
    top: 5px;
    position: absolute;
    right: 22px;
    font-size: 26px;
    border: 0;
    transform: rotate(0deg);
}
.seo_filter .nice-select.open:after{
	-webkit-transform:rotate(0);
	transform:rotate(0);
	content:'\ea62';

}
.form-control:focus{
	box-shadow:none;
}
 .nav-my .nav-item{
	position: relative;
}
.nav-my .nav-item::before {
    content: '';
    width: 1px;
    height: 20px;
    right: 0px;
    position: absolute;
    background-color: var(--primary);
    top: 4px;
    transform: rotate(20deg);
}
.nav-my .nav-item:last-child:before {
    content:none;
}
.faq-section .nav-my{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px 0;
}
.faq-section .nav-my li.nav-item, .nav-my li.nav-pills {
    min-width: auto;
    text-align: center;
    padding: 0px 20px;
}
.navbar-toggler{
	border: none;
}


/*toggle*/
.clear-menu-btn {
    position: absolute;
    width: 30px;
    height: 26px;
    margin: 0 auto;
    top: 24px;
    left: 20px;
}
  .clear-menu-btn input[type="checkbox"] {
	position: absolute;
	filter: alpha(opacity=0);
	opacity: 0;
	width: 100%;
	height: 100%;
  }
  .clear-menu-btn input[type="checkbox"]:hover { cursor: pointer; }
  .clear-menu-btn input[type="checkbox"]:checked ~ .top, .clear-menu-btn input[type="checkbox"]:checked ~ .bottom { top: 50%; }
  .clear-menu-btn input[type="checkbox"]:checked ~ .top {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
  }
  .clear-menu-btn input[type="checkbox"]:checked ~ .bottom {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
  }
  .clear-menu-btn input[type="checkbox"]:checked ~ .middle {
	filter: alpha(opacity=0);
	opacity: 0;
  }
  .clear-menu-btn input[type="checkbox"]:checked ~ .circle {
	filter: alpha(opacity=100);
	opacity: 1;
  }
  .clear-menu-btn span {
	position: absolute;
	display: block;
	width: 30px;
	height: 3px;
	background-color: #000;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	z-index: -1;
  }
  .clear-menu-btn .top { top: 15%; }
  .clear-menu-btn .middle { top: 50%; }
  .clear-menu-btn .bottom { top: 85%; }
  .clear-menu-btn{
	display: none;
  }
  .testimonial-slider .quot {
    font-size: 36px !important;
    color: var(--primary) !important;
    transform: rotate(180deg);
    display: inline-block;
    width: 30px;
    margin-bottom: 0px;
}
.bg-bottom{
	background-position: center;
}





/* SLider */

.swiper-pagination-bullet{border: 1px solid #1da1f2;}.swiper-pagination-bullet-active{background:#1da1f2}
img:not([draggable]), embed, object, video {
    max-width: 100%;
    height: auto;
}

.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    z-index: 1
}

.swiper-container-no-flexbox .swiper-slide {
    float: left
}

.swiper-container-vertical>.swiper-wrapper {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    box-sizing: content-box
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.swiper-container-multirow>.swiper-wrapper {
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.swiper-container-free-mode>.swiper-wrapper {
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    margin: 0 auto
}

.swiper-slide {
    -webkit-flex-shrink: 0;
    -ms-flex: 0 0 auto;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative
}

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
    height: auto
}

.swiper-container-autoheight .swiper-wrapper {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-transition-property: -webkit-transform, height;
    -webkit-transition-property: height, -webkit-transform;
    transition-property: height, -webkit-transform;
    transition-property: transform, height;
    transition-property: transform, height, -webkit-transform
}

.swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000
}

.swiper-wp8-horizontal {
    -ms-touch-action: pan-y;
    touch-action: pan-y
}

.swiper-wp8-vertical {
    -ms-touch-action: pan-x;
    touch-action: pan-x
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 27px;
    height: 44px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    background-size: 27px 44px;
    background-position: center;
    background-repeat: no-repeat
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
    left: 10px;
    right: auto
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
    right: 10px;
    left: auto
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0
}

.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #000;
    opacity: .2
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -webkit-appearance: none;
    appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.swiper-pagination-white .swiper-pagination-bullet {
    background: #fff
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #007aff
}

.swiper-pagination-white .swiper-pagination-bullet-active {
    background: #fff
}

.swiper-pagination-black .swiper-pagination-bullet-active {
    background: #000
}

.swiper-container-vertical>.swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0)
}

.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 5px 0;
    display: block
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px
}

.swiper-pagination-progress {
    background: rgba(0, 0, 0, .25);
    position: absolute
}

.swiper-pagination-progress .swiper-pagination-progressbar {
    background: #007aff;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: left top;
    transform-origin: left top
}

.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
    -webkit-transform-origin: right top;
    transform-origin: right top
}

.swiper-container-horizontal>.swiper-pagination-progress {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0
}

.swiper-container-vertical>.swiper-pagination-progress {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0
}

.swiper-pagination-progress.swiper-pagination-white {
    background: rgba(255, 255, 255, .5)
}

.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
    background: #fff
}

.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
    background: #000
}

.swiper-container-3d {
    -webkit-perspective: 1200px;
    -o-perspective: 1200px;
    perspective: 1200px
}

.swiper-container-3d .swiper-cube-shadow,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-wrapper {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d
}

.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10
}

.swiper-container-3d .swiper-slide-shadow-left {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-3d .swiper-slide-shadow-right {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-3d .swiper-slide-shadow-top {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-coverflow .swiper-wrapper,
.swiper-container-flip .swiper-wrapper {
    -ms-perspective: 1200px
}

.swiper-container-cube,
.swiper-container-flip {
    overflow: visible
}

.swiper-container-cube .swiper-slide,
.swiper-container-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1
}

.swiper-container-cube .swiper-slide .swiper-slide,
.swiper-container-flip .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active,
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper-container-cube .swiper-slide {
    visibility: hidden;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    width: 100%;
    height: 100%
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-next+.swiper-slide,
.swiper-container-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible
}

.swiper-container-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .6;
    -webkit-filter: blur(50px);
    filter: blur(50px);
    z-index: 0
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out
}

.swiper-container-fade .swiper-slide {
    pointer-events: none;
    -webkit-transition-property: opacity;
    transition-property: opacity
}

.swiper-container-fade .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center
}

.swiper-zoom-container>canvas,
.swiper-zoom-container>img,
.swiper-zoom-container>svg {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0, 0, 0, .1)
}

.swiper-container-horizontal>.swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%
}

.swiper-container-vertical>.swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, .5);
    border-radius: 10px;
    left: 0;
    top: 0
}

.swiper-scrollbar-cursor-drag {
    cursor: move
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
    animation: swiper-preloader-spin 1s steps(12, end) infinite
}

.swiper-lazy-preloader:after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    background-position: 50%;
    background-size: 100%;
    background-repeat: no-repeat
}

.swiper-lazy-preloader-white:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")
}
/* 
@-webkit-keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg)
    }
}

@keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
} */

.swiper-container.one {
    padding-top: 40px;
    text-align: center;
}

.swiper-container.one .swiper-slide {
    padding: 0 43px;
}

.swiper-container {
    width: 100%;
    padding-bottom: 60px;
}
.swiper-slide img {
    display: block;
    margin: auto;
    width: 100%;
    border-radius: 25px;
    overflow: hidden;
}



.swiper-slide {
    width: 390px;
    height: auto;
    padding: 0 15px;
}
.two .swiper-slide {
    width: 50%;
	padding: 0;
	border-radius: 25px;
	overflow: hidden;
}
.swiper-slide img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.swiper-slide .slider-image .preview-icon {
    z-index: -1;
    width: calc(100% - 30px);
}

.swiper-slide.swiper-slide-active .slider-image:hover .preview-icon {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    z-index: 1;
}

.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 0;
}

.swiper-pagination-bullet {
	background: transparent none repeat scroll 0 0;
	border: 1px solid #ee0f6f;
	border-radius: 10px;
	display: inline-block;
	height: 10px;
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	width: 26px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.swiper-pagination-bullet-active {
    background: rgba(0, 0, 0, 0) -webkit-linear-gradient(left, #ee0f6f 0%, #f89482 100%) repeat scroll 0 0;
    background: rgba(0, 0, 0, 0) linear-gradient(to right, #ee0f6f 0%, #f89482 100%) repeat scroll 0 0;
    border: medium none;
    height: 12px;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    width: 12px;
}

span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #834226;
}
span.swiper-pagination-bullet {
    border: none;
    background: #BB9B8D;
}
.swiper-nav {
    position: absolute;
    width: 180px;
    margin: 0 auto;
    left: 50%;
    bottom: 18px;
    transform: scale(1) translate(-50%, 0px);
    z-index: 999;
}
.swiper-button-prev, .swiper-button-next{
	color: #824226 !important
}
.dropdown-toggle::after{
	content: none !important;
}
.dropdown-item.active, .dropdown-item:active{
	background-color: var(--primary);
	color: var(--white) !important;
}
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
	background-color: transparent !important;
    border-color: var(--primary) !important;
	color: var(--primary) !important;
}
.subscribe .btn-primary:active{
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--white) !important;
}
.outline-outward {
    display: inline-block;
    position: relative;
}
.outline-outward:hover:before {
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
	opacity: 1;
}
.outline-outward:before {
	opacity: 0;
    content: '';
    position: absolute;
    border: #7d432a solid 1px;
    top: 0;
    right: 0;
    border-radius: 20px;
    bottom: 0;
    left: 0;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-property: top right bottom left;
    transition-property: top right bottom left;
	z-index: -1;
}
.swiper-button-next, .swiper-container-rtl .swiper-button-prev, .swiper-button-prev, .swiper-container-rtl .swiper-button-next{
	background-image: none !important;
}
.swiper-slide {
    border-radius: 20px !important;
    overflow: hidden;
	padding: 0 !important;
}
.mySwiper{
	position: relative;
}
.mySwiper .swiper-nav {
    position: absolute;
    width: 140px;
    margin: 0 auto;
    left: 50%;
    bottom: 50px;
    transform: translate(-50%, 0px);
    z-index: 999;
}
.mySwiper .swiper-button-prev, .mySwiper .swiper-button-next{
	display: block;
}
.position-relative.sliders  .swiper-nav {
    position: absolute;
    width: 140px;
    margin: 0 auto;
    left: 50%;
    bottom: 48px;
    transform: scale(1) translate(-50%, 0px);
    z-index: 999;
}
.swiper-button-next,.swiper-button-prev {
    width: 50px !important;
}
.position-relative.sliders  .swiper-button-prev:after,.position-relative.sliders  .swiper-button-next:after {
    font-size: 20px;
    background: transparent;
    width: 50px !important;
    height: 50px !important;
    padding: 10px;
    margin: 0px;
    text-align: center;
    border: 1px solid #fff;
    color: #fff;
    display: block;
    border-radius: 50px;
    line-height: 1.6;
}
figure.border-none::before{
content: none;
}
figure.border-none {
    border-radius: 10px;
    overflow: hidden;
}
.mfp-figure figure::before{
content: none;
}
.video-frame{
	position: relative;
	display: inline-block;
}
.video-frame img.play-btn {
    position: absolute;
    z-index: 3;
    top: 50%;
	max-height:80px !important ;
	max-width: 80px !important;
    left: 50%;
    transform: translate(-50%, -50%);
}

::-webkit-scrollbar {
	width: 5px;
	height: 2px;
  }
  ::-webkit-scrollbar-track {
	background-color:#DED1CC;
  }
  ::-webkit-scrollbar-thumb {
	box-shadow: inset 0 0 15px  #834226;
  }

  .rd-reviews .nav-link {
    display: flex;
    align-items: center;
    color: inherit !important;
    background-color: transparent !important;
    border: none;
    padding: 0;
}
.cardSwiper .swiper-slide figure.left, .cardSwiper .swiper-slide img, .cardSwiper .swiper-slide figure::before{
	width: 90%;
	border-radius: 0 !important;
	margin: 0 auto;
    margin-bottom: 80px;
}
.cardSwiper .swiper-slide  figure.left::before {
    top: 15px;
    right: 40px;
}
.cardSwiper .swiper-slide .swiper-nav {
    width: 140px !important;
    left: 50% !important;
    transform: translate(-50%, 0px) !important;
}
.swiper.cardSwiper {
    padding-bottom: 50px;
}
.cardSwiper .swiper-nav {
    width: 140px;
}
.swiper.cardSwiper .swiper-button-next, .swiper.cardSwiper .swiper-button-prev {
    background: var(--primary) !important;
    color: #fff !important;
    width: 45px !important;
    height: 45px !important;
    display: block;
    text-align: center;
    line-height: 3.2;
    border-radius: 100px;
}
.swiper.cardSwiper .swiper-nav{
	padding: 20px;
}
.swiper.cardSwiper .swiper-button-prev:after, .swiper.cardSwiper .swiper-rtl .swiper-button-next:after,.swiper.cardSwiper .swiper-button-next:after,.swiper.cardSwiper .swiper-rtl .swiper-button-prev:after {
    font-size: 20px !important;
}
.border-none{
 border: none !important;
}
.blog-list {
    display: flex;
	flex-direction: column;
	padding: 0;
	gap: 15px;
}
.review-item {
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.review-item .ri-pic {
    width: 300px;
}
.room-booking .review-item .ri-pic {
	width: 160px;
}
.room-booking .ri-text > p{
	margin-bottom: 0;
}
a.review-item:hover {
    background: #BB9B8D;
    color: #fff;
}
a.review-item:hover p{
    color:#fff !important;
}
.img-grid {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
}
.img-grid a {
    width: 30.33%;
	position:relative
}
.img-grid a:after{
	content: '\ec20';
    font-family: 'tabler-icons';
    font-weight: bold;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: rgba(0 0 0 / 50%);
    top: 0;
    position: absolute;
    left: 0;
    font-size: 26px;
	opacity:0;

}
.img-grid a:hover:after{
	opacity:1;
}
.img-grid a  img{
	width:100%;
}
.tags a {
    color: #000 !important;
    border: 1px solid var(--primary);
    padding: 5px 5px;
    margin-right: 5px;
    margin-bottom: 10px;
    display: inline-block;
    width: 21%;
    text-align: center;
    font-size: 14px;
}
.tags a:hover {
    background: var(--primary);
    color: #fff !important;
}
.blog-item {
    margin-bottom: 30px;
    padding: 15px;
    background: #fff;
    border-radius: 15px;
}
.room-item.blog {
    padding: 0;
    border-radius: 0;
    background: transparent;
}
.room-item.blog .ri-text {
    border-top: none;
    padding: 10px 0px 15px 0px;
}
.room-item.blog a.btn-white {
    text-align: left;
}
.room-item.blog .date{
	font-size: 14px;
	color: #212529;	
}
.blog-content .quot {
    background: rgb(131, 66, 38);
    color: rgb(255, 255, 255);
    font-size: 24px;
    padding: 30px 60px;
    margin: 15px 0px;
    line-height: normal;
    position: relative;
}

.blog-content figure::before {
	border: none;
}

.blog-content .quot p {
    text-align: right;
    font-size: 15px;
    padding: 0;
    margin: 0;
	
}
.blog-content * {
    margin: 10px 0 !important;
	text-align: left;
}
ul.list-number {
    margin-left: 20px !important;
    list-style: decimal;
}
.quot .qmarkl::before {
    content: '';
    position: absolute;
    left: -35px;
    top: 0;
    width: 40px;
    height: 40px;
    background-image: url(../img/quot.png);
    background-repeat: no-repeat;
    background-position: center;
    z-index: 5;
    background-size: 80%;
    transform: translate(-10px, -16px);
}
.quot .qmarkr::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 0;
    width: 40px;
    height: 40px;
    background-image: url(../img/quot.png);
    background-repeat: no-repeat;
    background-position: center;
    z-index: 5;
    background-size: 80%;
    transform: translate(-10px, -16px) rotate(180deg);
}

.qmarkl, .qmarkr{
	position: relative;
	display: inline-block;
}
.quot span.d-block.text-right {
    font-size: 16px;
    text-align: right;
    margin: 0 !important;
}


/* Btn ANimation */

.button__horizontal, .button__vertical {
	position: absolute;
	top: var(--horizontal-offset, 0);
	right: var(--vertical-offset, 0);
	bottom: var(--horizontal-offset, 0);
	left: var(--vertical-offset, 0);
	transition: transform 0.8s ease;
	will-change: transform;
  }
  .button__horizontal::before, .button__vertical::before {
	content: "";
	position: absolute;
	border: inherit;
  }
  .button__horizontal {
	--vertical-offset: calc(var(--offset) * -1);
	border-top: var(--border-size) solid currentcolor;
	border-bottom: var(--border-size) solid currentcolor;
  }
  .button__horizontal::before {
	top: calc(var(--vertical-offset) - var(--border-size));
	bottom: calc(var(--vertical-offset) - var(--border-size));
	left: calc(var(--vertical-offset) * -1);
	right: calc(var(--vertical-offset) * -1);
  }
  .button:hover .button__horizontal {
	transform: scaleX(0);
  }
  .button__vertical {
	--horizontal-offset: calc(var(--offset) * -1);
	border-left: var(--border-size) solid currentcolor;
	border-right: var(--border-size) solid currentcolor;
  }
  .button__vertical::before {
	top: calc(var(--horizontal-offset) * -1);
	bottom: calc(var(--horizontal-offset) * -1);
	left: calc(var(--horizontal-offset) - var(--border-size));
	right: calc(var(--horizontal-offset) - var(--border-size));
  }
  .button:hover .button__vertical {
	transform: scaleY(0);
  }



  
.button, .btn-outline-primary {
    --offset: 6px;
    --border-size: 2px;
  position: relative;
  padding: 10px 20px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background: transparent;
  color: var(--primary);
  outline: none;
  cursor: pointer;
  border-radius: 0;
  box-shadow: inset 0 0 0 var(--border-size) currentcolor;
  transition: background 0.8s ease;
  }
  .room-booking a.btn.btn-outline-primary:hover {
    background: #824226 !important;
    color: #fff !important;
    border-color:#824226 !important;
    box-shadow:none;
}

  .button:hover , .btn-outline-primary:hover, .menu-item .nav-menu .mainmenu li .btn-outline-primary:hover{
	background-color:transparent !important;
    border-color: var(--primary);
	color: var(--primary);
  }

  .video-section iframe, .fluid-width-video-wrapper object, .fluid-width-video-wrapper embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

h6.outline.visible-xs {
    display: block;
    border: 1px solid;
    width: 100%;
    padding: 6px 10px;
    border-radius: 0px;
	text-decoration: none !important;
	position: relative;
}
h6.outline.visible-xs:after {
    content: '\f105';
    font-family: 'FontAwesome';
    position: absolute;
    right: 5px;
    color: #fff;
    font-size: 16px;
    width: 10px;
    height: 10px;
    text-align: center;
    transform: rotate(90deg);
    top: 12px;
}
::placeholder {
	color: #4f4f3f !important;
}
.faq-section .accordion p{
	margin: -15px 0px 5px 0;
}
.faq-section .accordion  .accordion-button{
	/* padding: 15px 35px 15px 15px; */
padding: 20px;
}

.mySwiper.swiper{
	border-radius: 25px !important;
	overflow: hidden;
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after, .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    font-size: 18px !important;
}
.joining .button, .joining .btn-outline-primary{
	padding: 8px 15px;
}
.share.d-flex {
    display: flex!important;
    align-items: center;
    gap: 10px;
}
.share.d-flex .fa-social a {
	width: 40px;
    height: 40px;
	background: #834226BF;
    display: block;
    text-align: center;
    border-radius: 20px;
    color: #fff;
    line-height: 41px;
    font-size: 20px;
}
.sharenow {
    display: flex!important;
    align-items: center;
    justify-content: space-between;
    height: 50px;
	border-top: 1px solid var(--primary);
	padding-top: 20px;
}
.service-slider {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.service-slider .item {
    flex: 0 0 32%;
}
.owl-carousel .owl-item img{
	max-width:100%;
	width: auto;
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: '\f178' !important;
        font-family: "Font Awesome 6 Free" !important;
		font-weight: bold;
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: '\f177' !important;
     font-family: "Font Awesome 6 Free" !important;
	 font-weight: bold;
}

.service-slider .owl-nav button{
    background: #fff !important;
    width: 40px;
    height: 40px;
    border-radius: 30px;

}
.service-slider .owl-nav{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

/*-------------------------------- Respinsive Media Styles --------------------------------*/

@media only screen and (min-width: 1554px) and (max-width: 1920px) {
	.hp-room-items .hp-room-item .hr-text {
		bottom: -200px;
	}
}
@media only screen and (min-width: 1200px) and (max-width: 1250px) {
	.hp-room-items .hp-room-item .hr-text {
		bottom: -288px;
	}
}
@media only screen and (min-width: 1200px) {
	
}
/* Medium Device: 1200px */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	
	.menu-item .nav-menu .mainmenu li a{
		font-size: 14px !important;
	}
	/* .testimonial-slider.owl-carousel .owl-nav button {
		left: -150px;
	}
	.testimonial-slider.owl-carousel .owl-nav button.owl-next {
		right: -150px;
	} */
	.hp-room-items .hp-room-item .hr-text {
		bottom: -322px;
	}
	.hp-room-items .hp-room-item:hover .hr-text {
		bottom: 80px;
	}
}


@media only screen and (max-width: 1399px){
	.testimonial-slider.owl-carousel .owl-nav button.owl-next {
		right: -20px;
	}
	.testimonial-slider.owl-carousel .owl-nav button{
		left: -20px;
	}
}
@media only screen and (max-width: 1199px){
	.menu-item .logo {
		width: 220px;
	}
	.cardSwiper .swiper-slide .about-text {
		margin-top: 0px !important 	;
	}
	
}

@media only screen and (max-width: 425px){
	#exampleModal .modal-footer button {
		min-width: auto !important;
	}
	.d-flex.emoji {
		flex-wrap: wrap;
	}
	.mySwiper .swiper-nav {
		width: 100px !important;
		left: 48% !important;
		bottom: 30px !important;
	}
	.rd-reviews .ri-pic {
		max-height: 200px !important;
	}

	.share.d-flex {
		height: 30px;
	}
	.sharenow {
		align-items: flex-start !important;
		justify-content: space-between;
		height: auto !important;
		flex-direction: column-reverse;
	}
	
}
@media only screen and (max-width: 600px) {
h6.outline[aria-expanded="true"]:after{
    transform: rotate(-90deg);
    right: 13px;
}
.copyright-option * {
    text-align: center !important;
}
section.video-section.set-bg {
    margin: 0 !important;
}
	.service-slider + .row.mt-5 .col-12 button{
margin-top: -88px;
}
}
@media only screen and (max-width: 991px) {
.footer-section li a{
color: var(--white);
    opacity: 0.75;
}
    .hero-section .hero-text {
        padding: 50px 0 !important;
    }
.room-booking.bg-white{
padding: 40px 25px !important;
}
h2.quot {
    font-size: 15px !important;
    line-height: 24px !important;
}
.quot span.d-block.text-right {
    font-size: 16px;
    text-align: center;
    margin-top: 20px !important;
}

	.service-slider .service-item {min-height:230px !important;
}
	.room-booking .ri-pic {
		width: 100px !important;
	}
	.joining {
		display: flex;
		justify-content: space-between;
		border: 1px solid #BB9B8D;
		padding: 25px;
		flex-direction: column;
		gap: 30px;
	}
	.joining .title{
		text-align: center;
	}
	.faq-section .nav-my {
		display: flex;
		align-items: baseline !important;
		justify-content: flex-start !important;
		padding: 20px 0;
		flex-direction: row;
		flex-wrap: nowrap;
		overflow-x: scroll;
	}
	.faq-section .nav-my li.nav-item, .nav-my li.nav-pills {
		white-space: nowrap;
		padding:0 5px;
	}
	.mySwiper .swiper-nav {
		width: 110px !important;
		bottom: -80px !important;
	}
	.hr-top::after{
		top: -58px !important;
	}
	.faq-section .accordion  .accordion-button{
		padding: 15px 70px 15px 15px !important;
		min-height: 70px;
		position: relative;
	}
	.two .swiper-slide {
		width: 90% !important;
	}
	.button.btn{
		text-align: center;
    margin: 0 auto;
    float: none;
    display: block !important;
	}
	.button.btn.hidden-xs{
display:none !important
	}

	.footer-section .footer-text .ft-contact {
		margin-bottom: 0px;
	}
	.swiper.cardSwiper .swiper-button-next:after, .swiper.cardSwiper .swiper-button-prev:after {
        color: #fff !important;
        font-size: 20px !important;
    }
	.swiper.cardSwiper .swiper-nav {
		left: 50% !important;
		transform: translate(-50%, 0px) !important;
		width: 290px !important;
	}
	.cardSwiper .swiper-slide figure.left {
		margin-bottom: 0px !important;
		margin-top: 30px;
	}
	.cardSwiper .swiper-slide h2.bolder.left{
		margin-bottom: 20px;
	}
	.cardSwiper .swiper-slide figure.left, .cardSwiper .swiper-slide figure.left img {
		margin-bottom: 20px !important;
		margin-top:30px !important
	}
	.cardSwiper .swiper-slide figure.left::before {
		top: -20px !important;
        width: 90% !important;
        right: 30px !important;
	}
	.rd-reviews .nav-link {
		flex-direction: column;
	}
	div.mySwiper .swiper-button-prev:after, div.mySwiper .swiper-button-next:after {
		font-size: 16px !important;
		width: 40px !important;
		height: 40px !important;
		line-height: 1.3;
	}
	
	.footer-section .footer-text .ft-contact ul li {
		line-height: 24px;
		margin-bottom: 5px;
	}
	.swiper-container.two .swiper-button-next, .swiper-container.two .swiper-button-prev {
		height: 70px !important;
		width: 70px !important;
		border: 1px solid #7d422a;
		border-radius: 50px;
		background: none !important;
		background-color: #7d422a !important;
		color: #fff !important;
	}
	.swiper-button-prev:after, .swiper-button-next:after{
		color: #fff !important;
		font-size:22px !important;
	}
	.testimonial-section .swiper-button-prev:after, .testimonial-section .swiper-button-next:after{
		color: #fff !important;
	}
	.swiper-pagination{
		display: none;
	}
	
	.swiper-container.two .swiper-nav {
		position: absolute;
		left: auto !important;
        z-index: 999999 !important;
        width: 180px !important;
        right: -50px;
		transform: scale(0.4) translate(-20%, -30px) !important;
	}
	.listing{
		column-count: 1 !important;
	}
	.nav-my .nav-item::before{
		content: none !important;
	}
	.accordion-button::after
	{
		height: 60px !important;
		width: 60px !important;
		right: 6px !important;
		top: 4px !important;
		/* background-size: 12px !important; */
		/* transform: translateY(-50%); */
	}
	p {
		font-size: 15px;
		line-height: 1.5;
	}
	button.accordion-button {
		
		font-size: 15px !important;
	}
	.faq-section .nav-my {
		gap: 10px;
		margin-bottom: 20px;
	}
	.faq-section .mt-5{
		margin-top: 0px !important;
	}
	.listing {
		font-size: 14px !important;
	}
	.blog-section .container .row {
		margin-bottom: 0px !important;
	}
figure img{
	width: 100%;
	position: relative;
        z-index: 2;
}
	h1.h1.text-primary.bigger {
		font-size: 55px !important;
	}
	.testimonial-slider .ts-item .d-flex {
		gap: 0px !important;
	}
	.pb-xs-0{
		padding-bottom: 0 !important;
	}
	.clear-menu-btn{
		display: block !important;
	}
	.menu-item .nav-menu .mainmenu li a{
		font-size: 17px;
	}
	.section a.btn.btn-outline-primary, .col-12.text-left a.btn.btn-outline-primary , .aboutus-section a.btn.btn-outline-primary {
		margin: 0 auto;
		float: none;
		display: block !important;
		max-width: 180px;
	}
	.testimonial-slider .ts-item p {
		font-size: 14px;
		line-height: 1.5;
	}
	.rd-reviews .ri-text {
		padding: 15px !important;
	}
	.rd-reviews .review-item .ri-pic {
		width: 100%;
		margin: 0 !important;
		max-height: 350px;
        overflow: hidden;
	}
	.rd-reviews {
		border-right: none;
		margin-bottom: auto;
		padding-right: 0px;
		border: none;
	}
	.rd-reviews .review-item .ri-pic img {
		width: 100%;
		border-radius: 0px;
	}
	.rd-reviews .review-item {
		flex-direction: column;
		padding: 0px !important;
	}
	.video-section {
		/* height: 40vh; */
		padding-top:57%;
		margin-top: 30px;
	}
	.flex-xs-column-reverse{
		flex-direction: column-reverse;
	}
	.visible-xs {
		display: inline-block !important;
	}
	.hidden-xs{
		display: none !important;
	}
	.hero-text h1, h1, h2 {
		font-size: 24px !important;
	    line-height: normal !important;
	}
	.hero-text {
		padding: 45px 0;
	}
	.menu-item .nav-menu .mainmenu li a:after{
		content: none;
	}
	.navbar-nav{
		display: flex;
		flex-direction: column;
		padding-left: 0;
		margin-bottom: 0;
		list-style: none;
		align-items: start;
		justify-content: start;
		height: 100%;
	}
	.menu-item .nav-menu .mainmenu li{
		width:100%;
		text-align:left;
		display: block;
	}
	.menu-item .nav-menu .mainmenu li a {
		display: flex;
		padding: 8px 20px !important;
		margin-bottom: 5px;
		text-align: left;
		justify-content: space-between;
		border-bottom: 1px solid #DED1CC;
		color: #9F6E59;
		white-space: nowrap;
	}
	.logo.visible-xs {
		display: block !important;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-40%,-50%);
		width: 220px;
	}
	.navbar-nav .dropdown-menu {
		position: static;
		background: transparent;
		border: 1px solid transparent;
		margin: 20px 0 0;
	}
	.menu-item .nav-menu .mainmenu {
		display: block;
		width: 100%;
		position: absolute;
		z-index: 999;
		left: 0;
		top: 80px;
		padding: 10px 0;
		backdrop-filter: blur(5px);
		height: 100vh;
		background: url(../img/navbarbg.png);
		background-position: center;
		background-size: cover;
		background-color: #F5EAD8;
	}
	.navbar>.container{
		align-items: baseline;
	}
	.menu-item {
		position: relative;
		min-height: 80px;
	}
	.navbar-collapse .logo{
		display: none;
	}
	.menu-item .logo {
		width: 180px;
	}
	.about-text{
		padding: 0 15px;
	}
	.spad {
		padding-top: 30px;
		padding-bottom: 30px;
		
	}
	#counter{
		background:#fff;
	}
	.mb-xs-0 {
		margin: 0px !important;
	}
	
	
	.row.visible-xs {
		display: block !important;
	}
	.play-btn{width: 70px;}
	.hr-bottom:before {
		width: 140px !important;
		bottom: -72px !important;
	}
	section .hr-bottom.left.dark:before {
		left: 50% !important;
		transform: translate(-50%, 0px) !important;
	}
	figure.right::before {
		top: -10px !important;
		right: -10px !important;
	}
	.aboutus-section{
		background-color: #fff !important;
	}
	.aboutus-section figure::before{
		z-index:0;
	}
	.col-xs-6 {
		width: 50%;
	}
	.section-title h2 {
		margin-bottom: 50px;
		text-align: center !important;
	}
	.aboutus-section .mt-5{
	
			margin-top: 1rem!important;
		
	}
	.footer-section .footer-text {
		padding: 0px;
	}
	.copyright-option .row{
		flex-direction: column-reverse;
    gap: 10px;
	}
	.owl-carousel figure{
		margin-left:0px !important
	}
	figure::before{    width: 100% !important;
		height: 100% !important;}
	figure.left::before {
		top: 10px !important;
		right: 10px !important;
	}
	.owl-carousel figure {
		width: 90% !important;
		max-width: 90% !important;
	}
	.testimonial-slider.owl-carousel .owl-item img{
		width: 100%;
	}
	.testimonial-slider .ts-item .d-flex{
		flex-direction: column;
	}
	.top-nav {
		display: none;
	}
	
	.offcanvas-menu-overlay {
		position: fixed;
		left: 0;
		top: 0;
		background: rgba(0, 0, 0, 0.7);
		z-index: 98;
		height: 100%;
		width: 100%;
		visibility: hidden;
		-webkit-transition: 0.3s;
		-o-transition: 0.3s;
		transition: 0.3s;
	}
	.offcanvas-menu-overlay.active {
		visibility: visible;
	}
	.canvas-open {
		position: absolute;
		right: 40px;
		top: 25px;
		font-size: 22px;
		width: 30px;
		height: 30px;
		color: #19191a;
		border: 1px solid #19191a;
		border-radius: 2px;
		line-height: 33px;
		text-align: center;
		z-index: 100;
		display: block;
		cursor: pointer;
	}
	.offcanvas-menu-wrapper {
		position: fixed;
		left: -300px;
		top: 0;
		width: 300px;
		z-index: 999;
		background: #ffffff;
		text-align: center;
		overflow-y: auto;
		height: 100%;
		opacity: 0;
		visibility: hidden;
		-webkit-transition: all 0.5s;
		-o-transition: all 0.5s;
		transition: all 0.5s;
		padding: 80px 30px 30px 30px;
		display: block;
	}
	.offcanvas-menu-wrapper .canvas-close {
		height: 30px;
		width: 30px;
		border: 1px solid #19191a;
		border-radius: 50%;
		text-align: center;
		line-height: 30px;
		cursor: pointer;
		position: absolute;
		right: 30px;
		top: 30px;
		padding-right: 1px;
	}
	.offcanvas-menu-wrapper .search-icon {
		color: #19191a;
		text-align: center;
		cursor: pointer;
		margin-bottom: 10px;
	}
	.offcanvas-menu-wrapper .header-configure-area {
		margin-bottom: 30px;
	}
	.offcanvas-menu-wrapper .header-configure-area .language-option {
		display: inline-block;
		cursor: pointer;
		padding: 13px 0;
		position: relative;
		margin-bottom: 10px;
	}
	.offcanvas-menu-wrapper .header-configure-area .language-option:hover .flag-dropdown {
		top: 40px;
		opacity: 1;
		visibility: visible;
	}
	.offcanvas-menu-wrapper .header-configure-area .language-option img {
		height: 26px;
		width: 26px;
		border-radius: 50%;
		margin-right: 10px;
	}
	.offcanvas-menu-wrapper .header-configure-area .language-option span {
		font-size: 16px;
		color: #19191a;
		text-transform: uppercase;
		font-weight: 500;
	}
	.offcanvas-menu-wrapper .header-configure-area .language-option .flag-dropdown {
		position: absolute;
		left: 0;
		top: 60px;
		width: 100px;
		background: #ffffff;
		display: block;
		padding: 10px 15px;
		-webkit-box-shadow: 0px 9px 10px rgba(25, 25, 26, 0.2);
		box-shadow: 0px 9px 10px rgba(25, 25, 26, 0.2);
		opacity: 0;
		visibility: hidden;
		-webkit-transition: all 0.3s;
		-o-transition: all 0.3s;
		transition: all 0.3s;
		z-index: 99;
	}
	.offcanvas-menu-wrapper .header-configure-area .language-option .flag-dropdown ul li {
		list-style: none;
		text-align: left;
	}
	.offcanvas-menu-wrapper .header-configure-area .language-option .flag-dropdown ul li a {
		font-size: 14px;
		text-transform: uppercase;
		font-weight: 500;
		color: #19191a;
		-webkit-transition: all 0.3s;
		-o-transition: all 0.3s;
		transition: all 0.3s;
	}
	.offcanvas-menu-wrapper .header-configure-area .language-option .flag-dropdown ul li a:hover {
		color: #dfa974;
	}
	.offcanvas-menu-wrapper .header-configure-area .bk-btn {
		display: inline-block;
		font-size: 13px;
		font-weight: 700;
		padding: 16px 28px 15px;
		background: #dfa974;
		color: #ffffff;
		text-transform: uppercase;
		letter-spacing: 2px;
	}
	.offcanvas-menu-wrapper .mainmenu {
		display: none;
	}
	.offcanvas-menu-wrapper .slicknav_menu {
		background: transparent;
		padding: 0;
	}
	.offcanvas-menu-wrapper .slicknav_menu .slicknav_btn {
		float: none;
		margin: 0 0 10px 0;
		display: none;
	}
	.offcanvas-menu-wrapper .slicknav_menu .slicknav_nav {
		display: block !important;
	}
	.offcanvas-menu-wrapper .slicknav_menu .slicknav_nav ul {
		margin: 0;
		text-align: left;
	}
	.offcanvas-menu-wrapper .slicknav_menu .slicknav_nav ul li .dropdown {
		padding-left: 20px;
	}
	.offcanvas-menu-wrapper .slicknav_menu .slicknav_nav ul li a {
		margin: 0;
		padding: 10px;
		font-weight: 600;
		font-size: 14px;
		color: #19191a;
		border-bottom: 1px solid #e5e5e5;
		-webkit-transition: all 0.3s;
		-o-transition: all 0.3s;
		transition: all 0.3s;
	}
	.offcanvas-menu-wrapper .slicknav_menu .slicknav_nav ul li a:hover {
		border-radius: 0;
		background: transparent;
		color: #dfa974;
	}
	.offcanvas-menu-wrapper .slicknav_menu .slicknav_nav .slicknav_row a {
		border-bottom: 0;
		padding-left: 0;
		-webkit-transition: all 0.3s;
		-o-transition: all 0.3s;
		transition: all 0.3s;
	}
	.offcanvas-menu-wrapper .slicknav_menu .slicknav_nav .slicknav_row span {
		color: #19191a;
		-webkit-transition: all 0.3s;
		-o-transition: all 0.3s;
		transition: all 0.3s;
	}
	.offcanvas-menu-wrapper .slicknav_menu .slicknav_nav .slicknav_row:hover a {
		color: #dfa974;
	}
	.offcanvas-menu-wrapper .slicknav_menu .slicknav_nav .slicknav_row:hover span {
		color: #dfa974;
	}
	.offcanvas-menu-wrapper .top-social {
		display: inline-block;
		margin-top: 30px;
		margin-bottom: 20px;
	}
	.offcanvas-menu-wrapper .top-social a {
		display: inline-block;
		font-size: 16px;
		color: #19191a;
		margin-right: 20px;
	}
	.offcanvas-menu-wrapper .top-social a:last-child {
		margin-right: 0;
	}
	.offcanvas-menu-wrapper .top-widget li {
		list-style: none;
		font-size: 16px;
		color: #19191a;
		font-weight: 500;
		line-height: 28px;
	}
	.offcanvas-menu-wrapper .top-widget li i {
		color: #dfa974;
		margin-right: 4px;
	}
	.offcanvas-menu-wrapper.show-offcanvas-menu-wrapper {
		left: 0;
		opacity: 1;
		visibility: visible;
	}
	.about-text {
		margin-bottom: 30px;
	}
	.footer-section .copyright-option ul {
		text-align: center;
		margin-bottom: 10px;
	}
	.footer-section .copyright-option .co-text {
		text-align: center;
	}
	.about-pic img {
		margin-bottom: 20px;
	}
	.room-booking {
		padding: 20px 10px;
        margin-top: 40px;
	}
	.contact-form {
		padding-top: 30px;
	}
	.hero-text {
		margin-bottom: 0px;
	}
}

@media only screen and (max-width: 570px){
	
	.videogallery figure img{
		width: 100%;
		height: 100%;
	} 
	.videogallery figure {
		height: auto;
		overflow: hidden;
		max-height: 220px;
		height: 220px;
	}
	section .popup-gallery figure {
		height: auto;
		overflow: hidden;
		/* max-height: 220px; */
	}
}
@media only screen and (max-width: 768px){
	
	.position-relative.sliders .swiper-nav{
		width: 130px;
		left: 48% !important;
	}
	.swiper-button-prev:after, .swiper-button-next:after {
		color: var(--primary) !important;
		font-size: 22px !important;
	}
	div.position-relative.sliders .swiper-button-prev:after, div.position-relative.sliders .swiper-button-next:after{
		border: 1px solid var(--primary) !important;
		width: 40px !important;
		height: 40px !important;
		font-size: 14px !important;
		line-height: 1.2;
	}
	.position-relative.sliders  .swiper-nav {
		bottom: 10px !important;
		transform: scale(0.9) translate(-50%, 0px) !important;
		z-index: 999;
	}
	.mySwiper.swiper {
		margin-bottom: 50px;
	}
	
}
/* Tablet Device: 768px */

@media only screen and (min-width: 768px) and (max-width: 991px) {

	.hp-room-items {
		margin: 0;
	}
	.hp-room-item {
		margin-bottom: 15px;
	}
}
/* Large Mobile: 480px */

@media only screen and (max-width: 767px) {
	.swiper-container{
		padding-right:15px;
		padding-left:15px;
	}
	.subscribe img {
		opacity: 0.3 !important;
		max-width:300px !important
	}
	
	.subscribe .btn-primary {
		border: none;
		width: 100% !important;
		margin: 0;
		background: #7d422a;
		padding: 9px 0px !important;
		margin-top: 10px !important;
	}
	form.subscribe{
		display: flex;
		width: 90% !important;
		margin: 0 auto;
		flex-direction: column;
	}
	.testimonial-slider.owl-carousel .owl-nav {
		display: none;
	}
	.room-details-item .rd-text .rd-title {
		margin-bottom: 25px;
	}
	.room-details-item .rd-text .rd-title h3 {
		float: none;
		margin-bottom: 30px;
	}
	.room-details-item .rd-text .rd-title .rdt-right {
		float: none;
		text-align: left;
	}
	.footer-section .copyright-option ul li {
		margin-right: 25px;
	}
	.blog-details-text .tag-share .tags {
		float: none;
		margin-bottom: 20px;
	}
	.blog-details-text .tag-share .social-share {
		float: none;
	}
	
	.hp-room-items {
		margin: 0 -5px;
	}
	.hp-room-item {
		margin-bottom: 10px;
	}
}
/* Small Mobile: 320px */

@media only screen and (max-width: 479px) {
	.hero-section{
		padding-top:0;
		padding-bottom:0;
	}
	.footer-section .copyright-option ul li {
		margin-bottom: 5px;
	}
	/* .video-section {
		padding-top: 80px;
	} */
	.rd-reviews .review-item .ri-pic, .blog-details-text .comment-option .single-comment-item .sc-author {
		float: none;
		margin-bottom: 30px;
	}
	.rd-reviews .review-item .ri-text .rating {
		position: relative;
	}
	.rd-reviews .review-item .ri-text, .blog-details-text .comment-option .single-comment-item.second-comment .sc-text, .blog-details-text .comment-option .single-comment-item.first-comment .sc-text {
		padding-left: 0;
	}
	.blog-details-text .comment-option .single-comment-item.reply-comment {
		padding-left: 30px;
	}
	.rd-reviews .review-item .ri-text:before, .blog-details-text .comment-option .single-comment-item.first-comment .sc-text:before, .blog-details-text .comment-option .single-comment-item.second-comment .sc-text:before {
		display: none;
	}
	.blog-details-hero {
		padding-top: 70px;
	}
	.blog-details-text .bd-pic .bp-item {
		width: 100%;
		float: none;
		margin-right: 0;
		margin-bottom: 10px;
	}
	.blog-details-text .tag-share .tags a {
		margin-bottom: 6px;
	}
	.blog-details-text .comment-option .single-comment-item .sc-text a {
		margin-bottom: 10px;
	}
}
.room-booking form .check-date input, .room-booking form .select-option .nice-select {
    border: 1px solid #4F4F4F !important;
    background: transparent !important;
border-radius: 6px;
}
textarea.form-control{border:1px solid #4F4F4F !important;}
.blog-section .about-text ul.listing {  }
.w-90{width: 90%;
    margin: 40px auto; }

.room-booking .form-check, .room-booking .price{background: #f3eadb;}
.room-booking .d-flex.justify-content-between.details:before {
    content: '';
    border-bottom: 2px dotted #000;
    position: absolute;
    bottom: 8px;
    left: 0px;
z-index:-1;
    width: 100%;
}
.room-booking .d-flex.justify-content-between.details{ position: relative; }
a.btn-white.hborder{
position:relative;
}
a.btn-white.hborder::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0px;
	opacity:0;   
 width: 85px;
    height: 1.5px;
    background:var(--primary) !important;
}
a.btn-white:hover::before {
   left: 0;
opacity:1;      
 bottom: -7px;
    width: 85px;
    height: 1.5px;
    background:var(--primary) !important;
}
.listing.black {
    color: #000;
}
.services-section .listing{
	color:#000 !important;
}



/* Hamburger Menu */

.hamburger {
    margin: 0 auto;
    margin-top: 2px;
    width: 35px;
    height: 30px;
    position: relative;
	-webkit-transform: scale(0.7);
	transform: scale(0.7);
}

.hamburger .bar {
    padding: 0;
    width: 35px;
    height: 3px;
    background-color:#000;
    display: block;
    border-radius: 0px;
    transition: all 0.4s ease-in-out;
    position: absolute; 
}

.bar1 {
    top: 0;
}

.bar2,
.bar3 {
    top: 13.5px;
}

.bar3 {
    right: 0;
}

.bar4 {
    bottom: 0;
}

/* HAMBURGER 1 */
.checkbox1:checked + label > .hamburger1 > .bar1{
    transform: rotate(45deg);
    transform-origin: 5%;
    width: 41px
}

.checkbox1:checked + label > .hamburger1 > .bar2 {
    transform: translateX(-40px);
    background-color: transparent;
}

.checkbox1:checked + label > .hamburger1 > .bar3 {
    transform: translateX(40px);
    background-color: transparent;
}

.checkbox1:checked + label > .hamburger1 > .bar4 {
    transform-origin: 5%;
    transform: rotate(-45deg);
    width: 41px;
}

.input-prefix::before {
    content: "+91";
    position: absolute;
    left: 10px;
    color: #333;
    height: 50px;
    width: 35px;
    left: 0;
    text-align: center;
    line-height: 3;
	margin-top: -5px;
}

@media (min-width: 767px) {
    .input-prefix::before {
        margin-top: 3px;
    }
}

.input-prefix{
	position: relative;
}
.input-prefix input {
    padding-left: 35px !important;
	background: transparent !important;
}
.justify-content-space-evenly{
	justify-content: space-evenly;
}
.modal-footer, .modal-header{
	border: none !important;
}
 #exampleModal .form-check .form-check-label {
    display: flex;
    flex-direction: column;
	gap: 10px;
	align-items: center;
}
#exampleModal input[type="radio"]{
 display: none
}
.d-flex.emoji{
	display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 50px;
    text-align: center;
}
#exampleModal input[type=radio]:checked + .form-check-label{
	filter: grayscale(0) !important;
	transform: scale(1.1);
	transition: 0.5s;
}
#exampleModal input[type=radio] + .form-check-label{
	filter: grayscale(0.8);
	transform: scale(1);
	transition: 0.2s;
	cursor: pointer;
}
#exampleModal input[type=radio] + .form-check-label img {
    max-width: 70px;
    max-height: 70px;
    width: 70px;
    border: 1.5px solid #834226;
    padding: 8px;
    border-radius: 40px;
    height: 70px;
}
#exampleModal .modal-content, #subscribemodel .modal-content{
	border: 8px solid #BB9B8D;
    border-radius: 0;
    padding: 30px 20px;
}
#exampleModal .modal-content , #subscribemodel .modal-content{
    background-image: url('../img/emoji/BG.png');
    background-size: cover;
}
button.btn-close {
    position: absolute;
    right: 20px;
    top: 20px;
    opacity: 0.2;
}
.flex-direction-column{
	flex-direction: column;
}
#exampleModal .form-check{
padding: 0;
}
#exampleModal .modal-body {
    max-width: 80%;
    margin: 0 auto;
}
#exampleModal .modal-footer button{
	min-width: 150px;
	
}

.emailgraph {
    margin: 0 auto;
    display: block;
}
.contact-form input:active, .contact-form input:focus, textarea:active, textarea:focus  {
    border: 2px solid #4F4F4F !important;
}
.fs-14{
		font-size: 13px;
		font-style: italic;
	}

	.valid-feedback, .invalid-feedback {
		position: absolute;
		bottom: 4px;
		left: auto;
	}
	.menu-item .nav-menu .mainmenu li a .fa-caret-down {
		font-size: 12px;
	}

	.whatsapp {
		position: fixed;
		right: 26px;
		bottom: 100px;
		width: 45px;
		z-index: 99999;
		animation: zoom-in-zoom-out 3s ease-out infinite;
		/* display:none; */
	}
	#up-to-top {
		width: 45px;
		height: 45px;
		z-index: 99999;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 14px;
		font-weight: bold;
		background-color: #572b18;
		border-radius: 100%;
		position: fixed;
		bottom: 40px;
		right: 25px;
		cursor: pointer;
		color: #fff;
		box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.1);
		transition: 0.3s ease-in-out;
		visibility: hidden;
		opacity: 0;
	}
	  #up-to-top span {
		max-width: 35px;
		transition: 0.3s ease-in-out;
	  }
	  #up-to-top span img {
		object-fit: cover;
		object-position: center;
		max-width: 18px;
	}
	  #up-to-top:hover {
		box-shadow:  0px 8px 10px 0px rgba(0, 0, 0, 0.2);
		background-color: #572b18;
	  }
	  #up-to-top:hover span {
		transform: rotate(-360deg);
	  }
	  .movetoactive {
		visibility: visible !important;
		opacity: 1 !important;
	  }


	  @keyframes zoom-in-zoom-out {
		0% {
		  transform: scale(1, 1);
		}
		50% {
		  transform: scale(1.1, 1.1);
		}
		100% {
		  transform: scale(1, 1);
		}
	  }

figure.right img, figure.left img {
    width: 100%;
}
.cardSwiper .swiper-slide  figure.left.top::before {
    top: -20px !important;
    right: 45px;
}
.cardSwiper .swiper-slide figure.left.top{
	margin-top: 30px;
}
.cardSwiper .swiper-slide .about-text{
	margin-top: 60px;
}

.cardSwiper .swiper-slide figure.left.top{
	width: 100% !important;
}
.blog-section .row.align-items-center .about-text, .section .row.align-items-center .about-text, .aboutus-section .row.align-items-center .about-text{
	width: 85%;
}
.blog-section .row.align-items-center.flex-xs-column-reverse .about-text, .aboutus-section .row.align-items-center .about-text, .float-right {
    float: right;
}
.navbar-collapse.collapse.show  .navbar {

	position: fixed;
	top: 0;
}
<style>

#style-switcher {
 background:none repeat scroll 0 0 #fff;
 -webkit-box-shadow:2px 2px 3px rgba(0,0,0,.3);
 -moz-box-shadow:2px 2px 3px rgba(0,0,0,.3);
 -ms-box-shadow:2px 2px 3px rgba(0,0,0,.3);
 -o-box-shadow:2px 2px 3px rgba(0,0,0,.3);
 box-shadow:2px 2px 3px rgba(0,0,0,.3);
 border:1px solid #fedd55;
 left:-270px;
 position:fixed;
 bottom:0;
 width:260px;
 z-index:999999999
}
.left-side-popup-css {
    position: relative;
}

#style-switcher-bottom {
 right: -10px;
    bottom: 9%;
    position: fixed;
    width: 160px;
    height: 160px;
    z-index: 999;
}
#style-switcher>div>h3 {
 font-size:14px;
 text-transform:capitalize;
 font-weight:400;
 text-align:left;
 color:#000!important;
 padding-top:10px;
 padding-bottom:10px
}
#style-switcher>div>select {
 width:90%
}

.pn-btn{
	font-size: 12px;
    height: auto;
    width: 100px;
    line-height: 22px;
	margin:0;
}
.pn-btn::before {
    content: '';
    position: absolute;
    top: 50px;
    left: -5px;
    width: 0;
    height: 0;
    border-left: 55px solid transparent;
    border-right: 55px solid transparent;
    border-bottom: 120px solid rgba(255, 255, 255, 0.25);
    z-index: 1;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.pn-btn::after {
    content: '';
    position: absolute;
    top: 50px;
    left: -5px;
    width: 0;
    height: 0;
    border-left: 55px solid transparent;
    border-right: 55px solid transparent;
    border-bottom: 120px solid rgba(255, 255, 255, 0.25);
    z-index: 1;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.pn-btn::after {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.pn-btn:hover::before {
    opacity: 1;
    -webkit-transform: translate(0px, -120px);
    transform: translate(0px, -120px);
}

.pn-btn:hover::after {
    opacity: 1;
    -webkit-transform: translate(0px, -80px);
    transform: translate(0px, -80px);
}
.close-style-switcher{
	position: absolute;
	right: -10px;
	z-index: 99999;
	background: #3B0030;
	color: #fedd55;
	top: -7px;
	border-radius: 25px;
	padding: 2px 6px;
	cursor:pointer;
}
.phonering-alo-phone.phonering-alo-static {
    opacity:.6
}

.phonering-alo-phone.phonering-alo-hover,.phonering-alo-phone:hover {
    opacity:1;}

.phonering-alo-ph-circle {
    width:160px;
    height:160px;
    top:20px;
    left:20px;
    position:absolute;
    background-color:transparent;
    border-radius:100% !important;
    border:2px solid rgba(30,30,30,0.4);
    border:2px solid #bfebfc 9;
    opacity:.1;
    -webkit-animation:phonering-alo-circle-anim 1.2s infinite ease-in-out;
    animation:phonering-alo-circle-anim 1.2s infinite ease-in-out;
    transition:all .5s;
    -webkit-transform-origin:50% 50%;
    -ms-transform-origin:50% 50%;
    transform-origin:50% 50%
}

.phonering-alo-phone.phonering-alo-active .phonering-alo-ph-circle {
    -webkit-animation:phonering-alo-circle-anim 1.1s infinite ease-in-out!important;
    animation:phonering-alo-circle-anim 1.1s infinite ease-in-out!important
}

.phonering-alo-phone.phonering-alo-static .phonering-alo-ph-circle {
    -webkit-animation:phonering-alo-circle-anim 2.2s infinite ease-in-out!important;
    animation:phonering-alo-circle-anim 2.2s infinite ease-in-out!important
}

.phonering-alo-phone.phonering-alo-hover .phonering-alo-ph-circle,.phonering-alo-phone:hover .phonering-alo-ph-circle {
    border-color:#00aff2;
    opacity:.5
}

.phonering-alo-phone.phonering-alo-green.phonering-alo-hover .phonering-alo-ph-circle,.phonering-alo-phone.phonering-alo-green:hover .phonering-alo-ph-circle {
    border-color: #3abe4c;
    border-color: #3abe4c;
    opacity:.5
}

.phonering-alo-phone.phonering-alo-green .phonering-alo-ph-circle {
    border-color: #3abe4c;
    border-color: #3abe4c;
    opacity:.5
}

.phonering-alo-phone.phonering-alo-gray.phonering-alo-hover .phonering-alo-ph-circle,.phonering-alo-phone.phonering-alo-gray:hover .phonering-alo-ph-circle {
    border-color:#ccc;
    opacity:.5
}

.phonering-alo-phone.phonering-alo-gray .phonering-alo-ph-circle {
    border-color:#75eb50 ;
    opacity:.5
}

.phonering-alo-ph-circle-fill {
    width:100px;
    height:100px;
    top:50px;
    left:50px;
    position:absolute;
    background-color: #000;
    border-radius:100% !important;
    border:2px solid transparent;
    -webkit-animation:phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
    animation:phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
    transition:all .5s;
    -webkit-transform-origin:50% 50%;
    -ms-transform-origin:50% 50%;
    transform-origin:50% 50%
}

.phonering-alo-phone.phonering-alo-active .phonering-alo-ph-circle-fill {
    -webkit-animation:phonering-alo-circle-fill-anim 1.7s infinite ease-in-out!important;
    animation:phonering-alo-circle-fill-anim 1.7s infinite ease-in-out!important
}

.phonering-alo-phone.phonering-alo-static .phonering-alo-ph-circle-fill {
    -webkit-animation:phonering-alo-circle-fill-anim 2.3s infinite ease-in-out!important;
    animation:phonering-alo-circle-fill-anim 2.3s infinite ease-in-out!important;
    opacity:0!important
}

.phonering-alo-phone.phonering-alo-hover .phonering-alo-ph-circle-fill,.phonering-alo-phone:hover .phonering-alo-ph-circle-fill {
    background-color:rgba(243, 161, 26, .5);
    background-color:#00aff2 9;
    opacity:.75!important
}

.phonering-alo-phone.phonering-alo-green.phonering-alo-hover .phonering-alo-ph-circle-fill,.phonering-alo-phone.phonering-alo-green:hover .phonering-alo-ph-circle-fill {
    /* background-color: rgba(254, 207, 129, .5); */
    background-color: #3abe4c;
    opacity:.75!important
}

.phonering-alo-phone.phonering-alo-green .phonering-alo-ph-circle-fill {
    background-color: rgb(26 243 173 / 50%);
    background-color:#fedd55 9
}

.phonering-alo-phone.phonering-alo-gray.phonering-alo-hover .phonering-alo-ph-circle-fill,.phonering-alo-phone.phonering-alo-gray:hover .phonering-alo-ph-circle-fill {
    background-color:rgba(204,204,204,0.5);
    background-color:#ccc 9;
    opacity:.75!important
}

.phonering-alo-phone.phonering-alo-gray .phonering-alo-ph-circle-fill {
    background-color:rgba(117,235,80,0.5);
    opacity:.75!important
}

.phonering-alo-ph-img-circle {
    width:60px;
    height:60px;
    top:70px;
    left:70px;
    position:absolute;
    border-radius:100% !important;
    border:2px solid transparent;
    -webkit-animation:phonering-alo-circle-img-anim 1s infinite ease-in-out;
    animation:phonering-alo-circle-img-anim 1s infinite ease-in-out;
    -webkit-transform-origin:50% 50%;
    -ms-transform-origin:50% 50%;
    transform-origin:50% 50%;
	text-align: center;
}


.phonering-alo-ph-img-circle img{
    padding-top: 8px;
}

.phonering-alo-ph-img-circle i{
    padding-top: 10px;
	font-size: 34px;
}
/*
.phonering-alo-ph-img-circle i.fa.fa-whatsapp:hover {
    color: #FEDD55;
}
.phonering-alo-phone.phonering-alo-green.phonering-alo-hover .phonering-alo-ph-circle, .phonering-alo-phone.phonering-alo-green:hover .phonering-alo-ph-circle i.fa.fa-whatsapp
{
	color:#FEDD55;
}
*/
.phonering-alo-phone.phonering-alo-active .phonering-alo-ph-img-circle {
    -webkit-animation:phonering-alo-circle-img-anim 1s infinite ease-in-out!important;
    animation:phonering-alo-circle-img-anim 1s infinite ease-in-out!important
}

.phonering-alo-phone.phonering-alo-static .phonering-alo-ph-img-circle {
    -webkit-animation:phonering-alo-circle-img-anim 0 infinite ease-in-out!important;
    animation:phonering-alo-circle-img-anim 0 infinite ease-in-out!important
}

.phonering-alo-phone.phonering-alo-hover .phonering-alo-ph-img-circle,.phonering-alo-phone:hover .phonering-alo-ph-img-circle {
    background-color:#00aff2
}

.phonering-alo-phone.phonering-alo-green.phonering-alo-hover .phonering-alo-ph-img-circle,.phonering-alo-phone.phonering-alo-green:hover .phonering-alo-ph-img-circle {
    background-color: #3abe4c;
    background-color:#fecf81 9
}

.phonering-alo-phone.phonering-alo-green .phonering-alo-ph-img-circle {
    background-color: #3abe4c;
    background-color:#3abe4c 9
}

.phonering-alo-phone.phonering-alo-gray.phonering-alo-hover .phonering-alo-ph-img-circle,.phonering-alo-phone.phonering-alo-gray:hover .phonering-alo-ph-img-circle {
    background-color:#ccc
}

.phonering-alo-phone.phonering-alo-gray .phonering-alo-ph-img-circle {
    background-color:#75eb50
}

@-webkit-keyframes phonering-alo-circle-anim {
    0% {
        -webkit-transform:rotate(0) scale(.5) skew(1deg);
        -webkit-opacity:.1
    }

    30% {
        -webkit-transform:rotate(0) scale(.7) skew(1deg);
        -webkit-opacity:.5
    }

    100% {
        -webkit-transform:rotate(0) scale(1) skew(1deg);
        -webkit-opacity:.1
    }
}

@-webkit-keyframes phonering-alo-circle-fill-anim {
    0% {
        -webkit-transform:rotate(0) scale(.7) skew(1deg);
        opacity:.2
    }

    50% {
        -webkit-transform:rotate(0) scale(1) skew(1deg);
        opacity:.2
    }

    100% {
        -webkit-transform:rotate(0) scale(.7) skew(1deg);
        opacity:.2
    }
}

@-webkit-keyframes phonering-alo-circle-img-anim {
    0% {
        -webkit-transform:rotate(0) scale(1) skew(1deg)
    }

    10% {
        -webkit-transform:rotate(-25deg) scale(1) skew(1deg)
    }

    20% {
        -webkit-transform:rotate(25deg) scale(1) skew(1deg)
    }

    30% {
        -webkit-transform:rotate(-25deg) scale(1) skew(1deg)
    }

    40% {
        -webkit-transform:rotate(25deg) scale(1) skew(1deg)
    }

    50% {
        -webkit-transform:rotate(0) scale(1) skew(1deg)
    }

    100% {
        -webkit-transform:rotate(0) scale(1) skew(1deg)
    }
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity:0;
        -webkit-transform:translate3d(100%,0,0);
        -ms-transform:translate3d(100%,0,0);
        transform:translate3d(100%,0,0)
    }

    100% {
        opacity:1;
        -webkit-transform:none;
        -ms-transform:none;
        transform:none
    }
}

@keyframes fadeInRight {
    0% {
        opacity:0;
        -webkit-transform:translate3d(100%,0,0);
        -ms-transform:translate3d(100%,0,0);
        transform:translate3d(100%,0,0)
    }

    100% {
        opacity:1;
        -webkit-transform:none;
        -ms-transform:none;
        transform:none
    }
}

@-webkit-keyframes fadeOutRight {
    0% {
        opacity:1
    }

    100% {
        opacity:0;
        -webkit-transform:translate3d(100%,0,0);
        -ms-transform:translate3d(100%,0,0);
        transform:translate3d(100%,0,0)
    }
}

@keyframes fadeOutRight {
    0% {
        opacity:1
    }

    100% {
        opacity:0;
        -webkit-transform:translate3d(100%,0,0);
        -ms-transform:translate3d(100%,0,0);
        transform:translate3d(100%,0,0)
    }
}

@-webkit-keyframes phonering-alo-circle-anim {
    0% {
        -webkit-transform:rotate(0) scale(.5) skew(1deg);
                transform:rotate(0) scale(.5) skew(1deg);
        opacity:.1
    }

    30% {
        -webkit-transform:rotate(0) scale(.7) skew(1deg);
                transform:rotate(0) scale(.7) skew(1deg);
        opacity:.5
    }

    100% {
        -webkit-transform:rotate(0) scale(1) skew(1deg);
                transform:rotate(0) scale(1) skew(1deg);
        opacity:.1
    }
}

@keyframes phonering-alo-circle-anim {
    0% {
        -webkit-transform:rotate(0) scale(.5) skew(1deg);
                transform:rotate(0) scale(.5) skew(1deg);
        opacity:.1
    }

    30% {
        -webkit-transform:rotate(0) scale(.7) skew(1deg);
                transform:rotate(0) scale(.7) skew(1deg);
        opacity:.5
    }

    100% {
        -webkit-transform:rotate(0) scale(1) skew(1deg);
                transform:rotate(0) scale(1) skew(1deg);
        opacity:.1
    }
}

@-webkit-keyframes phonering-alo-circle-fill-anim {
    0% {
        -webkit-transform:rotate(0) scale(.7) skew(1deg);
                transform:rotate(0) scale(.7) skew(1deg);
        opacity:.2
    }

    50% {
        -webkit-transform:rotate(0) scale(1) skew(1deg);
                transform:rotate(0) scale(1) skew(1deg);
        opacity:.2
    }

    100% {
        -webkit-transform:rotate(0) scale(.7) skew(1deg);
                transform:rotate(0) scale(.7) skew(1deg);
        opacity:.2
    }
}

@keyframes phonering-alo-circle-fill-anim {
    0% {
        -webkit-transform:rotate(0) scale(.7) skew(1deg);
                transform:rotate(0) scale(.7) skew(1deg);
        opacity:.2
    }

    50% {
        -webkit-transform:rotate(0) scale(1) skew(1deg);
                transform:rotate(0) scale(1) skew(1deg);
        opacity:.2
    }

    100% {
        -webkit-transform:rotate(0) scale(.7) skew(1deg);
                transform:rotate(0) scale(.7) skew(1deg);
        opacity:.2
    }
}

@-webkit-keyframes phonering-alo-circle-img-anim {
    0% {
        -webkit-transform:rotate(0) scale(1) skew(1deg);
                transform:rotate(0) scale(1) skew(1deg)
    }

    10% {
        -webkit-transform:rotate(-25deg) scale(1) skew(1deg);
                transform:rotate(-25deg) scale(1) skew(1deg)
    }

    20% {
        -webkit-transform:rotate(25deg) scale(1) skew(1deg);
                transform:rotate(25deg) scale(1) skew(1deg)
    }

    30% {
        -webkit-transform:rotate(-25deg) scale(1) skew(1deg);
                transform:rotate(-25deg) scale(1) skew(1deg)
    }

    40% {
        -webkit-transform:rotate(25deg) scale(1) skew(1deg);
                transform:rotate(25deg) scale(1) skew(1deg)
    }

    50% {
        -webkit-transform:rotate(0) scale(1) skew(1deg);
                transform:rotate(0) scale(1) skew(1deg)
    }

    100% {
        -webkit-transform:rotate(0) scale(1) skew(1deg);
                transform:rotate(0) scale(1) skew(1deg)
    }
}

@keyframes phonering-alo-circle-img-anim {
    0% {
        -webkit-transform:rotate(0) scale(1) skew(1deg);
                transform:rotate(0) scale(1) skew(1deg)
    }

    10% {
        -webkit-transform:rotate(-25deg) scale(1) skew(1deg);
                transform:rotate(-25deg) scale(1) skew(1deg)
    }

    20% {
        -webkit-transform:rotate(25deg) scale(1) skew(1deg);
                transform:rotate(25deg) scale(1) skew(1deg)
    }

    30% {
        -webkit-transform:rotate(-25deg) scale(1) skew(1deg);
                transform:rotate(-25deg) scale(1) skew(1deg)
    }

    40% {
        -webkit-transform:rotate(25deg) scale(1) skew(1deg);
                transform:rotate(25deg) scale(1) skew(1deg)
    }

    50% {
        -webkit-transform:rotate(0) scale(1) skew(1deg);
                transform:rotate(0) scale(1) skew(1deg)
    }

    100% {
        -webkit-transform:rotate(0) scale(1) skew(1deg);
                transform:rotate(0) scale(1) skew(1deg)
    }
}
/* loader css */

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}
#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #3498db;

    -webkit-animation: spin 2s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 2s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */

    z-index: 1001;
}

    #loader:before {
        content: "";
        position: absolute;
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #e74c3c;

        -webkit-animation: spin 3s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
        animation: spin 3s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
    }

    #loader:after {
        content: "";
        position: absolute;
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #f9c922;

        -webkit-animation: spin 1.5s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
          animation: spin 1.5s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
    }

    @-webkit-keyframes spin {
        0%   { 
            -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(0deg);  /* IE 9 */
            transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
        }
        100% {
            -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(360deg);  /* IE 9 */
            transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
        }
    }
    @keyframes spin {
        0%   { 
            -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(0deg);  /* IE 9 */
            transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
        }
        100% {
            -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(360deg);  /* IE 9 */
            transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
        }
    }

    #loader-wrapper .loader-section {
        position: fixed;
        top: 0;
        width: 51%;
        height: 100%;
        background: #fbf9f3 ;
        z-index: 1000;
        -webkit-transform: translateX(0);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: translateX(0);  /* IE 9 */
        transform: translateX(0);  /* Firefox 16+, IE 10+, Opera */
    }

    #loader-wrapper .loader-section.section-left {
        left: 0;
    }

    #loader-wrapper .loader-section.section-right {
        right: 0;
    }

    /* Loaded */
    .loaded #loader-wrapper .loader-section.section-left {
        -webkit-transform: translateX(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: translateX(-100%);  /* IE 9 */
                transform: translateX(-100%);  /* Firefox 16+, IE 10+, Opera */

        -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  
                transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    }

    .loaded #loader-wrapper .loader-section.section-right {
        -webkit-transform: translateX(100%);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: translateX(100%);  /* IE 9 */
                transform: translateX(100%);  /* Firefox 16+, IE 10+, Opera */

-webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  
        transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    }
    
    .loaded #loader {
        opacity: 0;
        -webkit-transition: all 0.3s ease-out;  
                transition: all 0.3s ease-out;
    }
    .loaded #loader-wrapper {
        visibility: hidden;

        -webkit-transform: translateY(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: translateY(-100%);  /* IE 9 */
                transform: translateY(-100%);  /* Firefox 16+, IE 10+, Opera */

        -webkit-transition: all 0.3s 1s ease-out;  
                transition: all 0.3s 1s ease-out;
    }


/* Django Ck editor CSS */

.text-huge {
	font-size: 34px;
	color: black;
}

.text-big {
	font-size: 42px;
    color: #000;
    line-height: 58px;
    margin-top: 10px;
    font-weight: bold;
}

.text-big code {
	color: #834226
}

.no-spinners::-webkit-inner-spin-button,
.no-spinners::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.no-spinners {
    -moz-appearance: textfield;
}
