:root {
    /* Custom Lottery Colors */
    --custom-primary: #B948C4;
    --custom-primary-dark: #8F1F9A;
    --custom-secondary: #1F122F;
    --custom-black: #1F122F;
    --custom-dark-grey: #2F2F2F;
    --custom-medium-grey: #5E5E5F;
    --custom-light-grey: var(--off-white);
    /* Fundraiz Colors */
    --primary-blue: #3399FF;
    --primary-blue-dark: #1C74CC;
    --primary-blue-light: #4FB8FF;
    --secondary-green: #13BF78;
    --titles: var(--custom-black);
    --text: rgba(31,18,47,0.65);
    --text-light: #90A4AE;
    --off-white: #F6F6F6;
    --grey: #CFD8DC;
    --light-blue: #E5F4FD;
    --borders: #CFD8DC;
    --table-header: #EDF3f7;
    --footer: #0A0F11;
    --danger: #DD3C49;
    --danger-dark: #B12631;
    --warning: #FFC107;
    --warning-dark: #D58D10;
    --success: #3CDD7F;
    --success-dark: #26AC5E;
    /* Fonts */
    --headers-text: 'Barlow Condensed', sans-serif;
    --body-text: 'Barlow', sans-serif;
    --fontawesome: 'Font Awesome 6 Pro';
    /* Borders */
    --table-border: 1px solid var(--borders);
    /* Headers */
    --header-height: 120px;
    /* Mobile Menu */
    --menu-width: 300px;
}

*, *:before, *:after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 19px;
}

html, body {
    border: 0;
}

body {
    box-sizing: border-box;
    background-color: var(--custom-black);
    color: var(--text);
    font-family: var(--body-text) !important;
    font-weight: 400;
    line-height: 1.5;
    min-height: 100vh;
    height: 100%;
    box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--headers-text);
    font-style: italic;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.2rem;
    color: var(--titles);
}

h1 {
    font-size: 4.5rem;
    line-height: 1.1;
}

h2 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h3 {
    font-size: 2.75rem;
    line-height: 1.2;
}

h4 {
    font-size: 2.25rem;
    line-height: 1.2;
}

h5 {
    font-size: 1.75rem;
    line-height: 1.2;
}

h6 {
    font-size: 1.1rem;
    line-height: 1.2;
}

p:not(:last-child) {
    margin-bottom: 20px;
}

.txt-lg {
    font-size: 1.2rem;
}

.subtitle {
    font-size: 1.2rem;
}

.txt-center {
    text-align: center !important;
}

a {
    text-decoration: none;
    color: var(--primary-blue);
    transition: color .3s ease;
}

    a:hover {
        color: var(--primary-blue-dark);
        text-decoration: none;
    }

.btn {
    background-color: var(--custom-primary);
    border: 2px solid var(--custom-primary);
    border-radius: 4px;
    color: #FFF;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 16px 34px;
    transition: all .2s ease;
}

    .btn:hover {
        background-color: var(--custom-primary-dark);
        border-color: var(--custom-primary-dark);
        color: #fff;
    }

.btn-outline {
    background-color: transparent;
    color: var(--custom-primary);
}

/*.btn-lg {
    display: block;
    color: #fff;
    background-color: var(--primary-blue);
    border: none;
    font-family: var(--body-text);
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    padding: 20px 80px;
    cursor: pointer;
    transition: all 0.2s ease;
}*/

.btn-reg:hover {
    background-color: var(--primary-blue-dark);
    color: #fff;
}

::selection {
    background: var(--primary-blue-light);
}

::-moz-selection {
    background: var(--primary-blue-light);
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after, q:before, q:after {
        content: '';
        content: none;
    }

.hidden {
    display: none;
}

.hr {
    display: block;
    background-color: var(--borders);
    width: 100%;
    height: 1px;
    margin: 40px 0;
    opacity: .5;
}

.bold {
    font-weight: bold;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-right: 30px;
    padding-left: 30px;
}

.counter {
    animation-duration: 4s;
    animation-delay: 0s;
}

/*------------ MARGINS & PADDING PRESETS ------------*/
.m-1 {
    margin: 10px !important;
}

.m-2 {
    margin: 20px !important;
}

.m-3 {
    margin: 30px !important;
}

.m-4 {
    margin: 40px !important;
}

.mt-1 {
    margin-top: 10px !important;
}

.mt-2 {
    margin-top: 20px !important;
}

.mt-3 {
    margin-top: 30px !important;
}

.mt-4 {
    margin-top: 40px !important;
}

.mb-1 {
    margin-bottom: 10px !important;
}

.mb-2 {
    margin-bottom: 20px !important;
}

.mb-3 {
    margin-bottom: 30px !important;
}

.mb-4 {
    margin-bottom: 40px !important;
}

.p-1 {
    padding: 10px !important;
}

.p-2 {
    padding: 20px !important;
}

.p-3 {
    padding: 30px !important;
}

.p-4 {
    padding: 40px !important;
}

.pt-1 {
    padding-top: 10px !important;
}

.pt-2 {
    padding-top: 20px !important;
}

.pt-3 {
    padding-top: 30px !important;
}

.pt-4 {
    padding-top: 40px !important;
}

.pb-1 {
    padding-bottom: 10px !important;
}

.pb-2 {
    padding-bottom: 20px !important;
}

.pb-3 {
    padding-bottom: 30px !important;
}

.pb-4 {
    padding-bottom: 40px !important;
}

/* COLUMNS */
.flex-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.col-lg-12 {
    width: 100%;
}

.col-lg-6 {
    width: calc(50% - 20px);
}

.col-lg-3 {
    width: calc(25% - 30px);
}

.wrapper {
    padding: 80px 0;
}

/* ACCORDION */
.accordion-item {
    background-color: #fff;
    border: 1px solid var(--borders);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .accordion-item .accordion-header {
        display: flex;
        align-items: center;
        gap: 20px;
        border-bottom: 1px solid transparent;
        padding: 20px 40px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

.accordion-header i {
    color: var(--primary-blue);
    font-size: 24px;
    transition: transform 0.2s ease;
}

.accordion-header h4 {
    margin: 0;
    user-select: none;
}

.accordion-body-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

    .accordion-body-container .accordion-body {
        padding: 35px 40px;
    }

.accordion-item .accordion-header.active {
    border-bottom: 1px solid var(--borders);
}

    .accordion-item .accordion-header.active i {
        transform: rotate(180deg);
    }

.accordion-body p:not(:last-child) {
    margin-bottom: 15px;
}

.accordion-body ul li::marker,
.accordion-body ol li::marker {
    color: var(--primary-blue);
}

/******************************************* HEADER / NAV *******************************************/
header {
    position: relative;
    z-index: 1030;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 120px;
    z-index: 1030;
}

.nav-logo {
    padding-left: 40px;
}

.nav-logo-link {
    display: flex;
    align-content: center;
}

.logo-img {
    height: 100px;
    width: auto;
}

.nav-links {
    padding-right: 40px;
}

    .nav-links ul {
        display: flex;
        align-items: center;
        gap: 60px;
        margin: 0;
        padding: 0;
    }

        .nav-links ul li {
            display: inline-block;
            text-decoration: none;
        }

            .nav-links ul li a {
                color: #FFF;
                font-size: 1.1rem;
                font-weight: 700;
                letter-spacing: 0.5px;
                text-transform: uppercase;
                transition: all .2s ease;
            }

                .nav-links ul li a:hover,
                .nav-links ul li a:focus {
                    color: var(--custom-primary);
                    text-decoration: none;
                }

                .nav-links ul li a.active {
                    color: #DE3804;
                }

    .nav-links li a.btn-header {
        display: inline-block;
        background-color: var(--custom-primary);
        border-radius: 4px;
        color: #FFF;
        font-size: 1.1rem;
        font-weight: 700;
        letter-spacing: 0.5px;
        padding: 16px 32px;
        transition: all .2s ease;
    }

        .nav-links li a.btn-header:hover,
        .nav-links li a.btn-header:focus {
            background-color: var(--custom-primary-dark);
            color: #FFF;
            text-decoration: none;
        }

        .nav-links li a.btn-header i {
            margin-right: 8px;
        }

.nav-menu,
.nav-overlay {
    display: none;
}

.close-btn {
    display: none;
}

.no-scroll {
    overflow: hidden;
}

.btn-header-mobile {
    display: none;
}

/******************************************* HERO SECTION *******************************************/
#hero {
    background-image: linear-gradient(rgba(31,18,47,0.5),rgba(31,18,47,0) 20%), url('/images/themes/custom3_hero-img.jpg');
    background-size: cover;
    background-position: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100vh;
    margin-top: -120px;
    min-height: 800px;
    position: relative;
}

    #hero .container {
        height: 100%;
    }

.hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 60px;
    padding: 20px 20px 60px 20px;
    width: 100%;
    height: 100%;
}

