:root {
    --siteColorPrimary: #138808;
    --siteColorPrimaryAccent: #f48d2a;
    --siteColorSecondary: #1f262e;
    --siteColorSecondaryAccent: #1c2229;
    --siteFontPrimary: Nunito; /* TO BECOME SITE CONFIG VALUE */
    --siteFontSecondary: Roboto; /* TO BECOME SITE CONFIG VALUE */

    --siteFontSizePrimary: 16px; /* TO BECOME SITE CONFIG VALUE */

    --siteTextColorPrimary: #ffffff; /* TO BECOME SITE CONFIG VALUE */
    --siteTextColorPrimaryAccent: #ffffff; /* TO BECOME SITE CONFIG VALUE */

    --siteTextColorSecondary: #737f8c; /* TO BECOME SITE CONFIG VALUE */
    --siteTextColorSecondaryAccent: #737f8c; /* TO BECOME SITE CONFIG VALUE */

    --sectionOne: #000000;
    --sectionTwo: #000000;
    --sectionThree: #000000;
    --sectionFour: #000000;
    --sectionFive: #000000;
    --sectionSix: #000000;
    --sectionSeven: #000000;
    --sectionEight: #000000;
}

.hidden {
    display: none;
}

html {
    position: relative;
    min-height: 100%;
    height: 100%;
    font-size: var(--siteFontSizePrimary);
    font-family: var(--siteFontPrimary);
}

body {
    margin: 0;
    padding: 0;
    font-size: var(--siteFontSizePrimary);
    font-family: var(--siteFontPrimary);
}

.site-page {
    padding-top: 72px;
}

.pagepart-mainwrap {
    position: absolute;
}

.img-offset {
    position: relative;
    z-index: 1;
}

/* ------------------------------------------------------------ MEDIA QUERIES --------------------------------------------- */
@media (max-width: 768px) {
    .content {
        padding-top: 0px;
    }

    .pagepart-mainwrap {
        position: relative;
    }
}

/* ------------------------------------------------------------ NEW --------------------------------------------- */

@media screen and (max-width: 990px) {

    .pagepart {
        height: fit-content !important;
    }
}

.pagepart-content {
    width: fit-content;
}

.pagepart-content-centred {
    width: fit-content;
    align-self: center;
    justify-self: center;
}

.pagepart-content-left {
    width: fit-content;
    align-self: center;
    justify-self: left;
}

.pagepart-content-right {
    width: fit-content;
    align-self: center;
    justify-self: right;
}

.pagepart-inner-container {
    width: 100%;
    display: flex;
    padding: 30px 50px;
    justify-content: center;
    gap: 20px;
}

.pagepart-section-container {
    display: flex;
    align-items: center;
}

@media (max-width: 990px) {
    .pagepart-inner-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 50px;
        gap: 0;
    }

    .pagepart-text-container {
        align-items: center;
    }

    /*br {*/
    /*    display: none;*/
    /*}*/
    .pagepart-content-list ul br {
        display: block;
    }
}

@media (max-width: 516px) {
    .pagepart-inner-container {
        padding: 0 20px;
    }
}

.foreground-image {
    object-fit: contain;
}

@media screen and (max-width: 990px) {
    .foreground-image {
        max-width: 70vw;
        max-height: 50vh;
        min-width: 30vw;
    }
}

#progress-container {
    width: 100%;
    height: 8px;
    background-color: #ddd;
}

#progress-bar {
    height: 100%;
    width: 0;
    background-color: #a7af39;
    transition: width 0.25s ease;
}

/*#endregion NEW*/
.theme-color {
    color: var(--siteColorPrimary);
}

.is-mobile {
    display: none;
}

.is-desktop {
    height: fit-content;
}

@media (max-width: 990px) {
    .is-mobile {
        display: block;
        padding: 25px 0;
    }

    .is-desktop {
        display: none;
    }
}

/*#endregion NEW*/


@media (min-width: 1200px) {
    .form-container {
        width: 1100px !important;
    }
}

.gap-lg {
    gap: 2rem;
}

.invalid-message {
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
    text-align: end;
}

.flex-column, .flex-row {
    display: flex;
}

/* shared button default class */
.standard-btn {
    font-size: 1.125rem;
    line-height: 1.3rem;
    padding: 0.8rem 1rem;
    border-radius: 4px;
    color: white;
    display: flex;
    gap: 1rem;
    align-items: center;
    transition: 0.2s;
    border: none;
    font-weight: 700;
    background-color: var(--siteColorPrimary);
    height: fit-content;
}

.standard-btn:hover {
    background-color: color-mix(in srgb, var(--siteColorPrimary), transparent 5%);
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, .175);
}

.standard-btn:focus-visible {
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--siteColorPrimary), transparent 60%);
    outline: none;
}


