﻿@font-face {
    font-family: "Geist Regular";
    src: url(/SiteElements/Fonts/Geist-Regular.woff2) format("woff2"), url(/SiteElements/Fonts/Geist-Regular.woff) format("woff");
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "Geist Bold";
    src: url(/SiteElements/Fonts/Geist-Bold.woff2) format("woff2"), url(/SiteElements/Fonts/Geist-Bold.woff) format("woff");
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "Geist Light";
    src: url(/SiteElements/Fonts/Geist-Light.woff2) format("woff2"), url(/SiteElements/Fonts/Geist-Light.woff) format("woff");
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "Geist Thin";
    src: url(/SiteElements/Fonts/Geist-Thin.woff2) format("woff2"), url(/SiteElements/Fonts/Geist-Thin.woff) format("woff");
    font-style: normal;
    font-display: swap
}

:root {
    --main-colour: #a3378c;
    /*--tab1: #616161;*/
    --tab1: #f39205;
    --tab2: #bf5a7a;
    --tab3: #a54094;
    --tab4: #66267f;
    --tab5: #272a55;
}

body {
    font-family: "Geist Regular", sans-serif !important;
    font-size: unset;
    font-style: normal;
    font-weight: normal;
    color: unset;
    background: #fff;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Geist Regular", sans-serif;
    padding-top: 1em;
    font-weight: 700;
    text-wrap: pretty;
}

h1 {
    font-size: 2em;
    font-weight: unset;
}

h2 {
    font-size: 1.7em;
    font-weight: unset;
}

h3 {
    font-size: 1.2em;
}

p {
    font-size: 1.1em;
}

.header {
    background-color: var(--main-colour);
    color: white;
    padding: 1em 1em 0.5em 1em;
}


.logo {
    width: 140px;
    /* Adjust as necessary */
    height: auto;
    backdrop-filter: none !important;
    padding: 0 !important;
}


.container {
    max-width: 1280px;
    margin: 0 auto;
    color: #222;
    min-height: calc(100dvh - 120px);
    margin-bottom: 80px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.tabs__list {
    display: flex;
    background-color: var(--main-colour);
    min-height: 80px;
    position: fixed;
    left: 0;
    width: 100%;
    bottom: 0;
    justify-content: space-evenly;
    align-items: center;
    margin: 0;
    padding: 0;
    z-index: 999;
}

.tabs__list-item {
    background-color: var(--main-colour);
    color: white;
    width: 100%;
    text-decoration: none;
    display: block;
    cursor: pointer;
    border: none;
}

.tabs__list-item i {
    font-size: 3em;
    color: white;
}

.tabs__list-item:hover,
.tabs__list-item:focus,
.tabs__list-item:focus-within {
    background-color: #643f6c;
}

.tabs__list-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
    padding: 1em 0;
}

.tabs__list-link p {
    display: none;
    margin-top: 0.25em;
}

.tabs__heading {
    font-size: 2em;
    color: white;
    margin: 0;
    padding: 1rem 0em 1rem 1rem;
    background: var(--main-colour);
}
.tabs__description {
    padding: 0em 1em 1em 1em;
    background: var(--main-colour);
    color: white;
    display: none;
}

.tabs__description p {
    margin-top: 0;
}

.tabs__content {
    padding: 1em;
}

.tabs__list-item--logo {
    display: none;
    padding: 0 2em;
}

.checklist span {
    display: inline-block;
    font-size: 1.5em;
    width: fit-content;
}
.tabs__content {
    padding-bottom: 100px;
}
details summary::-webkit-details-marker {
  display:none;
}

.introGrid {
  display: grid;
  grid-template-columns: 2fr 1fr;
}
.callOut {
    border: 10px dashed var(--main-colour);
    padding: 1em;
    background-color: #f1f1f1;
}

@media (min-width: 1081px) {
    .tabs__list {
        top: 0;
        left: 0;
        bottom: unset;
        background: #222;
    }
    .tabs__heading {
        font-size: 2em;
        color: white;
        margin: 0;
        padding: 3rem 0em 1rem 1rem;
        background: var(--main-colour);
        border-radius: 0 0 10px 10px;
    }
    .tabs__list i {
        /*display: none;*/
    }
    .tabs__list-item i {
        font-size: 2em;
        color: white;
    }
    .tabs__list-item i:hover {
        text-decoration: none;
    }
    .tabs__list p, .tabs__list-item--logo {
        display: block;
    }

    .tabs__list-item:first-of-type {
        background-color: #222 !important;
    }

    .tabs__list-item a:hover, .tabs__list-item a:focus {
        background-color: #000 !important;
        color: white;
        text-decoration: none;
    }

    .tabs__list-item a:hover p {
        text-decoration: underline wavy;
        text-underline-offset: 0.3em;
    }

    .tabs__content {
        /*margin-top: 5.5em;*/
    }

    .tab-header {
       /* position: absolute;
        width: 100%;
        left: 0;
        top: 5.8em;*/
    }
}

