/* General styles */
body {
    font-family: var(--primary-font), sans-serif;  
    margin: 0;
    padding: 0;
}
:root {
    --visible-items: 3; /* Default: 3 items */
    --item-width: 310px;
    --gap: 40px;
    --visible-itemstestimonial: 3;
}
p {
    font-family: var(--secondary-font), sans-serif;  
}

h1 {
    font-family: var(--h1-font),  Arial, Lucida, sans-serif;  
}

h2 {
    font-family: var(--h2-font),  Arial, Lucida, sans-serif;  
}

h3 {
    font-family: var(--h3-font),  Arial, Lucida, sans-serif;  
}

h4 {
    font-family: var(--h4-font),  Arial, Lucida, sans-serif;  
}

h5 {
    font-family: var(--h5-font),  Arial, Lucida, sans-serif; 
}

h6 {
    font-family: var(--h6-font),  Arial, Lucida, sans-serif;  
}

a {
    font-family: var(--a-font),  Arial, Lucida, sans-serif; 
}

div {
    font-family: var(--div-font),  Arial, Lucida, sans-serif;  
}

span {
    font-family: var(--span-font),  Arial, Lucida, sans-serif;  
}

ul {
    font-family: var(--ul-font),  Arial, Lucida, sans-serif; 
}

ol {
    font-family: var(--ol-font),  Arial, Lucida, sans-serif;  
}

li {
    font-family: var(--li-font),  Arial, Lucida, sans-serif;  
}

button {
    font-family: var(--button-font),  Arial, Lucida, sans-serif;  
}

input {
    font-family: var(--input-font),  Arial, Lucida, sans-serif;  
}

label {
    font-family: var(--label-font),  Arial, Lucida, sans-serif;  
}

textarea {
    font-family: var(--textarea-font),  Arial, Lucida, sans-serif;  
}

strong {
    font-family: var(--strong-font),  Arial, Lucida, sans-serif;  
}

header {
    font-family: var(--header-font),  Arial, Lucida, sans-serif;  
}

footer {
    font-family: var(--footer-font),  Arial, Lucida, sans-serif;  
}


    /* Header styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    background: transparent; /* Transparent initially */
    padding: 10px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
}

/* Add background color after scroll */
header.scrolled {
    background: var(--primary-color); /* Your desired solid color */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Optional shadow */
}

/* Ensure the hero section starts below the header */
.hero {
    margin-top: 0; /* Header overlays this */
    padding-top: 100px; /* Adjust based on header height */
}

    
    .header-container {
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: space-between;
        padding-left: 3%;
    padding-right: 5%;
    }
    
    /* Left menu */
    .menu {
        flex: 1;
        display: flex;
        gap: 5px;
    }
    .menu a {
        text-decoration: none;
        color:var(--highlight-two);
        font-weight: bold;
        font-style: italic;
    }
    
    /* Logo (centered) */
    .logo {
        flex: 0;
        display: flex;
        justify-content: center;
    }
    
    .logo img {
        height: 88px;
    
    }
    
    video {
        width:70%;
        height: calc(50% - 20px);
        aspect-ratio: 16 / 9;
    }
    /* Desktop styles (unchanged) */
