/* @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Elsie:wght@400;900&family=Jost:ital,wght@0,100..900;1,100..900&display=swap");

:root {
	--inter-font: "Jost", sans-serif;
	--nav-font: "Jost", sans-serif;
	/* --cormorant-font: "Cormorant Garamond", serif; */
	--cormorant-font:  "Elsie", serif;
}

:root {
	--background-color: #ffffff;
	--default-color: #2f3138;
	--heading-color: #5C4033;
	--accent-color: #5C4033;
	--surface-color: #ffffff;
	--contrast-color: #ffffff;
}

:root {
	--nav-color: #FFF;
	--nav-hover-color: #ffffff;
	--nav-mobile-background-color: #ffffff;
	--nav-dropdown-background-color: #ffffff;
	--nav-dropdown-color: #212529;
	--nav-dropdown-hover-color: #5C4033;
}

.light-background {
	--background-color: #f2f2f3;
	--surface-color: #ffffff;
}

.dark-background {
	--background-color: #000820;
	--default-color: #ffffff;
	--heading-color: #ffffff;
	--surface-color: #001553;
	--contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
	scroll-behavior: smooth;
}

::selection {
	background-color: #483528 !important;
	color: #FFF !important;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
	color: var(--default-color);
	background-color: var(--background-color);
	font-family: var(--inter-font);
}

a {
	color: #fff;
	text-decoration: none;
	transition: 0.3s;
}

a:hover {
	/* color: color-mix(in srgb, var(--accent-color), transparent 25%); */
	color: #FFF;
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--heading-color);
	font-family: var(--inter-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
	--background-color: rgba(0, 0, 0, 0);
	--heading-color: #ffffff;
	color: var(--default-color);
	background-color: var(--background-color);
	padding: 10px 0;
	transition: all 0.5s;
	z-index: 997;
}

.header .logo {
	line-height: 1;
}

.header .logo img {
	width: 410px;
	margin-right: 8px;
	filter: brightness(0) invert(1);
}

.inner-page .mobile-nav-toggle {
	color: #05100B !important;
}

@media screen and (max-width:500px) {
	.header .logo img {
		width: 270px !important;
	}

	.mobile-nav-toggle {
		font-size: 30px !important;
		margin-right: 0 !important;
	}
}

.scrolled .header .logo img {
	filter: unset !important;
}

.scrolled .navmenu .dropdown ul a,
.scrolled .navmenu .dropdown ul a:focus {
	color: #FFF !important;
}

@media screen and (max-width:1199px) {

	.scrolled .navmenu .dropdown ul a,
	.scrolled .navmenu .dropdown ul a:focus {
		color: #5C4033 !important;
	}
}

/* Mobile Navmenu */

.mobile-nav-active .mobile-nav-toggle {
	color: #fff !important;
}

.mobile-nav-active .navmenu {
	transform: scale(0);
	animation: zoomIn 0.5s forwards;
}

@keyframes zoomIn {
	0% {
		transform: scale(0);
	}

	100% {
		transform: scale(1);
	}
}

/* Dropdown menu animation */
.mobile-nav-active .navmenu li {
	animation: fadeIn 0.3s ease-in-out forwards;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

/* Dropdown menu animation */
.header .logo h1 {
	font-size: 30px;
	margin: 0;
	font-weight: 700;
	color: var(--heading-color);
}

/* .inner-page .header {
	--background-color: #fff;
	--heading-color: #5c4033;
	color: var(--default-color);
	box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
} */

.inner-page .header .logo img {
	filter: unset !important;
}

@media (min-width: 1200px) {

	.inner-page .navmenu a,
	.inner-page .navmenu a:focus,
	.inner-page .navmenu a:hover {
		color: #000 !important;
	}
}

.pt-70 {
	padding-top: 70px;
}

.py-70 {
	padding: 70px 0;
}

.header .cta-btn,
.header .cta-btn:focus {
	color: var(--contrast-color);
	background: var(--accent-color);
	font-size: 14px;
	padding: 8px 25px;
	margin: 0 0 0 30px;
	border-radius: 50px;
	transition: 0.3s;
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
	color: var(--contrast-color);
	background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
	.header .logo {
		order: 1;
	}

	.header .btn-getstarted {
		order: 2;
		margin: 0 15px 0 0;
		padding: 6px 15px;
	}

	.header .navmenu {
		order: 3;
	}
}

.scrolled .header {
	box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
	--background-color: #ffffff;
}

.scrolled .navmenu a,
.scrolled .navmenu a:focus {
	color: #111 !important;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
	.navmenu {
		padding: 0;
	}

	.navmenu ul {
		margin: 0;
		padding: 0;
		display: flex;
		list-style: none;
		align-items: center;
	}

	.navmenu li {
		position: relative;
	}

.navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 10px;
}

	.navmenu>ul>li:last-child {
		padding-right: 0;
	}

	.navmenu a,
	.navmenu a:focus {
		color: var(--nav-color);
		font-size: 18px;
		padding: 0 2px;
		font-family: var(--nav-font);
		font-weight: 400;
		display: flex;
		align-items: center;
		justify-content: space-between;
		white-space: nowrap;
		transition: 0.3s;
		position: relative;
		text-transform: uppercase;
		letter-spacing: 0.5px;
	}

	.navmenu a i,
	.navmenu a:focus i {
		font-size: 12px;
		line-height: 0;
		margin-left: 5px;
		transition: 0.3s;
	}

	/* .navmenu>ul>li>a:before {
		content: "";
		position: absolute;
		height: 2px;
		bottom: -6px;
		left: 0;
		background-color: #FFF;
		visibility: hidden;
		width: 0px;
		transition: all 0.3s ease-in-out 0s;
	} */

	/* .navmenu a:hover:before,
	.navmenu li:hover>a:before,
	.navmenu .active:before {
		visibility: visible;
		width: 100%;
	} */

	.navmenu li:hover>a,
	.navmenu .active,
	.navmenu .active:focus {
		color: var(--nav-hover-color);
	}

.navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: #111;
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 10px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}

	.navmenu .dropdown ul li {
		min-width: 200px;
	}

	.navmenu .dropdown ul a {
		padding: 10px 20px;
		font-size: 15px;
		text-transform: none;
		color: #fff;
	}

	.navmenu .dropdown ul a i {
		font-size: 12px;
	}

	.navmenu .dropdown ul a:hover,
	.navmenu .dropdown ul .active:hover,
	.navmenu .dropdown ul li:hover>a {
		color: #FFF;
	}

	.navmenu .dropdown:hover>ul {
		opacity: 1;
		top: 100%;
		visibility: visible;
	}

	.navmenu .dropdown .dropdown ul {
		top: 0;
		left: -90%;
		visibility: hidden;
	}

	.navmenu .dropdown .dropdown:hover>ul {
		opacity: 1;
		top: 0;
		left: -100%;
		visibility: visible;
	}

	.inner-page .navmenu .dropdown .sub-menu a {
		color: #FFF !important;
	}
}

/* Mobile Navigation */
@media (max-width: 1199px) {
	.mobile-nav-toggle {
		color: #05100b;
		font-size: 40px;
		line-height: 0;
		margin-right: 10px;
		cursor: pointer;
		transition: color 0.3s;
	}

	.navmenu {
		padding: 0;
		z-index: 9997;
	}

	.navmenu ul {
		display: none;
		list-style: none;
		position: absolute;
		inset: 60px 20px 20px 20px;
		padding: 10px 0;
		margin: 0;
		border-radius: 6px;
		background-color: var(--nav-dropdown-background-color);
		border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
		box-shadow: none;
		overflow-y: auto;
		transition: 0.3s;
		z-index: 9998;
	}

	.navmenu a,
	.navmenu a:focus {
		color: var(--nav-dropdown-color);
		padding: 10px 20px;
		font-family: var(--nav-font);
		font-size: 17px;
		font-weight: 500;
		display: flex;
		align-items: center;
		justify-content: space-between;
		white-space: nowrap;
		transition: 0.3s;
	}

	.navmenu a i,
	.navmenu a:focus i {
		font-size: 12px;
		line-height: 0;
		margin-left: 5px;
		width: 30px;
		height: 30px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
		transition: 0.3s;
		background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
	}

	.navmenu a i:hover,
	.navmenu a:focus i:hover {
		background-color: var(--accent-color);
		color: var(--contrast-color);
	}

	.navmenu a:hover,
	.navmenu .active,
	.navmenu .active:focus {
		color: var(--nav-dropdown-hover-color);
	}

	.navmenu .active i,
	.navmenu .active:focus i {
		background-color: var(--accent-color);
		color: var(--contrast-color);
		transform: rotate(180deg);
	}

	.navmenu .dropdown ul {
		position: static;
		display: none;
		z-index: 99;
		padding: 10px 0;
		margin: 0px 20px;
		background-color: var(--nav-dropdown-background-color);
		transition: all 0.5s ease-in-out;
	}

	.navmenu .dropdown ul ul {
		background-color: rgba(33, 37, 41, 0.1);
	}
.navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgb(33 37 41 / 16%);
    border: none;
}

	.navmenu .deep-dropdown.dropdown-active {
		border: 1px solid #9AA882 !important;
	}

	.mobile-nav-active {
		overflow: hidden;
	}

	.mobile-nav-toggle {
		color: #FFF;
	}

	.mobile-nav-active .mobile-nav-toggle {
		color: #fff;
		position: absolute;
		font-size: 32px;
		top: 15px;
		right: 15px;
		margin-right: 0;
		z-index: 9999;
	}

	.scrolled .mobile-nav-toggle {
		color: #000;
	}

	.mobile-nav-active .navmenu {
		position: fixed;
		overflow: hidden;
		inset: 0;
		background: rgba(33, 37, 41, 0.8);
		transition: 0.3s;
	}

.mobile-nav-active .navmenu>ul {
    display: block;
    background: #f1e7de;
}
}

.color-primary {
	color: #5C4033 !important;
}

/* Floating Whatsapp Icon */
.floating_btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

@keyframes pulsing {
	to {
		box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
	}
}

.contact_icon {
    background-color: #42db87;
    color: #fff;
    width: 50px;
    height: 50px;
    font-size: 22px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 #42db87;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;
    transition: all 300ms ease-in-out;
}

.fancy-hr {
	border: 0;
	height: 1px;
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0), #87986A, rgba(0, 0, 0, 0));
	width: 100%;
	margin-bottom: 3%;
}

.dropdown .fa-chevron-down::before {
	position: relative !important;
	right: 4px !important;
}

/* section.activities-section .fancy-hr {
    background-image : linear-gradient(to right, rgba(0, 0, 0, 0), #fff, rgba(0, 0, 0, 0));
} */
.brand-text {
	color: #0293C2 !important;
}

.py-70 {
	padding: 70px 0;
}

.py-80 {
	padding: 80px 0;
}

.py-90 {
	padding: 80px 0;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: #fff;
    background-color: #C1A78C;
    font-size: 14px;
    position: relative;
    padding: 50px 0 20px;
}

.footer .footer-logo {
	height: 60px !important;
	/* filter: invert(1); */
}

@media screeb and (max-width:400px) {
	.footer .footer-logo {
		height: 50px !important;
	}
}

.footer-about .about-description {
    color: #111;
    font-size: 18px;
    font-family: var(--inter-font);
    line-height: 30px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 25px 0;
}

.footer .social-media-wrapper {
	display: flex;
	align-items: center;
}

