@font-face {
	font-family: 'CentraNo2';
	src: url('./fonts/CentraNo2-Light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'CentraNo2';
	src: url('./fonts/CentraNo2-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'CentraNo2';
	src: url('./fonts/CentraNo2-Bold.woff') format('woff');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'CentraNo2';
	src: url('./fonts/CentraNo2-Black.woff') format('woff');
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'CentraNo2';
	src: url('./fonts/CentraNo2-Book.woff') format('woff');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

:root {
	--theme-black: #000000;
	--fade-black: #0a0a0a;
	--bs-white: #ffffff;
	--theme-white: #f5f5f5;
	--theme-fade-white: #fbfbfb;
	--theme-color: #EA0029;
	--theme-pink: #F89ABA;
	--theme-secondary-color: #8E1537;
	--theme-light-secondary-color: #fb9b4e;
	--theme-tertiary: #ffbc5f;
	--theme-red: #EA0029;
	--theme-dark-shade: #d90127;
	--common-bg-color: #8E1537;
	--common-bg-color2: #F6DADF;
	--transition500: all 0.5s ease-in-out;
	--manrope: "Manrope", sans-serif;
	--centra: "CentraNo2", sans-serif;
	--theme-font: var(--centra);
	--font16: clamp(14px, 3vw, 16px);
	--font18: clamp(14px, 1.8vw, 18px);
	--font20: clamp(16px, 1.35vw, 20px);
	--font21: clamp(14px, 1.35vw, 21px);
	--font22: clamp(16px, 1.45vw, 22px);
	--font25: clamp(18px, 1.6vw, 25px);
	--font28: clamp(20px, 1.8vw, 28px);
	--font30: clamp(22px, 1.9vw, 30px);
	--font32: clamp(24px, 2.1vw, 32px);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: var(--theme-font);
	font-weight: 400;
	overflow-x: hidden;
	color: var(--theme-black);
}

a {
	display: inline-block;
	color: var(--theme-black);
	text-decoration: none;
	transition: var(--transition500);
}

b,
strong {
	font-weight: 800;
}

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

 h1 {
	font-size: clamp(30px, 4.5vw, 71px);
}

h2 {
	font-size: clamp(26px, 3vw, 50px);
	margin-bottom: 0.5em;
	line-height: 1.2;
}

h3 {
	font-size: clamp(22px, 1.9vw, 36px);
	margin-bottom: 0.5em;
}

h4 {
	font-size: clamp(20px, 1.7vw, 30px);
}

h5 {
	font-size: 24px;
}

h6 {
	font-size: clamp(18px, 1.3vw, 23px);
}

p {
	font-size: clamp(14px, 2vw, 20px);
	margin-bottom: 1em;
	line-height: 1.5;
	font-weight: 400;
	color: var(--theme-secondary-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
	color: var(--theme-black);
	text-transform: uppercase;
	line-height: 1.2;
}

.opacity-0 {
	opacity: 0 !important;
}

.opacity-1 {
	opacity: 1 !important;
}

.disable_scroll {
	overflow: hidden;
}

.common_sub_section_heading h2 {
	font-size: 48px;
	color: var(--theme-black);
}

/* .common_btn_main {
border: 2px solid var(--theme-black);
border-radius: 8px;
font-size: 18px;
padding: 0 32px;
line-height: 47px;
color: var(--theme-black);
transition: all 0.5s;
} */

.common_btn {
	position: relative;
	font-size: var(--font20);
	height: 61px;
	line-height: 1.1;
	align-content: center;
	color: #ffffff;
	padding: 10px 32px;
	text-transform: uppercase;
	transition: all 0.5s ease-in-out;
	border-radius: 48px;
	overflow: hidden;
	background-color: var(--theme-red);
	z-index: 1;
	font-weight: 500;
}

.common_btn:hover {
	color: var(--theme-red);
	background-color: var(--theme-white);
}

.common_btn.theme_secondary_btn {
	background: transparent;
	color: var(--theme-color);
	border: 1px solid var(--theme-color);
	transition: all 0.3s ease-in-out;
}

.common_btn.theme_secondary_btn:hover {
	color: var(--bs-white);
	background-color: var(--theme-color);
}

.common_btn.btn_white {
	border: 1px solid var(--theme-white);
	background-color: transparent;
}

.common_btn.btn_white:hover {
	background-color: var(--theme-white);
}

.small_container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.common_bg {
	background-color: var(--common-bg-color);
}

.common_bg2 {
	background-color: var(--common-bg-color2);
}

.common_bg3 {
	background-color: var(--theme-color);
}

.common_bg_dark {
	background-color: #070707;
}

.common_icon_btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	column-gap: 15px;
	color: var(--theme-white);
	font-family: var(--theme-font);
	transition: var(--transition500);
}

.common_icon_btn :is(svg, img) {
	max-width: 24px;
	max-height: 24px;
	object-fit: scale-down;
}

.common_icon_btn:hover {
	color: var(--theme-white);
}

.common_icon_btn.without_bg_btn {
	background: transparent;
	color: var(--theme-color);
	border: none;
	padding: 0;
	line-height: 30px;
}

.common_icon_btn.without_bg_btn svg path {
	stroke: var(--theme-color);
}



.sticky_area {
	position: -webkit-sticky;
	position: sticky;
	top: 100px;
}

/* TITTLE AND CONTENT AREA START  */

.common_title_area h2 {
	font-size: clamp(30px, 4.5vw, 72px);
	margin-bottom: 0.3em;
	line-height: 1;
	font-family: var(--theme-font);
	font-weight: 800;
	letter-spacing: 2px;
}

/* .common_title_area :is(h2, h3, h4) :is(b, strong) {
color: var(--theme-color);
} */

.common_title_area :is(h5, h6) {
	font-size: 27px;
	color: #060606;
	font-weight: 500;
	margin-bottom: 1em;
	font-family: var(--theme-font);
}

.common_title_area h6 {
	font-size: 18px;
	text-transform: uppercase;
	color: var(--theme-color);
}

.common_title_area p {
	color: var(--theme-secondary-color);
	margin-bottom: 1em;
	font-weight: 500;
}

.common_title_area>*:last-child {
	margin-bottom: 0;
}



.common_Vpadding {
	padding-top: clamp(50px, 6.5vw, 110px);
	padding-bottom: clamp(50px, 6.5vw, 110px);
}

.common_Vpadding2 {
	padding-top: clamp(50px, 3.5vw, 65px);
	padding-bottom: clamp(50px, 3.5vw, 65px);
}

.common_title_area img {
	width: 100%;
	margin-bottom: 35px;
	aspect-ratio: 3 / 1.5;
	object-fit: cover;
}

.height_match_swiper .swiper-slide {
	height: unset;
}

.common_title_area :is(p, span, li, h2, h3, h4) a {
	color: var(--theme-color);
}

.theme_color_heading :is(h1, h2, h3, h4, h5, h6) {
	color: var(--theme-color);
}

.common_mb {
	padding-bottom: clamp(50px, 6.5vw, 110px);
}

.common_mt {
	margin-top: clamp(40px, 4.8vw, 80px);
}

.cl_white :is(h1, h2, h3:not(.bordered_heading_sub_heading h3), h4) {
	color: var(--theme-white) !important;
}

.cl_white :is(h5, h6) {
	color: var(--theme-white) !important;
}

.cl_white p {
	color: var(--theme-white) !important;
}

.cl_white ul {
	color: var(--theme-white) !important;
}

.cl_white li,
.cl_white li p {
	color: var(--theme-white) !important;
}

.cl_blue :is(h2, h3, h4) {
	color: var(--theme-tertiary);
}

.common_bg_dark :is(h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
li p,
span,
a,
button,
button span,
button i,
button svg,
button path) {
	color: var(--theme-white);
}

.hide_before::before {
	display: none !important;
}

.hide_after::after {
	display: none !important;
}

.unset_max_width :is(h2, h3, h4, h5, h6, p) {
	max-width: unset !important;
}


/* TITTLE AND CONTENT AREA END  */



.text_showcase_wrapper{
	padding: 24px 0;
}

/* COMMON HEADING AREA  */
.common_banner_area_main {
	padding-top: clamp(130px, 16vw, 250px);
	padding-bottom: clamp(170px, 13vw, 230px);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
/* 	border-image: fill 0 radial-gradient(circle, #310A1480 0%, #310A1480 79%); */
	border-image: fill 0 radial-gradient(circle, #000000b8 0%, #310A1480 150%);
	position: relative;
}

.common_banner_context>*:last-child {
	margin-bottom: 0;
}

.common_banner_area_main:not(:has(.trusted_text_area)) .mouse_icon_animation {
	bottom: clamp(20px, 2.6vw, 50px);
}

.common_banner_context h1 {
	margin: 0 0 15px;
	margin-bottom: 0.2em;
	font-weight: 800;
	font-family: var(--theme-font);
	font-size: clamp(32px, 5.5vw, 100px);
	line-height: 0.9;
	letter-spacing: 0.04em;
}

.common_banner_context :is(h3, h4) {
	font-family: var(--theme-font);
	line-height: 1.5;
}



.common_banner_context p {
	margin: 0 auto;
	margin-bottom: 1.5em;
	font-size: var(--font20);
}

.mobile_nav_btn_wrapper {
	display: none;
}


.home_banner_area_main {
	position: relative;
	background-color: transparent;

}


.banner_video_image_area {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: -1;
}

.banner_video_image_area video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mouse_icon_animation {
	width: 26px;
	position: absolute;
	bottom: 100px;
	left: 50%;
	transform: translateX(-50%);
}


.animated_dots {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	font-size: 30px;
	font-weight: bold;
	height: 30px;
	/* show 2 dots (30px height each) */
	overflow: hidden;
	position: relative;
	color: var(--theme-secondary-color);
}

.dots_wrap {
	display: flex;
	flex-direction: column;
	animation: scrollUp 1.5s linear infinite;
	gap: 4px;

}

.dot {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--theme-secondary-color);
	/* one dot height */
	line-height: 10px;
	text-align: center;
	opacity: 0.7;
}

@keyframes scrollUp {
	0% {
		transform: translateY(0);
	}

	100% {
		transform: translateY(-15px);
	}

	/* move up by 1 dot height */
}


.trusted_text_area {
	/* position: absolute;
	bottom: 0;
	left: 0;
	right: 0; */
	position: relative;
	padding-block: 20px;
	padding-inline: 12px;
	font-size: var(--font18);
	background-color: var(--bs-white);
	text-align: center;
	color: #5b5b5b;
	letter-spacing: 3px;
	text-transform: uppercase;
	font-weight: 600;
}

.trusted_text_area p {
	margin-bottom: 0;
}

.trusted_text_area:after {
	content: " ";
	position: absolute;
	left: 50%;
	bottom: -14px;
	border-top: none;
	border-right: 20px solid transparent;
	border-left: 20px solid transparent;
	border-top: 15px solid #ffffff;
	filter: drop-shadow(0px 10px 8px rgba(0, 0, 0, 0.15));
	transform: translateX(-50%);
}

.mouse_icon {
	width: 26px;
}

.double_btn_wrapper {
	gap: 20px;
	flex-wrap: wrap;
}

.banner-area p {
	max-width: 720px;
	margin: 0 auto;
	margin-bottom: 49px;
	font-size: 18px;
	position: relative;
}

.common_banner_context ul {
	margin-bottom: 50px;
}

.common_banner_context ul li {
	font-size: 30px;
	color: #fff;
	font-weight: 400;
	margin-bottom: 25px;
	padding-left: 50px;
	position: relative;
	font-style: italic;
}

.common_banner_context ul li::before {
	content: "";
	width: 35px;
	height: 46px;
	background-color: var(--theme-color);
	background-size: contain;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}


/* NEW COMPONENTS CSS  */
.contact_btn {
	display: none;
}

.reserve_btn_mobile {
	padding: 8px 32px;
	background-color: var(--theme-color);
	border-radius: 48px;
	color: var(--bs-white);
	text-transform: uppercase;
	font-weight: 500;
}

li.reserve_btn a {
	padding: 8px 32px;
	background-color: var(--theme-color);
	border-radius: 48px;
	color: var(--bs-white);
}

li.reserve_btn a:hover {
	background-color: var(--theme-dark-shade);
	color: var(--bs-white);
}

.heading_uppercase :is(h1, h2, h3, h4, h5, h6) {
	text-transform: uppercase;

}

.bordered_heading_sub_heading {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 16px;
	border: 2px solid var(--theme-pink);
	padding: 8px 16px;
	border-radius: 33px;
	width: max-content;
	margin-inline: auto;
	margin-bottom: 24px;
}

.common_bg3 .cl_white .bordered_heading_sub_heading {
	color: #fff;
	border-color: #fff;
}

.bordered_heading_sub_heading h3 {
	color: var(--theme-pink);
	font-size: clamp(14px, 2vw, 16px);
	text-transform: uppercase;
	margin-bottom: 0;
}

.common_bg3 .cl_white .bordered_heading_sub_heading h3 {
	color: #fff;
}

.bordered_heading_sub_heading img {
	width: 100%;
	max-width: 127px;
}

/* .text_showcase_content_area {
	display: inline-flex;
	align-items: center;
	width: auto !important;
} */

/* SLIDE FIX (missing in your CSS) */
.textSwiper .swiper-slide {
	width: auto !important;           /* ✅ critical */
	flex-shrink: 0;                   /* ✅ prevents compression */
}

.text_showcase_content_area img {
	width: 80px;
	height: 80px;
	display: block;
}

.text_showcase_content_area p {
	font-size: clamp(30px, 5vw, 72px);
	text-transform: uppercase;
	color: var(--theme-color);
	font-weight: 700;
	margin-bottom: 0;
	white-space: nowrap;
}

.textSwiper > .swiper-wrapper {
	-webkit-transition-timing-function: linear;
	-o-transition-timing-function: linear;
	transition-timing-function: linear;
	margin: 0 auto;
	display: flex;
	align-items: center;
}

.moic_content_showcase_card_area {
	background-color: var(--theme-white);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.moic_content_showcase_text {
	padding: 24px;
}

.moic_content_showcase_card_img {
	background-color: var(--theme-pink);
	padding: 15px;
	margin-top: auto;
	text-align: center;
}

.moic_content_showcase_card_img img {
	border-radius: 50%;
	width: 100%;
	max-width: 400px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.moic_content_showcase_text h3 {
	font-size: var(--font32);
	color: var(--theme-color);
}

.moic_content_showcase_text p {
	font-size: var(--font20);
	color: var(--theme-secondary-color);
	font-weight: 500;
}

/* FOOTER  */
.footer_wrapper * {
	color: var(--bs-white);
}

.footer_title h3 {
	font-size: var(--font20);
	margin-bottom: 1em;
	color: var(--theme-pink);
}

.footer_title p {
	font-size: 14px;
	font-weight: 500;
}

.moic_footer_nav ul {
	display: flex;
	align-items: center;
	column-gap: 20px;
}

.moic_footer_nav ul li a {
	transition: var(--transition500);
	font-size: 14px;
}

.moic_footer_nav ul li a:hover {
	color: var(--theme-pink);
}

.moic_socials ul {
	display: flex;
	align-items: center;
	column-gap: 20px;
}

.moic_socials a {
	font-size: var(--font20);
	transition: var(--transition500);
}

.moic_socials a:hover {
	color: var(--theme-pink);
}

.location_address_row:not(:last-child) {
	margin-bottom: 50px;
}

.location_address_row p {
	font-size: 15px;
	margin-bottom: 0.3em;
}

.footer_upper_area {
	padding-bottom: 30px;
}

.foter_lower_area {
	padding-top: 50px;
}

.sc_second_row ul li:not(:last-child) {
	margin-bottom: 25px;
}

.sc_second_row ul li a {
	font-size: 15px;
	color: var(--theme-pink);
	text-decoration: underline;
}

.sc_second_row ul li a:hover {
	color: var(--theme-white);
}

.copyrihgt_text_area p {
	font-size: 15px;
}

.upper_top_ball_design {
	background-color: var(--theme-secondary-color);
	display: grid;
	grid-template-columns: repeat(50, 1fr);
	margin-left: -60px;
	position: relative;
}

.upper_top_ball_design::after {
	content: "";
	width: 100%;
	height: 50%;
	bottom: 0;
	left: 0;
	right: 0;
	position: absolute;
	background-color: var(--common-bg-color2);
}

.common_bg3 .upper_top_ball_design::after {
	background-color: var(--theme-color);
}

.upper_top_ball {
	width: 108px;
	height: 108px;
	border-radius: 50%;
}

.upper_top_ball.pink_ball {
	background-color: var(--common-bg-color2);
}

.upper_top_ball.red_ball {
	background-color: var(--theme-color);
}

.bordered_heading_sub_heading2 {
	border-color: var(--theme-secondary-color);

}

.bordered_heading_sub_heading2 h3 {
	color: var(--theme-secondary-color);
}

.lr_each_content_card h2 {
	font-size: clamp(26px, 3vw, 48px);
	margin-bottom: 0.6em;
	letter-spacing 1px:;
}

.lr_each_content_card {
	border: 15px solid var(--theme-secondary-color);
	padding: 20px 15px;
	background-color: var(--bs-white);
}

.lr_each_content_row {
	background-image: var(--bg-desktop);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	min-height: 450px;
    display: flex;
    align-items: center;
}

.lr_each_content_card p {
	font-size: var(--font20);
	line-height: 1.5;
}

.lr_content_area>*:nth-child(even) .row {
	justify-content: end;
}

.lr_content_area>*:nth-child(even) .row .lr_each_content_card {
	border-color: var(--theme-pink);
}

.moic_cta_wrapper {
	padding-block: clamp(50px, 8.5vw, 140px);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-image: fill 0 radial-gradient(circle, #310A1480 0%, #310A1480 79%);
}

.moic_cta_wrapper .common_title_area h2 {
	font-size: clamp(36px, 5.5vw, 100px);
}

.pill_container {
	padding: 32px 70px;
	background-color: #fff;
	border-radius: 150px;
	margin-bottom: 30px;
}

.pill_container ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
}

.pill_container .pill,
.duration .pill {
	color: var(--theme-secondary-color) !important;
	background-color: var(--theme-pink);
	border-radius: 50px;
	padding: 4px 12px;
	text-transform: capitalize;
	text-wrap: nowrap;
	font-size: 18px;
	font-weight: 500;
}

.ticket_cards {
	margin-top: 50px;
	padding-bottom: 60px;
	border-bottom: 2px dotted var(--theme-secondary-color);
}

.ticket_card {
	background-color: var(--bs-white);
	padding: 30px;
	position: relative;
	border: 9px solid transparent;
}

.ticket_card.golden {
	border-color: #FDDA64;
}

.ticket_card::before {
	content: "";
	width: 60px;
	height: 60px;
	position: absolute;
	border-radius: 50%;
	top: 0;
	left: 50%;
	transform: translate(-50%, -75%);
	background-color: var(--theme-color);
	z-index: 1;
}

.ticket_card::after {
	content: "";
	width: 60px;
	height: 60px;
	position: absolute;
	border-radius: 50%;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 75%);
	background-color: var(--common-bg-color2);
	z-index: 1;
}

.duration {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	color: var(--theme-secondary-color);
	text-transform: uppercase;
	margin-bottom: 32px;
}

.duration i {
	color: var(--theme-color);
}

.golden .duration i,.golden .duration p {
	color: #957000;
}

.duration svg {
	flex: 0 0 auto;
}

.duration p {
	margin-bottom: 0;
	margin-left: 4px;
	font-weight: 700;
	font-size: 16px;
	text-wrap: nowrap;
}

.duration .pill {
	font-size: 14px;
	text-transform: uppercase;
	margin-left: 6px;
	padding: 4px 8px;
	font-weight: 700;
}

.ticket_card_title {
	font-weight: 700;
	font-size: 32px;
	line-height: 1.1;
	text-transform: uppercase;
	color: var(--theme-color);
	margin-bottom: 8px;
}

.ticket_card_desc {
	font-size: 20px;
	line-height: 1.5;
	color: var(--theme-secondary-color);
	font-weight: 100;
	min-height: 90px;
}

.ticket_price {
	margin-top: 30px;
}

.ticket_price h6 {
	display: flex;
	align-items: center;
	font-size: 16px;
	font-weight: 700;
	color: var(--theme-secondary-color);
	text-transform: uppercase;
}

.ticket_price h6 strong {
	font-size: 48px;
	margin-right: 6px;
	font-weight: 700;
}

.ticket_card .items {
	margin-top: 48px;
	margin-bottom: 16px;
	min-height: 220px;
}

.ticket_card .items li {
	display: flex;
	align-items: center;
	column-gap: 8px;
	color: var(--theme-secondary-color);
	padding: 8px 0;
	border-bottom: 1px dotted #B7B7B7;
	font-size: 18px;
	letter-spacing: -0.02em;
}

.ticket_card .items li strong{
	color: var(--theme-color);
	font-weight: 500;
}

.ticket_btn_wrapper .common_btn {
	width: 100%;
	text-align: center;
}

.ticket_bg {
	padding-bottom: 0;
	background-image: linear-gradient(to bottom, var(--theme-color) 0%, var(--theme-color) 55%, var(--common-bg-color2) 45%, var(--common-bg-color2) 100%);
}




/* FAQ */

.faq-item {
	margin-bottom: 20px;
}

.faq-header {
	background: #fff !important;
	border-radius: 80px;
	padding: 32px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	font-weight: bold;
	color: #8b1c2c;
	transition: all 0.3s ease;
}

.faq-header span {
	font-size: 32px;
	line-height: 1.2;
	display: inline-block;
}


.faq-header:hover {
	background: #e4e4e4;
}

.icon {
	font-size: 24px;
	transition: transform 0.3s ease;
}

.faq-content {
	display: none;
	padding: 15px 30px;
}

/* Active state */
.faq-item.active .icon {
	transform: rotate(45deg); /* turns + into x */
}

.faq-content .heading.faqs-question{
	color: var(--common-bg-color);
	text-transform: capitalize;
	line-height: 1.5;
}

.faq-content a{
	color: var(--theme-color) !important;
}



/* Adventure Section */

.heading-sm h2{
	font-size: 56px;
	font-weight: 800;
	letter-spacing: 0.03em;
}

.adventure_img{
	padding-right: 18px;
}
.adventure_content{
	padding-left: 18px;
}
.adventure_content .location_wrapper{
	margin-top: 50px;
}

.location_wrapper p, .location_wrapper li{
	font-size: 15px;
	margin-bottom: 0;
}

.location_btn_wrapper .theme_secondary_btn{
	height: 46px;
}

.location_content h5{
	font-size: 32px;
	font-weight: 800;
	letter-spacing: 0.05em;
	display: flex;
	align-items: center;
	vertical-align: middle;
	color: var(--theme-secondary-color);
	margin-bottom: 16px;
}
.location_content h5 svg{
	margin-right: 5px;
}

.timings li{
	display: flex;
	line-height: 1.6;
	font-weight: 400;
	justify-content: space-between;
	color: var(--theme-secondary-color);
}
.timings li strong{
	font-weight: 700;
}











.marquee {
  overflow: hidden;
  width: 100%;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;

  animation: marquee 20s linear infinite;
}

/* Each item */
.text_showcase_content_area {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

/* Animation */
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}