* {
    box-sizing: border-box;
}


body {
    margin: 0 auto;
    background-size: 16px 16px;
    background-position: 0 0, 8px 8px;
    background-color: var(--bodyBG);
}

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

.headerImgContainer {
    position: relative;
    display: block;
    /* max-width: 1200px; */
    height: 100%;
    margin: 0 auto;
    padding: 1rem 0;
    /* background-color: #00ABEA; */
    /* background-color: #0f4372; */


}

.headerImgContainer>i {
    display: block;
    background: url(/img/KAHeader.jpg) center no-repeat;
    background-size: contain;
    width: 100%;
    /* padding-bottom: 56.3%; */
    /* padding-bottom: min(525px, 87.5%);
    max-width: 600px; */
    padding-bottom: min(712px, 71.5%);
    max-width: 1000px;
    margin: 0 auto;
}

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

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

.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; */
}

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

.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: 82%;
    background: url(/img/prize-professionals-logo.png) center no-repeat;
    background-size: contain;
}

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

#modal .inner #content {
    background: var(--bodyBG);
}

/* 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: none;
    padding-left: 0;
}

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

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) " ";
}