#tab1 {
    --main-colour: var(--tab1);
    background: var(--main-colour);
}

#tab-panel1 {
    --main-colour: var(--tab1);
}

#tab2 {
    --main-colour: var(--tab2);
    background: var(--main-colour);
}

#tab-panel2 {
    --main-colour: var(--tab2);
}

#tab3 {
    --main-colour: var(--tab3);
    background: var(--main-colour);
}

#tab-panel3 {
    --main-colour: var(--tab3);
}

#tab4 {
    --main-colour: var(--tab4);
    background: var(--main-colour);
}

#tab-panel4 {
    --main-colour: var(--tab4);
}

#tab5 {
    --main-colour: var(--tab5);
    background: var(--main-colour);
}

#tab-panel5 {
    --main-colour: var(--tab5);
}

[data-tab="1"] {
    background: var(--tab1);
}

[data-tab="2"] {
    background: var(--tab2);
}

[data-tab="3"] {
    background: var(--tab3);
}

[data-tab="4"] {
    background: var(--tab4);
}

[data-tab="5"] {
    background: var(--tab5);
}

.tabs__content {
    padding-bottom: 100px;
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
}

.tabs__content details {
    width: calc(50% - 1em);
    border: 1px solid black;
    padding: 1em;
    border-radius: 5px;
    height: fit-content;
}

.tabs__content details:hover {
    cursor: pointer;
}

.tabs__content details h3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

.tabs__content details .fa-angle-down {
    color: darkgray;
    font-size: 1.5em;
}

.tabs__content details[open] .fa-angle-down {
    transform: rotate(180deg);
}

@media (max-width: 800px) {
    .tabs__content details {
        width: 100%;
    }
}

.checklist {
    --text: #414856;
    --check: #17a700;
    --disabled: #15828e91;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 10px 30px rgba(65, 72, 86, 0.05);
    display: grid;
    grid-template-columns: 30px auto;
    align-items: center;
    gap: 1em 0;
}

.checklist label {
    color: var(--text);
    position: relative;
    cursor: pointer;
    display: grid;
    align-items: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    transition: color 0.3s ease;
}

#checklist9 label {
    display: inline-flex;
    align-items: center;
    gap: 10px; /* Adds space between icon and text */
    cursor: pointer;
}
#checklist10 label {
    display: inline-flex;
    align-items: center;
    gap: 10px; /* Adds space between icon and text */
    cursor: pointer;
}
.checklist label::before,
.checklist label::after {
    content: "";
    position: absolute;
}

.checklist label::before {
    height: 2px;
    width: 8px;
    left: -27px;
    background: var(--check);
    border-radius: 2px;
    transition: background 0.3s ease;
}

.checklist label:after {
    height: 4px;
    width: 4px;
    top: 8px;
    left: -25px;
    border-radius: 50%;
}

.checklist input[type=checkbox] {
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    height: 15px;
    width: 15px;
    outline: none;
    border: 0;
    margin: 0 15px 0 0;
    cursor: pointer;
    background: #fff;
    display: grid;
    align-items: center;
}

.checklist input[type=checkbox]::before,
.checklist input[type=checkbox]::after {
    content: "";
    position: absolute;
    height: 2px;
    top: auto;
    background: var(--check);
    border-radius: 2px;
}

.checklist input[type=checkbox]::before {
    width: 0px;
    right: 60%;
    transform-origin: right bottom;
}

.checklist input[type=checkbox]::after {
    width: 0px;
    left: 40%;
    transform-origin: left bottom;
}

.checklist input[type=checkbox]:checked::before {
    -webkit-animation: check-01 0.4s ease forwards;
    animation: check-01 0.4s ease forwards;
}

.checklist input[type=checkbox]:checked::after {
    -webkit-animation: check-02 0.4s ease forwards;
    animation: check-02 0.4s ease forwards;
}

.checklist input[type=checkbox]:checked+label {
    color: var(--disabled);
    -webkit-animation: move 0.3s ease 0.1s forwards;
    animation: move 0.3s ease 0.1s forwards;
}

.checklist input[type=checkbox]:checked+label::before {
    background: var(--disabled);
    -webkit-animation: slice 0.4s ease forwards;
    animation: slice 0.4s ease forwards;
}

.checklist input[type=checkbox]:checked+label::after {
    -webkit-animation: firework 0.5s ease forwards 0.1s;
    animation: firework 0.5s ease forwards 0.1s;
}