@media (min-width: 769px) {
    
    .hamburger {
        display: none; /* Hide the hamburger icon */
    }

    .mobile-menu {
        display: none; /* Ensure mobile menu is hidden */
    }

    .menu {
        display: flex; /* Keep desktop menu visible */
    }
}
@media (min-width: 769px) AND (max-width: 868px) {
.header-buttons button {
        padding: 10px 20px!important;
        font-size: 18px!important;
    }

    .header-buttons .signup {
        border: var(--highlight-two) 2px solid ;
    }
}
   

    @media (max-width: 768px) {
        video {
        height: calc(50% - 20px);
        aspect-ratio: 16 / 9;
    }
        header {
            position: sticky; /* Ensures it sticks to the top */
            top: 0;
            background: var(--primary-color); /* Add solid background */
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            padding: 0;
        }
    
        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 5% 10% 5% 10%;
        }
    
        /* Logo positioned to the left */
        .logo {
            order: 1; /* Moves the logo to the first position */
        }
    
        .logo img {
            height: 50px; /* Smaller logo for mobile */
        }
    
        /* Hide the desktop menu and show the hamburger menu */
        .menu {
            display: none; /* Hide full menu on mobile */
        }
    
        .hamburger {
            display: block; /* Show the hamburger icon */
            font-size: 25px;
            color: var(--secondary-color);
            cursor: pointer;
            order: 2; /* Appears to the right of the logo */
        }
    
        /* Styles for mobile cascading menu */
        .mobile-menu {
            display: none; /* Initially hidden */
            position: absolute;
            top: 75px; /* Adjust to be below the header */
            right: 5px;
            background: var(--primary-color);
            padding: 10px;
            width: calc(100% - 20px); /* Full width minus padding */
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        }
    
        .mobile-menu a {
            display: block;
            padding: 10px;
            color: var(--highlight-two);
            text-decoration: none;
            font-weight: bold;
            font-style: italic;
        }
    
        .mobile-menu a:hover {
            background: rgba(255, 255, 255, 0.1);
        }
    
        /* Toggle menu visibility */
        .mobile-menu.active {
            display: block;
        }
    
        /* Hide header buttons on mobile */
        .header-buttons {
            display: none !important; /* Hides buttons for the mobile view */
        }
    
        .hero {
            padding: 28% 0 33% 0% !important;
        }

        .hero-content {
            padding: 5% !important;
        }
        
       
        
        .hero-content h4 {
            margin: 10% 0% 0% 0% !important;
            font-size: 20px !important;
        }
        
        .countdown-timer {
            margin: 0% !important;
        }
        
        .time-box {
            text-align: center;
        }
        
        
        
        .time-box label {
            font-size: 0.9rem;
            color: var(--highlight-two);
            margin-top: 5px;
            display: block;
        }
        
        .colon {
            font-size: 8vw !important;
            margin: 3% 3% 10% !important;
        }
        
        .time-box {
            text-align: center;
        }
        
        .time-box span {
        font-size: 40px !important;
        }
        
        .time-box label {
            font-size: 3vw !important;
        }
        
        .cta-button {
            font-size: 18px !important;
            line-height: 1em;
            padding-top: 16px !important;
            padding-right: 25px !important;
            padding-bottom: 16px !important;
            padding-left: 25px !important;
            margin-top: 10% !important;
            margin-bottom: 0% !important;
        }
        .sponsor-image {
            max-width: 40px !important;
        }
        

    }
    
    /* Right buttons */
    .header-buttons {
        flex: 1;
        display: flex;
        justify-content: flex-end;
        gap: 10px;
    }
    
    .header-buttons button {
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    line-height: 1em;
        background: transparent; /* Matches $siteColours['secondary'] */
        color: var(--highlight-two);
        border: none;
        padding: 15px 30px;
        cursor: pointer;
        border-radius: 10px;
        transition: background-color 0.3s ease;
        font-size: 20px;
    }

    .header-buttons .signup {
        border: var(--highlight-two) 3px solid ;
    }
    
    .header-buttons .signup:hover {
        border: var(--secondary-color) 3px solid ;
    }    
    
     footer {
        background: var(--primary-color) !important; /* Matches $siteColours['primary'] */
        padding: 10px;
        text-align: center;
        color: var(--highlight-two) !important;
    }
    
    header nav a {
        margin: 0 10px;
        color: var(--highlight-two);
        text-decoration: none;
    }
    
    .hero {
        background-image: var(--hero-image-url)  !important;
        background-size: cover;
        color: var(--highlight-two);
        padding: 50px;
        text-align: center;
        position: relative;
    }
    
    .hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--hero-overlay); /* Matches backgroundHeroOverlayColour */
        z-index: 0;
    }
    
    .hero-content {
        position: relative;
        z-index: 1;
        padding: 5%;
    }
    
    .hero-content h1 {
        margin: 0;
        padding-top: 7%;
        font-weight: 800;
        font-style: italic;
        text-transform: uppercase;
        font-size: 3.5vw;
        color: var(--highlight-two) !important;
        text-align: center;
        text-shadow: 0em 0.1em 0.1em rgba(0, 0, 0, 2.4);
    }
    
    .hero-content h4 {
        color: var(--secondary-color);
        margin: 20px;
        font-weight: 700;
        font-style: italic;
        text-transform: uppercase;
        text-decoration-style: wavy;
        -webkit-text-decoration-color: var(--secondary-color);
        text-decoration-color: var(--secondary-color);
        font-size: 24px;
        text-align: center;
        text-shadow: 0em 0.1em 0.1em rgba(0, 0, 0, 0.4);
    }
    
    .countdown-timer {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0px;
        margin: 15px;
    }
    
    .time-box {
        text-align: center;
    }
    
    
    .time-box label {
        font-size: 0.9rem;
        color: var(--highlight-two);
        margin-top: 5px;
        display: block;
    }
    
    .colon {
        font-size: 50px;
    font-weight: bold;
    margin: 0px 40px 26px;
    }
    
    .time-box {
        text-align: center;
    }
    
    .time-box span {
    font-weight: 900 !important;
    font-size: 3.5vw ;
        display: block;
    }
    
    .time-box label {
        margin-top: 5px;
        color: var(--highlight-two);
        font-size: 14px;
        padding-bottom: 2%;
        font-weight: 400;
    }
    .cta-button:hover {
        color: var(--primary-color); 
    }
    .cta-button {
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    font-size: 24px;
    line-height: 1em;
    background-color: var(--secondary-color);
    border-radius: 12px;
    overflow: hidden;
    padding-top: 18px ;
    padding-right: 30px ;
    padding-bottom: 18px ;
    padding-left: 30px ;
    margin-right: auto !important;
    margin-left: auto !important;
    width: fit-content;    
        color: var(--highlight-two);
        margin-top: 20px;
        cursor: pointer;
        border: 0;
        margin-bottom: 3%;
    }
    .cta1-button {
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    font-size: 20px;
    line-height: 1em;
    background-color: var(--primary-color);
    border-radius: 12px;
    overflow: hidden;
    padding-top: 16px !important;
    padding-right: 30px !important;
    padding-bottom: 16px !important;
    padding-left: 30px !important;
    margin-right: auto !important;
    margin-left: auto !important;
    width: fit-content;    
        color: var(--highlight-two);
        margin-top: 20px;
        cursor: pointer;
        border: 0;
        margin-bottom: 3%;
        cursor: pointer;
    }

    
   /* Block 1 Styling */
    /* Block 1 Styling */