h1.hero-tagline {
    color: #FFF;
    font-family: var(--body-text);
    font-size: 3.75em;
    font-style: italic;
    text-align: center;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 0 3px 6px rgba(0,0,0,0.85);
}

.jackpot-container {
    color: #fff;
    text-align: center;
}

    .jackpot-container h2 {
        color: var(--custom-primary);
        font-family: var(--body-text);
        font-size: 2.1rem;
        font-weight: 400;
        text-transform: uppercase;
        line-height: 1;
        text-shadow: 0 2px 4px rgba(0,0,0,0.85);
    }

.jackpot-total {
    color: #FFF;
    font-size: 6.5rem;
    font-style: italic;
    font-weight: 800;
    line-height: 1.3;
    text-shadow: 5px 5px 0 var(--custom-primary);
}

.jackpot-half {
    color: #FFF;
    ;
    font-size: 0.9rem;
    font-style: italic;
    font-weight: 500;
}

    .jackpot-half span {
        color: var(--custom-primary);
    }


/******************************************* COUNTDOWN SECTION *******************************************/
/*#countdown {
    width: calc(100% - 40px);
    margin: 0 auto;
}*/

.countdown-container {
    border-radius: 4px;
    width: calc(100% - 40px);
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 4px 24px rgba(0,0,0,0.5);
    position: absolute;
    bottom: -305px;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}

.countdown-flex {
    display: flex;
    border-radius: 4px;
    height: 100%;
}

.countdown-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-color: #FFF;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    color: var(--custom-black);
    font-weight: 800;
    text-transform: uppercase;
    width: 33.3333%;
    padding: 40px;
}

.count-month {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
    text-align: center;
}

.count-date {
    font-family: var(--headers-text);
    font-size: 6.75rem;
    line-height: 1;
    text-align: center;
    margin-top: -5px;
    position: relative;
}

.count-divider {
    background-color: #FFF;
    width: 40px;
    height: 3px;
    margin-bottom: 10px;
}

.count-day {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

.countdown-text {
    background-color: var(--custom-primary);
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    text-align: center;
    width: 66.6666%;
    padding: 40px;
}

    .countdown-text h2 {
        color: #FFF;
        line-height: 1;
    }

    .countdown-text h3 {
        color: rgba(255,255,255,0.65);
        font-size: 2.25rem;
        font-weight: 600;
    }

.countdown-ticker {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    margin-top: 22px;
}

.ticker-digit:not(span) {
    color: #FFF;
    font-family: var(--headers-text);
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1;
}

.ticker span {
    color: var(--titles);
    font-size: 0.8rem !important;
    font-weight: 500;
}

.countdown-container.deadline-passed {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    min-height: 290px;
    text-align: center;
}

    .countdown-container.deadline-passed p {
        font-size: 20px;
    }

/******************************************* EARLY BIRD SECTION *******************************************/
#earlybird {
    background-color: #3E1C4D;
    background-image: url('../../Images/themes/custom3_earlybird-bg.png');
    background-size: cover;
    background-position: 50% 40%;
}

.earlybird-container {
    display: flex;
    align-items: center;
    gap: 80px;
    padding-top: 260px;
    padding-bottom: 100px;
}

    .earlybird-container img {
        border-radius: 4px;
        width: 100%;
        max-width: 600px;
        height: auto;
    }

.earlybird-container h2 {
    color: #FFF;
}

.earlybird-img {
    width: 50%;
}

.earlybird-text {
    color: #FFF;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    .earlybird-text p {
        font-weight: 500;
        margin-bottom: 50px;
    }

        .earlybird-text p span {
            font-weight: 700;
        }

    .earlybird-text h3 {
        color: var(--custom-primary-dark);
        margin-bottom: 20px;
    }