.footer .social-media-wrapper .social-icon-avatar {
    border-radius: 10px 20px 10px 10px;
    background-color: #111;
    height: 35px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer .social-media-wrapper .social-icon-avatar .social-icon {
	font-size: 18px;
	transition: 0.3s ease-in all;
	color: #C1A78C;
}

.footer .social-media-wrapper .social-icon-avatar:hover {
	opacity: 0.8 !important;
	transition: opacity 0.3s ease;
}

.footer-col-heading {
    position: relative;
    color: #111;
    width: fit-content;
    font-size: 36px;
    margin-bottom: 22px;
    /* padding-bottom: 8px; */
    font-family: var(--cormorant-font);
}

/* .footer-col-heading::after {
    content: '';
    position: absolute;
    width: 46%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #111;
} */

.navigation-links ul {
	padding-left: 0 !important;
}

.navigation-links ul li {
	list-style-type: none !important;
	padding-bottom: 12px;
}

.navigation-links ul li a {
    color: #111;
    font-size: 18px;
    font-family: var(--inter-font);
}

.navigation-links .fa-arrow-right-long {
    color: #222;
    font-size: 12px;
}

.DT-hours {
	margin-bottom: 20px;
}

.DT-hours .location-icon, .DT-hours .phone-icon, .DT-hours .mail-icon {
    color: #111;
    font-size: 18px;
    max-width: 22px;
    min-width: 22px;
    text-align: center;
}

.DT-hours address, .DT-hours h6 {
    color: #111;
    font-family: var(--inter-font);
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 400;
}

.footer .p-DT {
	color: #c4c4c4;
	font-size: 14px;
	padding-top: 10px;
	padding-bottom: 10px;
}

.callus-btn {
	background-color: transparent !important;
	color: #111 !important;
	border: 1px solid #111;
	font-size: 16px;
	font-weight: 500;
	border-radius: 40px;
	padding: 10px 20px;
	transition: 0.3s ease-in-out all;
}

.callus-btn:hover {
	border: 1px solid #111;
	transform: scale(1.2);
	transition: 0.3s ease-in-out all;
}

.copyright-text, .copyright-text a {
    font-family: var(--cormorant-font);
    color: #222 !important;
    font-size: 16px;
    font-family: var(--inter-font);
}

.copyright-text a:hover {
	color: #0293C2 !important;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	inset: 0;
	z-index: 999999;
	overflow: hidden;
	background: var(--background-color);
	transition: all 0.6s ease-out;
}

#preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #ffffff;
	border-color: var(--accent-color) transparent var(--accent-color) transparent;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 30px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 52px;
    height: 52px;
    border-radius: 50px;
    transition: all 0.4s;
}

.scroll-top i {
	font-size: 24px;
	color: var(--contrast-color);
	line-height: 0;
}

.scroll-top:hover {
	background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
	color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 100px;
    border: 1px solid #FFF;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	[data-aos-delay] {
		transition-delay: 0 !important;
	}
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
	--background-color: #000000;
	--heading-color: var(--contrast-color);
	--default-color: var(--contrast-color);
	color: var(--default-color);
	background-color: var(--background-color);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 160px 0 80px 0;
	text-align: center;
	position: relative;
}

.page-title:before {
	content: "";
	background-color: color-mix(in srgb, var(--background-color), transparent 50%);
	position: absolute;
	inset: 0;
}

.page-title h1 {
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	justify-content: center;
	padding: 0;
	margin: 0;
	font-size: 16px;
	font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
	padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
	content: "/";
	display: inline-block;
	padding-right: 10px;
	color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
	color: var(--default-color);
	background-color: var(--background-color);
	/* padding: 60px 0; */
	scroll-margin-top: 92px;
	overflow: clip;
}

@media (max-width: 1199px) {

	section,
	.section {
		scroll-margin-top: 76px;
	}
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
	text-align: center;
	padding-bottom: 60px;
	position: relative;
}

.section-title h2 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
}

.section-title h2:after {
	content: "";
	position: absolute;
	display: block;
	width: 50px;
	height: 3px;
	background: var(--accent-color);
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}

.section-title p {
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
	width: 100%;
	min-height: 100vh;
	position: relative;
	padding: 100px 0 0 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.hero img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

.hero:before {
	content: "";
	background: color-mix(in srgb, var(--background-color), transparent 30%);
	position: absolute;
	inset: 0;
	z-index: 2;
}

.hero .container {
	position: absolute;
	z-index: 3;
}

.hero h2 {
	margin: 0;
	font-size: 48px;
	font-weight: 700;
}

@media screen and (max-width:500px) {
	.hero h2 {
		font-size: 30px !important;
		line-height: 37px !important;
	}

	.learn-more-btn {
		font-size: 12px !important;
		padding: 8px 20px !important;
	}
}

@media screen and (min-width:501px) and (max-width:900px) {
	.hero h2 {
		font-size: 45px !important;
		line-height: 70px !important;
	}
}

.hero h2 span {
	color: #FFF;
	font-weight: 500;
}

.hero p {
	color: color-mix(in srgb, var(--default-color), transparent 20%);
	margin: 30px 0 0 0;
	font-size: 15px;
}

.learn-more-btn {
	background-color: transparent;
	font-family: var(--inter-font);
	border: 2px solid #FFF !important;
	padding: 10px 20px;
	border-radius: 40px;
	margin-bottom: 50px;
	color: #FFF;
	margin-top: 45px;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: 0.4s ease-in-out !important;
}

.learn-more-btn:hover {
	border: 2px solid #FFF !important;
	transform: scale(1.2) !important;
	color: #FFF !important;
}

@media (max-width: 768px) {
	.hero h2 {
		font-size: 50px;
		line-height: 95px;
	}

	.hero p {
		font-size: 14px;
		line-height: 20px;
	}
}

.hero .about-info {
	overflow: hidden;
	position: relative;
	padding: 60px 0 40px 0;
	z-index: 2;
	width: 100%;
}

/* Video Section */
.video-background {
	position: absolute;
	top: 0 !important;
	height: 100vh;
	width: 100%;
	z-index: 2;
	opacity: 0.9;
}

.video-background video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}

.background-overlay {
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	position: absolute;
	z-index: 2;
	background: linear-gradient(180deg, #0000007d, transparent);
	transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.video-text {
	font-family: var(--cormorant-font);
	font-style: italic;
	font-size: 67px !important;
}

.video-slogan-p {
	font-family: var(--inter-font);
}

.hero .about-info:before {
	content: "";
	background: color-mix(in srgb, var(--background-color), transparent 50%);
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
}

.hero .about-info h2 {
	font-size: 36px;
	font-weight: bold;
	margin-bottom: 10px;
	color: #fff;
}

.hero .about-info h3 {
	font-size: 18px;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 10px;
	color: #fff;
}

.hero .about-info p {
	font-size: 14px;
	margin-bottom: 20px;
	color: #fff;
}

/* About Us Section */
@media screen and (max-width:500px) {
	.aboutus-section {
		margin-bottom: 0px;
		padding-bottom: 10px !important;
	}
}

.abtus-widget-container .widget-holder img {
	display: inline-block;
	height: 100%;
	object-fit: cover;
	border: 5px solid #FFF;
	border-radius: 10px 100px 10px 10px;
}

@media screen and (min-width:992px) {
	.abtus-widget-container .widget-holder img {
		position: relative !important;
		z-index: 2 !important;
	}
}

.abtus-content-section {
	margin-top: 50px;
	margin-left: 50px;
	padding: 50px 20px 50px 0px;
	border-radius: 0px 10px 10px 0px;
	border-style: solid;
	border-width: 6px 6px 6px 0px;
	border-color: #87986A1F;
}

@media screen and (max-width:500px) {
	.abtus-content-section {
		margin-left: unset;
		border: none !important;
		margin-top: 10px !important;
		padding-bottom: 20px !important;
	}
}

.abtus-content-section .content-ABTUS67L .head-h2 {
	color: #5C4033;
	font-weight: 800;
	font-family: var(--cormorant-font);
	font-size: 50px !important;
	margin-bottom: 18px;
	line-height: 68px;
}

.abtus-content-section .content-ABTUS67L .head-h2 span {
	font-family: var(--cormorant-font);
}

.abtus-content-section .content-ABTUS67L .p-para {
	color: #333;
	font-size: 18px;
	line-height: 35px;
	font-family: var(--inter-font);
}

.counter-infos {
	margin-top: 30px;
}

.counter-wrapper .counter-UVW.first-child,
.counter-wrapper .counter-UVW.second-child {
	border-right: 1px solid #9a9a9a82;
}

.counter-wrapper .counter-UVW {
	padding-right: 30px;
	margin-right: 15px;
}

.counter-wrapper .counter-UVW h2 {
	font-size: 45px;
	color: #5C4033;
	font-weight: 800;
}

@media screen and (max-width:500px) {
	.counter-wrapper .counter-UVW {
		padding-right: 20px !important;
	}

	.counter-wrapper .counter-UVW h2 {
		font-size: 33px;
	}

	.counter-wrapper .counter-UVW h6 {
		font-size: 12px !important;
	}
}

.counter-wrapper .counter-UVW h6 {
	color: #000;
	font-size: 16px;
	font-weight: 400;
	line-height: 2.1;
}

/* MultiGrid section */
.multiGrid-section {
	background-color: #FFFFFF;
	position: relative;
}

.multiGrid-section .heading-h2 {
	color: #5C4033;
	font-weight: 500;
	font-family: var(--cormorant-font);
	font-size: 50px !important;
	margin-bottom: 18px;
	line-height: 68px;
	text-transform: uppercase;
}

@media screen and (max-width:500px) {

	.multiGrid-section .heading-h2,
	.activities-section .heading-h2 {
		font-size: 29px !important;
		line-height: 40px !important;
	}
}

.multiGrid-section .heading-h2 span {
	display: inline-block;
	font-weight: 600;
	font-style: italic;
}

/* Activity Section CSS Ends... */
/* Feature Section */

.whcus-list-wrapper {
	margin-top: 20px;
}

.whcus-list-ul {
	margin-left: 0;
	padding-left: 0;
	list-style: none;
}

.whcus-list-ul li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 10px;
	font-size: 18px;
	color: #333;
	font-family: var(--inter-font);
	line-height: 32px;
}

.whcus-list-ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	width: 20px;
	height: 20px;
	background-image: url('../img/checked.png');
	background-size: contain;
	background-repeat: no-repeat;
}

.contact-rsc-wrap h6 {
    color: #121212;
    letter-spacing: 0.72px;
    font-weight: 400;
    margin-bottom: 12px;
}

.contact-rsc-wrap span {
	padding-left: 5px;
}

.feature-section {
	height: 655px;
	position: relative;
	background-image: url('../img/feature-bg.jpg');
	background-position: center center;
	background-size: cover;
	z-index: 1;
	padding: 100px 0px 100px 0px;
}

@media screen and (max-width:500px) {
	.feature-section {
		padding: 40px 0px 40px 0px;
	}
}

.feature-section .feature-section-overlay {
	background-color: #5C4033;
	opacity: 0.87;
	transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	z-index: -1;
	position: absolute;
}

.feature-section .learn-more-action,
.feature-section .learn-more-action:hover {
	background-color: transparent;
	font-size: 14px;
	font-family: var(--inter-font);
	border: 2px solid #FFF !important;
	padding: 13px 40px;
	border-radius: 40px;
	margin-bottom: 50px;
	color: #FFF;
	margin-top: 45px;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: 0.4s ease-in-out !important;
}

