/*
Theme Name: Custom
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Custom Author
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.3.0.1744446963
Updated: 2025-04-12 08:36:03
*/

:root {
    --color-green: #29AB88;
    --color-orange: #F49B25;
    --color-cream: #fdf0de;
    --color-gray: #6C707A;
    --color-white: #FFFFFF;
    --font-primary: 'Kufam', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    --font-tertiary: 'Roboto', sans-serif;
    --header-height: 80px;
}
.font-kufam {
    font-family: var(--font-primary);
}
.font-poppins {
    font-family: var(--font-secondary);
}
.font-regular {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--color-gray);
}
.text-semibold {
    font-weight: 600;
}
.text-green {
    color: var(--color-green);
}
.icon-custom path {
    fill: var(--color-gray);
}
.button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: fit-content;
    padding: 10px 16px;
    gap: 10px;
    border: 0.5px solid #ffffff00;
    border-radius: 4px;
    font-family: var(--font-secondary);
    font-size: 13px;
    font-weight: 600;
    line-height: 17px;
    transition: .3s ease-in-out;
}
.button-primary {
    background: var(--color-green);
    color: var(--color-white);
    border-color: white;
    text-decoration: none;
}
.button-primary:hover {
    background: #1e7a63;
    color: rgb(233, 233, 233);
}
.page-header {
    display: none;
}

/* header */
.site-header.baur-header {
    max-width: 100%;
    display: block;
    padding: 0;
    /* background: rgba(255, 255, 255, 0.31);
    background-image: linear-gradient(67deg, #f49b258a 0%, #29ab88a1 100%); */
    /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); */
    /* backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(7.2px); */
    backdrop-filter: blur(20px);
    mask-image: linear-gradient(to bottom, black 0% 100%, transparent 50% 100%);
    border-bottom: 1px solid #ffffff4a;
}
.site-header.baur-header.scrolled {
    background-color: var(--color-green);
}
.baur-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(0, 0, 0, 0.001);
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    transition: all 0.3s ease;
}

.baur-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px;
}

