/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

@font-face {
    font-family: 'Futura';
    src: url('/Fonts/Futura-Bold.woff2') format('woff2'), url('/Fonts/Futura-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura';
    src: url('/Fonts/FuturaBT-Medium.woff2') format('woff2'), url('/Fonts/FuturaBT-Medium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura';
    src: url('/Fonts/FuturaBT-Light.woff2') format('woff2'), url('/Fonts/FuturaBT-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('/Fonts/Poppins-Bold.woff2') format('woff2'), url('/Fonts/Poppins-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('/Fonts/Poppins-ExtraLight.woff2') format('woff2'), url('/Fonts/Poppins-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('/Fonts/Poppins-Light.woff2') format('woff2'), url('/Fonts/Poppins-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('/Fonts/Poppins-Medium.woff2') format('woff2'), url('/Fonts/Poppins-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('/Fonts/Poppins-Regular.woff2') format('woff2'), url('/Fonts/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Muro';
    src: url('/Fonts/Muro-Regular.woff2') format('woff2'), url('/Fonts/Muro-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/*--------------------------------------------------------------
# General Utilities
--------------------------------------------------------------*/
* {
    --primary-dark-blue: #56698f;
    --secondary-dark-blue: #345eb2;
    --primary-orange: #ff8053;
    --secondary-orange: #EB5D2C;
    --tertiary-orange: #BE3D10;
    --primary-red: #b3160b;
    --primary-light-blue: #aecfcc;
    --secondary-light-blue: #7adeff;
    --primary-black: #404c63;
    --footer-black: #282828;
    --primary-white: #fff;
    --secondary-white: #f3f9f9;
    --primary-gray: #ecfefe;
    --secondary-gray: #f5f5f5;
    --facebook-blue: #1877F2;
    --youtube-red: #FF0000;
    --twitter-blue: #1DA1F2;
    --instagram-gradient-red: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

body {
    font-family: Poppins;
    color: var(--primary-black);
    overflow-x: hidden;
}

.break-word {
    word-break: break-word;
}

.list-none {
    list-style-type: none;
}

.fs-7 {
    font-size: 0.9rem;
}

.fs-8 {
    font-size: 0.8rem;
}

.text-futura {
    font-family: Futura !important;
}

.text-muro {
    font-family: 'Muro' !important;
}

.text-josefin {
    font-family: "Josefin Sans", sans-serif;
}

.no-underline {
    text-decoration: none;
}

.underline-hover:hover {
    text-decoration: underline;
}

.text-primary-dark-blue {
    color: var(--primary-dark-blue);
}

.text-secondary-dark-blue {
    color: var(--secondary-dark-blue);
}

.text-primary-orange {
    color: var(--primary-orange);
}

.text-secondary-orange {
    color: var(--secondary-orange);
}

.text-tertiary-orange {
    color: var(--tertiary-orange);
}

.text-tertiary-orange-hover:hover {
    color: var(--tertiary-orange);
}

.text-primary-red {
    color: var(--primary-red);
}

.text-secondary-light-blue {
    color: var(--secondary-light-blue)
}

.text-primary-black {
    color: var(--primary-black);
}

.bg-primary-dark-blue {
    background: var(--primary-dark-blue);
}

.bg-secondary-dark-blue {
    background: var(--secondary-dark-blue);
}

.bg-primary-orange {
    background: var(--primary-orange);
}

.bg-primary-white {
    background: var(--primary-white);
}

.bg-secondary-white {
    background: var(--secondary-white);
}

.bg-footer-black {
    background: var(--footer-black);
}

.bg-primary-gray {
    background: var(--primary-gray);
}

.bg-secondary-gray {
    background: var(--secondary-gray);
}

.bg-facebook {
    background: var(--facebook-blue);
}

.bg-instagram {
    background: var(--instagram-gradient-red);
}

.bg-youtube {
    background: var(--youtube-red);
}

.bg-twitter {
    background: var(--twitter-blue);
}

.my-btn-warning-red {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--primary-orange);
    --bs-btn-border-color: var(--primary-red);
    opacity: 0.8;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--secondary-orange);
    --bs-btn-hover-border-color: var(--tertiary-orange);
    --bs-btn-focus-shadow-rgb: 254, 185, 154;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--tertiary-orange);
    --bs-btn-active-border-color: var(--tertiary-orange);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-bg: var(--primary-orange);
    --bs-btn-disabled-border-color: var(--primary-orange);
}

.my-btn-warning {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--primary-orange);
    --bs-btn-border-color: var(--secondary-orange);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--secondary-orange);
    --bs-btn-hover-border-color: var(--tertiary-orange);
    --bs-btn-focus-shadow-rgb: 254, 185, 154;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--tertiary-orange);
    --bs-btn-active-border-color: var(--tertiary-orange);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-bg: var(--primary-orange);
    --bs-btn-disabled-border-color: var(--primary-orange);
}

.hr-orange {
    width: 200px;
    border: 2px solid var(--primary-orange);
    opacity: 0.8;
    margin-top: -0.7rem;
}

.hr-orange-center {
    width: 150px;
    border: 2px solid var(--primary-orange);
    opacity: 0.8;
    margin: -0.7rem auto 0 auto;
}

.hr-orange-center-long {
    width: 200px;
}

.para-line {
    line-height: 1.7em;
    text-align: justify;
}

.short-line {
    line-height: 0.3em;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid var(--primary-orange);
        border-top-color: #d1e6f9;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        animation: animate-preloader 1s linear infinite;
    }

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--primary-dark-blue);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

    .back-to-top i {
        font-size: 28px;
        color: var(--primary-white);
        line-height: 0;
    }

    .back-to-top.active:hover {
        color: var(--primary-white);
        opacity: 1;
    }

    .back-to-top.active {
        visibility: visible;
        opacity: 0.5;
    }

.datepicker-dropdown {
    padding: 20px !important;
}

/*--------------------------------------------------------------
# Navbar Header
--------------------------------------------------------------*/
#header {
    background: var(--primary-white);
    transition: all 0.5s;
    z-index: 997;
    box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
}

    #header.header-scrolled {
        top: 0;
    }

    #header .logo img {
        max-height: 50px;
    }

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
    }

    .navbar > ul > li {
        position: relative;
        white-space: nowrap;
        padding: 8px 0 8px 20px;
    }

    .navbar a:not(.admin-header-link, .member-header-link),
    .navbar a:not(.admin-header-link, .member-header-link):focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 0.9rem;
        color: var(--primary-black);
        white-space: nowrap;
        transition: 0.3s;
        border-bottom: 2px solid var(--primary-white);
    }

        .navbar a:not(.admin-header-link, .member-header-link) i,
        .navbar a:not(.admin-header-link, .member-header-link):focus i {
            font-size: 12px;
            line-height: 0;
            margin-left: 5px;
        }

        .navbar a:not(.admin-header-link, .member-header-link):hover,
        .navbar a:not(.admin-header-link, .member-header-link).active,
        .navbar a:not(.admin-header-link, .member-header-link).active:focus,
        .navbar li:hover > a:not(.admin-header-link, .member-header-link) {
            color: var(--tertiary-orange);
            border-color: var(--secondary-orange);
        }

    .navbar li a:focus {
        border: none !important;
    }


    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 20px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: var(--primary-white);
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
    }

        .navbar .dropdown ul li {
            min-width: 170px;
        }

        .navbar .dropdown ul a {
            padding: 10px 20px;
            font-size: 14px;
            font-weight: 500;
            text-transform: none;
            color: #082744;
            border: none;
        }

            .navbar .dropdown ul a:active {
                color: var(--bs-light) !important;
                background: var(--primary-dark-blue);
            }