.feature-section .learn-more-action:hover {
	transform: scale(1.08);
	transition: 0.3s ease-in-out all;
}

.FS-section .h2-heading {
	color: #FFF;
	font-size: 45px;
	font-family: var(--cormorant-font);
	font-weight: 800;
}

.feature-section .p-para-FS {
	font-size: 18px;
	line-height: 32px;
	color: #c4c4c4;
	text-align: left;
	font-family: var(--inter-font);
}

.FS-card-section {
	overflow: unset !important;
}

@media screen and (max-width:991px) {
	.FS-card-section {
		overflow: clip !important;
		padding-bottom: 0 !important;
	}
}

.FS-card {
	overflow: visible;
	margin-top: -528px;
	z-index: 2;
	position: relative;
	overflow: hidden;
	background-color: #FFF !important;
	padding: 4px;
	border: none !important;
	box-shadow: 0px 8px 20px 4px rgba(0, 0, 0, 0.14);
	transition: 0.3s ease-in-out all;
}

@media screen and (min-width:992px) and (max-width:1400px) {
	.FS-card {
		margin-top: -460px !important;
	}
}

@media screen and (max-width:991px) {
	.FS-card {
		margin-top: auto !important;
	}

	.feature-section {
		height: auto !important;
	}
}

.FS-card:hover {
	transform: scale(1.03) !important;
}

.FS-card .card-body {
	padding: 30px 13px;
}

.FS-card .card-img-top {
	transition: transform 0.3s ease;
}

.FS-card.first-child {
	border-radius: 10px 60px 10px 10px !important;
}

.FS-card.second-child {
	border-radius: 10px !important;
}

.FS-card.last-child {
	border-radius: 60px 10px 10px 10px !important;
}

.FS-card.first-child img {
	border-radius: 10px 60px 0px 0px !important;
}

.FS-card.last-child img {
	border-radius: 60px 10px 10px 10px !important;
}

.FS-card .card-title {
	color: #5C4033 !important;
	font-family: var(--cormorant-font);
	font-size: 25px;
	font-weight: bolder;
}

.FS-card .card-text {
	color: #000000 !important;
	font-family: var(--cormorant-font);
	padding-top: 0px;
	margin-bottom: 3px;
	font-size: 18px;
	line-height: 29px;
}

.FS-card .learn-more-action i {
	color: #87986a;
}

.FS-card .learn-more-action {
	font-family: var(--inter-font);
	font-size: 16px;
	color: #87986a;
}

.FS-card .learn-more-button {
	background-color: transparent;
	font-family: var(--inter-font);
	border: 1px solid #5C4033 !important;
	padding: 10px 20px;
	border-radius: 40px;
	color: #5C4033;
	margin-top: 25px;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: 0.4s ease-in-out !important;
}

.FS-card .learn-more-button:hover {
	transform: scale(1.1) !important;
}

/* Feature Section Ends.... */


/* Floated About Us Section */

.floated-AU-section {
	position: relative;
	z-index: 2;
	background-attachment: fixed;
	background-image: url("../img/aboutus/bg.jpg");
	background-position: center center;
	background-size: cover;
	transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
	margin-top: 0px;
	margin-bottom: 0px;
	padding: 100px 0px 100px 0px;
}

@media screen and (min-width:992px) {
	.floated-AU-section {
		z-index: 0 !important;
	}
}