.earlybird-cash {
    color: var(--custom-primary);
    font-size: 5rem;
    font-style: italic;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 20px;
}

    .earlybird-cash span {
        font-size: 60%;
        font-weight: 700;
        letter-spacing: 0;
        text-transform: uppercase;
        opacity: 0.55;
    }

/******************************************* TICKETS SECTION *******************************************/
#tickets {
    background-color: var(--custom-secondary);
    background-image: linear-gradient(#3E1C4D, var(--custom-secondary));
    background-size: 200px;
    padding-bottom: 100px;
}

.tickets-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #FFF;
    background-image: linear-gradient(rgba(255,255,255,1) 25%,rgba(250,198,255,1));
    border-radius: 4px;
    padding: 80px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

.tickets-block {
    border-right: 3px solid var(--custom-primary);
    width: 50%;
    padding-right: 80px;
}

.tickets-block-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

    .tickets-block-content img {
        width: 100%;
        max-width: 220px;
        height: auto;
    }

    .tickets-block-content p {
        font-size: 1.25rem;
        text-align: center;
    }

    .tickets-block-content .btn {
        display: inline-block;
        margin-top: 5px;
    }

.tickets-info {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    padding-left: 80px;
}

.tickets-info-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tickets-info-text .ticket-price {
    display: flex;
    flex-direction: column;
    gap: 3px;
    color: var(--titles);
    font-size: 1.65rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
}

    .tickets-info-text .ticket-price span {
        color: var(--custom-primary);
        font-weight: 800;
    }

.tickets-info .btn {
    display: inline-block;
    text-align: center;
}

/******************************************* PROCEEDS SECTION *******************************************/
#proceeds {
    /*background-image: url('../../Images/themes/custom3_proceeds-bg.png');
    background-size: contain;
    background-position: 50%;*/
    padding-bottom: 100px;
}

    #proceeds h2 {
        color: #FFF;
        text-align: center;
        margin-bottom: 60px;
    }

/*.proceeds-cols {
    display: flex;
    flex-direction: column;
    gap: 80px;
}*/

.proceeds-cols hr {
    border: 0;
    border-top: 1px solid var(--custom-light-grey);
}

.proceeds-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

    .proceeds-container .proceeds-img {
        border-radius: 4px;
        width: 45%;
        /*box-shadow: 0 0 60px var(--custom-primary);*/
    }

    .proceeds-container .proceeds-content {
        width: 55%;
    }

.proceeds-content h4 {
    color: var(--custom-dark-grey);
    margin-bottom: 20px;
}

.proceeds-content p {
    color: #FFF;
    line-height: 1.6;
}

    .proceeds-content p:not(:last-child) {
        margin-bottom: 10px;
    }

.proceeds-content .btn {
    display: inline-block;
    margin-top: 20px;
}

.proceeds-company {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-top: 80px;
}

.proceeds-company h6 {
    color: var(--custom-primary);
    font-size: 1.8rem;
    font-weight: 700;
    width: 40%;
}

.company-contact {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    color: #fff;
    width: 60%;
}

    .company-contact p {
        font-size: 1.4rem;
        text-align: right;
        margin-bottom: 5px;
    }

    .company-contact a {
        color: var(--custom-primary);
        font-size: 2.25rem;
        font-weight: 800;
        text-align: right;
    }

        .company-contact a:hover {
            color: var(--custom-primary-dark);
        }

/******************************************* CONTACT SECTION *******************************************/
#contact {
    text-align: center;
    padding-bottom: 100px;
}

    #contact h2 {
        color: #FFF;
        margin-bottom: 20px;
    }

    #contact .subtitle {
        color: #FFF;
    }

.contact-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.contact-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: linear-gradient(rgba(255,255,255,1) 25%,rgba(250,198,255,1));
    border-radius: 4px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.5);
}

.contact-col-title {
    padding: 22px 25px 25px;
    width: 100%;
    height: 90px;
}

    .contact-col-title h4 {
        color: var(--titles);
        font-size: 2.4rem;
        text-align: center;
    }

.contact-col-info {
    align-content: center;
    padding: 60px 30px;
    width: 100%;
    height: 100%;
    position: relative;
}

    .contact-col-info::before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        background-color: var(--custom-primary);
        width: calc(100% - 80px);
        height: 3px;
    }

    .contact-col-info .contact-info {
        color: var(--text);
        font-size: 1.2rem;
        font-weight: 500;
        text-align: center;
    }


/******************************************* MAILING LIST SECTION *******************************************/
.mailing-list-container {
    background-color: #3E1C4D;
    border-radius: 4px;
    text-align: center;
    padding: 80px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

    #mailing-list h3 {
        color: #FFF;
        font-size: 3.15rem;
        margin-bottom: 40px;
    }

    /* Constant Contact */
    #mailing-list .ctct-form-embed.form_2 .ctct-form-defaults .ctct-form-text,
    #mailing-list .ctct-form-embed.form_2 .ctct-form-custom .ctct-form-label,
    #mailing-list .ctct-form-embed.form_2 .ctct-form-custom .ctct-form-listname,
    #mailing-list .ctct-form-embed.form_2 .ctct-form-custom .ctct-form-lists-legend,
    #mailing-list .ctct-form-embed.form_2 .ctct-form-custom .ctct-form-date-slash,
    #mailing-list .ctct-form-embed.form_2 .ctct-form-defaults .ctct-gdpr-text,
    #mailing-list .ctct-form-embed.form_2 .ctct-form-defaults .ctct-gdpr-text .ctct-form-footer-link,
    #mailing-list .ctct-form-embed.form_2 .ctct-form-defaults .ctct-gdpr-text .ctct-form-footer-privacy-link {
        color: var(--custom-dark-grey);
    }

    #mailing-list div.ctct-form-embed div.ctct-form-defaults {
        font-family: var(--body-text);
    }

    #mailing-list .ctct-inline-form .ctct-form-defaults {
        background-color: transparent;
        padding: 0;
    }

.ctct-inline-form .ctct-form-custom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.ctct-inline-form .ctct-form-field {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: calc(33.333% - 20px);
    margin: 0 0 15px 0 !important;
}

    .ctct-inline-form .ctct-form-field .ctct-form-element {
        border: 1px solid #fff;
        border-radius: 4px;
        width: 100%;
        padding: 15px;
    }

    .ctct-inline-form .ctct-form-field .ctct-form-label {
        color: var(--custom-dark-grey);
        font-weight: 700;
        margin-bottom: 5px;
    }