.dropdown-item:active {
    background: var(--primary-dark-blue);
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    color: var(--primary-dark-blue);
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (min-width: 992px) {
    .navbar .dropdown ul {
        left: auto;
        right: 0;
        max-width: 190px;
    }
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: var(--tertiary-orange);
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

    .mobile-nav-toggle.bi-x {
        color: var(--primary-white);
    }

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(28, 47, 65, 0.9);
    transition: 0.3s;
    z-index: 999;
}

    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 55px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 10px 0;
        background-color: var(--primary-white);
        overflow-y: auto;
        transition: 0.3s;
    }

    .navbar-mobile > ul > li {
        padding: 0;
    }

    .navbar-mobile a,
    .navbar-mobile a:focus {
        padding: 10px 20px;
        font-size: 15px;
        color: var(--secondary-blue);
        border: none;
    }

        .navbar-mobile a:hover,
        .navbar-mobile .active,
        .navbar-mobile li:hover > a {
            color: var(--primary-dark-blue);
        }

    .navbar-mobile .getstarted,
    .navbar-mobile .getstarted:focus {
        margin: 15px;
    }

    .navbar-mobile .dropdown ul {
        position: static;
        display: none;
        margin: 10px 20px;
        padding: 10px 0;
        z-index: 99;
        opacity: 1;
        visibility: visible;
        background: var(--primary-white);
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    }

        .navbar-mobile .dropdown ul li {
            min-width: 200px;
        }

        .navbar-mobile .dropdown ul a {
            padding: 10px 20px;
        }

            .navbar-mobile .dropdown ul a i {
                font-size: 12px;
            }

            .navbar-mobile .dropdown ul a:hover,
            .navbar-mobile .dropdown ul .active:hover,
            .navbar-mobile .dropdown ul li:hover > a {
                color: var(--primary-dark-blue);
            }

    .navbar-mobile .dropdown > .dropdown-active {
        display: block;
    }

