/* B9 Golf Hero Component Styles 
.b9-hero {
    padding: 0;
    position: relative;
    min-height: 660px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--b9-white);
}

.b9-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.b9-hero .container-fluid {
    position: relative;
    top: calc(var(--b9-header-height, 60px) + var(--top_promo_hgt, 40px));
    z-index: 1020;
    padding: 30px 80px 20px;
    background-image: url("/assets/img/views/main/home/the-back-nine-hero-top-background.svg");
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: cover;
}

.b9-hero-header {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 25px;
}

.b9-hero-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 20px;
    color: var(--b9-white);
    text-transform: uppercase;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 12px;
}

@media (min-width:1200px) {.b9-hero-description{padding-right:40%;}}

.location-container {
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 15px;
}

.location-dot {
    margin-top: 3px;
    width: 25px;
    max-width: 25px;
}

.b9-hero-actions-wrapper {
	position: absolute;
	top: 75px;
	right: 0;
}

.b9-hero-actions {
    display: flex;
    gap: 24px;
}

.b9-hero-caption {
    position: absolute;
    bottom: 16px;
    right: 20px;
    font-size: 64px;
    font-weight: 900;
    line-height: 1.4;
    letter-spacing: 0.1em;
    color: #f6f8fc;
    text-align: center;
    white-space: nowrap;
    text-transform: uppercase;
    text-shadow: 0px 4px 4px #00000040;
}

.b9-hero-btn {
    height: 68px;
    padding: 20px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
    border-radius: 60px;
    transition: all 0.3s ease-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.b9-hero-btn.btn-primary {
    width: 216px;
    background-color: var(--b9-primary-color);
    color: var(--b9-text-dark);
}

.b9-hero-btn.btn-primary:hover {
    background-color: var(--b9-primary-hover);
    border-color: var(--b9-primary-hover);
    color: var(--b9-ebony);
}

.b9-hero-btn.btn-outline-light {
    width: 205px;
    background-color: #111921cc;
    border: 1px solid var(--b9-white);
    color: var(--b9-white);
}

.b9-hero-btn.btn-outline-light:hover {
    background-color: var(--b9-ebony);
}

.b9-hero-btn.btn-outline-dark {
    width: 166px;
    background-color: var(--b9-white);
    border: 1px solid var(--b9-white);
    color: var(--b9-text-dark);
}

.b9-hero-btn.btn-outline-dark:hover {
    background-color: var(--b9-ebony-100);
}

@media (max-width:1200px) {
    .b9-hero-caption {
        left: 0;
        right: 0;
        margin: 0 auto;
        text-align: center;
        font-size: 50px;
    }

    .b9-hero-actions-wrapper {
        position: relative;
        top: 95px;
    }
}

@media (max-width: 991.98px) {
    .b9-hero .container-fluid {
        top: calc(var(--b9-header-height, 60px) + var(--b9-top-promotion-height, 40px));
        padding-left: 20px;
        padding-right: 20px;
    }

    .b9-hero-actions-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }

    .b9-hero-caption {
        font-size: 45px;
    }

    .b9-hero-header {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .b9-hero-title {
        font-size: 32px;
        margin-bottom: 16px;
        gap: 8px;
    }

    .location-dot {
        max-width: 21px;
    }

    .b9-hero-btn {
        height: 36px;
        min-width: auto;
        padding: 10px 20px;
        font-size: 16px;
        font-weight: 700;
        line-height: 1.4;
        text-transform: uppercase;
        border-radius: 18px;
    }

    .b9-hero-btn.btn-primary,
    .b9-hero-btn.btn-outline-dark,
    .b9-hero-btn.btn-outline-light {
        width: auto;
        min-width: 180px;
    }

    .b9-hero-countdown {
        bottom: 12px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .countdown-title {
        font-size: 32px;
    }

    .countdown-timer {
        gap: 15px;
    }

    .countdown-item {
        padding: 10px 12px;
        width: 50px;
        height: 50px;
        border-radius: 8px;
        gap: 0;
    }

    .countdown-value {
        font-size: 24px;
    }

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

@media (max-width: 767.98px) {

    .b9-hero .container-fluid {
        padding-top: 10.91px;
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 6.55px;
    }

    .b9-hero-header {
        font-size: 14.55px;
        margin-bottom: 25px;
    }

    .b9-hero-title {
        font-size: 27.27px;
        margin-bottom: 20px;
        gap: 4px;
    }

    .b9-hero-actions {
        gap: 10.91px;
    }

    .b9-hero-btn {
        height: 30.91px;
        padding: 6px 10px;
        font-size: 9.09px;
        border-radius: 45px;
    }

    .b9-hero-btn.btn-primary {
        width: 98.09px;
        min-width: auto;
    }

    .b9-hero-btn.btn-outline-dark,
    .b9-hero-btn.btn-outline-light {
        width: 93.09px;
        min-width: auto;
    }

    .b9-hero-actions-wrapper {
        width: 100%;
        height: auto;
        bottom:-85px;
    }

    .b9-hero-caption {
        font-size: 25px;
    }
}
*/