.ctct-inline-form .error_message_2,
.ctct-inline-form #error_message_2,
.ctct-inline-form #network_error_message_2,
.ctct-inline-form #gdpr_text,
.ctct-inline-form .ctct-form-button {
    width: 100%;
}

.ctct-inline-form #gdpr_text,
.ctct-inline-form .ctct-gdpr-text {
    font-family: var(--body-text);
    font-size: 0.7rem;
    margin-top: -5px;
}

.ctct-inline-form .ctct-form-button {
    background-color: var(--custom-primary);
    border: 2px solid var(--custom-primary);
    border-radius: 4px;
    color: #FFF;
    font-family: var(--body-text);
    font-size: 1rem;
    font-weight: 900;
    padding: 14px 32px;
    max-width: 300px;
    transition: all .2s;
}

/* MOCKUP SIGNUP FORM */
.mailing-list-form > div {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 20px;
}

.mailing-list-form .form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
}

    .mailing-list-form .form-group label {
        color: #FFF;
        font-weight: 500;
    }

        .mailing-list-form .form-group label span {
            color: var(--custom-primary);
        }

    .mailing-list-form .form-group input[type=text] {
        border: 1px solid var(--borders);
        font-family: var(--body-text);
        font-size: 14px;
        width: 100%;
        height: 45px;
        padding: 5px 15px;
    }

        .mailing-list-form .form-group input[type=text]:focus-within {
            outline-color: var(--custom-primary);
        }

.mailing-list-form p {
    color: #FFF;
    font-size: 0.8rem;
    margin-bottom: 40px;
}

.mailing-list-form input[type=submit] {
    cursor: pointer;
}

.grecaptcha-badge {
    visibility: hidden !important;
}

/******************************************* FOOTER *******************************************/
.footer-top {
    background: var(--titles);
    color: #fff;
    padding: 80px 0;
}

    .footer-top h5 {
        color: #fff;
        font-weight: 600;
        line-height: 1.1;
        margin-top: 0;
        margin-bottom: 8px;
    }

    .footer-top p {
        font-size: 1.2rem;
    }

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
}

.col-logo {
    width: 30%;
}

.footer-col {
    text-align: center;
}

    .footer-col a {
        color: #fff;
        font-weight: 700;
    }

.footer-links {
    font-size: 18px;
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li a {
        color: #fff;
        font-size: 16px;
        line-height: 2rem;
    }

        .footer-links li a:hover {
            color: var(--primary-blue);
        }

.footer-logo {
    width: 240px;
    height: auto;
    margin-bottom: 30px;
}

.footer-desc {
    font-size: 14px;
    margin-bottom: 30px;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

    .footer-socials .social-icon i {
        font-size: 1.2rem;
    }

.rules-conditions {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 50px;
}

    .rules-conditions .btn-rules {
        display: inline-block;
        background-color: transparent;
        border: 2px solid #fff;
        text-align: center;
        padding: 16px 50px;
        cursor: pointer;
    }

        .rules-conditions .btn-rules:hover {
            background-color: #fff;
            color: #000;
        }

.footer-bottom {
    background-color: var(--titles);
    color: #fff;
}

.footer-bottom-columns {
    border-top: 1px solid rgba(255,255,255,0.35);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 30px 0;
}

    .footer-bottom-columns p {
        font-size: 0.8rem;
        margin: 0;
        opacity: 0.5;
    }

    .footer-bottom-columns a {
        opacity: 0.35;
        transition: all 0.2s ease;
    }

        .footer-bottom-columns a:hover {
            opacity: 0.75;
        }

    .footer-bottom-columns img {
        width: 180px;
        height: auto;
    }

/* RULES AND CONDITIONS MODAL */
.rules-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.6);
    width: 100vw;
    height: 100vh;
    overflow: auto;
    z-index: 2000;
    display: none;
}

.rules-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.rules-modal-container {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    border-radius: 3px;
    font-size: 0.9rem;
    width: calc(100% - 40px);
    max-width: 1000px;
    padding: 60px;
    margin-bottom: 80px;
}

    .rules-modal-container .close-btn-rules {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        cursor: pointer;
    }

        .rules-modal-container .close-btn-rules span {
            position: absolute;
            top: 50%;
            left: 50%;
            display: block;
            width: 30px;
            height: 2px;
            background-color: #000;
        }

            .rules-modal-container .close-btn-rules span:nth-of-type(1) {
                transform: translate(-50%,-50%) rotate(45deg);
            }

            .rules-modal-container .close-btn-rules span:nth-of-type(2) {
                transform: translate(-50%,-50%) rotate(-45deg);
            }

.footer_top .btn-rules-open {
    cursor: pointer;
    font-size: 20px;
}

.rules-modal.show-rules-modal {
    display: block;
}

.rules-modal-container h1,
.rules-modal-container h2,
.rules-modal-container h3,
.rules-modal-container h4,
.rules-modal-container h5,
.rules-modal-container h6 {
    margin-bottom: 12px;
}

.rules-modal-container h1 {
    font-size: 2.5rem;
}

.rules-modal-container h2 {
    font-size: 2rem;
}

.rules-modal-container h3 {
    font-size: 1.7rem;
}

.rules-modal-container h4 {
    font-size: 1.3rem;
}

.rules-modal-container h5 {
    font-size: 1.1rem;
}

.rules-modal-container h6 {
    font-size: 0.9rem;
}

.rules-title {
    margin-bottom: 20px;
}

.rules-modal-container ol,
.rules-modal-container ul {
    padding-left: 20px;
}

    .rules-modal-container ol li::marker,
    .rules-modal-container ul li::marker,
    .rules-modal-container p strong {
        font-weight: 700;
    }

.rules-modal-container p:not(:last-child) {
    margin-bottom: 5px;
}

/* SCROLL TO TOP */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 4px;
    width: 50px;
    height: 50px;
    box-shadow: 0 0 8px rgba(0,0,0,0.35);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

    .scroll-top i {
        color: var(--custom-primary);
        font-size: 24px;
    }

.scroll-top-active {
    opacity: 1;
    visibility: visible;
}