/*--------------------------------------------------------------
# Banner Section Styles
--------------------------------------------------------------*/
.home-banner {
    background: url(/Assets/img/banner.png) center / cover no-repeat;
    min-height: calc(100vh - 4.2rem);
    margin-top: 4.2rem;
}

    .home-banner::after {
        content: "";
        position: absolute;
        inset: 0 auto auto 0;
        width: 100%;
        height: 100%;
        background: var(--primary-black);
        opacity: 0.3;
        z-index: 1;
    }

.neir-logo {
    padding-top: 4rem;
}

.tick {
    padding-bottom: 1em;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    width: 100%;
    max-width: 500px;
}

.tick-label {
    font-size: 1rem;
    color: var(--primary-white);
    text-align: center;
    font-family: Muro;
}

.tick-group {
    margin: 0 0.25em;
    text-align: center;
}

@media (min-width: 567px) {
    .neir-logo img {
        max-width: 600px;
    }
}

/*--------------------------------------------------------------
# About Rally Section Styles
--------------------------------------------------------------*/
.hyphen-list {
    list-style: none;
    padding-left: 1em;
}

    .hyphen-list li::before {
        content: "-";
        margin-right: 0.5em;
        color: inherit; /* Optional: match text color */
    }

.about-rally img {
    max-width: 600px;
}

@media (min-width: 992px) {
    .about-rally img {
        max-width: 100%;
    }

    .about-rally .col-lg-7 {
        padding-left: 10rem !important;
    }
}

/*--------------------------------------------------------------
# Theme & Tagline Section Styles
--------------------------------------------------------------*/
.theme-and-tagline .para-line {
    max-width: 600px;
}

/*--------------------------------------------------------------
# Routes and Locations Section Styles
--------------------------------------------------------------*/
.routes-and-locations .col-lg-8::after {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 100%;
    background: url("/Assets/img/Routes_and_Locations.png") center/cover no-repeat;
    opacity: 0.3;
    z-index: 1;
}

/*.routes-map-image {
    background: var(--primary-light-blue);
}*/

.routes-and-locations .col-lg-8 img {
    max-width: 30px;
    height: auto;
}

.routes-highlights p {
    max-width: 600px;
}

@media (min-width: 992px) {
    .routes-and-locations .col-lg-8 {
        padding-left: 10rem !important;
    }
}


/*--------------------------------------------------------------
# Participants Section Styles
--------------------------------------------------------------*/
@media (min-width: 992px) {
    .participants .participants-image {
        padding-left: 10rem !important;
    }
}

@media (min-width: 1200px) {
    .participants img {
        max-width: 400px;
    }

    .participants .participants-image {
        padding-left: 5rem !important;
    }
}

@media (min-width: 1400px) {
    .participants .participants-image {
        padding-left: 2rem !important;
    }
}

.registration-buttons .my-btn-warning {
    min-width: 240px;
}

/*--------------------------------------------------------------
# Who we are Section Styles
--------------------------------------------------------------*/
/*@media (min-width: 1200px) {
    .who-we-are .container {
        max-width: 960px;
    }
}

@media (min-width: 1400px) {
    .who-we-are .container {
        max-width: 1140px;
    }
}*/

/*--------------------------------------------------------------
# Partners Section Styles
--------------------------------------------------------------*/
.partners .col-lg-6 img {
    max-width: 400px;
}

.partners .col-lg-3 img {
    max-width: 200px;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    outline: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #000 !important;
    font-size: 3rem !important;
    font-weight: 500 !important;
    height: 100%;
    width: 3rem;
    margin: 0 !important;
    opacity: 0.3;
    transition: all ease 1s;
}

.owl-carousel .owl-stage {
    display: flex;
    align-items: center;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    opacity: 1;
    background: transparent !important;
}

.owl-carousel .owl-nav button.owl-prev {
    left: -0.5em;
}

.owl-carousel .owl-nav button.owl-next {
    right: -0.5em;
}

.owl-carousel .owl-item img {
    max-width: 250px;
}

@media (min-width: 992px) {
    .partners .col-lg-6 img {
        max-width: 500px;
    }

    .partners .col-lg-3 img {
        max-width: 300px;
    }

    .partners .col-lg-3:nth-child(2) img {
        max-width: 200px;
    }
}

/*--------------------------------------------------------------
# Footer Styles
--------------------------------------------------------------*/
.krc-footer-logo img {
    max-width: 130px;
}

.social-media-icons a {
    min-width: 40px;
    height: 40px;
}

/*--------------------------------------------------------------
# Public Child Page Styles
--------------------------------------------------------------*/
.main {
    min-height: calc(100vh - 22.6rem);
    margin-top: 4.7rem;
}

/* Breadcrumb Styles */
.breadcrumb li::after {
    content: "/";
    margin-left: 5px;
    margin-right: 5px;
    color: #999;
}

.breadcrumb li:last-child::after {
    content: none; /* Remove arrow after the last item */
}

.small-container {
    max-width: 1000px;
}


    .small-container li i {
        min-width: 20px;
    }

.route .route-map img {
    max-width: 500px;
}
