﻿:root {
    /* Fonts */
    --light: 300;
    --regular: 400;
    --medium: 500;
    --semibold: 600;
    --bold: 700;
    --extrabold: 800;
    --black: 900;
    /* colours */
    --yellow: #FFDE59;
    --darkblue: #032B58;
    --mediumblue: #004694;
    --darkgrey: #242424;
    --darkgrey-60: rgba(36,36,36,0.6);
    --lightgrey: #E2E2E2;
    --lightgrey-60: rgba(226,226,226,0.6);
    --darkblue-70: rgba(3,43,88,0.7);
    --darkblue-90: rgba(3,43,88,0.9);
    --darkblue-50: rgba(36,36,36,0.5);
}

/*************************/
/* Banner */
/*************************/

.homeBanner video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.homeBanner .video-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    z-index: -5;
}

section.homeBanner {
    height: 620px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.blueOverlay {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    padding: 40px;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darkblue-70);
}

section.homeBanner p {
    font-weight: var(--light);
    font-size: 25px;
    color: white;
    line-height: 32px;
    margin-bottom: 0px;
}

section.homeBanner h1 {
    font-size: 45px;
    margin-bottom: 30px;
    margin-top: 0px;
}

section.homeBanner .yellow-btn,
section.homeBanner .bordered-btn {
    margin-top: 35px;
    margin-right: 15px;
    min-width: 170px;
}

section.homeBanner p.arrowDown {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

section.homeBanner p.arrowDown i {
    font-size: 41px;
    color: var(--yellow);
    transition: all .5s ease;
}

section.homeBanner p.arrowDown i:hover {
    color: white;
}


/*************************/
/* Sponsors */
/*************************/

section.sponsors {
    background: linear-gradient(to right, rgba(255,222,89,1) 0%,rgba(255,222,89,1) 25%,rgba(226,226,226,0.6) 26%,rgba(226,226,226,0.6) 100%);
    min-height: 105px;
}

section.sponsors .yellow-bg {
    background: var(--yellow);
    min-height: 105px;
    display: flex;
    align-items: center;
}

section.sponsors .yellow-bg p {
    font-size: 20px;
    line-height: 25px;
    text-transform: uppercase;
    color: var(--darkblue);
    margin-bottom: 0px;
}

section.sponsors p.sponsor-wrapper {
    display: flex;
    margin-bottom: 0px;
    padding-left: 40px;
    gap: 60px;
    align-items: center;
}

section.sponsors .flex-wrapper {
    display: flex;
    align-items: center;
    min-height: 105px;
}

.sponsor-logo img {
    transition: all .5s ease;
}

.sponsor-logo img:hover {
    opacity: 0.65;
}

/*************************/
/* Countdown */
/************************/

#countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-family: Arial, sans-serif;
    font-size: 1.5rem;
}

.time-box {
    text-align: center;
}

.time-box.time-circle {
    background: var(--darkblue);
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    max-width: 33.33333%;
    min-width: 33.33333%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

span.number {
    color: var(--yellow);
    font-size: 50px;
    font-weight: bold;
    line-height: 38px;
}

.time-box p {
    color: white;
    text-transform: uppercase;
    line-height: 17px;
    margin-bottom: 0px;
    margin-top: 10px;
}

.faded-sides {
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, rgba(238,238,238,0) 0%,rgba(238,238,238,1) 10%,rgba(238,238,238,1) 90%,rgba(238,238,238,0) 100%);
    clear: both;
}

section.countdown-wrapper .col-lg-5 {
    margin-top: 70px;
    margin-bottom: 60px;
}

.button-link-wrapper {
    display: flex;
    align-items: center;
    gap: 25px;
}

.button-link-wrapper p {
    margin-bottom: 0px;
}

section.countdown-wrapper .container .row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.button-link-wrapper p.second-p a {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: var(--yellow);
    text-decoration-thickness: 2px;
}

.countdown-wrapper h2 {
    margin-top: 0px;
    margin-bottom: 15px;
}

/*************************/
/* Top Callout */
/*************************/

section.topCallout {
    padding-top: 120px;
    padding-bottom: 120px;
}

section.topCallout h2 {
    margin-top: 0px;
    margin-bottom: 25px;
}

section.topCallout p:nth-last-of-type(1) {
   margin-bottom: 0px;
}