.header-inner-custom {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ========================================
LOGO
======================================== */
.site-branding {
    flex-shrink: 0;
    z-index: 1001;
}

.site-logo img,
.site-logo a img {
    height: 50px;
    width: auto;
    display: block;
}

.site-title a {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.site-title a:hover {
    opacity: 0.8;
}

/* ========================================
DESKTOP NAVIGATION
======================================== */
.desktop-navigation {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.header-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 32px;
}

.header-menu > li {
    position: relative;
}

.header-menu > li > a {
    color: #ffffff;
    text-decoration: none;
    /* padding: 10px 20px; */
    display: block;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 5px;
}
.header-menu > li a.active,
.header-menu > li > a:hover,
.header-menu > li > a:active,
.header-menu > li > a:focus,
.header-menu > li.current-menu-item > a {
    color: var(--color-cream);
}
.header-menu > li > a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 0;
    height: 1px;
    content: "";
    background-color: var(--color-cream);
    opacity: 1;
    transition: .3s ease-in-out;
}
.header-menu > li > a.active::after,
.header-menu > li > a:hover::after,
.header-menu > li > a:active::after,
.header-menu > li > a:focus::after {
    width: 35px;
}

/* Submenu */
.header-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 200px;
    padding: 10px 0;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header-menu > li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-menu .sub-menu li a {
    color: #333;
    padding: 10px 20px;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-menu .sub-menu li a:hover {
    background: #f8f9fa;
    color: #00b894;
    padding-left: 25px;
}

/* ========================================
BUY TICKET BUTTON
======================================== */
.desktop-cta {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.btn-buy-ticket {
    background: var(--color-orange);
    color: #ffffff !important;
    padding: 10px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 0.3px solid white;
}

.btn-buy-ticket:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

/* ========================================
MOBILE MENU TOGGLE
======================================== */
.mobile-menu-toggle {
    display: none;
    z-index: 1001;
}

.hamburger-menu {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ========================================
MOBILE NAVIGATION
======================================== */
.mobile-navigation-wrapper {
    padding: 32px;
    position: fixed;
    top: var(--header-height);
    width: 100%;
    transform: translateY(-120%);
    visibility: hidden;
    transition: .5s ease-in-out;
    z-index: 1;
    backdrop-filter: blur(16px);
    mask-image: linear-gradient(to bottom, black 0% 100%, transparent 50% 100%);
    border-bottom: 1px solid white;
}
.site-header.baur-header.scrolled + .mobile-navigation-wrapper {
    background-color: var(--color-green);
}
.mobile-menu-open .mobile-navigation-wrapper {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}
.mobile-navigation {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mobile-navigation .header-menu {
    flex-direction: column;
    gap: 32px;
}

.mobile-navigation .header-menu > li > a {
    color: #ffffff;
    padding: 0;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    border-radius: 0;
    display: block;
    transition: all 0.3s ease;
}

.mobile-navigation .header-menu > li > a:hover,
.mobile-navigation .header-menu > li.current-menu-item > a {
    color: var(--color-orange);
}

.mobile-navigation .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: none;
    padding: 0;
    display: none;
}

.mobile-navigation .menu-item-has-children.open .sub-menu {
    display: block;
}

.mobile-navigation .sub-menu li a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    padding: 15px 20px;
    text-align: center;
}

.mobile-cta {
    display: none;
    margin-top: 30px;
    text-align: center;
}

.mobile-cta .btn-buy-ticket {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: block;
}

/* ========================================
RESPONSIVE
======================================== */
@media (max-width: 1024px) {
    .header-menu > li > a {
        padding: 10px 15px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .desktop-navigation,
    .desktop-cta {
        display: none;
    }

    .mobile-cta {
        display: block;
    }

    .site-logo img,
    .site-logo a img {
        height: 40px;
    }

    .header-inner {
        padding: 12px 0;
    }
}
/* end header */

/* footer */
.baur-footer {
	background: #00b894;
	color: #ffffff;
	margin-top: 80px;
}
.baur-footer.site-footer {
    max-width: 100%;
    padding: 0;
}

.footer-main {
	padding: 24px;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0;
}

.footer-grid {
	display: flex;
	gap: 120px;
	align-items: start;
    justify-content: space-between;
}
.footer-column.footer-contact {
    flex: 1;
}

/* ========================================
   LOGO SECTION
======================================== */
.footer-logo-section {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.footer-logos {
	display: flex;
    gap: 16px;
}

.footer-site-logo img {
	height: 56px;
	width: auto;
	display: block;
}

.footer-partner-logos {
	display: flex;
	gap: 16px;
	align-items: center;
	flex-wrap: wrap;
}
.footer-partner-separator {
    width: 1px;
    height: 100%;
    background-color: white;
}
.partner-logo {
	/* background: rgba(255, 255, 255, 0.1);
	padding: 10px;
	border-radius: 10px;
	backdrop-filter: blur(10px); */
}

.partner-logo img {
	height: 60px;
	width: auto;
	display: block;
}

/* ========================================
   CONTACT & SOCIAL SECTIONS
======================================== */
.footer-title {
	font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    position: relative;
    margin-top: 0px;
    margin-bottom: 15px;
}

/* ========================================
   CONTACT LIST
======================================== */
.footer-contact-list {
	display: flex;
	flex-direction: column;
	/* gap: 25px; */
}

.footer-contact-item {
	display: flex;
    gap: 14px;
    /* align-items: center; */
    padding: 8px 0;
}

.footer-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-top: 2px;
}

.footer-contact-text {
	flex: 1;
    font-family: var(--font-secondary);
	font-size: 14px;
    font-weight: 400;
	color: #ffffff;
}
.flex-text,
.flex-text-column{
    display: flex;
    gap: 8px;
}
.flex-text-column {
    flex-direction: column;
}

.footer-contact-text strong {
	display: block;
	margin-bottom: 5px;
	font-weight: 600;
}

.footer-contact-text a {
	color: #ffffff;
	text-decoration: none;
	transition: all 0.3s ease;
}
.footer-contact-text a:hover {
    text-decoration: underline;
}

/* ========================================
   SOCIAL LIST
======================================== */
.footer-social-list {
	display: flex;
	flex-direction: column;
	/* gap: 20px; */
}

.footer-social-item {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.footer-social-text {
    font-family: var(--font-secondary);
	font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    color: white;
}
.footer-social-text:hover {
    text-decoration: underline;
}

/* ========================================
   COPYRIGHT BAR
======================================== */
.footer-copyright {
	background: var(--color-orange);
	padding: 12px 0;
	text-align: center;
	border-top: 1px solid white;
}

.footer-copyright p {
	margin: 0;
	color: #ffffff;
    font-family: var(--font-primary);
	font-size: 14px;
	font-weight: 600;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

/* Tablet */
@media (max-width: 1024px) {
	.footer-grid {
		/* grid-template-columns: 1fr; */
		gap: 50px;
	}

	.footer-logo-section {
		order: 1;
	}

	.footer-contact {
		order: 2;
	}

	.footer-social {
		order: 3;
	}

	.footer-partner-logos {
		justify-content: flex-start;
	}
}

/* Mobile */
@media (max-width: 768px) {
	.footer-main {
		padding: 32px 24px;
	}

	.footer-grid {
        flex-direction: column;
		gap: 40px;
	}

	.footer-title {
		font-size: 16px;
		margin-bottom: 20px;
	}

	.footer-site-logo img {
		height: 48px;
	}

	.partner-logo img {
		height: 50px;
	}

	.footer-contact-text {
		font-size: 14px;
	}

	.footer-copyright p {
		font-size: 13px;
	}

	/* .footer-container {
		padding: 0 15px;
	} */
}

/* Small Mobile */
@media (max-width: 480px) {
	.footer-title {
		font-size: 16px;
	}

	.footer-contact-item {
		gap: 12px;
	}

	.footer-icon {
		width: 20px;
		height: 20px;
	}

	.footer-contact-text {
		font-size: 13px;
	}

	.footer-partner-logos {
		gap: 15px;
	}

	.partner-logo img {
		height: 45px;
	}

	.footer-social-list {
		gap: 0;
	}

	.footer-copyright {
		padding: 12px 0;
	}

	.footer-copyright p {
		font-size: 12px;
	}
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
	.footer-grid {
		/* grid-template-columns: repeat(2, 1fr); */
		gap: 30px;
	}

	.footer-logo-section {
		order: 1;
		grid-column: 1 / 2;
	}

	.footer-contact {
		order: 2;
		grid-column: 2 / 3;
	}

	.footer-social {
		order: 3;
		grid-column: 1 / -1;
	}
}
/* end footer */

/* coming soon */
.coming-soon-wrapper {
    width: 100%;
    overflow: hidden;
    border: 1px solid #fff;
}

.coming-soon-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.coming-soon-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin: 0;
    line-height: 1.3;
}

.countdown-timer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-top: 0;
}

.countdown-item {
    display: inline-flex;
}

.countdown-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 80px;
}

.countdown-number {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 3px;
}

.countdown-label {
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
}

@media (max-width: 1024px) {
    .coming-soon-wrapper {
        /* width: fit-content;
        margin: auto; */
        border-radius: 0 !important;
    }
    .coming-soon-container {
        justify-content: center;
        /* flex-direction: column; */
    }
    .countdown-section,
    .elementor-element.countdown-section {
        position: initial;
    }
}

@media (max-width: 768px) {
    .coming-soon-title {
        font-size: 24px;
    }

    .countdown-box {
        min-width: 70px;
    }

    .countdown-number {
        font-size: 36px;
    }

    .countdown-label {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .coming-soon-title {
        font-size: 18px;
    }

    .countdown-box {
        min-width: 60px;
        padding: 15px 20px !important;
    }

    .countdown-number {
        font-size: 28px;
    }

    .countdown-label {
        font-size: 12px;
    }
}
/* end coming soon */
.title-h2 {
    font-family: 'Kufam';
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 42px;
    margin: 0;
}
.text-strip .elementor-heading-title {
    position: relative;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.text-strip .elementor-heading-title::before,
.text-strip .elementor-heading-title::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 4px;
    background-color: var(--color-orange);
    border-radius: 8px;
    left: -84px;
    top: 0;
    bottom: 0;
    margin: auto;
}
.text-strip .elementor-heading-title::after {
    left: auto;
    right: -84px;
}
.race-pack-widget {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.race-info-column {
    filter: drop-shadow(0px 2px 10px rgba(0, 0, 0, 0.1));
    border-radius: 16px;
}
.race-info-column.race-pack-image img,
.elementor .race-info-column.race-pack-image img {
    border-radius: 16px;
    width: 100%;
    border: 1.7px solid #fff;
    height: 100%;
    object-fit: cover;
}
.race-info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px 14px;
    border-radius: 16px 16px 0 0;
}
.race-info-header img,
.elementor .race-info-header img {
    max-width: 30px;
    height: fit-content;
    margin-bottom: 5px;
}
.race-info-header .title-h2 {
    color: #FFFFFF;
}
.race-info-column.race-pack-info {
    background-color: white;
    display: flex;
    flex-direction: column;
}
.race-info-detail {
    flex: 1;
    padding: 20px 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.podium .race-info-detail {
    gap: 16px;
}
.race-info-detail p {
    margin: 0;
}
.ri-detail-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ri-icon {
    min-width: 20px;
    text-align: center;
}
.ri-detail-box .icon-custom path {
    fill: var(--color-green);
}
.ri-detail-item {
    display: flex;
    gap: 12px;
}
.ri-value-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.rih-center{
    justify-content: center;
}
.race-category-widget .race-info-detail {
    gap: 16px;
}
.race-category-widget .ri-detail-box {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(7, auto);
    /* grid-auto-columns: max-content; */
    grid-auto-columns: minmax(200px, 50%);
    gap: 12px 20px;
}
.race-category-benefit-item {
    display: flex;
    gap: 8px;
    align-items: center;
}
.race-category-benefit-item .rcbi-image {
    line-height: 0;
    width: 20px;
}
.race-category-benefit-item .rcbi-image img {
    width: 100%;
}
.race-info-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.race-info-header.with-distance {
    justify-content: space-between;
}
.rih-column:first-child {
    display: flex;
    gap: 12px;
}
.rih-column:last-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    text-align: right;
}
.rih-column p {
    margin: 0;
}
.rih-column p:last-child {
    color: var(--color-white);
}
.rih-distance,
.rih-column p.rih-distance{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin-left: auto;
    padding: 3px 8px 0;
    gap: 10px;
    background: #FFFFFF;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    color: var(--color-green);
}
.rid-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.rid-item {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}
.rid-title {
    position: relative;
}
.rid-title::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--color-orange);
    border-radius: 8px;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.rid-title p {
    text-transform: uppercase;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    text-align: center;
    color: var(--color-green);
    position: relative;
    width: fit-content;
    margin: auto;
    background-color: white;
    padding: 0 24px;
}
.presale-inactive .presale-price p,
.presale-active .normal-price p {
    color: #9A9EA6;
    text-decoration: line-through;
}
.race-route-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}
.race-card.route {
    width: 290px;
}
.race-info-detail-route {
    line-height: 0;
}
.race-info-detail-route img{
    width: 100%;
    border-radius: 0 0 16px 16px !important;
}
.race-reward-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}
.race-card.reward {
    width: calc(33.33% - (80px / 3));
}
.race-reward-header {
    border-radius: 16px 16px 0 0;
    padding: 20px;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.race-reward-header img {
    max-width: 100%;
    max-height: 200px;
    margin: auto;
}
.race-info-detail-reward {
    padding: 28px 32px;
}
.reward-name {
    margin-top: 0;
    margin-bottom: 8px;
}
.content-banner,
.elementor-element.content-banner {
    margin: auto;
    height: fit-content;
    inset: 0;
}
.image-box-banner .elementor-image-box-title {
    margin: 0;
}
.faq-tnc-toggle {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
}
.toggle-btn {
    cursor: pointer;
    font-family: var(--font-tertiary);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--color-gray);
    padding-bottom: 8px;
    border-bottom: 1px solid transparent;
}
.toggle-btn.active {
    font-weight: 700;
    color: var(--color-orange);
    border-bottom: 1px solid var(--color-orange);
}
.faq-tnc-question,
.faq-tnc-title {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: white;
    cursor: pointer;
}
.faq-tnc-question span:first-child,
.faq-tnc-title span:first-child {
    font-family: var(--font-tertiary);
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 150%;
    color: #FFFFFF;
}
.faq-tnc-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.faq-tnc-target {
    font-family: var(--font-secondary);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--color-gray);
    padding: 20px 24px;
}
.hamburger-menu .close-icon {
    display: none;
}
.hamburger-menu.active .close-icon {
    display: block;
}
.hamburger-menu.active .hamburger-icon {
    display: none;
}
.banner-background {
    line-height: 0;
}
.banner-logo {
    max-width: 683px;
    margin: auto;
}
.banner-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: fit-content;
    height: fit-content;
    margin: auto;
}
.banner-info-detail {
    display: flex;
    gap: 47px;
    align-items: center;
}
.banner-buttons {
    margin-top: 12px;
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}
.banner-button {
    padding: 10px 16px;
    transition: .3s ease-in-out;
}
.banner-info-detail > div {
    display: flex;
    align-items: center;
    gap: 12px;
}
.banner-info-detail > div span:first-child{
    line-height: 0;
}
.banner-info-detail span svg.icon-custom path {
    fill: var(--color-white);
}
.faq-tnc-toggle-content .faq-tnc-icon svg {
    transition: .3s ease-in-out;
}
.faq-tnc-toggle-content.active .faq-tnc-icon svg {
    transform: rotate(90deg);
}
.ticket .title-h2,
.podium .title-h2 {
    font-size: 24px;
}