.block1 {
        padding: 4%;
        background: var(--highlight-two);
    }
    
    .block1-container {
        display: flex;
        align-items: center;
    }
    
    .text-content {
        flex: 1;
        text-align: left;
        padding-left: 6%;
    }
    
    .text-content h2 {
        margin: 0;
        font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    font-size: 2.5vw;
        color: var(--primary-color); /* Matches $siteColours['secondary'] */
    }
    
    .text-content h3 {
        font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    font-size: 28px;
    color: var(--secondary-color) !important;
margin: 0;    }
    
    .text-content p {
        font-size: 17px;
        font-weight: 400;
        line-height: 1.5;
        margin-bottom: 5px;
    }
    
    .image-content {
        flex: 1;
        padding-right: 6%;
        text-align: center;
    }
    
    .image-content img {
        max-width: 75%;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

/* Slideshow Container */
.slideshow-container {
        position: relative;
        width: 100%;
        max-width: 100%;
        margin: auto;
        overflow: hidden;
    }
    
    .slide {
        display: none;
    }
    
    .slide img {
        width: 100%;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    
    /* Navigation Buttons */
    .prev, .next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 200px;
        height: 200px;
        background-color: transparent;
        color: var(--highlight-two);
        border: none;
        border-radius: 50%;
        cursor: pointer;
        z-index: 1;
        font-size: 35px;
        font-weight: 900;
    }
    
    .prev {
        left: 10px;
    }
    
    .next {
        right: 10px;
    }
    
  
    
    /* Dots */
    .dots {
        text-align: center;
    }
    
    .dot {
        display: inline-block;
        width: 15px;
        height: 15px;
        margin: 0 5px;
        background-color: var(--secondary-color);
        border-radius: 50%;
        cursor: pointer;
        transition: background-color 0.3s;
    }
    
    .dot.active {
        background-color: var(--primary-color);
    }
    /* Block 1 Responsive Layout */
@media (max-width: 768px) {
    .hero-content h1 {
        margin: 0;
        padding-top: 2%;
        font-size: 38px;
    }
        .block1-container {
            flex-direction: column;
            text-align: center;
        }
    
        .text-content {
            padding: 10% 5% 5% 5%;
        margin-bottom: 20px;
        text-align: left;
        }
    
        .text-content h2 {
            font-size: 36px;
        }
        .text-content h3 {
            font-size: 16px;
            margin: 0;
        }
        .text-content p {
            font-size: 14px;
            margin-bottom: 5px;
        }
        .carousel-item h4 {
            font-size: 22px!important;
            color: var(--highlight-two);
            margin-bottom: 10px;
        }
        .carousel-item p {
            font-size: 14px!important;
            color: var(--highlight-two);
        }
        .carousel-item2 h4 {
            font-size: 22px!important;
            color: var(--highlight-two);
            margin-bottom: 10px;
        }
        .carousel-item2 p {
            font-size: 14px!important;
            color: var(--highlight-two);
        }
        .image-content {
            padding-bottom: 10%;
            padding-right: 0;
        }   
        .slideshow-container {
            max-width: 100%; /* Allow the slideshow to stretch fully */
        }
    
        .prev, .next {
            display: none;
        }
    
        .dots {
            margin-top: 10px;
        }
        .dot {
            width: 15px;
            height: 15px;
            margin: 0 5px;
        }
        .dots2 {
            margin-top: 10px;
        }
        .dot2 {
            width: 15px;
            height: 15px;
            margin: 0 5px;
        }
        #block3-desktop {
            display:none;
        }
        #block3-mobile {
            display:inline!important;
        }
    }
    

    .carousel-section {
        background: var(--primary-color);
        padding-left: 4%;
        padding-top: 4%;
        padding-bottom: 5%;
    }
    
    .carousel-titles {
        justify-content: space-between;
        align-items: center;
            }
            .carousel-subtitles {
        justify-content: space-between;
        align-items: center;
            }
    .stroke {
        position: relative;
        margin-bottom: 40px;
    }
    .carousel-titles h1 {
        margin: 0;
        font-weight: 800;
    
        text-transform: uppercase;
        font-size: 180px;
        color: var(--secondary-color);
    }
    
    .carousel-titles h2 {
        margin: 0;
    font-weight: 800;
    
    text-transform: uppercase;
    font-size: 85px;
    -webkit-text-stroke: 2px var(--highlight-two);
    -webkit-text-fill-color: transparent;
    position: absolute;
    right: 512px;
    bottom: -25px;
    text-align: center;
    }
    
    .carousel-titles h3 {
        margin: 0;
        font-weight: 700;
        letter-spacing: -2px;
        text-transform: uppercase;
        font-size: 50px;
        color: var(--highlight-two) !important;
        display: flex;
    justify-content: center;
    }
    .carousel-titles h4 {
        margin: 0;
        font-weight: 100;
        font-size: 30px;
        color: var(--highlight-two) !important;
        display: flex;
    justify-content: center;
    letter-spacing: 0.5px;
    }
    .carousel-subtitles h4 {
        margin: 0;
        font-weight: 100;
        font-size: 20px;
        color: var(--highlight-two) !important;
        display: flex;
    justify-content: center;
    letter-spacing: 0.5px;
    margin-top: 20px;
    }
    .carousel-subtitles a {
        margin: 0;
        font-weight: 100;
        font-size: 20px;
        color: var(--highlight-two) !important;
        display: flex;
    justify-content: center;
    letter-spacing: 0.5px;
    margin-left: 4px;
    }
    
    /* Carousel Controls */
    .carousel-controls {
        display: grid;

    align-items: center;
    position: absolute;
    /* flex-wrap: wrap; */
    left: 10%;
    margin-top: 335px;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
        background-color: var(--primary-color);
        color: var(--highlight-two);
        border: none;
        border-radius: 5px; /* Slight rounding for modern style */
        font-size: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        transition: background-color 0.3s;
    }
    
    .carousel-arrow:hover {
        
        color: var(--highlight-two);
    }
    /* Carousel Wrapper and Items */
    .carousel-wrapper {
        position: relative;
        width: calc((var(--item-width) + var(--gap)) * var(--visible-items));
        margin: auto;
        display: flex;
        align-items: center;
        
    }
    .carousel-buttons {
        width: calc((var(--item-width) + var(--gap)) * var(--visible-items));
        position: absolute;
    }
    .carousel {
        display: flex;
        gap: 40px;
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
        flex: 1;
        padding: 2%;
        padding-bottom: 7%;
    }
    .carousel::-webkit-scrollbar {
        display:none;
    }
    .carousel-item {
        position: relative;
        width: 310px;
        height: 380px;
        flex-shrink: 0;
        text-align: center;
    }
    
    .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .carousel-section2 {
        background: var(--primary-color);
        padding-left: 4%;
        padding-top: 4%;
        padding-bottom: 5%;
    }
    
    .carousel-titles2 {
        justify-content: space-between;
        align-items: center;
            }
            .carousel-subtitles2 {
        justify-content: space-between;
        align-items: center;
            }
    .stroke2 {
        position: relative;
        margin-bottom: 40px;
    }
    .carousel-titles2 h1 {
        margin: 0;
        font-weight: 800;
    
        text-transform: uppercase;
        font-size: 180px;
        color: var(--secondary-color);
    }
    
    .carousel-titles2 h2 {
        margin: 0;
    font-weight: 800;
    
    text-transform: uppercase;
    font-size: 85px;
    -webkit-text-stroke: 2px var(--highlight-two);
    -webkit-text-fill-color: transparent;
    position: absolute;
    right: 512px;
    bottom: -25px;
    text-align: center;
    }
    
    .carousel-titles2 h3 {
        margin: 0;
        font-weight: 700;
        letter-spacing: -2px;
        text-transform: uppercase;
        font-size: 50px;
        color: var(--highlight-two) !important;
        display: flex;
    justify-content: center;
    }
    .carousel-titles2 h4 {
        margin: 0;
        font-weight: 100;
        font-size: 30px;
        color: var(--highlight-two) !important;
        display: flex;
    justify-content: center;
    letter-spacing: 0.5px;
    }
    .carousel-subtitles2 h4 {
        margin: 0;
        font-weight: 100;
        font-size: 20px;
        color: var(--highlight-two) !important;
        display: flex;
    justify-content: center;
    letter-spacing: 0.5px;
    margin-top: 20px;
    }
    .carousel-subtitles2 a {
        margin: 0;
        font-weight: 100;
        font-size: 20px;
        color: var(--highlight-two) !important;
        display: flex;
    justify-content: center;
    letter-spacing: 0.5px;
    margin-left: 4px;
    }
    
    /* Carousel Controls */
    .carousel-controls2 {
        display: grid;

    align-items: center;
    position: absolute;
    /* flex-wrap: wrap; */
    left: 10%;
    margin-top: 335px;
    }
    
    .carousel-arrow2 {
        width: 40px;
        height: 40px;
        background-color: var(--primary-color);
        color: var(--highlight-two);
        border: none;
        border-radius: 5px; /* Slight rounding for modern style */
        font-size: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        transition: background-color 0.3s;
    }
    
    .carousel-arrow2:hover {
        
        color: var(--highlight-two);
    }
    /* Carousel Wrapper and Items */
    .carousel-wrapper2 {
        position: relative;
        width: calc((var(--item-width) + var(--gap)) * var(--visible-itemstestimonial));
        margin: auto;
        display: flex;
        align-items: center;
        
    }
    .carousel-buttons2 {
        width: calc((var(--item-width) + var(--gap)) * var(--visible-itemstestimonial));
        position: absolute;
    }
    .carousel2 {
        display: flex;
        gap: 40px;
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
        flex: 1;
        padding: 2%;
        padding-bottom: 7%;
    }
    .carousel2::-webkit-scrollbar {
        display:none;
    }
    .carousel-item2 {
        position: relative;
        width: 310px;
        height: 380px;
        flex-shrink: 0;
        text-align: center;
    }
    
    .carousel-item2 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .overlay {
        position: absolute;
        bottom: 0;
        top: 0;
        width: 100%;
        
    }
    .overlay2 {
        position: absolute;
        bottom: 0;
        top: 0;
        width: 100%;
        
    }
    .overlay-svg {
        position: absolute;
        top: -1px;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .overlay-content {
        position: absolute;
        bottom: 10px;
        left: 0;
        right: 0;
        padding: 10px;
        color: var(--secondary-color);
        text-align: center;
        margin-bottom: -15px;
    }
    
    .carousel-arrow {
        background: var(--primary-color);
    border: none;
    color: var(--highlight-two);
    font-size: 40px;
    font-weight: 900;
    cursor: pointer;
    padding: 8px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    }
    
    .left-arrow {
        left: -50px;
    }
    
    .right-arrow {
        right: -50px;
    }
    .carousel-arrow2 {
        background: var(--primary-color);
    border: none;
    color: var(--highlight-two);
    font-size: 40px;
    font-weight: 900;
    cursor: pointer;
    padding: 8px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    }
    
    .left-arrow2 {
        left: -50px;
    }
    
    .right-arrow2 {
        right: -50px;
    }
    @media (min-width: 1500px) {
        :root {
            --visible-items: var(--max-prizes);
            --visible-itemstestimonial : var(--max-testimonials);
        }
        .video-container video {
            max-height: 600px!important;
            }
        .mission-container {
            height: 600px!important;    
            } 
}
    @media (max-width: 1200px) {
        :root {
            --visible-items: 2;
            --visible-itemstestimonial : 2;
        }
    }
    
    
     @media (max-width: 768px) {
        :root {
            --visible-items: 1;
            --item-width: 290px;
            --visible-itemstestimonial : 1;
        }
        .left-arrow {
            left: -25px;
        }
        
        .right-arrow {
            right: -25px;
        }

        .carousel-arrow {
            font-size: 30px;
        }
        .left-arrow2 {
            left: -25px;
        }
        
        .right-arrow2 {
            right: -25px;
        }

        .carousel-arrow2 {
            font-size: 30px;
        }
        footer .logo img{
            display:none;
        }
    }  
    @media (max-width: 900px) {
        .carousel-item {
            min-width: 45%;
        }
        .carousel-item2 {
            min-width: 45%;
        }
    }
    
    
    
    .carousel-dots {
            position: absolute;
    display: flex;
    justify-content: center;
    margin-top: 15px;
    left: 35%;
    top: 93%;
    display:none;
}
.carousel-dots2 {
            position: absolute;
    display: flex;
    justify-content: center;
    margin-top: 15px;
    left: 35%;
    top: 93%;
    display:none;
}
.dot {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: var(--primary-color);; /* Default color */
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: var(--primary-color); /* Active color */
}
.dot2 {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: var(--primary-color);; /* Default color */
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot2.active {
    background-color: var(--primary-color); /* Active color */
}
    .carousel-item h4 {
        font-size: 24px;
    color: var(--primary-color);
    margin: 0;
    font-style: italic;
    font-weight: bold;
    }
    
    .carousel-item p {
        font-size: 18px;
        color: var(--primary-color);
        font-weight: bold;
    }
    .carousel-item2 h4 {
        font-size: 24px;
    color: var(--primary-color);
    margin: 0;
    font-style: italic;
    font-weight: bold;
    }
    
    .carousel-item2 p {
        font-size: 18px;
        color: var(--primary-color);
        font-weight: bold;
    }
         .prize-signup {
    background-color: var(--highlight-two);
    font-family: var(--button-font);
    color: var(--primary-color);
    height: 50px;
    text-align: center;
    align-content: center;
}

.prize-signup a {
    text-decoration: none;
    font-family: var(--button-font);
    color: var(--primary-color); 
    font-weight:bold;
}
    
    /* Mobile View */
    @media (max-width: 768px) {
       .carousel-dots {
            display:block !important;
       }
       .carousel-buttons{
           display:none;   
       }
       .carousel-dots2 {
            display:block !important;
       }
       .carousel-buttons2{
           display:none;   
       }
       .dot {
   width: 12px;
   height: 12px;
   margin: 0 5px;
   background-color: var(--secondary-color);; /* Default color */
   border-radius: 50%;
   cursor: pointer;
   transition: background-color 0.3s;
}

.dot.active {
   background-color: var(--highlight-two); /* Active color */
}
.dot2 {
   width: 12px;
   height: 12px;
   margin: 0 5px;
   background-color: var(--secondary-color);; /* Default color */
   border-radius: 50%;
   cursor: pointer;
   transition: background-color 0.3s;
}

.dot2.active {
   background-color: var(--highlight-two); /* Active color */
}
        .carousel-item {
            min-width: 80%; /* Show 1 item on mobile */
            height: 380px;
        }
        .carousel-titles h2 {
            margin: 0;
            font-size: 36px;
        }
        .carousel-titles h3 {
            margin: 0;
            font-size: 22px;
        }
        .carousel-titles h4 {
            margin: 0;
            font-size: 18px;
        }
        .carousel-subtitles h4 {
            margin: 0;
            font-size: 14px;
            margin-top: 20px;
        }
        .carousel-subtitles a {
            font-size: 14px;
        }
        .carousel-titles {
            flex-direction: column;
            align-items: flex-start;
        }
    
        .carousel-controls {
            display: none;
        }
        .carousel {
            padding: 30px 0px 80px 0px;
            gap:20px !important;
        }

        .intro-text h2 {
            margin: 0 !important;
            font-weight: 800;
            font-size: 30px !important;
            padding-top: 5%;
        }
        .intro-text h3 {
            font-size: 30px;
            line-height: 1;
        }
        .intro-text p {
            font-size: 14px !important;
            line-height: 1.2;
            padding: 3% 2% 10% 2% !important;
            font-weight: 400;
            line-height: 1.7em !important;
        }
        .packages-buttons {
            margin: 20px auto;
            gap: 15px;
        }
        .toggle-btn {
            padding: 15px 20px !important;
            font-weight: 700 !important;
            font-size: 16px !important;
            
        }
        
        .toggle-btn.active {
            background-color: var(--primary-color);
            color: var(--highlight-two);
            opacity: 1; /* Full opacity for the active button */
        }
        .sponsors {
            background-color: var(--secondary-color);
            display: flex;
            justify-content: space-around;
            padding: 4%!important;
        }
    }
    
    
    
    
    
    /* Center Buttons at the Top */
.packages-buttons {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 20px auto;
        gap: 10px;
        text-align: center;
    }
    
    /* Packages Container Styling */
    .packages-container {
        display: flex;
        justify-content: space-around;
        margin: 20px 0;
        flex-wrap: wrap;
        gap: 20px;
    }
    
   /* Toggle Button Styling */
.toggle-btn {
    width: 270px;
        padding: 13px 41px;
        border: 2px solid var(--primary-color);
        background-color: var(--primary-color);
        color: var(--highlight-two);
        border-radius: 10px;
        font-weight: 400;
        font-size: 19px;
        cursor: pointer;
        transition: all 0.3s ease;
        opacity: 0.6; /* Default lower opacity for inactive buttons */
    }
    
    .toggle-btn.active {
        background-color: var(--primary-color);
        color: var(--highlight-two);
        opacity: 1; /* Full opacity for the active button */
    }
    
    .toggle-btn:hover {
        background-color: var(--secondary-color);
        color: var(--text-color);
        opacity: 1; /* Full opacity on hover */
    }
    
    
      /* Default styling for packages container */
.packages {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        padding: 0%;
        overflow: hidden; /* Hide items outside the visible area */
    }
    
/* Package Container */
.package {
        position: relative;
        border: 2px solid var(--primary-color); /* Border color */
        padding: 1% 2% 3% 1%;
        text-align: left;
        width: 18%; /* Fixed width for better control */
        height: 350px; /* Height of the "ticket" */
        background-color: var(--primary-color);
        border-radius: 15px; /* Rounded corners */
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    /* Dotted line */
    .package hr {
        border: none;
        border-top: 4px dotted var(--secondary-color); /* Dotted line */
        width: 100%;
        position: absolute;
        top: 60%;
        z-index: 0;
        margin:0;

    }
    
    /* Cutting edge (circle) effect */
    .package::before, .package::after {
        content: '';
        position: absolute;
        width: 70px; /* Size of the circle */
        height: 70px;
        background-color: var(--secondary-color);
        border-radius: 50%;
        z-index: 1;
    }
    
    .package::before {
        top: 60%;
        left: -37px; /* Position on the left side, half the width to center it */
        transform: translateY(-50%); /* Center vertically */
    }
    
    .package::after {
        top: 60%;
        right: -37px; /* Position on the right side, half the width to center it */
        transform: translateY(-50%); /* Center vertically */
    }
    
    
    /* Title Styling */
    .package h2 {
        text-transform: uppercase;
        font-size: 40px;
        color: var(--secondary-color);
        margin-bottom: 15px;
        font-weight: 800;
        margin: 0;
    }
    
    /* Price Styling */
    .package .price {
        font-size: 40px;
        font-weight: 800;
        color: var(--highlight-two);
        margin: 0;
    }
    .package .includes , .package span {
        font-size: 16px;
        color: var(--highlight-two);
        margin: 0;
        font-weight: 600;
    }
    /* Button Styling */
    .package button {
        background-color: var(--primary-color);
        padding: 10px 20px;
        border: 0;
        border-radius: 25px; /* Rounded button */
        
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    font-size: 24px;
    color: var(--highlight-two);
    transition: color 300ms ease 0ms;
    position: absolute;
    left: 0;
    top: 80%;
    width: 100%;
    cursor: pointer;
}
@media (min-width: 769px) and (max-width: 1178px) {
    .hero-content h1 {
        font-size: 48px;
    }
    .sponsors {
        background-color: var(--secondary-color);
        display: flex
    ;
        justify-content: space-around;
        padding: 3%;
    }
    .packages {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Two columns */
        gap: 20px; /* Space between items */
        padding: 20px;
    }

    .package {
        width: auto; /* Allow flexibility */
        height: auto; /* Adjust height dynamically */
        padding: 4% 0% 40% 4%;
    }

    /* Adjust title, price, and other styles for better appearance */
    .package h2 {
        font-size: 32px;
    }

    .package .price {
        font-size: 24px;
    }

    .package .includes {
        font-size: 14px;
    }

    .package button {
        font-size: 20px;
        padding: 10px 15px;
    }
    #packages-container.one-off  {
    grid-template-columns: 1fr;
    margin-bottom:50px;
}
}

    
    /* Slideshow-specific styles for mobile */
    @media (max-width: 768px) {
        .mostly-customized-scrollbar {
                        /* display: block; */
        /* width: 10em; */
        overflow: auto;
        /* height: 2em; */
        padding: 1em;
        margin: 1em auto;
        /* outline: 2px dashed cornflowerblue; */
              }
              
              /* Demonstrate a "mostly customized" scrollbar
               * (won't be visible otherwise if width/height is specified) */
              .mostly-customized-scrollbar::-webkit-scrollbar {
                width: 6px;
                height: 8px;
                background-color: #616691; /* or add it to the track */
                border-radius: 5%;
              }
              
              /* Add a thumb */
              .mostly-customized-scrollbar::-webkit-scrollbar-thumb {
                background: var(--highlight-one);
                border-radius: 5%;
              }
              /* Cutting edge (circle) effect */
    .package::before, .package::after {
        content: '';
        position: absolute;
        width: 60px; /* Size of the circle */
        height: 60px;
        background-color: var(--secondary-color);
        border-radius: 50%;
        z-index: 1;
    }
    
    .package::before {
        top: 70%;
        left: -37px; /* Position on the left side, half the width to center it */
        transform: translateY(-50%); /* Center vertically */
    }
    
    .package::after {
        top: 70%;
        right: -37px; /* Position on the right side, half the width to center it */
        transform: translateY(-50%); /* Center vertically */
    }
        .packages {
                flex-wrap: nowrap;
                scroll-snap-type: x mandatory;
                overflow-x: auto;
                transition: transform 0.3s ease-in-out;
                gap: 12px;
                padding: 0% 8% 10% 2%;
                margin-top: 10%;
                justify-content: normal;
        }
    
        .package {
            flex: 0 0 80%;
        scroll-snap-align: center;
        padding: 2% 1% 30% 1% !important;
        height: 300px;
        }
    /* Title Styling */
    .package h2 {
        text-transform: uppercase;
        font-size: 40px;
        color: var(--secondary-color);
        margin-bottom: 15px;
        font-weight: 800;
        margin: 0;
        margin-left: 5%;
    }
    .package hr {
        width: 100%;
        top: calc(70% - 3px);
        position: absolute;
    }
    /* Price Styling */
    .package .price {
        font-size: 40px;
        font-weight: 800;
        color: var(--highlight-two);
        margin: 0;
        margin-bottom: 6%;
        margin-left: 5%;
    }
    .package .includes  {
        font-size: 14px;
        color: var(--highlight-two);
        margin: 0;
        margin-left: 5%;
        font-weight: 600;
    }
     .package span {
        font-size: 14px;
        color: var(--highlight-two);
        margin: 0;
        font-weight: 600;
    }
    /* Button Styling */
    .package button {
        padding: 0;
        
    }
        .packages-slider {
            position: relative;
        }
    
        .slider-btn {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                background: rgba(255, 255, 255, 0.8);
                color: var(--primary-color);
                border: none;
                border-radius: 50%;
                width: 50px;
                height: 50px;
                font-size: 24px;
                cursor: pointer;
                z-index: 10;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
                transition: background 0.3s ease, transform 0.3s ease;
            }
            
            .slider-btn:hover {
                background: var(--primary-color);
                color: var(--highlight-two);
                transform: scale(1.1);
            }
    
        .slider-btn.prev {
            left: 10px;
        }
    
        .slider-btn.next {
            right: 10px;
        }
        .mission-statement h1 {
            font-size: 43px !important;
            text-align: center;
            margin: 0;
            margin-top: 5% !important;
        }
        .mission-statement {
            padding: 25px 18px !important;
        margin-bottom: 0px !important;
        }
        .halfbluewhite {
            background: linear-gradient(to bottom, var(--secondary-color) 55%, var(--highlight-two) 45%) !important;
        }
        .newsletter p {
            font-size: 1.1rem!important;
            margin-bottom: 15px;
            font-weight: bold;
            font-style: italic;
        }
        .newsletter {
            padding: 0% 10% 0% 10%;
            justify-items: anchor-center;
        }
    }
    
    /* Intro Text Styling */
.intro-text {
        text-align: center;
        
        border-radius: 15px; /* Rounded corners */
        
    }

    .intro-text hr {
        border: none; /* Remove the default border */
        border-top: 2px solid rgba(255, 255, 255, 0.5); /* Semi-transparent white */
        width: 80%; /* Adjust the width */
        border-radius: 5px; /* Rounded edges for a smooth look */
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add a subtle shadow for depth */
    }
    
    
    .intro-text h2 {
        margin: 0 !important;
        font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    font-size: 3.5vw;
        color: var(--primary-color);
        font-weight: bold;
    }
    
    .intro-text h3 {
        font-size: 2rem;
    color: var(--highlight-two);
    margin: 0 !important;
    font-style: italic;
    text-transform: uppercase;
    }
    
    .intro-text p {
        font-size: 17px;
        color: var(--highlight-one);
        line-height: 1.2;
        max-width: 900px;
        margin: 1% auto;
        padding-bottom: 2%;
        font-weight: 400;
    }
    .sponsors {
        background-color: var(--secondary-color) ;
        display: flex;
        justify-content: space-around;
        padding: 1%;
    }
    
    .sponsor-image {
        max-width: 70px;
    }
    /* Mission Statement Section Styling */
.mission-statement {
        text-align: center;
        padding: 50px 20px;
        
        margin-bottom: 30px;
        border-radius: 15px;
        
    }
    .mission-statement h1 {
    font-style: italic;
    text-transform: uppercase;
    font-size: 3vw;
    color: var(--primary-color) !important;
    text-align: center;
    margin: 0;
    }
    .mission-statement h2 {
        font-style: italic;
        text-transform: uppercase;
        font-size: 40px;
        text-align: center;
        color: var(--primary-color);
        font-weight: bold;
        margin: 0;
    }
    
    .mission-statement p {
        font-size: 1.2rem;
        color: var(--highlight-one);
        line-height: 1.6;
        max-width: 900px;
        margin: 0 auto;
    }
    
    /* Video Container Styling */
    .video-container {
        margin-top: 30px;
        text-align: center;
    }
    
    .asset-image {
        margin-top: 30px;
        text-align: center;
    }
    
    .asset-image img {
        max-width: 100%;
        max-height: 400px;
        object-fit: cover;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
        .mission-statement h2 {
            font-size: 26px; /* Adjust font size for mobile */
            line-height: 1;
        }
    
        .mission-statement p {
            font-size: 1rem;
        }
    
        .video-container video {
            width: 100%;
           
        }
    }
    
    /* Footer Styling */
footer {
        background-color: var(--highlight-two);
        padding: 40px 20px;
        text-align: center;
        color: var(--primary-color);
    }
    
    /* Footer Container Layout */
    .footer-container {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        max-width: 1500px;
        margin: 0 auto;
    }
    
    /* Left and Right Sections */
    .footer-left,
    .footer-right {
        width: 25%;
        text-align: left;
    }
    
    .footer-right {
        text-align: right;
    }
    
    /* Middle Section */
    .footer-middle {
        width: 50%;
        text-align: center;
    }
    
    /* Section Titles (Quick Links & Policies) */
    .section-title {
        color: var(--secondary-color);
    font-style: italic;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    }
    
    .footer-left ul, .footer-right ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
    }
    
    .footer-left li, .footer-right li {
        margin-bottom: 10px;
    }
    
    /* Links */
.footer-left a,
.footer-right a {
        text-decoration: none;
        color: var(--highlight-two);
        font-size: 19px;
}

.footer-left a:hover,
.footer-right a:hover {
    color: var(--secondary-color);
}

/* Logo */
.footer-middle .logo img {
    margin-bottom: 20px;
    height: 88px;
    
}
    
.newsletter p {
        font-size: 1.4rem; /* Bigger text */
        margin-bottom: 15px;
        font-weight: bold;
        font-style: italic;
    }
    
    /* Newsletter Form Styling */
    .newsletter-form {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--primary-color); /* Dark blue background */
        
    }
    
    .newsletter-form input {
        padding: 15px;
    font-size: 1rem;
    width: 90%;
    border: 5px solid var(--highlight-two);
    border-radius: 25px 0 0 25px;
    color: var(--highlight-two);
    background-color: var(--primary-color);
    outline: none;
    }
    
    .newsletter-form button {
        padding: 15px 20px;
    font-size: 1rem;
    background-color: var(--secondary-color);
    color: var(--highlight-two);
    border: 5px solid var(--highlight-two);
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    font-weight: bold;
    font-style: italic;
    border-left: none;
    }
    
    .newsletter-form button:hover {
        background-color: var(--primary-color); /* Darker blue on hover */
        color: var(--highlight-two);
    }
    /* Powered By Section */