section.topCallout .video-container {
    position: relative;
    padding-bottom: 52.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    width: 100%;
}
 
section.topCallout .video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

section.topCallout .padding-right {
    padding-right: 40px;
}

section.topCallout .container .row {
    display: flex;
    align-items: center;
}


/*************************/
/* Mission Statement */
/*************************/

section.missionStatement {
    background: var(--mediumblue);
    text-align: center;
    padding: 75px 0px;
}

section.missionStatement p {
    color: white;
    font-size: 25px;
    line-height: 33px;
    font-weight: var(--regular);
}

section.missionStatement p strong {
     color: var(--yellow);
}

/*************************/
/* Company Numbers */
/*************************/

section.companyNumbers {
    background: var(--mediumblue);
    padding: 10px 0px;
}

section.companyNumbers .yellowNumber {
    font-size: 46px;
    font-weight: var(--semibold);
    color: var(--yellow);
    position: relative;
}

.largeNumber {
    text-align: center;
}

section.companyNumbers .plus {
    color: white;
    font-size: 34px;
    font-weight: var(--regular);
    position: absolute;
    top: -5px;
    right: -22px;
}

section.companyNumbers p.subtext {
    color: white;
    font-size: 22px;
    line-height: 25px;
    text-align: center;
}

section.companyNumbers .numberWrapper::after {
    content: '';
    width: 2px;
    height: 57px;
    background: rgba(255, 255, 255, 0.5);
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
}

section.companyNumbers .numberWrapper:nth-last-of-type(1)::after {
    display: none;
}


/*************************/
/* Members */
/*************************/

section.members .title-wrapper {
    background: linear-gradient(to right, rgba(255,222,89,1) 0%,rgba(255,222,89,1) 18%,rgba(226,226,226,0.6) 19%,rgba(226,226,226,0.6) 100%);
    min-height: 46px;
}

section.members .yellow-bg {
    background: var(--yellow);
    min-height: 46px;
    display: flex;
    align-items: center;
}

section.members .memberImg {
    max-height: 100px;
    width: auto !important;
    margin: auto;
    padding: 10px 0px;
    transition: all .5s ease;
}

section.members .memberImg:hover {
    opacity: 0.65;
}

section.members .owl-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    z-index: -1;
}

section.members .owl-nav button.owl-prev {
    margin-left: -25px;
}

section.members .owl-nav button.owl-next {
    margin-right: -25px;
}

section.members .owl-nav i {
    color: var(--darkblue-50);
    transition: all .5s ease;
    font-size: 22px;
}

section.members .owl-nav i:hover {
    color: var(--darkblue);
}

section.members .owl-dots {
    display: none;
}

section.members .owl-carousel {
    position: relative;
    display: flex !important;
    align-items: center;
}

section.members .carousel-wrapper {
    padding: 15px 0px;
}

section.members p.membersTitle {
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 0px;
    font-weight: var(--bold);
    line-height: 20px;
    color: var(--darkblue);
}

/*************************/
/* Newsletters */
/*************************/

.newsletter .blue-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    padding: 40px;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darkblue-70);
}

section.newsletter {
    padding: 100px 0px;
    position: relative;
    background-size: cover !important;
    background-position: center !important;
}

section.newsletter .container .row {
    display: flex;
}

section.newsletter p {
    margin-bottom: 0px;
    font-size: 23px;
    line-height: 30px;
    color: white;
    text-transform: uppercase;
    font-weight: var(--black);
}

section.newsletter p strong {
    color: var(--yellow);
}

section.newsletter form > div {
    padding: 0px;
    margin-bottom: 0px;
}

section.newsletter form.row {
    justify-content: flex-end;
    padding-left: 80px;
    min-height: 48px;
}

section.newsletter form.row > div {
    height: 100%;
}

section.newsletter .form-control {
    min-height: 48px;
    border-radius: 5px 0px 0px 5px;
    font-size: 16px;
    font-weight:var(--light);
    color: var(--darkgrey);
}

    section.newsletter .form-control::placeholder {
        color: #333;
    }

    section.newsletter input.cms-field-submit {
        min-height: 48px;
        background: var(--yellow);
        color: var(--darkblue) !important;
        font-size: 17px;
        border-radius: 5px;
        padding: 8px 25px;
        display: inline-flex;
        font-weight: var(--medium);
        text-decoration: none !important;
        align-items: center;
        gap: 10px;
        width: fit-content;
        border: 2px solid var(--yellow);
        justify-content: center;
        border-radius: 0px 5px 5px 0px;
        margin-left: -2px;
    }