.checklist input[type=checkbox]:focus + label {
    border: 1px dashed black;
}

.fa {
    font-size: 1.5em;
    margin-right: 0.5em;
    
}

.fa {
    color: var(--main-colour);
}

@-webkit-keyframes move {
    50% {
        padding-left: 8px;
        padding-right: 0px;
    }

    100% {
        padding-right: 4px;
    }
}

@keyframes move {
    50% {
        padding-left: 8px;
        padding-right: 0px;
    }

    100% {
        padding-right: 4px;
    }
}

@-webkit-keyframes slice {
    60% {
        width: 100%;
        left: 4px;
    }

    100% {
        width: 100%;
        left: -2px;
        padding-left: 0;
    }
}

@keyframes slice {
    60% {
        width: 100%;
        left: 4px;
    }

    100% {
        width: 100%;
        left: -2px;
        padding-left: 0;
    }
}

@-webkit-keyframes check-01 {
    0% {
        width: 4px;
        top: auto;
        transform: rotate(0);
    }

    50% {
        width: 0px;
        top: auto;
        transform: rotate(0);
    }

    51% {
        width: 0px;
        top: 8px;
        transform: rotate(45deg);
    }

    100% {
        width: 5px;
        top: 8px;
        transform: rotate(45deg);
    }
}

@keyframes check-01 {
    0% {
        width: 4px;
        top: auto;
        transform: rotate(0);
    }

    50% {
        width: 0px;
        top: auto;
        transform: rotate(0);
    }

    51% {
        width: 0px;
        top: 8px;
        transform: rotate(45deg);
    }

    100% {
        width: 5px;
        top: 8px;
        transform: rotate(45deg);
    }
}

@-webkit-keyframes check-02 {
    0% {
        width: 4px;
        top: auto;
        transform: rotate(0);
    }

    50% {
        width: 0px;
        top: auto;
        transform: rotate(0);
    }

    51% {
        width: 0px;
        top: 8px;
        transform: rotate(-45deg);
    }

    100% {
        width: 10px;
        top: 8px;
        transform: rotate(-45deg);
    }
}

@keyframes check-02 {
    0% {
        width: 4px;
        top: auto;
        transform: rotate(0);
    }

    50% {
        width: 0px;
        top: auto;
        transform: rotate(0);
    }

    51% {
        width: 0px;
        top: 8px;
        transform: rotate(-45deg);
    }

    100% {
        width: 10px;
        top: 8px;
        transform: rotate(-45deg);
    }
}

@-webkit-keyframes firework {
    0% {
        opacity: 1;
        box-shadow: 0 0 0 -2px #4F29F0, 0 0 0 -2px #4F29F0, 0 0 0 -2px #4F29F0, 0 0 0 -2px #4F29F0, 0 0 0 -2px #4F29F0, 0 0 0 -2px #4F29F0;
    }

    30% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        box-shadow: 0 -15px 0 0px #4F29F0, 14px -8px 0 0px #4F29F0, 14px 8px 0 0px #4F29F0, 0 15px 0 0px #4F29F0, -14px 8px 0 0px #4F29F0, -14px -8px 0 0px #4F29F0;
    }
}

@keyframes firework {
    0% {
        opacity: 1;
        box-shadow: 0 0 0 -2px #4F29F0, 0 0 0 -2px #4F29F0, 0 0 0 -2px #4F29F0, 0 0 0 -2px #4F29F0, 0 0 0 -2px #4F29F0, 0 0 0 -2px #4F29F0;
    }

    30% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        box-shadow: 0 -15px 0 0px #4F29F0, 14px -8px 0 0px #4F29F0, 14px 8px 0 0px #4F29F0, 0 15px 0 0px #4F29F0, -14px 8px 0 0px #4F29F0, -14px -8px 0 0px #4F29F0;
    }
}

.checklists {
    display: flex;
    flex-wrap: wrap;
}

.checklist-container {
    width: 100%;
}