.powered-logo {
        margin-top: 30px;
        max-width: 120px;
    }
    
    .powered-text {
        font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
    color: var(--highlight-two);
    font-style: italic;
    }
    footer p {
        margin: 0;
        font-size: 1.1rem;
        font-weight: bold;
        color: var(--highlight-two);
    }
    
    .copyright {
        justify-content: space-between; /* Distribute the two paragraphs with space between */
        align-items: center; /* Vertically center the content */
        padding: 10px 20px;
        width: 100%; /* Ensure it takes full width */
        box-sizing: border-box; /* Ensure padding doesn't affect the width */
    }
    
    .copyright p {
        margin: 0;
        font-size: 1.1rem;
        font-weight: bold;
        color: var(--highlight-two);
    }
    
    .copyright p:first-of-type {
        flex: 1; /* Take up remaining space */
        text-align: center; /* Center the first paragraph */
    }
    
    .copyright p:last-of-type {
        font-size: 0.9rem;
        font-weight: normal;
        text-align: right; /* Align the second paragraph to the right */
    }
    
    /* Mobile Styles */
    @media (max-width: 768px) {
        .copyright {
            display: block; /* Stack the paragraphs vertically */
            text-align: center; /* Center both paragraphs */
            padding: 10px; /* Add padding for spacing */
        }
    
        .copyright p {
            display: block; /* Ensure paragraphs are stacked */
            margin: 10px 0; /* Add space between paragraphs */
            font-size: 1rem; /* Adjust font size for readability */
        }
    
        .copyright p:first-of-type {
            text-align: center; /* Keep the first paragraph centered */
        }
    
        .copyright p:last-of-type {
            font-size: 0.9rem; /* Make second paragraph smaller */
            font-weight: normal;
            text-align: center; /* Center the second paragraph too */
        }
    }
    
    
    footer a {

        color: var(--highlight-two);
    }
    
   /* Responsive Design */