section.newsletter input.cms-field-submit:hover,
section.newsletter input.cms-field-submit:focus,
section.newsletter input.cms-field-submit:active,
section.newsletter input.cms-field-submit:active:focus {
    background: var(--mediumblue);
    color: white !important;
    border: 2px solid var(--mediumblue);
    outline: none;
    box-shadow: none;
}

section.newsletter .cms-group-submit {
    width: auto;
}

@media (min-width: 1367px) and (max-width: 1600px) {

    /*************************/
    /* Countdown */
    /************************/

    .countdown-wrapper h2 {
        font-size: 28px;
    }

}


@media (min-width: 1367px) and (max-width: 1500px) {
    
    /*************************/
    /* Members */
    /*************************/

    section.members {
        overflow-x: hidden;
    }

    section.members .title-wrapper {
        background: linear-gradient(to right, rgba(255, 222, 89, 1) 0%, rgba(255, 222, 89, 1) 15%, rgba(226, 226, 226, 0.6) 16%, rgba(226, 226, 226, 0.6) 100%);
    }

    /*************************/
    /* Newsletters */
    /*************************/
}

@media (min-width: 1200px) and (max-width: 1366px) {
    /*************************/
    /* Banner */
    /*************************/

    section.homeBanner {
        height: 500px;
    }

    section.homeBanner .yellow-btn, 
    section.homeBanner .bordered-btn {
        margin-right: 10px;
    }

    section.homeBanner p.arrowDown i {
        font-size: 31px;
    }

    section.homeBanner p.arrowDown {
        bottom: 10px;
    }

    /*************************/
    /* Sponsors */
    /*************************/

    section.sponsors .yellow-bg p {
        font-size: 18px;
    }

    section.sponsors p.sponsor-wrapper {
        padding-left: 30px;
        gap: 40px;
    }

    a.sponsor-logo img {
        max-height: 45px;
    }

    /*************************/
    /* Countdown */
    /************************/

    .countdown-wrapper h2 {
        font-size: 28px;
    }

    /*************************/
    /* Top Callout */
    /*************************/

    section.topCallout .container .row {
        align-items: flex-start;
    }

    /*************************/
    /* Company Numbers */
    /*************************/

    section.companyNumbers .yellowNumber {
        font-size: 34px;
    }

    section.companyNumbers p.subtext {
        font-size: 20px;
        line-height: 22px;
    }

    section.companyNumbers p.largeNumber {
        margin-bottom: 0px;
    }

    section.companyNumbers .plus {
        font-size: 29px;
        top: -7px;
        right: -18px;
    }

    section.companyNumbers .numberWrapper::after {
        margin-top: 9px;
        margin-bottom: unset;
    }

    /*************************/
    /* Members */
    /*************************/

    section.members {
        overflow-x: hidden;
    }

    section.members .title-wrapper {
        background: linear-gradient(to right, rgba(255, 222, 89, 1) 0%, rgba(255, 222, 89, 1) 15%, rgba(226, 226, 226, 0.6) 16%, rgba(226, 226, 226, 0.6) 100%);
    }

}