.floated-AU-BG-overlay {
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	position: absolute;
	z-index: -1;
	background-color: #180c07;
	opacity: 0.85;
	transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.floated-AU-BG-overlay-2 {
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	position: absolute;
	z-index: -1;
	background-color: #180c07;
	opacity: 0.85;
	transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.floated-AU-section .FC-info-wrapper h2 {
	color: #FFF;
	font-family: var(--cormorant-font);
	font-size: 45px;
	font-weight: 800;
	margin-bottom: 20px;
	line-height: 55px;
}

.floated-AU-section .FC-info-wrapper h2 span {
	display: inline-block;
	font-weight: 600;
	font-style: italic;
}

.floated-AU-section .FC-info-wrapper p {
	text-align: left;
	/* font-family: var(--inter-font); */
	color: #ffffff;
	margin-bottom: 0px;
	font-size: 19px;
}

.FAU-card {
	border: none !important;
	box-shadow: none !important;
	border-radius: 10px !important;
	padding: 30px 10px;
	background-color: #84848421;
	transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}

.FAU-card .FAU-icon {
	height: 80px;
}

.FAU-card h4 {
	color: #FFF;
	font-family: var(--inter-font);
	font-size: 20px;
	font-weight: 800;
	margin-top: 15px;
	margin-bottom: 15px;
	margin-bottom: 10px;
}

.FAU-card p {
	font-family: var(--inter-font);
	text-align: center;
	color: #fff !important;
	font-weight: 400;
	font-size: 17px;
}

/* Activities section */

.activities-section {
	background-color: #FFFFFF;
	position: relative;
}

.activities-section .heading-h2 {
	font-size: 43px !important;
	font-family: var(--cormorant-font);
	font-weight: 800;
	color: #031602;
	line-height: 60px;
}

@media screen and (max-width:500px) {
	.activities-section .heading-h2 {
		font-size: 29px !important;
		line-height: 40px !important;
	}
}

.activities-section .heading-h2 span {
	display: inline-block;
	font-weight: 600;
	font-style: italic;
}

.AS-blur-overlay {
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	position: absolute !important;
	background-repeat: no-repeat;
	background-image: url("../img/activity/bg.png");
	opacity: 0.08;
	transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

@media screen and (max-width:1024px) {
	.AS-blur-overlay {
		background-position: -70px 313px;
	}
}

.AF-card {
	position: relative;
	min-height: 350px;
	border: 1px solid transparent;
	box-shadow: 0px 10px 23px 9px rgba(0, 0, 0, 0.09);
	padding: 30px 20px 30px 40px !important;
	border-radius: 10px !important;
	transition: 0.3s ease-in all !important;
	width: 100%;
	flex-wrap: wrap;
	align-content: flex-start;
	overflow: hidden;
}

.AF-card:hover {
	border-color: #5C4033;
	border-width: 1px;
}

.AF-card.first-child {
	background-image: url("../img/activity/card-bg.jpg");
	border: 1px solid #87986a !important;
}

.AF-card.first-child .AF-card-overlay {
	position: absolute;
	transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
	background-color: #5C4033;
	border-radius: 10px;
	opacity: 0.68;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.AF-counting-holder {
	width: 100%;
	position: relative;
	top: -30px;
}

.AF-card.first-child .AF-counter-value {
	position: relative;
	right: 0;
	opacity: 0.4;
	font-size: 70px !important;
	color: #ffffff !important;
	font-family: var(--inter-font);
	font-weight: 800;
}

.AF-card .AF-counter-value {
	position: relative;
	right: 0;
	font-size: 70px !important;
	color: #5c40331c !important;
	font-family: var(--inter-font);
	font-weight: 800;
}

.activity-icon {
	height: 55px;
}

.AIQ-infos {
	position: relative;
	top: -30px;
}

.AF-card.first-child .AIQ-infos h4 {
	color: #FFFFFF;
	font-size: 24px;
	font-family: var(--inter-font);
	font-weight: 800;
	letter-spacing: 1px;
	margin-bottom: 18px;
}

.AF-card .AIQ-infos h4 {
	color: #031602;
	font-size: 24px;
	font-family: var(--inter-font);
	font-weight: 800;
	letter-spacing: 1px;
	margin-bottom: 18px;
}

.AIQ-infos p {
	color: #2a2a2a;
	font-size: 18px;
	line-height: 31px;
	font-weight: 500;
	margin-bottom: 0;
	font-family: var(--inter-font);
}

.AF-card.first-child .navLM-href i {
	color: #FFF;
	padding-right: 5px;
}

.AF-card.first-child .navLM-href a,
.AF-card.first-child .navLM-href a:hover {
	display: inline-block;
	font-size: 12px;
	text-transform: uppercase;
	font-family: var(--inter-font);
	font-weight: 500;
	fill: #FFF;
	color: #FFF;
}

.AF-card .navLM-href i {
	color: #483528;
	padding-right: 5px;
}

.AF-card .navLM-href a,
.AF-card .navLM-href a:hover {
	display: inline-block;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 500;
	fill: #87986A;
	color: #000000;
}

/* Activity Section CSS Ends... */

/* Form Section */
.form-section {
	position: relative;
	z-index: 2;
	background-attachment: fixed;
	background-image: url("../img/form/bg.jpg");
	background-position: center center;
	background-size: cover;
	transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
	margin-top: 0px;
	margin-bottom: 0px;
	/* padding: 100px 0px 100px 0px; */
}

.form-section-overlay {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: -1;
    background-color: #f3f3f3;
    opacity: 0.68;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.form-section .form-control:focus,
.form-section .form-select:focus {
	box-shadow: none !important;
	border: none !important;
}

.form-section .form-control, .form-section .form-select {
    border: none !important;
    box-shadow: none !important;
    padding: 9px 12px;
    color: #000;
    font-size: 15px;
    background: #ffffffd4;
}

.form-section .form-control::placeholder,
.form-section .form-select::placeholder {
	color: #333;
	font-size: 15px;
}

.form-section .form-wrapper {
    background-color: #0000009c;
    padding: 50px;
    border-radius: 30px;
    backdrop-filter: blur(2px);
}

@media screen and (max-width:500px) {
	.form-section .form-wrapper {
		padding: 25px !important;
	}

	.form-content-RSC .heading-h2 {
		font-size: 28px !important;
		line-height: 40px;
	}
}

.form-section .submit-btn, .form-section .submit-btn:hover, .form-section .submit-btn:active {
    background-color: transparent !important;
    color: #FFF;
    padding: 12px 44px !important;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid #FFF;
    border-radius: 7px !important;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-content-RSC .heading-h2 {
	font-size: 47px;
	line-height: 55px;
	color: #FFF;
	font-family: var(--cormorant-font);
	font-weight: 800;
	margin-bottom: 24px;
}

.form-content-RSC {
	padding-left: 80px;
}

.form-content-RSC .heading-h2 span {
	font-weight: 600;
	font-style: italic;
}

.form-content-RSC .p-para {
	/* font-family: var(--inter-font); */
	text-align: left;
	color: #FFF;
	font-size: 16px;
	margin-bottom: 40px;
	font-family: var(--inter-font);
	line-height: 30px;
}

.list-items-container {
	margin-bottom: 25px !important;
}

.list-items-container .list-items-ul {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

@media screen and (max-width:991px) {
	.list-items-container .list-items-ul {
		display: block !important;
	}

	.form-content-RSC {
		padding-left: 25px !important;
		margin-top: 60px !important;
	}
}

.list-items-container .list-items-ul h5 {
	color: #FFF;
	font-size: 15px;
	min-width: 250px;
	margin-bottom: 15px;
}

.list-items-container .list-items-ul h5 .RA-icon {
	color: #F8E1B7;
}

.horizontal-ruler {
    color: #000000 !important;
    opacity: 1 !important;
}

.social-media-items {
	display: flex;
	align-items: center;
	justify-content: center;
}

.social-media-container {
	margin-top: 32px;
}

.social-media-container h4 {
	color: #121212;
	font-size: 20px;
	font-family: var(--inter-font);
	font-weight: 800;
}

.social-media-items .sicon-avatar {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 30px;
	width: 30px;
	border-radius: 5px 10px 5px 5px;
	background-color: #111;
}

.social-media-items .SB-icon {
	font-size: 17px;
	color: #fff;
}

/* Add On Section */
.addon-section {
	/* padding: 100px 0; */
	/* background: #f0f1f07a; */
}

@media screen and (max-width:500px) {
	.addon-section {
		margin-top: 25px !important;
		padding: 70px 0;
	}
}

.addon-widget-container .widget-holder {
	border-radius: 30px;
}

.addon-widget-container .widget-holder img {
	display: inline-block;
	height: auto;
	border-radius: 30px;
}

.AMCT-contents h3 {
	font-family: var(--cormorant-font);
	color: #5C4033;
	font-size: 58px;
	font-weight: 700;
}

.AMCT-content-wrapper p {
	font-size: 18px;
	color: #333;
	font-family: var(--inter-font);
	line-height: 32px;
	margin-bottom: 0;
}

.short-slogan-AM {
	font-size: 30px;
	font-weight: bold;
}

/* Multibox CSS */

/* .multiGrid-section{
	padding-top: 30px;
	padding-bottom: 30px;
} */
/* .multiGrid-section .heading-p{
	font-weight: 500;
} */
.MSG-wrapper {
	box-sizing: border-box;
	width: 100%;
	position: relative;
	overflow: hidden;
	background: url("../img/grid/01.jpg") center center / cover no-repeat rgb(51, 51, 51);
	transition-behavior: normal;
	transition-timing-function: ease-in-out;
	transition-delay: 0s;
	transition-property: all;
	min-height: 32.29vw;
	transition-duration: 0.6s !important;
}

.MSG-wrapper .col {
    padding: 0 !important;
    border-right: 1px solid #ffffff9c;
}

.MSG-row {
	display: flex;
	transition: transform 0.6s ease-in-out;
}

.MSG-col-wrapper {
	position: relative;
	overflow: hidden;
	min-height: 32.29vw;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
}

.MSG-col-wrapper::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: rgb(255, 255, 255);
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
	z-index: 1;
}

.MSG-col-wrapper:hover::before {
	opacity: 0.85;
}

.MSG-inner-content {
	position: relative;
	z-index: 2;
	display: none;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #333;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}

.MSG-col-wrapper:hover .MSG-inner-content {
	display: flex;
	opacity: 1;
}

.MSG-inner-content .inner-p-msg {
	padding-top: 10px;
	font-size: 16px;
	font-weight: 500;
	font-family: var(--inter-font);
	line-height: 30px;
}

.MSG-col-cat-name {
    color: #FFF;
    position: absolute;
    bottom: 20px;
    text-align: center;
    text-shadow: 2px 2px 13px rgb(0 0 0);
    z-index: 2;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    font-family: var(--cormorant-font);
    font-size: 22px;
    font-weight: 300;
}

.MSG-col-wrapper:hover .MSG-col-cat-name {
	opacity: 0;
	visibility: hidden;
}

@media screen and (max-width: 768px) {
	.MSG-wrapper {
		overflow-x: auto !important;
		background: transparent !important;
	}

	.MSG-row {
		flex-wrap: nowrap;
		/* Prevent wrapping of columns */
	}

	.MSG-wrapper .col-lg-3 {
		width: fit-content !important;
	}

	.MSG-col-wrapper {
		min-height: 400px;
		width: 300px;
		flex: 0 0 auto;
	}

	.MSG-col-wrapper::before {
		display: none !important;
	}

	.inner-MSG-div .inner-H4-msg {
		display: none !important;
	}

	.MSG-col-cat-name {
		font-size: 18px;
	}

	.MSG-col-wrapper:hover .MSG-col-cat-name {
		opacity: 1 !important;
		visibility: visible !important;
	}

	.inner-MSG-div .inner-p-msg,
	.MSG-inner-content {
		font-size: 13px !important;
		font-weight: 300 !important;
		display: block !important;
		opacity: 1 !important;
		text-shadow: 2px 2px 5px rgb(0 0 0 / 60%) !important;
		color: #FFF !important;
		visibility: visible !important;
		font-family: var(--inter-font) !important;
	}

	#first-MSG-col {
		background: url("../img/grid/01.jpg") center center / cover no-repeat rgb(51, 51, 51) !important;
	}

	#second-MSG-col {
		background: url("../img/grid/02.jpg") center center / cover no-repeat rgb(51, 51, 51) !important;
	}

	#third-MSG-col {
		background: url("../img/grid/03.jpg") center center / cover no-repeat rgb(51, 51, 51) !important;
	}

	#fourth-MSG-col {
		background: url("../img/grid/04.jpg") center center / cover no-repeat rgb(51, 51, 51) !important;
	}
		#fifth-MSG-col {
		background: url("../img/grid/05.jpg") center center / cover no-repeat rgb(51, 51, 51) !important;
	}
		#sixth-MSG-col {
		background: url("../img/grid/06.jpg") center center / cover no-repeat rgb(51, 51, 51) !important;
	}
}

@media screen and (min-width:501px) and (max-width:991px) {
	.MSG-col-cat-name {
		font-size: 17px !important;
	}
}

/* Custom scrollbar for Webkit browsers (Chrome, Safari) */
.MSG-wrapper::-webkit-scrollbar {
	height: 6px;
	/* Thin scrollbar */
	border-radius: 13px;
	position: relative;
	top: 30px !important;
	background-color: #efefef;/
}

.MSG-wrapper::-webkit-scrollbar-thumb {
	background-color: #87986A;
	/* Scrollbar color */
	border-radius: 10px;
	/* Rounded edges */
}

.MSG-wrapper::-webkit-scrollbar-track {
	background: transparent;
	/* Invisible track */
	margin-bottom: 35px;
	/* Push scrollbar down */
	position: relative;
	top: 30px !important;
}

/* Activities section Starts */
.activities-section {
    position: relative;
    /* background: #E9E4DE; */
    background: #fff;
}

/* .activities-section {
    position: relative;
    z-index: 2;
    background-attachment: fixed;
    background-image: url("../img/aboutus/bg.jpg");
    background-position: center center;
    background-size: cover;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin-top: 0px;
    margin-bottom: 0px;
} */
.floated-AU-BG-overlay {
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	position: absolute;
	z-index: -1;
	background-color: #5C4033;
	opacity: 0.85;
	transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

@media screen and (max-width:500px) {
	.activities-section {
		padding-top: 40px;
	}
}

.activities-section .heading-h2 {
	font-size: 43px;
	font-family: var(--cormorant-font);
	font-weight: 800;
	/* color: #ffffff; */
	line-height: 60px;
}

.activities-section .heading-p {
	font-weight: 500;
}

.post-slide {
	/* background: #fff; */
	margin: 20px 15px 0px;
	border-radius: 0;
	padding-top: 0px;
}

.post-slide .post-img {
	position: relative;
	overflow: hidden;
	border-radius: 0 !important;
	margin: -12px 15px 8px 15px;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.post-slide .post-img img {
    width: 100%;
    height: 100%;
    transform: scale(1, 1);
    transition: transform 0.2s linear;
    max-height: 330px;
    min-height: 330px;
    object-fit: cover;
}

.post-slide:hover .post-img img {
	transform: scale(1.1, 1.1);
}

.post-slide .post-content {
	padding: 0px 0px 0px;
	margin-top: 0;
}

.post-slide .post-title a {
	font-size: 15px;
	font-weight: bold;
	color: #333;
	display: inline-block;
	text-transform: uppercase;
	transition: all 0.3s ease 0s;
}

.post-slide .post-title a:hover {
	text-decoration: none;
	color: #3498db;
}

.post-slide .post-description {
	font-family: var(--inter-font);
	line-height: 32px;
	color: #fff;
	margin-bottom: 0;
	font-size: 18px;
}

.act-shadow-box {
    width: 100%;
    position: relative;
    margin-top: 0;
    margin-bottom: 0;
    padding: 12px 0 0 0;
}

.act-shadow-box h3 {
    margin: 0 0 6px;
    font-weight: 400;
    color: #111;
    font-size: 25px;
}

.act-shadow-box a {
	color: #5C4033;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	font-family: var(--inter-font);
}

.act-shadow-box i {
	font-size: 12px;
}

.owl-controls .owl-buttons {
	text-align: center;
	margin-top: 20px;
}

.owl-controls .owl-buttons .owl-prev {
    background: #0000002b;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    height: 40px;
    width: 40px;
    left: -40px;
    padding: 0 16px -5px 15px;
    border-radius: 0px;
    transition: background 0.5s ease 0s;
}

.owl-controls .owl-buttons .owl-next {
	background: #0000002b;
	position: absolute;
	transform: translateY(-50%);
	height: 40px;
	width: 40px;
	top: 50%;
	right: -40px;
	padding: 0 16px -5px 15px;
	transition: background 0.5s ease 0s;
}

.owl-controls .owl-buttons .owl-prev:after, .owl-controls .owl-buttons .owl-next:after {
    content: "\f104";
    font-family: FontAwesome;
    color: #8f8f8f;
    font-size: 26px;
}
.owl-controls .owl-buttons .owl-prev:hover, .owl-controls .owl-buttons .owl-next:hover{
	background: #000000a8;
}
.owl-controls .owl-buttons .owl-prev:hover:after, .owl-controls .owl-buttons .owl-next:hover:after {
    color: #fff;
}
.owl-controls .owl-buttons .owl-next:after {
	content: "\f105";
}

@media only screen and (max-width: 1280px) {
	/* .post-slide .post-content {
	  padding: 0px 15px 25px 15px;
	} */
}

@media screen and (max-width:500px) {
	.post-slide .post-content {
		padding-bottom: 0 !important;
	}

	/* .owl-controls .owl-buttons .owl-prev,
	.owl-controls .owl-buttons .owl-next {
		transform: translateY(445%) !important;
	} */
}

.tbp {
	padding: 100px 0 !important;
}

.tbm {
	margin: 100px 0 !important;
}

.abtus-widget-container {
	height: 100%;
}

.widget-holder {
	height: 100%;
}

.heading-p {
	/* font-family: var(--inter-font);
    line-height: 36px;
    color: #45443F;
    font-size: 20px; */
	color: #333;
	font-size: 18px;
	line-height: 35px;
	font-family: var(--inter-font);
}

h4.inner-H4-msg {
    font-family: var(--inter-font);
    font-size: 28px;
    margin-bottom: 0;
    color: #111;
    font-weight: 500;
}

.post-content ul {
	list-style: none;
	padding: 0;
	margin: 0;
	color: #45443F;
	font-size: 17px;
	font-family: var(--inter-font);
	line-height: 30px;
	width: 100%;
	padding-left: 0;
}

.post-content ul li {
	width: 100%;
	padding-left: 0;
	font-size: 15px;
	line-height: 25px;
	position: relative;
	margin-bottom: 8px;
	unicode-bidi: unset;
	display: flex;
	color: #000;
}

/* .post-content ul li:before {
    content: "";
    position: absolute;
    width: 24px;
    height: 3px;
    background: #45443F;
    left: 0;
    top: 14px;
    border-radius: 10px;
} */
@media(max-width:1199px) {
	.form-content-RSC {
		padding-left: 0px;
	}

	/* .footer .footer-logo {
		height: 50px !important;
		filter: invert(1);
	} */
}

@media(max-width:1400px) {
	.tbp {
		padding: 70px 0 !important;
	}

	.tbm {
		margin: 70px 0 !important;
	}
}

@media(max-width:992px) {
	.abtus-content-section {
		margin-left: 0;
	}
}

@media(max-width:768px) {
	.MSG-wrapper .MSG-row {
		margin-bottom: 50px !important;
	}

	/* .act-shadow-box {
		width: 80%;
		margin-top: -6.604167vw;
	} */
}

@media(max-width:575px) {
	.abtus-content-section .content-ABTUS67L .head-h2 {
		font-size: 36px !important;
		margin-bottom: 8px;
		line-height: 50px;
	}

	.abtus-content-section {
		padding: 20px 0px 0px 0px;
	}

	.counter-UVW:last-child {
		margin: 0;
		padding: 0;
	}

	.AMCT-contents h3 {
		font-size: 42px;
	}

	.short-slogan-AM {
		font-size: 28px;
		font-weight: bold;
	}

	.tbp {
		padding: 50px 0 !important;
	}

	.tbm {
		margin: 50px 0 !important;
	}
}

section.addon-section {
	position: relative;
	z-index: 0;
	margin: 100px;
}

section.addon-section:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: url(../../assets/img/addon/1.jpg);
	z-index: 1;
	top: 0;
	left: 0;
	max-width: 50%;
	background-position: center center;
}

.AMCT-contents {
	background: #fff5e3;
	padding: 50px 50px;
	margin-left: -200px;
	position: relative;
	z-index: 2;
}

@media(max-width:1400px) {
	section.addon-section {
		margin: 70px;
	}

	.AMCT-contents {
		padding: 40px;
		margin-left: -140px;
	}
}

@media(max-width:767px) {
	section.addon-section:before {
		max-width: 100%;
		max-height: 50%;
	}

	.AMCT-contents {
		padding: 30px;
		margin-left: 0;
	}

	section.addon-section {
		margin: 50px 50px 0;
		padding-top: 300px !important;
	}
}

@media(max-width:575px) {
	section.addon-section {
		margin: 20px 20px 0 !important;
		padding-top: 180px !important;
	}

	.AMCT-contents {
		padding: 20px;
		margin-left: 0;
	}

	section.addon-section:before {
		max-width: 100%;
		max-height: 30%;
		background-size: cover;
	}
}

.inner-wrapper {
	margin-top: 90px;
}

.btn-sec-action {
	position: relative;
	display: inline-block;
	margin: 15px;
	padding: 12px 27px;
	text-align: center;
	font-size: 20px;
	font-weight: 800;
	letter-spacing: 1px;
	text-decoration: none;
	color: #7C4735;
	background: #ffffff;
	border: 3px solid #5c403359;
	border-radius: 0;
	cursor: pointer;
	transition: ease-out 0.5s;
}

.btn-sec-action::after,
.btn-sec-action::before {
	position: absolute;
	content: "";
	width: 0;
	height: 0;
	transition: 0.5s;
}

.btn-sec-action::after {
	top: -9px;
	left: -9px;
	border-top: 3px solid transparent;
	border-left: 3px solid transparent;
}

.btn-sec-action::before {
	bottom: -9px;
	right: -9px;
	border-bottom: 3px solid transparent;
	border-right: 3px solid transparent;
}

.btn-sec-action:hover {
	color: #222222;
}

.btn-sec-action:hover::after,
.btn-sec-action:hover::before {
	width: 30px;
	height: 30px;
	border-color: #7C4735;
}

/* Breadcrumb Section */
.breadcrumb-section {
	position: relative;
}

.bc-page-title {
	color: #FFF !important;
	font-size: 40px;
	font-weight: 600;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
}

.breadcrumb-item+.breadcrumb-item::before {
	color: #FFF !important;
}

.breadcrumb-item {
	font-size: 17px;
	font-weight: 600;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
}

.breadcrumb-item .prev:hover {
	color: #a7877d !important;
}

/* Accomodation Page */
.accomodation-section {
	padding: 70px 0;
}

.innerpgeft-intro {
	border: 8px solid #7c473580;
	border-radius: 10px 45px 10px 45px;
	padding: 30px 25px;
	text-align: center;
}

.innerpgeft-intro p {
	color: #000;
	font-size: 19px;
	font-weight: 400;
	line-height: 33px;
}

.innmaintop-lg-head {
	position: relative;
	width: fit-content;
	font-size: 37px;
	font-weight: 700;
	color: #2c3e50;
}

.innmaintop-lg-head::before,
.innmaintop-lg-head::after {
	content: "";
	position: absolute;
	height: 3px;
	background-color: #483528;
	/* soft teal - change to match your palette */
	border-radius: 2px;
	bottom: -13px;
}

.innmaintop-lg-head::before {
	left: 0;
	width: 20%;
}

.innmaintop-lg-head::after {
	left: 25%;
	width: 75%;
	opacity: 0.5;
	/* soft blend */
}

.innmaintop-para {
	color: #000;
	font-size: 18px;
	font-weight: 400;
	line-height: 33px;
	margin-top: 30px;
}

.YRLDev-row {
	margin: 35px 0;
}

.YRLDev-lg-head {
	position: relative;
	padding-left: 22px;
	color: #111;
}

.YRLDev-lg-head::before {
	content: '';
	position: absolute;
	left: 0;
	height: 100%;
	width: 8px;
	border-radius: 30px;
	background-color: #111;
}

.YRLDev-carousel-wrapper {
	box-shadow: rgb(72 53 40 / 45%) 0px 5px 15px;
}

.YRLDev-content h5 {
	color: #05100B;
	margin-top: 20px;
	margin-bottom: 25px;
}

.YRLDev-list-ul {
	list-style: none;
	padding-left: 0;
}

.YRLDev-list-ul li {
    color: #222;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 400;
}

.yrldevadd-p {
	color: #000;
	font-size: 18px;
	font-weight: 400;
	padding-top: 10px;
	margin-bottom: 0;
}

.cottadd-list-wrapper {
	margin-top: 20px;
}

.YRLDev-list-ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 4px;
	width: 20px;
	height: 20px;
	background-image: url('../img/checked.png');
	background-size: contain;
	background-repeat: no-repeat;
}

.YRLDevcarimg-wrap img {
	max-width: 100%;
	width: 100%;
	height: 320px;
	object-fit: cover;
}

.YRLDev-carousel .owl-nav {
	position: absolute;
	top: 50%;
	width: 100%;
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
	pointer-events: none;
}

.YRLDev-carousel .owl-nav i {
	font-size: 24px;
	color: #00225E;
	pointer-events: auto;
	background: rgba(255, 255, 255, 0.8);
	padding: 8px 12px;
	border-radius: 50%;
	cursor: pointer;
	transition: 0.3s;
}

.YRLDev-carousel .owl-nav i:hover {
	background: #00225E;
	color: #fff;
}

.YRLDev-carousel .owl-dots {
	text-align: center;
	margin-top: 10px;
}

.YRLDev-carousel .owl-dot span {
	width: 10px;
	height: 10px;
	background: #ccc;
	display: inline-block;
	margin: 5px 4px;
	border-radius: 50%;
	transition: background 0.3s;
}

.YRLDev-carousel .owl-dot.active span {
	background: #00225E;
}

.YRLDev-carousel .fa.fa-chevron-left,
.YRLDev-carousel .fa.fa-chevron-right {
	display: none !important;
}

.YRLDev-carousel .owl-controls .owl-buttons .owl-prev,
.YRLDev-carousel .owl-controls .owl-buttons .owl-next {
	background: #483528a1;
	border: 1px solid #483528;
}

.YRLDev-carousel .owl-controls .owl-buttons .owl-prev:hover,
.YRLDev-carousel .owl-controls .owl-buttons .owl-prev:focus,
.YRLDev-carousel .owl-controls .owl-buttons .owl-next:hover,
.YRLDev-carousel .owl-controls .owl-buttons .owl-next:focus {
	background: #483528;
	border: 1px solid #f5f1ee;
}

.YRLDev-carousel .owl-pagination {
	text-align: center;
	position: absolute;
	display: flex;
	justify-content: center;
	width: 100%;
	bottom: 7px;
}

.YRLDev-carousel .owl-controls .owl-page span {
	display: block;
	width: 12px;
	height: 12px;
	margin: 5px 7px;
	filter: Alpha(Opacity=50);
	opacity: .5;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: #FFF;
}

.YRLDev-carousel .owl-controls .owl-page {
	display: inline-block;
	zoom: 1;
}

.YRLDev-carousel .owl-controls .owl-page.active span,
.YRLDev-carousel .owl-controls.clickable .owl-page:hover span {
	filter: Alpha(Opacity=100);
	opacity: 1;
}

/* YogaShala */
.ygashal-top-widget-wrap {
	position: relative;
	overflow: hidden;
	display: inline-block;
}

.ygashal-top-widget-wrap.shine {
	position: absolute;
	top: 0;
	left: -75%;
	width: 50%;
	height: 100%;
	background: linear-gradient(120deg,
			rgba(255, 255, 255, 0.0) 0%,
			rgba(255, 255, 255, 0.5) 50%,
			rgba(255, 255, 255, 0.0) 100%);
	transform: skewX(-25deg);
	transition: none;
	pointer-events: none;
}

.ygashal-top-widget-wrap:hover .shine {
	animation: shineAnim 1s ease forwards;
}

@keyframes shineAnim {
	from {
		left: -75%;
	}

	to {
		left: 125%;
	}
}



.yogshalacon-wrapper {
	margin-top: 50px;
}

.ygashal-top-widget {
	border-radius: 20px;
}

.yogshalCoswR {
	margin-top: 50px;
}

.yogshalCoswR-list-ul {
	list-style: none;
	padding-left: 0;
}

.yogshalCoswR-wrap {
	margin-bottom: 35px;
	margin-top: 30px;
}

.yogshalCoswR-head {
	position: relative;
	font-weight: 600;
	font-size: 30px;
	width: fit-content;
	margin-bottom: 30px;
}

.yogshalCoswR-head::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: -14px;
	width: 32%;
	height: 3px;
	background-color: #7C4735;
}