@media (max-width: 768px) {

    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-middle {
        order: 1; /* Show this section first */
        width: 100%;
    }

    .footer-left {
        order: 2; /* Show this section second */
        width: 100%;
        text-align: left;
        margin-bottom: 20px;
        padding-left: 10%;
    }

    .footer-right {
        order: 3; /* Show this section third */
        width: 100%;
        text-align: left;
        margin-bottom: 20px;
        padding-left: 10%;
    }

    .newsletter-form {
        flex-direction: column;
        margin-bottom: 5%;
    }

    .newsletter-form input {
        width: 100%;
        margin-bottom: 10px;
        border: 3px solid var(--highlight-two) !important;
        border-radius: 0%;
        background: var(--highlight-two);
        margin: 4% 2% 12% 2%;
        color: var(--highlight-one);
    }

    .newsletter-form button {
        border-radius: 0px;
        border: 0;
        background-color: #4e4e4e;
    }

    .footer-left a, .footer-right a {
        text-decoration: none;
        color: var(--highlight-two);
        font-size: 18px;
    }
    }

    .halfbluewhite {
        background: linear-gradient(to bottom, var(--secondary-color) 50%, var(--highlight-two) 50%);
        padding: 20px;
    }
    
    
    /* Block 1 Styling */
.block3 {
        padding-left: 10%;
    padding-right: 10%;
        background: var(--highlight-two);
        padding-bottom: 5%;
    }
    
    .block3-container {
        display: flex;
        align-items: center;
        gap: 30px;
    }
    
    .block3 .text-content {
        flex: 1;
        text-align: left;
        padding-left: 7%;
    }
    
    .block3 .text-content h2 {
        font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    font-size: 2.5vw;
        color: var(--primary-color); /* Matches $siteColours['secondary'] */
        margin-bottom: 10px;
    }
    
    .block3 .text-content h3 {
        font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    font-size: 28px;
    color: var(--secondary-color) !important;
        margin-bottom: 20px;
        margin: 0;
    }
    
    .block3 .text-content p {
        font-style: normal;
        font-size: 17px;
        font-weight: 400;
        line-height: 1.5;
        margin-bottom: 5px;
        color: rgb(32, 32, 32);
        margin: 1% auto;
        padding-bottom: 2%;
    }
    
    .block3 .image-content {
        flex: 1;
        padding-right: 5%;
    }
    
    .block3 .image-content img {
        max-width: 90%;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    @media (max-width: 768px) {
        .block3-container {
            flex-direction: column; /* Stacks elements vertically */
        }
    
        .block3 .image-content {
            padding-right: 0; /* Removes right padding for better fit */
            margin-bottom: 5px; /* Adds spacing between image and text */
        }
    
        .block3 .text-content {
            padding-left: 0; /* Removes left padding for better fit */
            text-align: left; /* Center aligns text for better aesthetics on small screens */
            line-height: 30px;
        }
        .block3 {
            padding-left: 5%;
            padding-right: 7%;
            background: var(--highlight-two);
            padding-bottom: 5%;
        }
        .block3 .text-content h2{
            font-size: 36px;
        margin: 0;
        line-height: 1;
        }
        
        .block3 .text-content h3 {
            font-size: 16px; /* Adjusts font size relative to screen width */
            margin-bottom: 10%;
        }
        .block3 .text-content p {
            font-size: 14px;
            color: #3f3737;
        }
    
        .block3 .image-content img {
            max-width: 100%; /* Ensures the image fits the screen width */
        }
    }
    
    .three-column-section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 30px;
    min-height: 250px;
    position: relative;
}