@media only screen and (min-width: 768px) {
    .banner-image-mobile {
        display: none;
    }
}

@media only screen and (max-width: 1300px) { 
    .banner-logo {
        max-width: 400px;
    }
}

@media only screen and (max-width: 1024px) {
    .flex-text,
    .flex-text-column {
        display: block;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .site-branding {
        flex: 1;
    }
    .header-inner-custom {
        gap: 24px;
    }
    .content-banner,
    .elementor-element.content-banner {
        margin-bottom: 8%;
    }
    .coming-soon-wrapper {
        border: 0;
    }
}

@media only screen and (max-width: 900px) {
    .title-h2 {
        font-size: 24px;
        line-height: 28px;
    }
}

@media only screen and (max-width: 767px) {
    .banner-image-desktop {
        display: none;
    }
    .banner-content {
        padding: 0 20px;
    }
    .banner-info-detail {
        flex-direction: column;
        gap: 22px;
    }
    /* .banner-background {
        max-height: 100dvh;
    } */
    .banner-background img {
        width: 100%;
        /* height: 95vh !important; */
        object-fit: cover;
    }
    .race-pack-widget {
        grid-template-columns: 1fr;
    }
    .race-info-list {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .content-banner,
    .elementor-element.content-banner {
        margin: auto;
    }
    .text-strip.text-strip-title .elementor-heading-title{
        max-width: 225px;
    }
    .text-strip.text-strip-title .elementor-heading-title::before {
        left: -75px;
    }
    .text-strip.text-strip-title .elementor-heading-title::after {
        right: -75px;
    }
    .countdown-timer {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px !important;
    }
    .race-category-widget .ri-detail-box {
        grid-template-columns: 1fr;
        grid-auto-flow: inherit;
    }
    .rih-center {
        justify-content: flex-start;
    }
    .race-info-header.with-distance {
        flex-direction: column;
        align-items: flex-start;
    }
    .rih-column:last-child {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }
    .rih-distance, .rih-column p.rih-distance {
        margin-left: 0;
    }
    .race-reward-list {
        gap: 24px;
    }
    .race-card.reward {
        width: calc(50% - (48px / 2));
    }
    .elementor-custom-embed-play svg {
        width: 40px !important;
        height: 40px !important;
    }
    .text-strip-sponsor .elementor-heading-title {
        max-width: 182px;
        text-align: center;
    }
    .text-strip.text-strip-sponsor .elementor-heading-title::after,
    .text-strip.text-strip-sponsor .elementor-heading-title::before {
        width: 40px;
    }
    .text-strip .elementor-heading-title::before {
        left: -60px;
    }
    .text-strip .elementor-heading-title::after {
        right: -60px;
    }
    .image-box-banner .elementor-image-box-wrapper {
        display: flex;
        gap: 12px;
        align-items: center;
    }
    .header-container {
        padding: 12px 20px;
    }
    .countdown-item {
        display: block;
    }
    .race-info-header img,
    .elementor .race-info-header img {
        width: 29px;
        height: 32px;
    }
}

@media only screen and (max-width: 500px) {
    .race-card.route {
        width: 100%;
    }
    .race-card.reward {
        width: 100%;
    }
    .elementor-custom-embed-play svg {
        width: 18px !important;
        height: 18px !important;
    }
    .banner-logo {
        max-width: 253px;
    }
}

@media only screen and (max-width: 400px) {
    .countdown-timer {
        width: 100%;
    }
    .mobile-navigation-wrapper {
        padding: 32px 20px;
    }
}

@media only screen and (max-width: 360px) {
    .text-strip.text-strip-title .elementor-heading-title::before,
    .text-strip.text-strip-title .elementor-heading-title::after {
        width: 30px;
    }
    .text-strip.text-strip-title .elementor-heading-title::before {
        left: -45px;
    }
    .text-strip.text-strip-title .elementor-heading-title::after {
        right: -45px;
    }
}