.introGrid {
    display: grid;
    grid-template-columns: 1fr;
}
.video-promo {
    border-radius: 0.25em;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.promo-video-content {
    z-index: 20;
    position: relative;
    padding: 2em;
    display: flex;
    max-width: 100%;
    min-height: 40dvh;
    flex-direction: column;
    color: #fff;
    justify-content: center;
    /*aspect-ratio: 16 / 9;*/
}

.video-holder-promo {
    position: relative;
}

.video-promo-inner {
    min-height: 60dvh;
    width: 100%;
    display: block;
    position: absolute;
    aspect-ratio: 16 / 9;
}

.promo-video-content h2 {
    margin-bottom: 0;
    font-size: 3rem;
    display: flex;
    gap: .5em;
}

.promo-video-content p {
    font-size: 1.5rem;
    margin-top: 0;
}

.video-promo-inner:before {
    content: "";
    width: 100%;
    height: 100%;
    right: -11px;
    bottom: -11px;
    z-index: 2;
    background: linear-gradient(90deg, hsl(0deg 0% 56.84%) 2px, #00000000 1%) 50%, linear-gradient(hsl(0deg 0% 55.27%) 2px, #000000 1%) 50%, rgb(71 71 71 / 10%);
    background-size: 6px 6px;
    opacity: 0.1;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-blend-mode: multiply;
}

.promo {
    position: absolute;
    filter: brightness(0.6);
}

.video_banner_button {
    font-size: 1.125rem;
    font-weight: 300;
    background-color: transparent;
    padding: 1rem 0.5rem;
    border-width: 1px;
    border-style: solid;
    text-decoration: none;
    margin-top: 2em;
    text-align: center;
    color: #ffffff;
    backdrop-filter: blur(10px) brightness(0.8);
    width: 13.375rem;
    border-radius: 1em;
    display: inline-block;
    border-color: #ffffff;
    transition: .5s color, .5s border-color, .5s background-color;
    cursor: pointer;
}

.video_banner_button:hover,
.video_banner_button:focus {
    color: #9d0932;
    border-color: #9d0932;
    background-color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 0.25em;
    text-decoration-thickness: 0.15em;
}

.video-controls {
    position: relative;
    bottom: 1em;
    right: 1em;
    z-index: 10;
    width: 100%;
    text-align: right;
}

.pause-icon {
    display: inline-block;
    position: relative;
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: 3px solid #fff;
    border-radius: 2em;
    bottom: -13px;
    backdrop-filter: blur(10px) brightness(0.8);
}

.pause-icon::before,
.pause-icon::after {
    content: '';
    position: absolute;
    width: 5px;
    bottom: 10px;
    height: 50%;
    background-color: #fff;
}

.pause-icon::before {
    left: 30%;
}

.pause-icon::after {
    right: 30%;
}

button#infoButton {
    width: 50px;
    height: 50px;
    font-family: serif;
    font-size: 1.5em;
    background-color: transparent;
    color: #fff;
    border: 3px solid #fff;
    border-radius: 1em;
    margin-left: 0.5em;
    backdrop-filter: blur(10px) brightness(0.8);
}

button#playButton {
    width: 50px;
    height: 50px;
    font-size: 1.5em;
    background-color: transparent;
    color: #fff;
    border: 3px solid #fff;
    border-radius: 1em;
    margin-left: 0.5em;
    backdrop-filter: blur(10px) brightness(0.8);
}

div#videoInfoModal {
    width: 50%;
    position: absolute;
    bottom: 100px;
    color: #fff;
    right: 1em;
    padding: 1em;
    background-color: #000000a6;
    z-index: 100;
    box-sizing: border-box;
    border-radius: 0.5em;
}

h2#videoInfoHeading {
    margin-bottom: 0;
}

p#videoDescription {
    text-wrap-style: balance;
}

.wavy {
    position: relative;
    display: flex;
}

.wavy span {
    position: relative;
    display: inline-block;
    color: #fff;
    animation: animate 5s ease-in-out infinite;
    animation-delay: calc(.1s * var(--i));
    padding: 0;
    margin: 0;
}

@keyframes animate {

    0%,
    100% {
        transform: translateY(0px);
    }

    20% {
        transform: translateY(-20px);
    }

    40% {
        transform: translateY(0px);
    }
}

@media only screen and (max-width: 800px) {
    .promo-video-content h2 {
        margin-bottom: 0;
        font-size: 2rem;
        display: flex;
        gap: .5em;
    }

    .promo-video-content {
        z-index: 20;
        position: relative;
        padding: 1em;
        display: flex;
        min-height: 40dvh;
        flex-direction: column;
        color: #fff;
        justify-content: center;
        /* aspect-ratio: 16 / 9; */
    }

    .promo {
        position: absolute;
        filter: brightness(0.6);
    }
}

@media only screen and (max-width: 600px) {
    .promo-video-content h2 {
        margin-bottom: 0;
        font-size: 1.2rem;
        display: flex;
        gap: .5em;
    }

    .promo-video-content {
        z-index: 20;
        position: relative;
        padding: 1em;
        display: flex;
        min-height: 40dvh;
        flex-direction: column;
        color: #fff;
        justify-content: center;
        /* aspect-ratio: 16 / 9; */
    }

    .promo {
        position: absolute;
        filter: brightness(0.6);
        transform: translateX(-50%);
    }
}