

:root {
    --primary: #3A7241;
    --secondary: #F7941D;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #F69051;
    --danger: #dc3545;
    --light: #F3EFF0;
    --dark: #045A19;
    --highlight: #FDF9DE;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  }

html {
    font-family: "Poppins", serif;
}

body {
    font-family: "Poppins", serif;
}

.bg-light {
    background-color: var(--light) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

a.bg-primary:focus, a.bg-primary:hover, button.bg-primary:focus, button.bg-primary:hover {
    background-color: var(--secondary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}
.bg-highlight {
    background-color: var(--highlight) !important;
}
.text-primary {
    color: var(--primary) !important;
}
.text-secondary {
    color: var(--secondary) !important;
}

.button-primary {
    background-color: var(--primary);
    color: white;
    border: 0;
    padding: 10px 20px;
    cursor: pointer;
}

h1 {
    color: var(--primary) !important;
    font-weight: 600;
}

.fw-bold {
    font-weight: 700;
}

.no-border {
    border: 0;
}

.border-rad-10 {
    border-radius: 10px;
}

.border-rad-15 {
    border-radius: 15px;
}

.border-rad-20 {
    border-radius: 20px;
}

.border-rad-25 {
    border-radius: 25px;
}

.border-rad-30 {
    border-radius: 30px;
}

.border-rad-35 {
    border-radius: 35px;
}

.border-rad-40 {
    border-radius: 40px;
}

.pt-150 {
    padding-top: 150px;
}

.lh-10 {
    line-height: 1;
}

.lh-11 {
    line-height: 1.1;
}

.lh-12 {
    line-height: 1.2;
}

.lh-15 {
    line-height: 1.5;
}

.lh-20 {
    line-height: 2;
}

.lh-25 {
    line-height: 2.5;
}

.lh-30 {
    line-height: 3;
}

.fs-8 {
    font-size: 0.8rem;
}

.fs-9 {
    font-size: 0.9rem;
}

.fs-11 {
    font-size: 1.1rem;
}

.fs-12 {
    font-size: 1.2rem;
}

.mt--50p {
    margin-top: -50%;
}

.blinc-title {
    color: var(--primary) !important;
    font-weight: 600;
    font-size: 2.5rem;
    margin-left: 0px;
    margin-right: 0px;
}

@media (max-width: 576px) {
    .blinc-title {
        font-size: 2.3rem;
        margin-left: 30px;
        margin-right: 30px;
    }
}

a {
    text-decoration: none !important;
}

a:hover {
    color: #ff5733 !important;
}

.navbar .nav-item .nav-link {
    color: var(--primary) ;
    font-family: "Poppins", serif;
    font-weight: 500;
    font-size: larger;
}

.navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show>.nav-link {
    color: #ff5733;
}

.nav-link:hover, .nav-link:focus {
    text-decoration: underline;
  }



.custom-shadow {
    box-shadow: 1px 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.custom-border-white {
    border: 1px solid #ffffff;
    border-radius: 25px;
}

.custom-margin-boxes {
    margin-left: 5%;
    margin-right: 5%;
}

@media (min-width: 1000px) {
    .custom-margin-boxes {
        padding-left: 10%;
        padding-right: 10%;
    }
}


.custom-col {
    flex: 0 0 calc(16.6% - 10px); /* Adjusting width to account for margin */
    max-width: calc(16.6% - 10px);
    margin-top: 5%;
}

@media (max-width: 768px) {
    .custom-col { 
        flex: 0 0 calc(50% - 10px); /* Adjust columns for medium screens (3 columns) */
        max-width: calc(50% - 10px);
        margin-top: 30%;
    } 
}

@media (max-width: 576px) {
    .custom-col { 
        flex: 0 0 calc(50% - 10px); /* Adjust columns for small screens (2 columns) */
        max-width: calc(50% - 10px);
        margin-top: 30%;
    } 
}

.gap-10 {
    margin-right: 10px; /* Adding right margin for spacing */
}
.row-no-gutters .col { margin-right: 0; } /* Remove margin for full-width row */

.pos-relative {
    position: relative;
    background-color: var(--light);
}

.info-box {
    position: absolute;
    top: -170px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    padding: 30px;
    box-shadow: 0 1px 1px rgba(0,0,0,1);
    border-radius: 40px;
    width: 60%;
    align-items: center;
    text-align: center;
    line-height: 2.5;
}

@media (max-width: 768px) {
    .info-box {
        position: absolute;
        top: -150px;
        left: 50%;
        transform: translateX(-50%);
        background-color: var(--primary);
        padding: 30px;
        box-shadow: 0 1px 1px rgba(0,0,0,1);
        border-radius: 40px;
        width: 90%;
        align-items: center;
        text-align: center;
        line-height: 2.5;
    }
}

@media (max-width: 576px) {
    .info-box {
        position: absolute;
        top: -270px;
        left: 50%;
        transform: translateX(-50%);
        background-color: var(--primary);
        padding: 30px;
        box-shadow: 0 1px 1px rgba(0,0,0,1);
        border-radius: 40px;
        width: 90%;
        align-items: center;
        text-align: center;
        line-height: 2.5;
    }
}

.large-fs {
    font-size: 2.2rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .large-fs {
        font-size: 1.6rem;
        font-weight: 700;
    }
}

@media (max-width: 576px) {
    .large-fs {
        font-size: 1.5rem;
        font-weight: 700;
    }
}

.width-relative {
    width: 20%;
    align-items: center;
    text-align: center;
}

@media (max-width: 768px) {
    .width-relative {
        width: 40%;
    }
}

@media (max-width: 576px) {
    .width-relative {
        width: 60%;
    }
}

.button-group { 
    display: flex;
    justify-content: center; /* Center-align the buttons */
    gap: 10px; /* Space between buttons */
}

.button-group a { 
    flex: 1; /* Make the buttons the same width */
    text-align: center; /* Center-align text within the buttons */
}

.button-group a:hover {
    color: var(--danger) !important;
    background-color: var(--dark) !important;
}

@media (max-width: 576px) {
    .button-group { 
        flex-direction: column; /* Stack buttons vertically on small screens */
    }
    .button-group a {
        margin-bottom: 10px; /* Add space between buttons when stacked */
    }
}

.vertical-spacer {
    min-height: 200px;
}

.vertical-spacer-5 {
    min-height: 5px;
}

.vertical-spacer-10 {
    min-height: 10px;
}

.vertical-spacer-15 {
    min-height: 15px;
}

.vertical-spacer-54 {
    min-height: 54px;
}

.vertical-spacer-64 {
    min-height: 64px;
}

@media (max-width: 576px) {
    .vertical-spacer {
        min-height: 300px;
    }
}

.thin-line {
    border: none; /* Remove default border */
    border-top: 1px solid var(--primary); /* Add a custom top border */
    margin: 20px 0; /* Adjust margins as needed */
}

.program-selector-group {
    display: block;
}




.program-selector {
    font-size: 1rem;
    font-weight: 700;
    padding-left: 20px;
    padding-right: 20px;
    margin: 1px;
}

@media (max-width: 576px) {
    .program-selector-group {
        display: flex;
        flex-direction: column;
    }

    .program-selector {
        font-size: 0.9rem;
        padding-left: 10px;
        padding-right: 10px;
    }
}

.program-button {
    color: var(--primary);
    background-color: var(--light);
    border: 1px solid var(--primary);
}

.program-button:hover {
    color: var(--white);
    background-color: var(--secondary);
    border: 1px solid var(--secondary);
}

.program-button.active,
.program-button:active,
.program-button.active:focus,
.program-button:focus
{
    color: var(--white);
    background-color: var(--primary);
    border: 1px solid var(--primary);
}

.program-table {
    display: none; /* Hide all tables by default */
    text-align: center; 
}

.program-table.active {
    display: block; /* Show the active table */
}

.program-table-style thead th {
    background-color: var(--primary);
    border: 1px solid var(--primary);
    color: white;
}

.program-table-style tbody td {
    background-color: white;
    border: 1px solid var(--primary);
    color: var(--primary);
    text-align: left;
    vertical-align: middle;
}

.program-table-style-hour{
    text-align: center !important;
    width: fit-content;
}

@media (min-width: 992px) {
    .program-table-style-hour {
        white-space: nowrap;
    }
}

.confirmation-label-style {
    color: var(--primary);
    font-weight: bolder;
}

.confirmation-content-style tbody td {
    background-color: white;
    border: 1px solid var(--light);
    color: var(--primary);
    word-wrap: break-word;
    border-collapse: collapse;
    max-width: 100%;
}

.registration-box {
    background-color: white;
    color: var(--primary);
    border: 1px solid var(--light);
    box-shadow: 1px 1px 1px 1px rgba(0,0,0,0.1);
    border-radius: 40px;
    padding: 10px;
}

.ticket-container {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    justify-content: center;
}

.ticket-title {
    font-size: 1.2rem;
}

.ticket-box {
    cursor: pointer;
    border: 1px solid #ccc;
    box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    background-color: white;
    margin: 10px;
}

.ticket-box-title h5{
    background-color: var(--primary);
    border-radius: 30px 30px 0px 0px;
    color: white;
    font-size: 2rem;
    padding: 15px;
}

.ticket-box.active {
    border: 2px solid red; 
    font-weight: bolder; 
}


.footer {
    background-color: var(--primary);
    color: #fff;
    padding: 20px;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.footer-container > div {
    margin: 10px 0;
}
.copyright {
    flex: 1;
    text-align: left;
}

@media (max-width: 600px)
{
    .copyright {
        max-width: 300px;
    }
}

@media (min-width: 600px)
{
    .copyright {
        max-width: 350px;
    }
}

@media (min-width: 1000px)
{
    .copyright {
        max-width: unset;
    }
}

.social-links {
    display: flex;
    justify-content: flex-end;
    flex: 1;
    gap: 15px;
}
.social-links div {
    display: flex;
    align-items: center;
}
.social-links img {
    margin-right: 8px;
}
@media (max-width: 600px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
    .footer-container > div {
        text-align: center;
        font-size: smaller;
    }
    .social-links {
        justify-content: center;
    }
}

.dynamic-image {
    display: none;
    max-width: 80px;
}

@media (max-width: 767px) {
    .dynamic-image {
        max-width: 180px;
        margin-top: 10px;
    }
}

.countdown {
    font-size: 24px;
    font-weight: bold;
}

.home-card-top {
    padding-top: 25px;
    padding-left: 5px;
    padding-right: 5px;
}

.home-card-title {
    font-size: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-card-mid {
    margin-top: 20px;
    padding-left: 5px;
    padding-right: 5px;
    min-height: 220px;
    display: grid;
    align-items: center;
}

.home-card-mid-img-container {
    display: flex;
    align-items: center;
}

.home-card-mid-img {
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
    border: 1px solid #ffffff;
    border-radius: 25px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.home-card-bot {
    padding-left: 80px;
    padding-right: 80px;
    padding-bottom: 30px;
}

@media (min-width: 990px)
{
    .home-card-top {
        padding-left: 10px;
        padding-right: 10px;
        min-height: 60px;
    }

    .home-card-title {
        font-size: 1.5em;
        line-height: 1.3;
    }

    .home-card-mid {
        min-height: 300px;
    }
    
    .home-card-mid-img-container {
        min-height: 300px;
    }

    .home-card-bot {
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 30px;
    }
}

@media (min-width: 1342px)
{
    .home-card-title {
        font-size: 2.1em;
    }

    .home-card-top {
        min-height: 120px;
    }

    .home-card-mid {
        font-size: 1.1em;
        font-weight: 450;
    }

    .home-card-mid-img-container {
        min-height: 320px;
    }
}

.cookie-consent-banner {
    position: relative;
    bottom: 0;
    width: 100%;
    background: var(--primary);
    color: #fff;
    padding: 1rem;
    text-align: center;
    z-index: 1000;
    border-radius: 15px;
    font-size: 0.9rem;
    align-items: center;
}
.cookie-consent-banner button {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    margin-left: 1rem;
    cursor: pointer;
}

.sponsors-card {
    box-shadow: 1px 2px 2px 1px rgba(0, 0, 0, 0.1);
    border-radius: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    margin: 5px;
    max-width: 310px;
    margin: 0 auto;
}

.sponsors-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sponsors-title {
    font-size: 2em;
    font-weight: 600;
    color: rgb(255,215,0);
}

@media (max-width: 575px)
{
    .sponsors-title {
        font-size: 1.4em;
    }
}

.sponsors-logo {
    padding: 1%;
    max-width: 300px;
    align-self: center;
}

.sponsors-logo-silver {
    padding: 1%;
    max-width: 130px !important;
    align-self: center;
}

.sponsors-title-silver {
    font-size: 1.5em;
    font-weight: 600;
    color: rgb(192,192,192);
}

@media (max-width: 575px)
{
    .sponsors-title-silver {
        font-size: 1.2em;
    }
}

.card sponsors-logo-silver img {
    padding: 1%;
    max-width: 200px;
    align-self: center;
}

/* Centering container for the video */
.center-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative; /* Ensures proper alignment */
}

/* Styling for the WebM video */
.webm-animation {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Ensures the video scales proportionally */
}

.home-box {
    background-color: white;
    color: var(--primary);
    border: 1px solid var(--light);
    box-shadow: 1px 1px 1px 1px rgba(0,0,0,0.1);
    border-radius: 20px;
    padding: 40px;
    margin: 10px;
}

.homemenu-box {
    background-color: var(--primary);
    color: white;
    border: 1px solid var(--light);
    box-shadow: 1px 1px 1px 1px rgba(0,0,0,0.1);
    border-radius: 20px;
    padding: 10px;
    margin: 10px;
}

.button-green {
    background-color: var(--primary);
    color: white;
    border: 0;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 20px;
}

.button-green:hover {
    background-color: var(--secondary);
    color: white !important;
}

.button-secondary {
    background-color: var(--secondary);
    color: white;
    border: 0;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 20px;
}

.button-secondary:hover {
    background-color: var(--primary);
    color: white !important;
}

.submenu {
    background-color: var(--primary);
    color: white;
    border: 1px solid var(--light);
    box-shadow: 1px 1px 1px 1px rgba(0,0,0,0.1);
    border-radius: 20px;
    padding: 20px;
    margin: 10px;
    width: auto;
}



.submenu a {
    color: white;
    text-decoration: none;
    display: block;
    margin: 4px;
}

.submenu a:hover {
    color: var(--primary) !important;
    background-color: white;
    text-decoration: none;
    display: block;
    border-radius: 8px;
    padding: 8px;
}

.submenu a.active,
.submenu a:active {
    color: var(--primary) !important;
    background-color: white;
    text-decoration: none;
    display: block;
    border-radius: 8px;
    padding: 8px;
}

.submenu a.home-menu {
    background-color: var(--secondary);
    color: white !important;
    font-weight: bold;
    border-radius: 8px;
    padding-left: 18px;
}

.submenu a.home-menu:hover {
    transform: scale(1.1, 1.1);
    transition: transform 0.2s;
}

.submenu .nav-item {
    margin-bottom: 0px;
    line-height: 1;
    font-size: 0.8em;
}

.floating-submenu {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1050;
    background: var(--primary);
    border-radius: 8px 0 0 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: right 0.3s, width 0.3s;
    width: 48px;
    overflow: hidden;
}
.floating-submenu.expanded {
    width: 220px;
    right: 0;
}
.floating-submenu-header {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 8px;
    background: var(--primary);
    color: white;
    border-radius: 8px 0 0 8px;
}
.floating-submenu-content {
    display: none;
    padding: 12px 16px;
}

/* Reduce height of submenu nav-items */
.floating-submenu-content .nav-item {
    margin-bottom: 0px;
    padding-top: 0;
    padding-bottom: 0;
    line-height: 1;
}
.floating-submenu-content .nav-link {
    padding-top: 8px;
    padding-bottom: 8px;
    margin-top: 4px;
    margin-bottom: 4px;
    font-size: 1rem;
}
.floating-submenu.expanded .floating-submenu-content {
    display: block;
    color: white;
}
.floating-submenu a {
    color: white;
    text-decoration: none;
    display: block;
    margin: 8px;
}
.floating-submenu a.active,
.floating-submenu a:active {
    background-color: white;
    color: var(--primary) !important;
    font-weight: bold;
    border-radius: 8px;
    padding-left: 18px;
}
.floating-submenu a.home-menu {
    background-color: var(--secondary);
    color: white !important;
    font-weight: bold;
    border-radius: 8px;
    padding-left: 18px;
}
.floating-submenu .submenu-icon {
    font-size: 1.5rem;
    margin-right: 8px;
    transition: transform 0.3s;
}
.floating-submenu.expanded .submenu-icon {
    transform: rotate(90deg);
}
.overbanner {
    margin-top: -10vw;
}
.form-control {
    border-radius: 15px;
    border: 1px solid var(--primary);
    padding: 5px;
    font-size: 1rem;
}