/* RETURN TO FUNDRAIZ OVERLAY */
.fundraiz-overlay {
    position: fixed;
    bottom: 140px;
    right: -20px;
    display: flex;
    justify-content: flex-start;
    background-color: rgba(0,0,0,0.75);
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    padding: 15px 10px;
    width: 120px;
    opacity: 0.65;
    transition: all 0.3s ease;
}

    .fundraiz-overlay:hover {
        right: 0;
        opacity: 1;
    }

.fundraiz-overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
}

.fundraiz-overlay i {
    color: #FFF;
    font-size: 22px;
    margin-bottom: 5px;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.65);
}

.fundraiz-overlay-txt {
    color: #fff;
    font-size: 13px;
    text-align: center;
    line-height: 1.2;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.65);
}

/* SPLASH/MAINTENANCE PAGE */
#maintenance-block {
    display: none;
}

.maintenance {
    overflow: hidden;
}

    .maintenance #maintenance-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        padding: 20px;
        text-align: center;
        width: 100vw;
        height: 100vh;
        z-index: 9999;
    }

        .maintenance #maintenance-block img {
            width: 100%;
            max-width: 450px;
            height: auto;
            margin-bottom: 40px;
        }

        .maintenance #maintenance-block h1 {
            color: var(--custom-primary-dark);
            font-size: 48px;
            line-height: 1.1;
        }

        .maintenance #maintenance-block p {
            color: var(--titles);
            font-size: 20px;
            max-width: 450px;
        }

#splash {
    background: linear-gradient(rgba(255,255,255,0.65),rgba(255,255,255,0.65)), url('/Images/themes/bg-img.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    backdrop-filter: blur(10px);
}

.splash-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

    .splash-container img {
        width: 100%;
        max-width: 450px;
        height: auto;
        margin-bottom: 40px;
    }

    .splash-container h1 {
        color: var(--custom-primary-dark);
        font-size: 48px;
        line-height: 1.1;
    }

    .splash-container p {
        color: var(--titles);
        font-size: 20px;
        max-width: 450px;
    }

/******************************************* MEDIA QUERIES *******************************************/
@media screen and (max-width: 1499px) {
    .footer-bottom-columns {
        padding: 30px 60px;
    }
}

@media screen and (max-width: 1399px) {
    /* NAV */
    .nav-container {
        height: 100px;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        overflow: hidden;
        background-color: rgba(0,0,0,0.6);
        z-index: 999;
    }

    .nav-menu {
        display: block;
        position: relative;
        margin-right: 20px;
        padding: 10px;
        width: 50px;
        height: 39px;
        cursor: pointer;
    }

        .nav-menu span {
            display: block;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 28px;
            height: 2px;
            background-color: #FFF;
            transition: background-color 0.2s ease;
        }

            .nav-menu span:nth-of-type(2) {
                top: 18px;
            }

            .nav-menu span:nth-of-type(3) {
                top: 26px;
            }

    .nav-menu:hover span {
        background-color: var(--custom-primary);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: var(--menu-width);
        height: 100%;
        overflow-y: hidden;
        background-color: #fff;
        padding: 80px 30px 30px;
        z-index: 1050;
        transform: translateX(var(--menu-width));
        transition: transform .4s;
    }

        .nav-links.menu-open {
            transform: translateX(0);
        }

    .close-btn {
        display: block;
        position: absolute;
        top: 40px;
        right: 45px;
        cursor: pointer;
    }

        .close-btn span {
            display: block;
            position: absolute;
            width: 30px;
            height: 2px;
            background-color: #323E48;
        }

            .close-btn span:nth-of-type(1) {
                transform: rotate(45deg);
            }

            .close-btn span:nth-of-type(2) {
                transform: rotate(-45deg);
            }

    .nav-links ul {
        align-items: flex-start;
        flex-direction: column;
        gap: 35px;
    }

    .nav-links li {
        width: 100%;
        gap: 35px;
    }

        .nav-links.menu-open li a {
            color: var(--titles);
        }

            .nav-links.menu-open li a.btn-header {
                color: #FFF;
                text-align: center;
                display: block;
                width: 100%;
            }

    .logo-img {
        height: 85px;
    }

    /* HERO */
    .hero-container {
        gap: 50px;
    }

    h1.hero-tagline {
        font-size: 3rem;
    }

    .jackpot-container h2 {
        font-size: 1.9rem;
    }

    .jackpot-total {
        font-size: 5.75rem;
    }

    /* COUNTDOWN */


    /* EARLYBIRD */
    .earlybird-container {
        gap: 40px;
    }

    .earlybird-cash {
        font-size: 4.5rem;
        margin-bottom: 15px;
    }

    /* TICKETS */
    .tickets-block-content p {
        font-size: 1.1rem;
    }

    #tickets .tickets-info {
        justify-content: center;
    }

    /* PROCEEDS */
    .proceeds-container {
        gap: 40px;
    }

    .proceeds-company h6,
    .company-contact {
        width: 50%;
    }

        .company-contact a {
            font-size: 2rem;
        }

    /* CONTACT */
    .contact-container {
        gap: 30px;
    }

    .contact-col-info {
        padding: 50px 40px;
    }

        .contact-col-info .contact-info {
            font-size: 1rem;
        }

    .contact-col-title h4 {
        font-size: 1.8rem;
    }

    /* MAILING LIST */
    .mailing-list-container {
        padding: 80px 60px;
    }
}