@media (min-width: 992px) and (max-width: 1199px) {

    /*************************/
    /* Banner */
    /*************************/

    section.homeBanner p {
        font-size: 21px;
        line-height: 28px;
    }

    section.homeBanner .yellow-btn, section.homeBanner .bordered-btn {
        margin-top: 25px;
        margin-right: 10px;
    }

    section.homeBanner h1 {
        margin-bottom: 15px;
    }

    section.homeBanner {
        height: 440px;
    }

    section.homeBanner p.arrowDown i {
        font-size: 31px;
    }

    section.homeBanner p.arrowDown {
        bottom: 10px;
    }

    /*************************/
    /* Sponsors */
    /*************************/

    section.sponsors .yellow-bg p {
        font-size: 18px;
    }

    section.sponsors p.sponsor-wrapper {
        padding-left: 20px;
        gap: 30px;
    }

    a.sponsor-logo img {
        max-height: 45px;
    }


    /*************************/
    /* Countdown */
    /************************/

    .countdown-wrapper h2 {
        font-size: 28px;
    }

    /*************************/
    /* Top Callout */
    /*************************/

    section.topCallout .padding-right {
        padding-right: 20px;
    }

    section.topCallout .container .row {
        align-items: flex-start;
    }

    section.topCallout h2 {
        font-size: 30px;
        margin-bottom: 10px;
    }

    /*************************/
    /* Company Numbers */
    /*************************/

    section.companyNumbers .yellowNumber {
        font-size: 34px;
    }

    section.companyNumbers p.subtext {
        font-size: 20px;
        line-height: 22px;
    }

    section.companyNumbers p.largeNumber {
        margin-bottom: 0px;
    }

    section.companyNumbers .plus {
        font-size: 29px;
        top: -7px;
        right: -18px;
    }

    section.companyNumbers .numberWrapper::after {
        margin-top: 9px;
        margin-bottom: unset;
    }

    /*************************/
    /* Members */
    /*************************/

    section.members .yellow-bg {
        width: 200px;
    }

    section.members {
        overflow-x: hidden;
    }

}