.yogshalCoswR-para {
	color: #000;
	font-size: 17px;
	font-weight: 400;
	margin-bottom: 0;
	line-height: 30px;

}

.yogshalCoswR-list-ul li {
	color: #000;
	position: relative;
	padding-left: 30px;
	margin-bottom: 12px;
	font-size: 17px;
	font-weight: 400;
}

.yogshalCoswR-list-ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	width: 20px;
	height: 20px;
	background-image: url('../img/checked.png');
	background-size: contain;
	background-repeat: no-repeat;
}

.innerpginrocnt-wrapper h4 {
	color: #05100b;
	text-align: center;
	font-size: 24px;
	font-weight: 600;
	padding-bottom: 10px;
}

.nrby-attr-list-wrapper ul {
	list-style: none;
	padding-left: 0;
}

.nrby-attr-list-ul li {
	color: #000;
	position: relative;
	padding-left: 30px;
	margin-bottom: 12px;
	font-size: 19px;
	font-weight: 500;
}

.nrby-attr-list-ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	width: 20px;
	height: 20px;
	background-image: url('../img/checked.png');
	background-size: contain;
	background-repeat: no-repeat;
}

.nrby-attr-content h3 {
	position: relative;
	font-weight: 600;
	padding-left: 22px;
	margin-bottom: 20px;
}