@media screen and (max-width: 1199px) {
    h2 {
        font-size: 3rem;
    }

    .txt-lg {
        font-size: 1rem;
    }

    .btn {
        font-size: 1.1rem;
        padding: 14px 28px;
    }

    /* HERO */
    .hero-container {
        gap: 40px;
        padding: 20px 20px 30px 20px;
    }

    /* COUNTDOWN */
    .countdown-container {
        max-width: 800px;
    }

    .countdown-date {
        width: 36%;
    }

    .countdown-text {
        width: 64%;
    }

    .countdown-text h3 {
        font-size: 1.8rem;
    }

    .ticker-digit:not(span) {
        font-size: 2.5rem;
    }

    /* EARLYBIRD */
    .earlybird-container {
        gap: 30px;
    }

    .earlybird-cash {
        font-size: 4rem;
    }

    .earlybird-text p {
        margin-bottom: 30px;
    }

    /* TICKETS */
    .tickets-info-text .ticket-price {
        margin-bottom: 25px;
    }

    /* PROCEEDS */
    .proceeds-content p {
        font-size: 0.9rem;
    }

    .proceeds-company h6 {
        font-size: 1.5rem;
    }

    .company-contact p {
        font-size: 1.1rem;
    }

    .company-contact a {
        font-size: 1.75rem;
    }

    /* CONTACT */
    .contact-container {
        gap: 20px;
        margin-top: 50px;
    }

    .contact-col-title {
        padding: 20px;
    }

    #contact .subtitle {
        font-size: 1.1rem;
    }

        .contact-col-title h4 {
            font-size: 1.5rem;
        }

    .contact-col-info {
        padding: 40px 30px;
    }

        .contact-col-info::before {
            width: calc(100% - 70px);
        }

    /* MAILING LIST */
    #mailing-list h3 {
        font-size: 2.75rem;
    }

    .mailing-list-form .form-group label {
        font-size: 0.9rem;
    }

    .mailing-list-form > div {
        gap: 20px;
        margin-bottom: 15px;
    }

    /* FOOTER */
    .footer-top h5 {
        color: #fff;
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 991px) {
    h2 {
        font-size: 2.6rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    #tickets,
    #proceeds,
    #contact {
        padding-bottom: 80px;
    }

    /* HERO */
    #hero {
        min-height: 800px;
    }

        #hero .container {
            padding-right: 20px;
            padding-left: 20px;
        }

    .hero-container {
        gap: 35px;
    }

    h1.hero-tagline {
        font-size: 2.5rem;
        max-width: 600px;
    }

    .jackpot-container h2 {
        font-size: 1.5rem;
    }

    .jackpot-total {
        margin-top: -5px;
    }

    .jackpot-half {
        font-size: 0.8rem;
    }

    /* COUNTDOWN */
    .countdown-container {
        bottom: -250px;
    }

    .countdown-ticker {
        margin-top: 15px;
    }

    .countdown-text h3 {
        font-size: 1.8rem;
        margin-top: -3px;
    }

    .count-month {
        font-size: 1.8rem;
    }

    .count-date {
        font-size: 5.75rem;
        margin-top: -10px;
    }

    .ticker-digit:not(span) {
        font-size: 2.4rem;
    }

    /* EARLYBIRD */
    .earlybird-container {
        padding-top: 200px;
        padding-bottom: 80px;
    }

    .earlybird-img {
        width: 45%;
    }

    .earlybird-text {
        width: 55%;
    }

        .earlybird-text p {
            font-size: 0.9rem;
        }

    .earlybird-cash {
        font-size: 3.5rem;
        margin-bottom: 10px;
    }

        .earlybird-cash span {
            font-size: 58%;
            margin-left: -5px;
        }

    /* TICKETS */
    .tickets-container {
        padding: 50px;
    }

    .tickets-block {
        padding-right: 50px;
    }

    .tickets-block-content {
        gap: 15px;
    }

    .tickets-block-content p {
        font-size: 1rem;
    }

    .tickets-info {
        padding-left: 50px;
    }

    .tickets-info-text {
        font-size: 1.8rem;
    }

        .tickets-info-text .ticket-price {
            font-size: 1.5rem;
        }

    /* PROCEEDS */
    #proceeds h2 {
        margin-bottom: 40px;
    }

    .proceeds-container {
        flex-direction: column;
        gap: 30px;
    }

    .proceeds-cols {
        gap: 50px;
    }

    .proceeds-container .proceeds-img,
    .proceeds-container .proceeds-content {
        width: 100%;
    }

    .proceeds-content h4 {
        margin-bottom: 15px;
    }

    .proceeds-content .btn {
        margin-top: 15px;
    }

    .proceeds-company {
        gap: 20px;
    }

    .proceeds-company h6 {
        font-size: 1.15rem;
    }

    .company-contact a {
        font-size: 1.35rem;
    }

        .company-contact h6 {
            font-size: 1.1rem;
            margin-bottom: 40px;
        }

        .company-contact p {
            font-size: 0.85rem;
        }

    /* CONTACT */
    .contact-container {
        gap: 15px;
    }

    .contact-col-info {
        padding: 40px 20px;
    }

        .contact-col-info .contact-info {
            font-size: 0.85rem;
        }

    .contact-col-title {
        padding: 15px;
        height: 64px;
    }

        .contact-col-title h4 {
            font-size: 1.5rem;
        }

    /* MAILING LIST */
    .mailing-list-container {
        padding: 50px 40px;
    }

    #mailing-list h3 {
        font-size: 2.25rem;
    }

    /* Constant Contact */
    .ctct-inline-form .ctct-form-field {
        width: calc(33.333% - 10px);
    }

    .ctct-inline-form .ctct-form-custom {
        gap: 30px 15px;
    }

    .ctct-inline-form .ctct-form-field .ctct-form-element {
        padding: 12px 15px;
    }

    /* FOOTER */
    .footer-columns {
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 20px;
    }

    .footer-col:nth-of-type(4) {
        width: 100%;
    }

    .footer-bottom-columns img {
        width: 160px;
    }

    .footer-top p {
        font-size: 1rem;
    }
}

