header {
    background-color: var(--orange);
    background-size: cover;
}

.logoContainer {
    width: 16%;
    height: 77%;
    padding: 10px 20px;
}

.pNLogo {
    width: 3%;
    min-width: 25px;
}

.pPLogo {
    width: 10%;
    min-width: 90px;
}

.footerLogos {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.pNLogo i {
    display: block;
    width: 100%;

    padding-bottom: 70%;
    background: url(/img/promonow-logo.svg) center no-repeat;
    background-size: contain;
}

.pPLogo i {
    display: block;
    width: 100%;
    padding-bottom: 27%;
    background: url(/img/prize-professionals-logo.svg) center no-repeat;
    background-size: contain;
}

.headerImgContainer {
    position: relative;
    display: block;
    /* max-width: 1200px; */
    height: 100%;
    margin: 0 auto;
    padding: 1rem 0;
    background-color: var(--blue);
}

.headerImgContainer>i {
    display: block;
    background: url(/img/headerImg.jpg) center no-repeat;
    /* background-color: var(--orange); */
    background-size: contain;
    width: 100%;
    /* padding-bottom: 56.3%; */
    padding-bottom: min(525px, 87.5%);
    max-width: 800px;
    margin: 0 auto;
}

.screenReaderText {
    position: absolute;
    user-select: none;
    pointer-events: none;
    color: transparent;
}

h1 {
    font-family: var(--headerFont);
}

.formContainer label {
    padding-right: 0;
}

.title_L {
    font-size: 22px;
    font-weight: 700;
    margin: 20px 0;
    line-height: 1.1;
}


.faqs .faq>a {
    background: var(--orange);
    color: var(--bodyBG);
    border-radius: 0.5rem;

}

.faqs .faq>div>div {
    background: var(--bodyBG);
    border-radius: 0.5rem;
    border: 1px solid;
    /* border-top: none; */
}

/* for larger screens */
@media only screen and (min-width: 2000px) {
    body {
        zoom: 1.5;
    }

    #modal {
        zoom: 0.8;
        top: -9%;
        left: 50%;
        transform: translateX(-50%);
    }

    .main {
        min-height: calc(100vh - 1107px);
    }



}

@media only screen and (min-width: 3000px) {
    body {
        zoom: 2;
    }

    #modal {
        zoom: 0.8;
        top: -29%;
        left: 50%;
        transform: translateX(-50%);
    }

    .main {
        min-height: calc(100vh - 1758px);
    }


}

ol.top-level {
    counter-reset: section;
    /* list-style:; */
    padding-left: 0;
}

ol.top-level>li {
    /* counter-increment: section; */
}

ol.top-level>li::marker {
    font-weight: bolder;
}

li>ol {
    font-weight: 400;
}

ol.top-level>li::before {
    /* content: counter(section) ". "; */
}

ol.top-level>li>ol {
    counter-reset: subsection;
    list-style: none;
    padding-left: 1em;
}

ol.top-level>li>ol>li {
    counter-increment: subsection;
}

/* ol.top-level>li>ol>li::before {
    content: counter(section) "." counter(subsection) " ";
} */

.prizeList {
    width: fit-content;
    margin: 0 auto;
    text-align: left;
}

.termsListPadding {
    padding: 0 40px;
}

.promonow-logo a,
.prizerofessionals-logo a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.promonow-logo {
    width: 25px;
    height: 25px;
    background: url(/img/promonow-logo.svg) no-repeat center;
    background-size: contain;
    display: inline-block;
    margin-left: 10px;
    position: relative;
}
.prizerofessionals-logo {
    width: 25px;
    height: 25px;
    background: url(/img/prizerofessionals-logo.png) no-repeat center;
    background-size: contain;
    display: inline-block;
    margin-left: 10px;
    position: relative;
}

.flex {
    display: flex;
}

.justify-center
{
    justify-content: center;
}