.column {
    padding: 15px;
   /* border: 1px solid var(--primary-color); */
    min-width: 100px;
    display: flex; /* Enable Flexbox */
    flex-direction: column; /* Arrange children vertically */
    justify-content: center; /* Center children vertically */
    text-align: center; /* Center text inside */
    max-height: 270px;
}

.left, .right, .middle {
    display:grid;
    grid-template-rows: 1fr 1fr 1fr;
}

.left, .right {
    background-color: var(--highlight-two);
    color: var(--primary-color);
}
.left{
    border-radius : 20px 0 0 20px ;
}
.right{
    border-radius : 0 20px 20px 0;
}
.left span{
    font-size: 16px;
    color: var(--primary-color);
    margin: 0;
    font-weight: 600;
}
#total {
    font-size: 16px;
    margin: 0;
    font-weight: 600;
}
.middle h2, .left h2, .right h2{
    font-size:40px;
    font-weight:800;
    margin:0;
    position: relative;
    padding-top: 10px;
}
.one-line {
        display: grid;
    grid-template-columns: 1fr 1fr;
    align-items:center;
}
.left h3{
    color: var(--primary-color);
    font-size:40px;
    font-weight:800;
    margin:0;
}
.left p{
    font-size:18px;
    font-weight:800;
    color: var(--primary-color);
    margin:0;
}
.middle h3{
    font-size:16px;
    font-weight:800;
    
}
.middle {
    background-color: var(--primary-color);
    color: var(--highlight-two);
}