@media screen and (max-width:767px) {
    html {
        font-size: 18px;
    }

    .container {
        padding-right: 20px;
        padding-left: 20px;
    }

    /* NAV */
    .nav-container {
        height: 90px;
    }

    .nav-logo {
        padding-left: 30px;
    }

    .logo-img {
        height: 70px;
    }

    /* HERO */
    #hero {
        min-height: 700px;
        margin-top: -90px;
    }

    .hero-container {
        gap: 30px;
        width: 100%;
        padding-bottom: 60px;
    }

    h1.hero-tagline {
        font-size: 2.25rem;
        max-width: 500px;
    }

    .jackpot-container h2 {
        font-size: 1.6rem;
    }

    .jackpot-total {
        font-size: 5rem;
    }

    /* COUNTDOWN */
    .countdown-container {
        bottom: -225px;
    }

    .countdown-date {
        padding: 30px;
    }

    .countdown-text {
        padding: 30px;
    }

    .ticker span {
        font-size: 0.7rem !important;
    }

    /* EARLYBIRD */
    .earlybird-container {
        flex-direction: column;
    }

    .earlybird-container {
        gap: 30px;
        padding-top: 190px;
    }

    .earlybird-img,
    .earlybird-text {
        width: 100%;
    }

    .earlybird-img {
        text-align: center;
    }

    .earlybird-text h2 {
        margin-bottom: 15px;
    }

    /* TICKETS */
    .tickets-container {
        flex-direction: column;
    }

    #tickets .tickets-block,
    #tickets .tickets-info {
        width: 100%;
    }

    #tickets .tickets-block {
        border-right: none;
        border-bottom: 3px solid var(--custom-primary);
        padding: 0;
        padding-bottom: 40px;
    }

    .tickets-block-content p {
        font-size: 1.1rem;
    }

    #tickets .tickets-info {
        justify-content: space-around;
        flex-direction: row;
        padding: 0;
        padding-top: 30px;
    }

    .tickets-info-text {
        font-size: 1.7rem;
        line-height: 1.6;
        order: 0;
    }

        .tickets-info-text .ticket-price {
            font-size: 1.75rem;
            text-align: center;
            margin-bottom: 30px;
        }

    /* PROCEEDS */
    .proceeds-container {
        flex-direction: column;
    }

    #proceeds h2 {
        margin-bottom: 30px;
    }

    .proceeds-container .proceeds-img {
        order: 0;
        width: 100%;
        max-width: 500px;
    }

    .proceeds-container .proceeds-content {
        order: 1;
        width: 100%;
    }

    .proceeds-company {
        flex-direction: column;
        margin-top: 60px;
        gap: 30px;
    }

        .proceeds-company h6,
        .company-contact {
            width: 100%;
        }

        .proceeds-company h6 {
            font-size: 1.4rem;
            text-align: center;
        }

    .company-logo {
        text-align: center;
        padding: 50px 40px;
    }

        .company-logo img {
            width: 90%;
            max-width: 300px;
        }

        .company-contact p {
            font-size: 1rem;
            text-align: center;
        }

    .company-contact a {
        font-size: 1.65rem;
        text-align: center;
    }

    /* CONTACT */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .contact-col-info .contact-info {
        font-size: 1rem;
    }

    .contact-col-title h4 {
        font-size: 1.75rem;
    }

    /* MAILING LIST */
    #mailing-list h3 {
        font-size: 2.15rem;
        margin-bottom: 30px;
    }

    /* MOCKUP FORM */
    .mailing-list-form > div {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .mailing-list-form .form-group {
        gap: 5px;
    }

    /* Constant Contact */
    .ctct-inline-form .ctct-form-custom {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
        gap: 20px;
    }

    .ctct-inline-form .ctct-form-field {
        width: 100%;
    }

        .ctct-inline-form .ctct-form-field .ctct-form-label {
            font-size: 0.9rem;
            margin-bottom: 0;
        }

    #gdpr_text {
        margin-top: 0;
    }

    /* FOOTER */
    .footer-columns {
        gap: 20px;
    }

    .footer-top h5 {
        font-size: 1.25rem;
    }

    .footer-top p {
        font-size: 0.9rem;
    }

    .footer-socials {
        gap: 15px;
    }

        .footer-socials .social-icon i {
            font-size: 1.1rem;
        }

    .footer-bottom-columns {
        padding: 30px 50px 30px 50px;
    }

        .footer-bottom-columns p {
            font-size: 0.65rem;
        }

        .footer-bottom-columns img {
            width: 125px;
        }

    /* RULES */
    .rules-modal-container {
        top: 70px;
        padding: 70px 50px 50px;
        margin-bottom: 70px;
    }

    /* SCROLL TO TOP */
    .scroll-top {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }

        .scroll-top i {
            font-size: 20px;
        }
}

