/* google fonts */


/* @import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Old+Standard+TT:ital,wght@0,400;0,700;1,400&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');


* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}


/* Varialbes */
:root {
	--dark-color: #000000;
	--white-color: #ffffff;
	--color-primary: #1E2831;
	/* --color-secondary: #8C1812;  */
	--color-secondary: #893F32;
	--color-tertiary: #CC935C;
	--body-color: #EDF3F7;
	/* --icon-color: #1D47A4; */
	--copy-bg-color: #000e85;
	--product-bg-color: #00345B;
	--grey-bg: #ECF2FB;
	--hover-color: #171A21;
	--counter-bg-color: #000A5B;
	--heading-color: #282D92;
	--sub-heading-color: #3D3937;
	/* --primary-font: "Nunito", sans-serif; */
	/* --secondary-font: "Old Standard TT", serif; */
	--secondary-font: "Rubik", sans-serif;
}

body {
	/* font-family: "Old Standard TT", serif; */
	/* font-family: "Nunito", sans-serif; */
	font-family: "Rubik", sans-serif;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	font-optical-sizing: auto;
	background-color: var(--white-color) !important;
}

a {
	color: inherit !important;
	text-decoration: none !important;
	font-family: inherit !important;
}

h1 {
	font-size: 30px;
}

h2 {
	font-size: 46px;
}

h3 {
	font-size: 16px;
}

h4 {
	font-size: 46px;
}

h5 {
	font-size: 26px;
}

h6 {
	font-size: 16px;
}

.sub-heading {
	font-family: var(--secondary-font);
	color: var(--sub-heading-color) !important;
	/* color: #CBA266 !important; */
	font-size: 18px !important;
	/* line-height: 0px; */
	font-weight: 500;
	font-style: normal;
	/* text-transform: uppercase; */
	letter-spacing: 0.6px;
	opacity: 1;
}

.sub-heading1 {
	font-family: var(--secondary-font);
	color: var(--color-secondary) !important;
	font-size: 16px !important;
	line-height: normal;
	font-weight: 500;
	font-style: normal;
	text-transform: uppercase;
	/* letter-spacing: 1px; */
	opacity: 1;
}

.heading-font {
	font-family: var(--secondary-font);
	color: var(--color-secondary) !important;
	font-size: 30px !important;
	text-transform: capitalize;
	font-weight: 400;
	letter-spacing: normal !important;
	/* line-height: 1.1; */
}

.heading-font1 {
	font-family: var(--secondary-font);
	color: var(--color-secondary) !important;
	font-size: 32px;
	text-transform: capitalize;
	font-weight: 400;
	letter-spacing: normal !important;
	/* line-height: 1.1; */
}

.secondary-heading {
	font-family: var(--secondary-font);
	color: var(--heading-color) !important;
	font-size: 20px;
	font-weight: 700;
}

.regular-text {
	font-family: var(--primary-font);
	color: var(--dark-color) !important;
	font-size: 16px;
	font-weight: 400;
	text-align: justify;
}

.regular-text-white {
	font-family: var(--primary-font);
	color: var(--white-color) !important;
	font-size: 16px;
}

.grey-bg {
	background-color: var(--grey-bg);
}

.custom-btn-1 {
	display: inline-block;
	background-color: var(--sub-heading-color);
	/* Custom orange */
	color: var(--white-color) !important;
	font-weight: 500;
	text-transform: uppercase;
	padding: 10px 18px;
	border: none;
	border-radius: 0;
	font-family: var(--secondary-font) !important;
	letter-spacing: 1px;
	font-size: 14px;
	text-decoration: none;
	transition: background-color 0.3s ease;
}

.custom-btn-1:hover {
	background-color: var(--white-color);
	/* Slightly darker orange on hover */
	color: var(--sub-heading-color) !important;
	/* border: 2px solid var(--color-secondary); */
	text-decoration: none;
}

.custom-btn-1:hover a {
	color: var(--white-color) !important;
}

.custom-btn-2 {
	display: inline-block;
	/* background-color: var(--dark-color); */
	/* background-color: #212529; */
	background-color: var(--sub-heading-color);
	/* Custom orange */
	color: var(--white-color) !important;
	font-weight: 500;
	text-transform: uppercase;
	padding: 10px 18px;
	/* border: none; */
	border: 2px solid var(--sub-heading-color);
	border-radius: 0;
	font-family: var(--secondary-font) !important;
	letter-spacing: 1px;
	font-size: 14px;
	text-decoration: none;
	transition: background-color 0.3s ease;
}