.nrby-attr-content h3::before {
	content: '';
	position: absolute;
	left: 0;
	height: 100%;
	width: 10px;
	border-radius: 30px;
	background-color: #7C4735;
}

.nrby-attr-content p {
	color: #000;
	font-size: 19px;
	font-weight: 500;
	line-height: 33px;
}

.nrby-attr-container {
	margin-top: 80px;
}

@media screen and (min-width:992px) {
	.ps-lg-40 {
		padding-left: 40px;
	}

	.pe-lg-40 {
		padding-right: 40px;
	}
}

.nrby-attr-widwrap {
	position: relative;
	display: inline-block;
	overflow: hidden;
	padding: 30px;
}

.nrby-attr-wrap {
	padding: 70px 0;
}

.nrby-attr-wrap.odd {
	background-color: #7c47351f;
}

.nrby-attr-wrap.even {
	background-color: #FFF;
}

.nrby-attr-widwrap::after {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 60%;
	height: 100%;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(2px);
	transform: skewX(-25deg);
	transition: left 0.6s ease;
	pointer-events: none;
}

.nrby-attr-widwrap:hover::after {
	left: 120%;
}

.nrby-attr-widwrap img {
	vertical-align: middle;
	display: inline-block;
	height: auto;
	min-height: 450px;
	max-height: 450px;
	object-fit: cover;
	max-width: 100%;
	border: none;
	border-radius: 306px;
	box-shadow: none;
	transition: transform 0.3s ease;
}

.nrby-attr-widwrap img:hover {
	transform: scale(1.02);
}

/* Contact Us */
.contact-card {
    border: 1px solid transparent;
    background-color: #FFF;
    height: 100%;
    box-shadow: 0 0 30px #00000012;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 40px 30px;
    border-radius: 10px;
}

@media screen and (max-width:991px) {
	.contcrd-col {
		margin-bottom: 30px;
	}
}

.contact-card:hover {
	border-color: #483528;
	transition: border-color 0.3s ease;
}

.cont-avatr img {
	width: 60px;
	height: auto;
}

.contact-card .cont-info {
    font-size: 18px;
    font-weight: 500;
    padding-top: 30px;
    color: #2f3138 !important;
}

.map-wrapper {
	border-radius: 20px 80px 20px 20px;
}

.contform-card {
	background-color: #483528;
	padding: 30px 50px 50px 50px;
	border: none;
	border-radius: 20px 80px 20px 20px;
	box-shadow: none;
}

.contform-card h1 {
	color: #FFF;
	font-weight: 800;
	letter-spacing: 1px;
	padding-bottom: 5px;
}

.contform-card p {
	color: #fff;
	font-weight: 600;
	margin-bottom: 25px;
}

.contform-card .form-group {
	margin-bottom: 25px;
}

.contform-card .form-control {
	border-radius: 10px;
}

.contform-card .form-control::placeholder {
	font-weight: 600 !important;
}

.contform-card .form-control.ip {
	height: 45px;
}

.contform-card .form-control:focus {
	box-shadow: none;
	border-color: #05100B !important;
}

.contform-card .submit-btn {
	margin-top: 4px;
	text-align: start;
	border: 2px solid #FFF;
	color: #FFF;
	font-size: 20px;
	font-weight: 700;
	background-color: transparent;
	border-radius: 50px;
	padding: 14px 90px;
}

.contform-card .submit-btn:hover {
	background-color: #F8E1B7;
	color: #05100B;
	transition: background-color 0.3s ease, color 0.3s ease;
}

/* Wellness section */
.wlnssplan-section {
	background-color: #FFF5E3;
}

.wlness-col {
	margin-bottom: 25px;
}

.wlness-wrap {
	position: relative;
	overflow: hidden;
	height: 100%;
	background-color: #5c403342;
	border: 6px solid #5C4033;
	border-radius: 10px 45px 10px 45px;
}

@media screen and (max-width:991px) {
	.wlness-content-wrap {
		justify-content: center !important;
	}

	.wlness-content-wrap h3 {
		text-align: center;
	}
}

.wellness-img-wrap img {
	border-radius: 10px 0 0 10px;
	height: 300px;
	width: 100%;
	object-fit: cover;
}

.wlness-content-wrap {
	padding: 15px;
}

.wlness-content-wrap h3 {
	color: #483528;
	font-family: var(--inter-font);
	font-size: 30px;
	margin-bottom: 0;
	font-weight: 700;
}

.activities-text {
	color: #222;
	/* font-size: 15px;
	font-weight: 400;
	line-height: 25px;
	margin-bottom: 10px; */
	   font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 0;
}
/* .act-shadow-box .activities-text {
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 0;
    display: flex;
    gap: 6px;
} */
.activities-text strong {
	padding-right: 4px;
}

.activities-text i {
	padding-left: 4px;
	padding-right: 4px;
}

.cott-img-wrap {
	position: relative;
	overflow: hidden;
	border-radius: 7px;
	box-shadow: rgba(72, 53, 40, 0.45) 0px 5px 15px;
}

.cott-img-wrap::before {
	content: "";
	position: absolute;
	top: 0;
	left: -75%;
	width: 50%;
	height: 100%;
	background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
	transform: skewX(-25deg);
	transition: all 0.5s ease;
}

.cott-img-wrap:hover::before {
	left: 125%;
	transition: all 0.75s ease;
}

.cott-img-wrap img {
	height: 400px;
	width: 100%;
	object-fit: cover;
	border-radius: 7px;
}

.cott-add-h2 {
	position: relative;
	padding-bottom: 15px;
	width: fit-content;
}

.cott-add-h2::after {
	content: '';
	position: absolute;
	bottom: 3px;
	left: 0;
	height: 2px;
	width: 35%;
	background-color: #5C4033;
}

.cottadd-list-ul {
	list-style: none;
	padding-left: 0;
}

.cottadd-list-ul li {
	color: #000;
	position: relative;
	padding-left: 30px;
	margin-bottom: 12px;
	font-size: 18px;
	font-weight: 400;
}

.cottadd-list-ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	width: 20px;
	height: 20px;
	background-image: url('../img/checked.png');
	background-size: contain;
	background-repeat: no-repeat;
}

.cott-rswid-wrap img {
	height: 350px;
	width: 100%;
	object-fit: cover;
	border-radius: 15px;
}

.accwxtra-wid {
	background-color: #5c40332b;
	padding: 20px;
	border-radius: 15px;
	margin-bottom: 30px;
}

.cottaddlstwrap_style2 {
	margin-top: 25px;
}

.cottadd-ul_style2 {
	list-style: none;
	padding-left: 0;
}

.cottadd-ul_style2 li {
	color: #000;
	position: relative;
	padding-left: 30px;
	margin-bottom: 12px;
	font-size: 20px;
	font-weight: 500;
}

.cottadd-ul_style2 li::before {
	content: "\f0a4";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	left: 0;
	top: 6px;
	color: #483528;
	font-size: 14px;
}

@media screen and (max-width:991px) {
	.cott-img-wrap {
		margin-top: 35px !important;
	}
}

.travinfo-section .banner-block {
    position: relative;
    padding: 35px 0;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 0 30px #00000012;
}

.travinfo-section .heading-block {
	position: relative;
	padding-left: 30px;
}

.travinfo-section .heading-block h1 {
	font-size: 32px;
	font-weight: 700;
	color: #000;
	padding-bottom: 10px;
}

.travinfo-section .heading-block p {
	color: #000;
	font-size: 19px;
	font-weight: 400;
	margin-bottom: 0;
	padding-bottom: 35px;
}

.travinfo-section .heading-block h1 span {
	color: #5C4033;
}

.travinfo-section .heading-block h6 {
	font-size: 22px;
	color: #000;
}

.travinfo-section .right-text-block {
    display: flex;
    gap: 40px;
    align-items: center;
    padding-left: 42px;
}

.travinfo-section .right-text-block img {
	width: 30.5%;
	height: 100%;
	border-radius: 5000px;
	border-right: 6px solid #5C4033;
}

.right-text-block .rst-info h1 {
	color: #111;
	font-size: 34px;
	font-weight: 500;
}

.right-text-block .rst-info p {
	margin: 10px 0;
	color: #000;
	font-size: 19px;
	font-weight: 400;
}

.right-text-block .mail-info,
.right-text-block .mail-info a {
	color: #483528 !important;
	font-size: 13px;
}

@media screen and (max-width:575px) {
	.travinfo-section .right-text-block {
		display: block !important;
		padding: 20px !important;
	}

	.travinfo-section .right-text-block img {
		max-width: 100% !important;
		width: auto !important;
		margin: 30px 0;
	}
}

.calplan-col {
	margin-bottom: 30px;
}

.calplan-card {
	position: relative;
	overflow: hidden !important;
	height: 100%;
	border: none;
	border-radius: 4px;
	box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

.calplan-card .card-img-top {
	min-height: 250px;
	max-height: 250px;
	object-fit: cover;
	transition: transform 0.5s ease-in-out;
	transform: scale(1);
}

.calplan-card:hover .card-img-top {
	transform: scale(1.1);
}

.event-date-wrap {
	position: absolute;
	left: 10px;
	top: 10px;
	display: flex;
	border: 2px solid #ffffff;
	border-radius: 10px;
	overflow: hidden;
	background-color: #5c4033c7;
	color: #FFF;
	text-align: center;
	align-items: center;
	justify-content: center;
}

.event-date-wrap .date-text {
	color: #FFF;
	font-weight: 800;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
	font-size: 17px;
	padding: 7px 12px;
	margin-bottom: 0;
}

.calplan-card .card-title {
	color: #111;
	font-size: 21px;
	font-weight: 700;
	line-height: 29px;
}

.calplan-card .calplan-date {
	color: #222;
	padding: 8px 0;
	font-weight: 600;
}

.calplan-card .calpan-para {
    text-align: center;
    color: #000;
    font-size: 19px;
    font-weight: 400;
    margin-bottom: 0;
}

.calplan-card .action-wrapper {
	margin-top: 20px;
}

.btn-12 {
	position: relative;
	font-family: var(--inter-font);
	width: 150px;
	height: 40px;
	line-height: 40px;
	border: 1px solid #483528;
	border-radius: 4px;
	background: #5C4033;
	background: linear-gradient(0deg, #fff 0%, #fff 100%);
	color: #483528;
	text-transform: capitalize;
	font-weight: 500;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}

.btn-12 span:first-child {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #5C4033;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translateY(0%);
	transition: all 0.3s ease-in-out;
}

.btn-12 span:last-child {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	color: #5C4033;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translateY(0%);
	transition: all 0.3s ease-in-out;
}

.btn-12:hover span:first-child {
	transform: translateY(-100%);
}

.btn-12:hover span:last-child {
	transform: translateY(-100%);
}

.btn-12 i {
	color: #5C4033;
}

.trl-lside-wrapper {
	height: 100%;
	border-radius: 5px;
	box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}

.trl-lside-wrapper img {
	max-width: 100%;
	max-height: 600px;
	width: 100%;
	object-fit: cover;
	border-radius: 5px;
}

.travel-gallery-wrapper {
	border: 2px dashed #4835284d;
	/* height: 100%; */
	background-color: #5c403317;
	padding: 22px;
}

/* Travel Gallery */
.trvl-gallimg-wrap {
	position: relative;
	overflow: hidden;
	margin-bottom: 25px;
}

.trvl-gallimg-wrap img {
	height: 250px;
	max-height: 250px;
	width: 100%;
	object-fit: cover;
	display: block;
}

/* Overlay */
.trvl-gallery-overlay {
	position: absolute;
	bottom: -100%;
	/* start hidden */
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(92, 64, 51, 0.767);
	/* lighter version of #5C4033 */
	transition: bottom 0.4s ease-in-out;
	z-index: 1;
}

/* Zoom Icon Wrap */
.icon-zoom-wrap {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.5);
	/* start small */
	color: #fff;
	font-size: 24px;
	opacity: 0;
	transition: all 0.4s ease-in-out;
	z-index: 2;
}

/* Hover Effects */
.trvl-gallimg-wrap:hover .trvl-gallery-overlay {
	bottom: 0;
}

.trvl-gallimg-wrap:hover .icon-zoom-wrap {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
	/* zoom in effect */
}

.date-ind-wrap {
	display: flex;
	align-items: center;
	padding-left: 0px;
	padding-top: 20px;
}

.date-ind-wrap i {
	color: #222;
	font-size: 20px;
}

.date-ind-wrap h6 {
	color: #222;
	font-size: 19px;
	padding-left: 7px;
	margin-bottom: 0;
	padding-bottom: 0;
}

@media screen and (max-width:992px) {
	.travel-gallery-col {
		margin-top: 30px;
	}
}

.travel-details-content-row .main-con p {
	font-size: 19px;
	font-weight: 400;
	margin: 20px 0;
}

.booknow-btn {
	background-color: #483528;
	padding: 10px 45px;
	font-family: var(--inter-font);
	color: #FFF;
	font-size: 18px;
	font-weight: 500;
	border: 2px solid transparent;
	border-radius: 35px;
	transition: 0.3s ease-in-out all;
}

.booknow-btn:hover,
.booknow-btn:focus {
	background-color: #FFF;
	color: #483528;
	border-color: #483528;
	transition: 0.3s ease-in-out all;
}

.trav-sec-wrap {
	margin-top: 37px
}

.sm-sec-h2 {
	font-size: 23px;
	position: relative;
	font-weight: 600;
	padding-bottom: 13px;
	margin-top: 30px;
	margin-bottom: 0;
	width: fit-content;
}

.sm-sec-h2::after {
	content: '';
	position: absolute;
	bottom: 4px;
	left: 0;
	height: 2px;
	width: 50%;
	background-color: #5C4033;
}

.howmch-cost-ul {
	list-style: none;
	padding-left: 0;
}

.howmch-cost-ul li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 12px;
	font-size: 19px;
	font-weight: 500;
	color: #000;
	line-height: 1.5;
}