@media screen and (max-width:576px) {
    h3 {
        font-size: 1.6rem;
    }

    .txt-lg {
        font-size: 1rem;
    }

    .btn {
        width: 100%;
    }

    .flex-grid {
        gap: 20px;
    }

    .wrapper {
        padding: 60px 0;
    }

    .accordion-item .accordion-header {
        gap: 15px;
        padding: 15px 20px;
    }

        .accordion-item .accordion-header i {
            font-size: 20px;
        }

        .accordion-item .accordion-header h4 {
            font-size: 18px;
        }

    .m-2 {
        margin: calc(20px - 5px) !important;
    }

    .m-3 {
        margin: calc(30px - 10px) !important;
    }

    .m-4 {
        margin: calc(40px - 15px) !important;
    }

    .mt-2 {
        margin-top: calc(20px - 5px) !important;
    }

    .mt-3 {
        margin-top: calc(30px - 10px) !important;
    }

    .mt-4 {
        margin-top: calc(40px - 15px) !important;
    }

    .mb-2 {
        margin-bottom: calc(20px - 5px) !important;
    }

    .mb-3 {
        margin-bottom: calc(30px - 10px) !important;
    }

    .mb-4 {
        margin-bottom: calc(40px - 15px) !important;
    }

    .p-2 {
        padding: calc(20px - 5px) !important;
    }

    .p-3 {
        padding: calc(30px - 10px) !important;
    }

    .p-4 {
        padding: calc(40px - 15px) !important;
    }

    .pt-2 {
        padding-top: calc(20px - 5px) !important;
    }

    .pt-3 {
        padding-top: calc(30px - 10px) !important;
    }

    .pt-4 {
        padding-top: calc(40px - 15px) !important;
    }

    .pb-2 {
        padding-bottom: calc(20px - 5px) !important;
    }

    .pb-3 {
        padding-bottom: calc(30px - 10px) !important;
    }

    .pb-4 {
        padding-bottom: calc(40px - 15px) !important;
    }

    #tickets,
    #proceeds,
    #contact {
        padding-bottom: 60px;
    }

    .scroll-top {
        bottom: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }

        .scroll-top i {
            font-size: 18px;
        }

    .fundraiz-overlay {
        display: none;
    }

    /* NAV */
    .nav-container {
        height: 70px;
    }

    .nav-logo {
        padding-left: 20px;
    }

    .nav-menu {
        margin-right: 15px;
    }

    .logo-img {
        height: 60px;
    }

    .nav-links ul {
        gap: 30px;
    }

    /* HERO */
    #hero {
       height: 650px;
       min-height: 100%;
    }

    .hero-container {
        padding: 0;
        padding-bottom: 70px;
    }

    h1.hero-tagline {
        font-size: 1.8rem;
        max-width: 330px;
    }

    .jackpot-container h2 {
        font-size: 1.3rem;
    }

    .jackpot-total {
        font-size: 4.5rem;
        margin-top: -3px;
        text-shadow: 3px 3px 0 var(--custom-primary);
    }

    /* COUNTDOWN */
    #countdown {
        width: 100%;
    }

    .countdown-container {
        bottom: -460px;
        /*position: static;
        transform: translate(0);*/
    }

    .countdown-flex {
        flex-direction: column;
    }

    .count-date::after {
        width: 30px;
        height: 2px;
    }

    .countdown-container h2 {
        margin-bottom: -3px;
    }

    .countdown-date,
    .countdown-text {
        width: 100%;
    }

    .countdown-date {
        border-top-left-radius: 0;
        order: 1;
    }

    .countdown-text {
        border-bottom-right-radius: 0;
        order: 0;
    }

    .count-date {
        font-size: 4.5rem;
        margin-top: -5px;
    }

    .count-day {
        font-size: 1.15rem;
        margin-top: 3px;
    }

    .countdown-ticker {
        margin-top: 15px;
    }

    .countdown-container.deadline-passed p {
        font-size: 1.1rem;
    }

    /* EARLYBIRD */
    .earlybird-container {
        gap: 30px;
        padding-top: 320px;
        padding-bottom: 60px;
    }

    .earlybird-cash {
        font-size: 3.6rem;
    }

    /* TICKETS */
    .tickets-container {
        padding: 30px;
    }

    #tickets .tickets-info {
        flex-direction: column;
    }

    .tickets-info-text {
        order: 1;
    }

    .ticket-price {
        text-align: center;
    }

    .tickets-block p {
        font-size: 1rem;
    }

    .tickets-info-text .ticket-price {
        font-size: 1.6rem;
    }

    /* PROCEEDS */
    .proceeds-cols {
        gap: 50px;
    }

    .proceeds-company {
        margin-top: 50px;
    }

        .proceeds-company h6 {
            font-size: 1.25rem;
            text-align: center;
        }

    .company-contact p {
        font-size: 0.9rem;
    }

    .company-contact a {
        font-size: 1.35rem;
    }


    /* CONTACT */
    .contact-col-info .contact-info {
        font-size: 1.1rem;
    }

    /* MAILING LIST */
    .mailing-list-container {
        padding: 40px 30px;
    }

    #mailing-list h3 {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .mailing-list-form > div {
        gap: 20px;
    }

    .mailing-list-form .form-group {
        gap: 3px;
    }

    .mailing-list-form p {
        font-size: 0.75rem;
        margin-bottom: 30px;
    }

    /* Constant Contact */
    .ctct-inline-form .ctct-form-button {
        max-width: 100%;
    }

    /* FOOTER */
    .footer-top {
        padding: 60px 0;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-top h5 {
        font-size: 1.5rem;
    }

    .footer-col p {
        font-size: 1rem;
    }

    .footer-socials {
        gap: 20px;
    }

        .footer-socials .social-icon i {
            font-size: 1.2rem;
        }

    .footer-bottom-columns {
        flex-direction: column;
        gap: 10px;
        padding: 20px 0;
    }

    .rules-modal-container {
        top: 60px;
        font-size: 0.9rem;
        padding: 30px 25px 25px;
        margin-bottom: 60px;
    }
        .rules-modal-container h2 {
            font-size: 1.6rem;
            margin-right: 60px;
        }

        .rules-modal-container h4 {
            font-size: 1.25rem;
        }

        .rules-modal-container .close-btn-rules {
            top: 15px;
            right: 15px;
            width: 30px;
            height: 30px;
        }

            .rules-modal-container .close-btn-rules span {
                width: 25px;
                height: 2px;
            }

    /* SPLASH / MAINTENANCE PAGE */
    #splash {
        background-position-x: 60%;
    }

    .splash-container img {
        margin-bottom: 20px;
    }

    .splash-container h1 {
        font-size: 38px;
    }

    .maintenance #maintenance-block img {
        margin-bottom: 20px;
    }

    .maintenance #maintenance-block h1 {
        font-size: 38px;
    }
}

@media screen and (max-width: 360px) {
    h2 {
        font-size: 2.3rem;
    }

    .btn {
        font-size: 1rem;
        padding: 12px 24px;
    }

    /* NAV */
    .nav-logo {
        padding-left: 15px;
    }

    .logo-img {
        height: 40px;
    }

    .nav-menu {
        margin-right: 10px;
    }

    /* HERO */
    h1.hero-tagline {
        font-size: 1.5rem;
    }

    .jackpot-container h2 {
        font-size: 1.2rem;
    }

    .jackpot-total {
        font-size: 3.75rem;
        letter-spacing: -1px;
    }

    /* COUNTDOWN */
    .countdown-text h3 {
        font-size: 1.6rem;
    }

    .ticker-digit:not(span) {
        font-size: 2rem;
    }

    .countdown-text {
        padding: 30px 20px;
    }

    .ticker span {
        font-size: 0.65rem !important;
    }

    .count-month {
        font-size: 1.6rem;
    }

    /* EARLYBIRD */
    .earlybird-container {
        gap: 30px;
    }

    .earlybird-cash {
        font-size: 3.2rem;
        margin-bottom: 5px;
    }

    /* TICKETS */
    .tickets-container {
        padding: 30px 20px;
    }

    .tickets-block p {
        font-size: 0.95rem;
    }

    .tickets-info-text .ticket-price {
        font-size: 1.4rem;
    }

    /* PROCEEDS */
    .proceeds-cols {
        gap: 40px;
    }

    .proceeds-company {
        margin-top: 40px;
    }

    .company-contact p {
        font-size: 0.8rem;
    }

    .company-contact a {
        font-size: 1.25rem;
    }

    /* CONTACT */
    .contact-col-info .contact-info {
        font-size: 1rem;
    }

    /* MAILING LIST */
    .mailing-list-container {
        padding: 30px 20px;
    }

    #mailing-list h3 {
        font-size: 1.75rem;
    }

    /* FOOTER */
    .rules-conditions .btn-rules {
        padding: 16px 30px;
    }
}