.custom-btn-2:hover {
	background-color: transparent;
	/* Slightly darker orange on hover */
	color: var(--sub-heading-color) !important;
	border: 2px solid var(--sub-heading-color);
	text-decoration: none;
	font-weight: 600;
}


/* topbar-section */

.top-icon {
	font-size: 20px;
	color: var(--white-color) !important;
}

/* navbar */

.navbar-section .container {
	max-width: 1400px !important;
}

.navbar-brand img {
	height: auto;
	width: 270px;
}

.nav-link {
	font-size: 14px !important;
	/* font-family: var(--primary-font) !important; */
	font-weight: 500 !important;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 1px !important;
	color: var(--color-primary) !important;
}

.active {
	font-weight: 700 !important;
	color: var(--color-secondary) !important;
}

/* Default navbar (not fixed yet) */
.navbar-section {
	position: relative;
	width: 100%;
	z-index: 1000;
	transition: all 0.3s ease;
}

/* Fixed navbar after scrolling */
.navbar-fixed {
	position: fixed !important;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1050;
	background-color: #fff !important;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	animation: slideDown 0.4s ease;
}

/* Hide topbar when navbar is fixed */
.hide-topbar {
	display: none !important;
	transition: all 0.3s ease;
}

/* Simple animation for the navbar */
@keyframes slideDown {
	from {
		transform: translateY(-100%);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

/* banner */

.banner-section {
	/* padding-top: 98px; */
}

.banner-bold-text {
	font-size: 40px !important;
	font-weight: 600;
	line-height: 1.2;
}

/* abt */

.abt-icon-img {
	align-items: center;
	width: 70px;
	filter: invert(28%) sepia(9%) saturate(3741%) hue-rotate(321deg) brightness(97%) contrast(90%);
}

.abt-img-box img {
	min-height: 300px;
}

.new-about-section {
	position: relative;
	overflow: hidden;
}

.new-about-section .about-right-bottom {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: -1;
	width: 100%;
	max-width: 700px;
	opacity: 0.15;

}

.new-about-section .about-right-bottom img {
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
}

/* service */

.service-box {
	background-color: var(--white-color);
	/* border: 2px solid var(--color-secondary); */
	/* background-color: var(--color-secondary) !important; */
}

.service-img {
	align-items: center;
	width: 55px;
	filter: invert(28%) sepia(9%) saturate(3741%) hue-rotate(321deg) brightness(97%) contrast(90%);
}

.service-box {
	border-bottom: 3px solid transparent;
	/* transition: all 0.3s ease 0s; */
	/* transition: border-color 0.6s ease, transform 0.6s ease, box-shadow 0.6s ease; */
	cursor: pointer;
}

/* Hover effect */
.service-box:hover {
	border-bottom-color: var(--color-secondary);
	/* Smooth reveal */
	transform: translateY(-5px);
	transition: all 0.3s ease-in-out 0s !important;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Image rotation */
.service-box img {
	transition: transform 0.3s ease-in-out !important;
	/* transition: all 0.3s ease 0s; */
}

.service-box:hover img {
	transform: rotate(360deg);
}

/* offer section */

.offer-main-img {
	width: 430px;
	height: auto;
}

.offer-icon1 {
	align-items: center;
	border-radius: 100%;
	height: auto;
	width: 170px;
	/* filter: invert(12%) sepia(66%) saturate(2437%) hue-rotate(208deg) brightness(95%) contrast(90%); */
}

.offers-card:hover .offer-icon1 {
	border: 0 10px 10px 0;
	border-color: var(--color-secondary);
	transition: all 0.2s ease 0s;
}


/* gallery */

.gallery {
	display: flex;
	flex-wrap: wrap;
	cursor: pointer;
}

.image-wrapper {
	width: 100%;
	margin: 5px 0;
}

.image-wrapper img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.lb-number {
	display: none !important;
}

.lightbox .lb-prev,
.lightbox .lb-next {
	display: block !important;
	opacity: 1 !important;
	visibility: visible !important;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 50%;
	color: white;
	font-size: 20px;
	line-height: 40px;
	text-align: center;
	z-index: 1050;
}

.lb-nav .lb-next {
	position: relative !important;
	left: 70px !important;
}

.lb-nav .lb-prev {
	position: relative !important;
	left: -70px !important;
}

.lightbox .lb-loader {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
}

.image-wrapper {
	position: relative;
	display: inline-block;
	margin: 10px;
	overflow: hidden;
	/* border-radius: 8px; */
	max-width: 350px;
	height: auto;
}

.image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.image-wrapper:hover img {
	transform: scale(1.10);
	transition: transform 0.5s ease-in-out;
	/* Zooms inside box */
}

.image-anime:hover:after {
	height: 250%;
	transition: all .6s linear;
	background-color: transparent;
}

.image-anime:after {
	content: "";
	position: absolute;
	width: 200%;
	height: 0;
	left: 50%;
	top: 50%;
	background-color: rgba(255, 255, 255, .3);
	transform: translate(-50%, -50%) rotate(309deg);
	z-index: 1;
}


/* gallery carousel */

.testimonial-item {
	background-color: var(--white-color);
	padding: 20px 15px;
	height: 100%;
	border: 10px;
	/* border: 1px solid #000; */
}

.testimonial-item1 {
	background-color: var(--grey-bg);
	padding: 20px 15px;
	height: 240px !important;
	/* box-shadow: 0 0 8px -3px; */
	/* border: 1px solid #000; */
}

.testimonial-item1:hover {
	/* background-color: var(--white-color); */
	/* padding: 20px 15px; */
	/* height: 260px !important; */
	box-shadow: 0 0 8px -3px;
	transition: all 0.5s ease 0s;
	/* border: 1px solid #000; */
}

.testimonial-carousel .owl-nav {
	display: none !important;
	/* position: absolute;
	top: -28%;
	width: 100%;
	font-size: 40px;
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
	pointer-events: none; */
	/* Allows clicking only on buttons */
}

.owl-nav .owl-prev {
	position: relative;
	bottom: 0%;
	left: 82.6%;
}

.owl-nav .owl-prev button {
	background: var(--white-color);
	/* border: 1px solid #444; */
	color: var(--color-secondary);
	padding: 20px;
	margin-left: 5px;
	transition: 0.3s;
}

.owl-nav .owl-next {
	position: relative;
	bottom: 0%;
	left: -11.3%;
}

.owl-theme .owl-nav [class*=owl-]:hover {
	background: #00000036;
	color: #fff;
	padding: 0px 5px !important;
	text-decoration: none;
	display: flex;
	height: 40px;
	width: 40px;
	align-items: center;
	justify-content: center;
}

.owl-carousel .owl-nav button {
	/* display: none; */
	background: white;
	border: 2px solid #ddd;
	padding: 20px;
	border-radius: 50%;
	font-size: 18px;
	color: var(--color-secondary);
	transition: all 0.3s ease;
	pointer-events: all;
	/* Re-enable clicking on buttons */
}

.owl-carousel .owl-nav button:hover {
	background-color: var(--color-tertiary);
	color: white;
	border: 2px solid var(--dark-color);
}

.owl-carousel .owl-dots .owl-dot.active span {
	background-color: var(--color-secondary);

}

/* footer */

.copy-right-section,
.footer-section {
	background-color: #3D3937;
}

.foot-logo {
	height: auto;
	width: 160px;
}

.footer-list li {
	font-size: 18px;
	margin-bottom: 5px;
	/* Removed the incorrect 'transition' here */
}

.footer-list i {
	/* border-bottom: 1px dashed var(--grey-bg); */
	/* margin-bottom: 10px; */
	font-size: 20px;
}

.footer-list li a {
	display: inline-block;
	color: inherit;
	text-decoration: none;
	transition: transform 0.3s ease-out;
}

.footer-list li:hover a {
	/* color: #fc0000   !important; */
	transform: translateX(10px);
}

/* amenities page */

.amenities-banner {
	background-image: url('../img/home/cta-bg.webp');
	/* change to your image path */
	background-size: cover;
	background-position: center bottom;
	background-repeat: no-repeat;
	height: 32vh;
	/* Adjust the height as needed */
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.overlay h1 {
	font-family: var(--primary-font);
	padding-top: 50px !important;
}

.cover-baner-subtitle {
	font-family: var(--primary-font);
	font-size: 18px;
	color: var(--white-color);
}

.amenities-banner .overlay {
	background-color: rgba(0, 0, 0, 0.5);
	/* Semi-transparent dark overlay */
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
	padding: 0 270px;
}

.img-bg {
	background-color: var(--grey-bg);
}

/* contact page */
i.fa-solid.fa-arrows-rotate {
    color: #fff;
    background: var(--color-secondary);
    border: none;
    padding: 10px;
}

.why-subtitle i {
	color: var(--color-secondary);
	font-size: 22px;
}

.contact-banner {
	background-image: url('../img/home/contact-banner.webp');
	/* change to your image path */
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	height: 32vh;
	/* Adjust the height as needed */
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.overlay h1 {
	font-family: var(--secondary-font);
	padding-top: 50px !important;
	font-size: 38px !important;

}

.contact-banner .overlay {
	background-color: rgba(0, 0, 0, 0.5);
	/* Semi-transparent dark overlay */
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
	padding: 0 350px;
}

/* floating contact  */

.floating-contact {
	position: fixed !important;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	padding: 3px 0 10px;
	background-color: #fff;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
	z-index: 20;
	animation: floatUpDown 2.5s ease-in-out infinite;
}

@keyframes floatUpDown {

	0%,
	100% {
		transform: translateY(-50%) translateY(0);
	}

	50% {
		transform: translateY(-50%) translateY(-20px);
	}
}

.floating-icons {
	display: block;
	position: relative;
	width: 55px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	text-decoration: none;
}

.floating-icons i {
	font-size: 21px;
	color: var(--color-secondary);
	transition: 0.3s;
}

.floating-icons>span {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	right: 100%;
	top: 0;
	min-width: 170px;
	height: 100%;
	padding: 0 15px;
	background-color: #fff;
	color: #232323;
	font-size: 16px;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
	opacity: 0;
	visibility: hidden;
	transform: translateX(-10px);
	transition: all 0.5s ease;
	white-space: nowrap;
}

.floating-icons:hover>span {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}

.floating-icons>span::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: -15px;
	width: 15px;
	height: 100%;
	background-color: #fff;
}

/* floating contact ends here */

#scrollUpBtn {
	position: fixed;
	bottom: 25px;
	right: 30px;
	height: 35px;
	width: 35px;
	padding: 10px;
	border-radius: 4px;
	border: none;
	z-index: 999;
	background-color: var(--color-secondary);
	display: flex;
	align-items: center;
	justify-self: center;
}

/* scrollup-btn */

#scrollUpBtn i {
	color: var(--white-color);
	display: flex;
	align-items: center;
	justify-self: center;
}

/* Default hidden state */
.animate-on-scroll {
	opacity: 0;
	transition: all 0.5s ease-out;
}

/* When active, show and animate */
.animate-on-scroll.active {
	opacity: 1 !important;
}

/* Slide Right Animation */
.slide-right.active {
	animation: slideRight 0.5s ease-out forwards;
}

@keyframes slideRight {
	from {
		transform: translateX(-100px);
	}

	to {
		transform: translateX(0);
	}
}

/* Slide Left Animation */
.slide-left.active {
	animation: slideLeft 0.5s ease-out forwards;
}

@keyframes slideLeft {
	from {
		transform: translateX(100px);
	}

	to {
		transform: translateX(0);
	}
}

/* Slide up Animation */
.slide-up.active {
	animation: slideup 0.5s ease-out forwards;
}

@keyframes slideup {
	from {
		transform: translateY(100px);
	}

	to {
		transform: translateX(0);
	}
}

/* Slide up Animation */
.slide-down.active {
	animation: slidedown 1s ease-out forwards;
}

@keyframes slidedown {
	from {
		transform: translateY(-100px);
	}

	to {
		transform: translateX(0);
	}
}


@media only screen and (max-width: 768px) {

	.sub-heading {
		font-size: 18px;
		text-align: center;
	}

	.sub-title,
	.sub-heading1 {
		text-align: center;
	}

	.heading-font {
		font-size: 22px !important;
		text-align: center !important;
	}

	.navbar-brand img {
		height: auto;
		width: 200px;
	}

	#header-carousel .carousel-item {
		position: relative;
		min-height: 250px;
	}

	#header-carousel .carousel-item img {
		position: absolute;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.banner-section {
		/* padding-top: 85px; */
	}

	.carousel-caption p {
		font-size: 25px;
	}

	.heading-font1 {
		font-size: 22px !important;
		text-align: center !important;
	}

	.custom-btn {
		font-size: 16px;

	}

	.hero-title {
		font-size: 28px;
	}

	.c-btn {
		text-align: center !important;
	}

	.image-wrapper {
		width: 280px !important;
		margin: 5px auto;
	}

	.image-wrapper img {
		width: 100%;
		height: auto;
		object-fit: cover;
	}

	.lb-nav .lb-next {
		position: relative !important;
		left: 0px !important;
	}

	.lightbox .lb-prev {
		position: relative !important;
		left: 0px !important;
	}

	.lightbox .lb-prev,
	.lightbox .lb-next {
		top: 125%;
	}

	.feature-section .overlay {
		padding: 40px 20px;
	}

	.amenities-banner .overlay {
		padding: 0 20px;
	}

	.contact-banner .overlay {
		padding: 0 20px;
	}

	.overlay h1 {
		font-family: var(--primary-font);
		padding-top: 20px !important;
		font-size: 25px !important;
	}

	.amenities-banner {
		background-position: center center;
		height: 28vh;
	}

	.contact-banner {
		height: 28vh;
	}

	.service-section .overlay {
		padding: 40px 0px;
	}

	.testimonial-item1 {
		height: 100% !important;
		/* border: 1px solid #000; */
	}

	.call-to-action .container {
		position: relative;
		top: 0px;
	}

	.call-to-action-box1 h4 {
		font-size: 20px !important;
	}

	.caption-inner p {
		font-size: 15px !important;
		font-weight: 700;
	}

	.banner-section .carousel-caption p {
		color: #fff;
		font-weight: 500;
		line-height: 1;
		/* letter-spacing: 0.2px; */
	}

	.banner-section .carousel-item .overlay {
		position: absolute;
		inset: 0;
		/* background: rgb(0 0 0 / 9%); */
		background: #152F69;
		background: linear-gradient(295deg, rgb(255 255 255 / 0%) 0%, rgb(21 47 105 / 35%) 73%, rgb(6 32 90 / 62%) 92%);
		/* adjust darkness */
		z-index: 1;
	}

	.banner-section .carousel-caption {
		position: absolute;
		inset: 0;
		z-index: 2;
		left: 25px !important;
		display: flex;
		align-items: center;
		justify-content: start;
		pointer-events: none;
	}

	.banner-bold-text {
		font-size: 25px !important;
		font-weight: 400;
		line-height: 1.2;
	}

	.floating-contact {
		position: fixed !important;
		top: 60%;
		right: 0;
	}


}


@media (min-width: 768px) and (max-width: 991.98px) {
	.banner-section {
		/* padding-top: 100px; */
	}

	.call-to-action .container {

		position: relative;
		top: 20px;
	}

	.testimonial-item1 {
		height: 350px !important;
	}
}

/* Banner / carousel sizing + overlay */
.banner-section .carousel-item {
	position: relative;
	height: 70vh;
	min-height: 420px;
	overflow: hidden;
}

.banner-section .carousel-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Dark overlay layer */
.banner-section .carousel-item .overlay {
	position: absolute;
	inset: 0;
	/* background: rgb(0 0 0 / 9%); */
	background: #152F69;
	background: linear-gradient(295deg, rgb(0 0 0 / 52%) 0%, rgb(0 0 0 / 58%) 73%, rgb(0 0 0 / 68%) 92%);
	z-index: 1;
}

/* Caption sits above overlay */
.banner-section .carousel-caption {
	position: absolute;
	inset: 0;
	z-index: 2;
	left: 150px;
	display: flex;
	align-items: center;
	justify-content: start;
	pointer-events: none;
	/* let buttons behind be clickable if needed */
}

.banner-section .carousel-caption .caption-inner {
	pointer-events: auto;
	/* re-enable pointer for buttons/links */
	text-align: center;
	max-width: 500px;
}

.caption-inner p {
	font-size: 16px;
	font-family: var(--secondary-font);
	/* font-weight: 700; */
}

.banner-text-1 {
	font-size: 23px !important;
	font-weight: 600;
	line-height: 1.2;
	font-family: var(--secondary-font) !important;
}

.banner-text-2 {
	/* font-size: 16px !important; */
	/* font-family: var(--secondary-font); */
	/* font-weight: 400 !important; */
}

@media (max-width: 767px) {
	.banner-section .carousel-item {
		height: 50vh;
		min-height: 300px;
	}

	.banner-text-1 {
		font-size: 18px !important;
		font-weight: 500;
		line-height: 1.2;
		font-family: var(--secondary-font) !important;
	}

}

.carousel-indicators {
	/* display: none !important; */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
	background-image: none;
}

.carousel-control-prev-icon::after,
.carousel-control-next-icon::after {
	content: '';
	width: 1.5rem;
	height: 1.5rem;
	background-color: white;
	/* or any color you want */
	mask: url("data:image/svg+xml,...") no-repeat center;
	-webkit-mask: url("data:image/svg+xml,...") no-repeat center;
}


.text-light {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}