.price-display {
    font-size: 40px;
    font-weight: bold;
     color: var(--primary-color);
}

.ticket-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.ticket-selector button {
        width: 12px;
    font-size: 23px;
    cursor: pointer;
    font-weight: 500;
    color: var(--primary-color);
    height: 40px;
    border: 2px solid var(--primary-color);
    box-sizing: content-box;
}

.ticket-selector input {
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 20px;
    border: 2px solid var(--primary-color);
    font-weight: 600;
    color:var(--primary-color);
    border-left:0;
    border-right:0;
    box-sizing: content-box;
}

button#buy-now-button {
    padding: 10px 20px;
    font-size: 20px;
    font-weight: 900;
    font-style: italic;
    background-color: var(--primary-color);
    color: var(--highlight-two);
    border: 3px solid;
    border-radius: 10px;
    cursor: pointer;
}

.left::before,.right::after {
        content: '';
        position: absolute;
        width: 70px; /* Size of the circle */
        height: 70px;
        background-color: var(--secondary-color);
        border-radius: 50%;
        z-index: 1;
    }

    
    .left::before {
        left: -10px; 
        top: calc((100% - 70px) / 2);
    }
    .right::after {
        right: -10px; 
        top: calc((100% - 70px) / 2);
    }
.oneoffraffle{
    padding:20px;
    
}
@media (min-width: 769px) AND (max-width: 1277px) {
    .halfbluewhite {
            background: linear-gradient(to bottom, var(--secondary-color) 62%, var(--highlight-two) 38%) !important;
        }
}
@media (min-width: 769px) AND (max-width: 1370px) {
    
    .three-column-section {
       min-height: 310px;
    }
    .middle h2, .left h2, .left h3, .right h2 {
    font-size: 30px;
}
    .logo img {
    height: 80px;
}
    .middle h3 {
    font-size: 13px;
    margin:0;
}
    .price-display {
    font-size: 30px;
}
    button#buy-now-button {
    padding: 9px 18px;
    font-size: 15px;
}
    .ticket-selector button {
    width: 8px;
    font-size: 10px;
}
    .ticket-selector input {
    width: 35px;
    height: 40px;
    font-size: 18px;
}
}
@media (max-width: 768px) {
    .three-column-section {
        grid-template-columns: 1fr;
    }
    .column { 
        height:250px;
    }
    .left {
        border-radius: 20px 20px 0 0;
    } 
    .right {
        border-radius: 0 0 20px 20px;
    }
    .left::before,.right::after {
        width: 0px; /* Size of the circle */
        height: 0px;
    }
    .middle h3{
    font-size:14px;
}
    .middle .logo{
        order:0;
    }
}