@media (min-width: 768px) and (max-width: 991px) {
    /*************************/
    /* Banner */
    /*************************/

    section.homeBanner h1 {
        font-size: 35px;
        margin-bottom: 15px;
    }

    section.homeBanner p {
        font-size: 19px;
        line-height: 26px;
    }

    section.homeBanner .yellow-btn, section.homeBanner .bordered-btn {
        margin-top: 20px;
        margin-right: 8px;
        min-width: unset;
    }

    section.homeBanner {
        height: 335px;
    }

    section.homeBanner p.arrowDown i {
        font-size: 31px;
    }

    section.homeBanner p.arrowDown {
        bottom: 10px;
    }

    /*************************/
    /* Sponsors */
    /*************************/

    section.sponsors .yellow-bg p {
        font-size: 18px;
    }

    section.sponsors p.sponsor-wrapper {
        padding-left: 20px;
        gap: 30px;
    }

    /*************************/
    /* Countdown */
    /************************/

    section.countdown-wrapper .col-lg-5 {
        margin-top: 0px !important;
        margin-bottom: 50px;
    }

    section.countdown-wrapper {
        padding-top: 60px;
    }

    /*************************/
    /* Top Callout */
    /*************************/

    section.topCallout {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    section.topCallout .container .row {
        display: block;
    }

    section.topCallout .padding-right {
        padding-right: 0px;
        margin-bottom: 35px;
    }

    section.topCallout h2 {
        margin-bottom: 15px;
    }

    /*************************/
    /* Company Numbers */
    /*************************/

    section.companyNumbers .yellowNumber {
        font-size: 25px;
    }

    section.companyNumbers p.subtext {
        font-size: 16px;
        line-height: 19px;
    }

    section.companyNumbers .plus {
        font-size: 24px;
        top: -9px;
        right: -15px;
    }

    .largeNumber {
        margin-bottom: 0px;
    }

    section.companyNumbers .numberWrapper::after {
        margin-top: 6px;
        margin-bottom: unset;
    }

    /*************************/
    /* Members */
    /*************************/

    section.members .yellow-bg {
        width: 200px;
    }

    section.members {
        overflow-x: hidden;
    }

    /*************************/
    /* Newsletters */
    /*************************/

    section.newsletter form.row {
        padding-left: 20px;
    }

    section.newsletter form.row .cms-group-text {
        flex: 1;
    }

    /*************************/
    /* Events & News */
    /*************************/

    section.events .event-wrapper > div:nth-last-of-type(1),
    section.news .event-wrapper > div:nth-last-of-type(1) {
        display: none;
    }
}

@media (max-width: 767px) {
    /*************************/
    /* Banner */
    /*************************/

    section.homeBanner h1 {
        font-size: 35px;
        margin-bottom: 15px;
        margin-top: -35px;
    }

    section.homeBanner p {
        font-size: 19px;
        line-height: 26px;
    }

    section.members .owl-nav {
        z-index: 10000;
        bottom: 0px;
        padding-top: 20px;
        width: 80%;
        left: 0px;
        right: 0px;
        margin: auto;
    }

    .owl-carousel .owl-stage-outer {
        margin-bottom: 20px;
    }

    section.homeBanner .yellow-btn, section.homeBanner .bordered-btn {
        margin-top: 20px;
        margin-right: 8px;
        min-width: unset;
    }

    section.homeBanner {
        height: 375px;
    }

    section.homeBanner p.arrowDown i {
        font-size: 31px;
    }

    section.homeBanner p.arrowDown {
        bottom: 10px;
    }

    section.homeBanner .container {
        margin-left: 0px;
    }

    /*************************/
    /* Sponsors */
    /*************************/

    section.sponsors {
        background: var(--lightgrey-60);
        min-height: unset;
    }

    section.sponsors .yellow-bg {
        background: var(--yellow);
        min-height: unset;
        display: block;
        padding: 20px 0px;
    }

    section.sponsors .yellow-bg p {
        font-size: 18px;
        text-align: center;
    }

    section.sponsors p.sponsor-wrapper {
        display: flex;
        margin-bottom: 0px;
        padding-left: 0px;
        gap: 30px;
    }

    section.sponsors .flex-wrapper {
        min-height: unset;
        padding: 25px 15px;
        justify-content: center;
    }

    /*************************/
    /* Countdown */
    /************************/

    section.countdown-wrapper .col-lg-5 {
        margin-top: 0px !important;
        margin-bottom: 50px;
    }

    section.countdown-wrapper {
        padding-top: 60px;
    }

    section.countdown-wrapper .container .row {
        display: block;
    }

    #countdown {
        padding-left: 20px;
        padding-right: 20px;
    }

    span.number {
        font-size: 30px;
        line-height: 23px;
    }

    .time-box p {
        margin-top: 5px;
        font-size: 15px;
    }

    .button-link-wrapper {
        display: block;
    }

    .button-link-wrapper p.second-p {
        margin-top: 10px;
    }

    /*************************/
    /* Top Callout */
    /*************************/

    section.topCallout {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    section.topCallout .container .row {
        display: block;
    }

    section.topCallout .padding-right {
        padding-right: 0px;
        margin-bottom: 35px;
    }

    section.topCallout h2 {
        margin-bottom: 15px;
    }

    /*************************/
    /* Mission Statement */
    /*************************/

    section.missionStatement {
        padding: 65px 0px;
    }

    /*************************/
    /* Company Numbers */
    /*************************/

    section.companyNumbers .numberWrapper::after {
        display: none;
    }

    section.companyNumbers .yellowNumber {
        font-size: 25px;
    }

    section.companyNumbers .plus {
        font-size: 24px;
    }

    section.companyNumbers p.subtext {
        font-size: 16px;
        line-height: 20px;
    }

    section.companyNumbers .numberWrapper {
        min-height: 120px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    section.companyNumbers .numberWrapper:nth-of-type(1),
    section.companyNumbers .numberWrapper:nth-of-type(3) {
        border-right: 2px solid rgba(255, 255, 255, 0.5);
        padding-left: 0px;
    }

    section.companyNumbers .numberWrapper:nth-of-type(2),
    section.companyNumbers .numberWrapper:nth-of-type(4) {
        padding-right: 0px;
    }

    section.companyNumbers .numberWrapper:nth-of-type(1),
    section.companyNumbers .numberWrapper:nth-of-type(2) {
        border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    }

    section.companyNumbers p.largeNumber {
        margin-bottom: 0px;
    }

    section.companyNumbers {
        padding: 15px;
    }

    /*************************/
    /* Members */
    /*************************/

    section.members .owl-nav button.owl-next {
        margin-right: 20px;
    }

    section.members .owl-nav button.owl-prev {
        margin-left: 20px;
    }

    section.members .carousel-wrapper {
        overflow-x: hidden;
    }

    section.members .yellow-bg {
        width: 200px;
    }

    /*************************/
    /* Newsletters */
    /*************************/

    section.newsletter .container .row {
        display: block;
        text-align: center;
    }

    section.newsletter form.row {
        padding-left: 0px;
        display: flex !important;
        margin-top: 30px;
    }

    section.newsletter {
        padding: 55px 15px;
    }

    section.newsletter form.row .cms-group-text {
        flex: 1;
    }
}