.howmch-cost-ul li span {
	color: #483528;
	font-weight: 600;
	padding-right: 5px;
}

.howmch-cost-ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 5px;
	width: 18px;
	height: 18px;
	background-image: url('../img/calender/arrow-right.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.howmch-cost-list {
	margin-top: 12px;
}

/* Travel Information */
.travel-info-box {
	position: relative;
	border-radius: 7px;
	margin-top: 40px;
	-webkit-pereaective: 1000px;
	pereaective: 1000px;
}

.travel-info-box .travel-info-front-part {
	border-radius: 7px;
	background: linear-gradient(313deg, #5C4033 0%, #5C4033 80%, #05100B 100%);
	-webkit-transform: rotateY(0deg);
	transform: rotateY(0deg);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transition-duration: 500ms;
	transition-duration: 500ms;
	-webkit-transition-property: all;
	transition-property: all;
	-webkit-transition-timing-function: ease;
	transition-timing-function: ease;
}

.travel-info-box .travel-info-front-part .content {
	padding: 100px 30px;
}

.travel-info-box .travel-info-front-part .content h3 {
	color: #FFF;
	margin-bottom: 20px;
	font-size: 35px;
	font-weight: 600;
}

.travel-info-box .travel-info-front-part .content p {
	color: #FFF;
	font-size: 17px;
	font-weight: 500;
}

.travel-info-box .travel-info-front-part .image.bg1 {
	background-image: url('../img/travel-information/01.webp');
}

.travel-info-box .travel-info-front-part .image.bg2 {
	background-image: url('../img/travel-information/02.webp');
}

.travel-info-box .travel-info-front-part .image.bg3 {
	background-image: url('../img/travel-information/03.webp');
}

.travel-info-box .travel-info-front-part .image {
	overflow: hidden;
	border-radius: 7px;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.travel-info-box .travel-info-front-part .image img {
	display: none;
	border-radius: 7px;
}

@media screen and (max-width:767px) {
	.travel-info-box .travel-info-front-part .image img {
		display: block !important;
		max-height: 300px;
	}

	.travel-info-box .travel-info-front-part .content {
		padding-bottom: 30px !important;
	}
}

.trvway-icon {
	position: absolute;
	right: 30px;
	top: 30px;
	outline: 2px dotted #ffffff47;
	outline-offset: 15px;
	border-radius: 50%;
}

.trvway-icon img {
	width: 75px;
	height: auto;
	opacity: 0.2;
}

/* Weather List */
.servc_list2 {
	padding: 0;
	margin: 15px 0 0;
	list-style: none;
}

.servc_list2 li {
	font-family: var(--inter-font);
	font-size: 20px;
	display: block;
	margin: 0 0 0px 0;
	padding-bottom: 5px;
	position: relative;
	padding-left: 25px;
}

.servc_list2 li i {
	position: absolute;
	left: -1px;
	top: 3px;
	color: #483528;
	font-size: 20px;
}

.servc_list2 li:before {
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	width: 20px;
	height: 20px;
	background-image: url('../img/checked.png');
	background-size: contain;
	background-repeat: no-repeat;
}

/* .servc_list2 li:after {
    position: absolute;
    content: "";
    height: 90%;
    width: 1px;
    top: 16px;
    left: 8px;
    background-color: #483528;
} */
.servc_list2 li:last-child {
	margin-bottom: 0;
}

.servc_list2 li:last-child::after {
	display: none;
}

.servc_list2 li span {
	color: #000;
	display: block;
	font-weight: 400;
	font-size: 18px;
	padding: 1px 0px 1px 10px;
	line-height: 28px;
}
.cus-container{
	width: 100%;
	max-width: 1680px;
	margin-inline: auto;
}
.main-btn a {
    color: #000;
}
.hab-ic {
    display: flex;
	align-items: center;
}
.habl-ic img {
    width: 100%;
    display: none;
}
.habr-img img {
    width: 100%;
}
.habl-ic {
    position: relative;
    z-index: 0;
}
.habl-bg {
    position: absolute;
    top: -30px;
    z-index: -1;
    max-width: 320px;
    left: 80px;
    width: 100%;
	 -webkit-animation:spin 4s linear infinite;
    -moz-animation:spin 4s linear infinite;
    animation:spin 40s linear infinite;
}
@keyframes spin { 
    100% { 
        -webkit-transform: rotate(360deg); 
        transform:rotate(360deg); 
    } 
}
.main-tt h4 {
    font-family: var(--cormorant-font);
    font-size: 62px;
    color: #111;
    margin-bottom: 10px;
    text-transform: capitalize;
}
.main-con p {
    color: #222;
    font-size: 18px;
    line-height: 30px;
}
.hab-btn {
    margin: 40px 0;
}
.btn1 {
    color: #111;
    text-transform: capitalize;
    font-weight: 500;
    border: 1px solid #111;
    padding: 10px 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 50px;
    font-size: 18px;
}
.habm-con {
    display: flex;
    column-gap: 50px;
}
.habm-box h3 {
    font-size: 75px;
    font-family: var(--cormorant-font);
    margin-bottom: 2px;
    color: #111;
}
.habm-box span {
    display: block;
    font-family: var(--cormorant-font);
    font-weight: 500;
    font-size: 26px;
}
.habr-img img {
    width: 100%;
    border-radius: 280px;
    min-height: 620px;
    object-fit: cover;
    object-position: left;
}
.habr-ic {
    padding-left: 100px;
    position: relative;
    z-index: 0;
}
.habl, .habm, .habr {
    width: 100%;
}
.habr-box img {
    width: 100%;
}
.habr-box {
    background: #c2a88f;
    text-align: center;
    position: absolute;
    padding: 40px 20px;
    border-radius: 100px;
    max-width: 180px;
    left: 20px;
    bottom: 30px;
}
.habr-box img {
    width: 100%;
    max-height: 60px;
    object-fit: contain;
    margin-bottom: 20px;
}
.habr-box h3 {
    color: #fff;
    font-family: var(--cormorant-font);
    font-size: 36px;
    /* margin: 0; */
}
.habr-bg img {
    width: 100%;
}
.habr-bg {
    position: absolute;
    width: 100%;
    max-width: 285px;
    left: -170px;
    top: -80px;
}
/* section.h-about {
    background: #fff7f0;
} */
section.h-about {
    background: #f3f3f3;
    position: relative;
    z-index: 0;
}
.hexl-ic img {
    width: 100%;
    border-radius: 100px;
}
section.h-experience{
    background: #fff7f0;
}

section.new-experiences {
    background: #d4cbc2;
}
 /* section.h-experience {
    background: #f3eee9;
} */
.hexl-ic {
    margin-right: 60px;
    position: sticky;
    z-index: 0;
    top: 140px;
}
.hexl-bg svg {
    width: 100%;
    height: 100%;
}
.hexl-bg {
    position: absolute;
    top: 60px;
    left: -220px;
    max-width: 455px;
}
.hexl-bg svg path {
    stroke: #000;
    stroke-width: 1px;
    stroke-opacity: 1;
    stroke-dasharray: 1100;
    stroke-dashoffset: 0;
    transform-origin: center;
    -webkit-transform-origin: center;
    animation: line-path 4s linear infinite alternate;
    -webkit-animation: line-path 4s linear infinite alternate;
}
@keyframes line-path {
    to {
        stroke-dashoffset: 1100;
    }
}

@-webkit-keyframes line-path {
    to {
        stroke-dashoffset: 1100;
    }
}
.hbx-img span {
    background: #fff;
    display: flex;
    width: 80px;
    height: 80px;
    padding: 10px;
    border-radius: 100%;
    margin-bottom: 14px;
}
.hbx-con h5 {
    font-size: 22px;
    color: #111;
    margin-bottom: 12px;
}
.hbx-con ul {
  --icon-size: .8em;
  --gutter: .5em;
  padding: 0 0 0 var(--icon-size);
  margin: 0;
}

.hbx-con ul li {
    padding-left: var(--gutter);
    color: #222;
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
}

.hbx-con ul li::marker {
  content: "\f054"; 
  font-family: FontAwesome;
  font-size: var(--icon-size);
}
.hexr-box {
    background: #f1e7de;
    padding: 30px 30px;
    border-radius: 70px;
    margin-bottom: 30px;
}
.hexr-con {
    margin-top: 40px;
}
.color-f{
	color: #fff !important;
}

.contact-rsc-wrap {
    margin-top: 80px;
}
section.inner-banner {
    background: #d4cbc2;
    padding: 180px 0 80px;
    position: relative;
    z-index: 0;
}
.inb-txt h5 {
    font-family: var(--cormorant-font);
    font-size: 70px;
    color: #000;
    margin-bottom: 6px;
}
.inb-txt p {
    text-transform: uppercase;
    font-weight: 500;
    color: #222;
}
.inb-txt p a {
    color: #222;
}
.inb-txt p span {
    padding-left: 20px;
    margin-left: 14px;
    position: relative;
    z-index: 0;
}
.inb-txt p span:before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
section.inner-banner:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(../../assets/img/i-banner.png);
    top: 0;
    left: 0;
    z-index: -1;
    background-size: contain;
    background-position: center bottom;
}
.tssl-ic img {
    width: 100%;
}
.tssl-ic {
    margin-right: 50px;
}
.tssl-ic img {
    width: 100%;
    border-radius: 100px;
}
.main-tt h5 {
    color: #222;
    font-size: 24px;
	line-height: 34px;
    font-weight: 500;
    margin-bottom: 20px;
}
section.shala-benefits {
    background: #f3f3f3;
}
.shbr-ic img {
    width: 100%;
    height: 100%;
	object-fit: cover;
	border-radius: 100px;
}
.shbr-ic {
    margin-left: 60px;
    height: 100%;
}
.shbl-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 14px;
}
.shbl-rl span {
    background: #c1a78c;
    display: inline-flex;
    width: 60px;
    height: 60px;
    padding: 10px;
    border-radius: 24px;
}
.shbl-rl span img{
    filter: brightness(0) invert(1);
}
.shbl-rr h5 {
    margin-bottom: 0;
    font-size: 22px;
    font-weight: 500;
    color: #222;
}
.shbl-txt p {
    font-size: 18px;
    font-weight: 400;
    color: #222;
    margin-bottom: 0;
}
.shbl-con {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
    gap: 30px;
}
.shbl-box {
    width: 100%;
    max-width: 48%;
    background: #fff;
    padding: 25px 30px;
    border-radius: 50px;
    box-shadow: 0 0 30px #00000012;
}
.tisl-ic img {
    width: 100%;
    border-radius: 100px;
    height: 100%;
    object-fit: cover;
}
.tisl-ic {
    margin-right: 60px;
    height: 100%;
}
.src-box {
    display: flex;
    align-items: center;
    column-gap: 10px;
    background: #f1e7de;
    padding: 12px 12px;
    border-radius: 100px;
    width: 100%;
    max-width: 48%;
}
.srcb-r p {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
}
.tisr-con {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}
.srcb-l img {
    width: 30px;
}
.srcb-l {
    background: #fff;
    padding: 10px 14px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.srcb-l span {
    color: #111;
    font-weight: 500;
}

section.location-place-sec {
    background: #f3f3f3;
}
.main-tt .fancy-hr {
    margin: 24px 0 30px;
}
.lps-con {
    display: flex;
    margin-top: 50px;
	column-gap: 20px;
}
.lpsc-img img {
    width: 100%;
	border-radius: 20px;
}
.lpsc-box {
    width: 100%;
    background: #fff;
    padding: 16px 16px;
    border-radius: 30px;
    box-shadow: 0 0 30px #00000012;
}
.lpsc-con {
    margin: 20px 20px 0;
    text-align: center;
}
.lpsc-con h5 {
    font-size: 25px;
    color: #111;
    font-weight: 500;
    padding-bottom: 20px;
    margin-bottom: 20px;
    position: relative;
    z-index: 0;
}
.lpsc-con h5:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    max-width: 40px;
    background: #7e7e7e;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 12px;
}
.lpsc-con p {
    margin-bottom: 20px;
    font-size: 18px;
    color: #222;
    line-height: 28px;
}
.lpsc-img img {
    object-fit: cover;
    max-height: 300px;
    min-height: 300px;
}
.wib-con {
    margin: 0;
}
p.lpsc-btxt b {
    font-weight: 500;
    color: #111;
}
p.lpsc-btxt {
    margin-bottom: 5px;
}
section.cottage-sec{
    background: #f3f3f3;
}
section.await-sec {
    background: #fff7f0;
}
.cts-row {
    margin-top: 50px;
    display: flex;
    gap: 20px;
}
.ctsb-img img {
        width: 100%;
    border-radius: 20px;
	    object-fit: cover;
    max-height: 300px;
    min-height: 300px;
	margin-bottom: 20px;
}
.cts-box {
    width: 100%;
    background: #fff;
    padding: 16px 16px;
    border-radius: 30px;
    box-shadow: 0 0 30px #00000012;
}