.alert {
    margin: 10px 0;
    padding: 10px;
    color: #fff;
    font-size:14px;
}
a:hover{
    color:var(--secondary-color);
}
button:hover{
    color:var(--secondary-color);
}

/* General styles for the button and the banner */
/* Lock scrolling */
body.lock-scroll {
    overflow: hidden;
}

/* Full-page overlay */
#cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: none;
}

/* Cookie banner */
#ccc {

}

#ccc a{
    text-decoration: none;
}
#ccc a:hover{
    color: var(--primary-color);
}
.ccc-button-left {
  position: fixed;
    bottom: -22px;
    left:-1px;
    padding: 0px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 20%;
    z-index: 1000;
}

.ccc-slide-left {
  position: fixed;
  top: 0;
  width: 300px;
  height: 100%;
  background-color: var(--secondary-color);
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
  padding: 20px;
  transition: left 0.3s ease;
  z-index: 9999;
  overflow-x: scroll;
}

.ccc-slide-left.open {
  left: 0; /* Slide in when active */
}

#ccc-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

#ccc-title {
  font-size: 18px;
}

#ccc-button-holder {
  margin-top: 20px;
}

.ccc-button {
  background-color: var(--primary-color);
  color: var(--highlight-two);
  border: none;
  padding: 10px;
  cursor: pointer;
  margin-top: 10px;
  width: 100%;
  font-weight:600;
  font-size:14px;
}

.ccc-button:hover {
  background-color: var(--highlight-one);
}

.checkbox-toggle {
  display: flex;
  align-items: center;
}
#currentYear {
        
        margin: 0;
    font-size: 22px;
    font-weight: 100;
    color: var(--highlight-two);
    }
.checkbox-toggle input {
  margin-right: 10px;
}

.checkbox-toggle-on,
.checkbox-toggle-off {
  margin-right: 5px;
}

/* Toggle Switch */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--highlight-two);
  border-radius: 22px;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: var(--primary-color);
}

input:checked + .slider:before {
  transform: translateX(18px);
}
#ccc-end{
padding-bottom: 30px;
}   
#ccc-close:hover{
    color: var(--highlight-one);
}
.h-captcha{
 
 margin: 20px 0 0 0;   
}

.adv-section {
    background-color: var(--highlight-two);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
}

.adv-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.adv-text {
    font-size: 22px;
    font-weight: bold;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 1rem;
    color: var(--primary-color);
}

.adv-text h4{
    font-size: 22px;
    margin:0;
}

.adv-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.adv-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Mobile Adjustments */
@media (max-width: 900px) {
    .adv-text {
        font-size: 16px;
                margin: 0 20px;
    }
    .adv-text h4{
    font-size: 16px;
    }
    .adv-image img {
        max-width: 80%;
        display: inline;
    }
}