header {
    background: url(/img/Rubicon-Blue-BG.jpg) center no-repeat;
    background-size: cover;
}

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

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

.headerImgContainer>i {
    display: block;
    background: url(/img/headerImg.png) center no-repeat;
    background-size: contain;
    width: 100%;
    /* padding-bottom: 56.3%; */
    padding-bottom: min(525px, 87.5%);
    max-width: 600px;
    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: 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) " ";
}