.ctsb-con h5 {
    font-size: 22px;
    margin-bottom: 15px;
    position: relative;
    z-index: 0;
    padding-left: 20px;
    line-height: 32px;
    color: #111;
    font-weight: 600;
}
.ctsb-con h5:before {
    content: "";
}
.ctsb-con h5:before {
    content: "";
    position: absolute;
    width: 6px;
    height: 100%;
    background: #111;
    left: 0;
    border-radius: 10px;
}
.ctsb-con {
    margin: 10px 20px;
}
	
.awsr-ic img {
    width: 100%;
    border-radius: 100px;
    height: 100%;
    object-fit: cover;
}
.awsr-ic {
    margin-left: 60px;
    height: 100%;
}
.awsl-box {
    background: #fff;
    padding: 30px 30px;
    margin-bottom: 20px;
    border-radius: 40px;
    box-shadow: 0 0 30px #00000012;
}
.awsl-box h6 {
    font-size: 22px;
    font-weight: 500;
    color: #222;
    margin-bottom: 8px;
}
.awsl-box p {
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 400;
    color: #222;
}
.awsl-con {
    margin-top: 30px;
}
section.ctg-sec {
    background: #f3f3f3;
}
.ctgr-ic img {
    width: 100%;
    border-radius: 100px;
    height: 100%;
    object-fit: cover;
}
.ctgr-ic {
    margin-left: 60px;
    height: 100%;
}
.fancybox-custom .fancybox-skin {
            box-shadow: 0 0 50px #222;
        }

.ctgm-box {
    /* width: 100%; */
    /* max-width: 31%; */
    position: relative;
    margin: 0 14px;
    border-radius: 50px;
}

        a.fancybox-buttons {
            position: absolute;
            width: 100%;
            height: 100%;
            background: #000000d4;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #c2a88f;
            font-size: 30px;
            opacity: 0;
			border-radius: 50px;
        }

         .fancy-box:hover a.fancybox-buttons {
            opacity: 1;
            transition: 0.8s ease-in-out;
        }

        a.fancybox-buttons:before {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            border: 3px solid #c2a88f62;
            max-width: calc(100% - 75%);
            max-height: calc(100% - 75%);
			border-radius: 40px;
        }

         .fancy-box:hover a.fancybox-buttons:before {
            border: 3px solid #c2a88f;
            max-width: calc(100% - 30px);
            max-height: calc(100% - 30px);
            transition: 2s;
        }
.fancy-box img {
    width: 100%;
    border-radius: 50px;
    min-height: 420px;
    max-height: 420px;
    object-fit: cover;
    object-position: top center;
}
.fancy-box {
    position: relative;
}
.rg-50{
	row-gap: 50px;
}
.rg-30{
	row-gap: 30px;
}
.ctgs1 {
    background: #fff !important;
}
.ctgs1 .ctgr-ic {
    margin-left: 0;
    margin-right: 60px;
}
.habm-ic {
    position: relative;
    z-index: 1;
}
.aic-xxl{
	align-items: center;
}
.nep-con {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
	justify-content: center;
}
.nepc-box {
    text-align: center;
    background: #fff;
    padding: 10px 10px;
    border-radius: 60px;
    width: 100%;
    max-width: 32%;
}
.nepcb-con h5 {
    margin: 20px 0 14px 0;
}
section.new-experiences .fancy-hr {
    background-image: linear-gradient(to right, rgb(255 255 255 / 45%), #000000, rgb(255 255 255 / 45%));
}
.ctg-sec .owl-controls .owl-buttons .owl-prev {
    left: -5px;
	background-color: #333;
}
.ctg-sec .owl-controls .owl-buttons .owl-next {
    right: -5px;
	background-color: #333;
}
.nepc-box .fancy-box img {
    min-height: 360px;
    max-height: 360px;
}
.hbx-con p {
    color: #222;
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 8px;
}
.hexl-img img {
    min-height: 700px;
    max-height: 700px;
    object-fit: cover;
}

/* Dot wrapper */
.owl-pagination {
  text-align: center;
  margin-top: 15px;
  position: relative;
  z-index: 10;
}

/* Each dot */
.owl-page {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

/* Active dot */
.owl-page.active {
  background: #333;
}

.owl-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.owl-carousel .owl-animated-out {
  opacity: 0;
  transition: opacity 1000ms ease;
}

.owl-carousel .owl-animated-in {
  opacity: 1;
  transition: opacity 1000ms ease;
}
 .owl-dots {
      text-align: center;
      margin-top: 10px;
    }
    .owl-dot {
      display: inline-block;
      width: 12px;
      height: 12px;
      background: #ccc !important;
      border-radius: 50%;
      margin: 5px;
    }
    .owl-dot.active {
      background: #000 !important;
    }
	.tstc-ic {
    display: flex;
    gap: 20px;
	flex-wrap: wrap;
	justify-content: center;
}

.tstc-box {
    width: 100%;
    max-width: 32%;
}
.tstc-box iframe {
    height: 100%;
    max-height: 400px;
    min-height: 400px;
}
.tssl-box img {
    max-height: 460px;
    min-height: 460px;
    object-fit: cover;
}
div#activity-slider button.owl-prev, div#activity-slider button.owl-next {
    display: none;
}
li.dropdown.dpn a {
    color: #fff;
}
li.dropdown.dpn a {
    cursor: default;
}
li.dropdown.dpn  li a{
    cursor: pointer;
}
.navmenu a.book-btn {
    background: #fff;
    color: #111;
    font-size: 15px !important;
    padding: 12px 24px !important;
    border-radius: 10px;
    font-weight: 500 !important;
}
.scrolled .navmenu  a.book-btn {
    background: #111;
    color: #fff  !important;
}
li.dropdown.dpn:hover a:hover {
    color: #fff;
}
.shbr-ic-slider img {
    max-height: 800px;
    min-height: 800px;
	object-fit: cover;
}
.ftb-ic p {
    margin: 0;
    font-weight: 500;
    color: #111;
    font-size: 15px;
}
.ftb-ic p a{
    color: #111;
}
.ftb-ic {
    display: flex;
    justify-content: space-between;
}

.ftb-ic p span {
    margin: 0 6px;
    color: #3e3e3e;
}
.text_brdr1 {
    background: #111;
    width: 50px;
    height: 3px;
    display: block;
    overflow: hidden;
    margin-left: 0;
    text-align: left;
    margin-bottom: 10px;
}
.feature_head1 {
    font-size: 30px !important;
    font-weight: 700;
    margin-top: 0px;
    margin-bottom: 10px;
    line-height: 1.1;
    text-align: left;
    color: #222;
}
.feature_head2 {
    font-size: 22px !important;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 10px;
    line-height: 1.1;
    text-align: left;
    color: #222;
}
.about_para1 {
    font-size: 16px;
    color: #2a2a2a;
    margin: 0 0 14px;
    max-width: 100%;
    line-height: 28px;
    font-weight: normal;
    text-align: left;
}
section.h-about:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(../../assets/img/mab.jpg);
    top: 0;
    left: 0;
    max-width: 800px;
    background-size: contain;
    background-position: 0% 100%;
    z-index: -2;
}
section.h-about:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, #f3f3f39e 30%, #f3f3f3 38%, #f3f3f3 100%);
    left: 0;
    top: 0;
    z-index: -1;
}