@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;700;800;900&display=swap');

html {
    scrollbar-face-color: #525252;
    scrollbar-base-color: #ffffff00;
    scrollbar-3dlight-color: #ffffff00;
    scrollbar-highlight-color: #ffffff00;
    scrollbar-track-color: #ffffff00;
    scrollbar-arrow-color: #ffffff00;
    scrollbar-shadow-color: #ffffff00;
}

::-webkit-scrollbar {
    width: .4em;
}

::-webkit-scrollbar-button {
    height: .5rem;
    background-color: #FFFFFF;
}

::-webkit-scrollbar-track {
    background-color: #FFFFFF;
}

::-webkit-scrollbar-track-piece {
    background-color: #FFFFFF;
}

::-webkit-scrollbar-thumb {
    height: auto;
    background-color: #8b8b8b;
    border-radius: 2rem;
}

::-webkit-scrollbar-corner {
    background-color: #FFFFFF;
}

::-webkit-resizer {
    background-color: #FFFFFF;
}

@keyframes slideInTop {
    0% {
        transform: translateY(-200vh);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes slideInBottom {
    0% {
        transform: translateY(100vh);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes slideInLeftLong {
    0% {
        transform: translateX(-100vw);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes slideInLeftLongest {
    0% {
        transform: translateX(-200vw);
    }

    100% {
        transform: translateX(0);
    }
}

::selection {
    background-color: #006ddf;
    color: #FFFFFF;
}

body {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: #006ddf;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.6rem;
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 900;
    margin: 0;
    padding: 0;
}

h4, h5, h6 {
    color: #505050;
    font-weight: 900;
    margin-bottom: .5em;
    margin-top: .5em;
}

p {
    margin-block-start: .7em;
    margin-block-end: .7em;
}

a {
    color: #FFFFFF;
    transition: .3s;
}

main a {
    color: #000000;
    transition: .3s;
    font-weight: 900;
    text-decoration: none;
}

a:hover {
    color: #b4b4b4;
}

main a:hover {
    color: #747272;
}

img {
    pointer-events: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.top-space {
    height: 13em;
    width: 100%;
}

.topnav {
    overflow: hidden;
    position: fixed;
    height: fit-content;
    top: 0;
    width: 100%;
    z-index: 1;
    padding-left: 1em;
    padding-top: .5em;
    padding-bottom: .5em;
    background-color: #006ddf;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    animation: .5s ease-out slideInTop;
}

.topnav .icon {
    display: none;
    padding-right: 1em;
}

.topnav .icon svg {
    width: 2rem;
}

.topnav .links {
    margin-right: 2em;
    min-width: 6em;
}

.topnav img {
    margin-top: .5em;
    height: 3rem;
    padding-right: 5vw;
}

.topnav a {
    text-decoration: none;
    display: inline-block;
    vertical-align: top;
    margin-top: .5em;
    margin-left: 1em;
}

.content {
    background-color: #FFFFFF;
    width: inherit;
    position: relative;
    padding-left: 1vw;
    padding-right: 1vw;
    padding-bottom: 1em;
    margin-bottom: 0;
    animation: 1s ease-out slideInLeft;
}

.title-text {
    top: -1.13em;
    color: #FFFFFF;
    font-size: 4em;
    position: absolute;
    animation: 1s ease-out slideInLeft;
}

.subtitle-text {
    color: #006ddf;
    font-size: 3em;
    margin-bottom: -.15em;
    margin-top: 0;
    animation: 1s ease-out slideInLeftLong;
}

.sub-subtitle-text {
    margin-top: -1em;
    margin-bottom: 2em;
    padding-left: .3em;
    padding-right: .3em;
    font-size: 1.3em;
    margin-left: .139em;
    background-color: #006ddf;
    color: #FFFFFF;
    display: inline-block;
    animation: 1s ease-out slideInLeftLongest;
}

main {
    margin-top: -1.5em;
    margin-bottom: -1em;
    min-height: 50vh;
}

strong {
    padding-left: .2em;
    padding-right: .2em;
    background-color: #006ddf;
    font-weight: normal;
    color: #FFFFFF;
    display: inline-block;
}

small {
    padding-left: .2em;
    padding-right: .2em;
    background-color: #006ddf;
    font-weight: normal;
    color: #FFFFFF;
    display: inline-block;
}

small a {
    color: #FFFFFF;
}

small a:hover {
    color: #8b8b8b;
}

.scouts {
    background-color: #006ddf;
}

ul {
    list-style-type: square;
    margin-block-start: .7em;
    margin-block-end: .7em;
}

li::marker {
    font-size: 1.4em;
    color: #006ddf;
}

.flex-fixer {
    width: 77.5vw;
}

.person h4 {
    font-size: 3em;
    color: #000000;
}

.person h4, .person h5 {
    margin: 0;
}

.name {
    vertical-align: middle;
    margin-bottom: .5em;
}

button {
    color: white;
    background-color: #006ddf;
    padding: .75rem 1.5rem;
    text-decoration: none;
    outline: none;
    border: none;
    cursor: pointer;
    font: inherit;
    transition: .5s;
    border-radius: .4rem;
}

button:hover {
    background-color: #00a794;
    cursor: pointer;
}

.more {
    margin-left: 1em;
    background-color: #b4b4b4;
    padding-top: .1em;
    padding-bottom: .1em;
    padding-left: 1em;
    padding-right: 1em;
    margin-bottom: 1em;
}

.form {
    margin-left: 1em;
    background-color: #b4b4b4;
    padding-top: .1em;
    padding-bottom: .1em;
    padding-left: 1em;
    padding-right: 1em;
    margin-bottom: 1em;
    width: 50vw;
}

.form input, .form textarea, .form select {
    width: max-content;
    font: inherit;
}

::-webkit-file-upload-button {
    color: white;
    background-color: #006ddf;
    padding: .75rem 1.5rem;
    text-decoration: none;
    outline: none;
    border: none;
    cursor: pointer;
    font: inherit;
    transition: .5s;
    border-radius: .4rem;
}

::-webkit-file-upload-button:hover {
    background-color: #00a794;
    cursor: pointer;
}

.bottomnav {
    height: fit-content;
    top: 0;
    padding: 1em;
    background-color: #7413dc;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    animation: 1s ease-out slideInBottom;
}

.bottomnav img {
    display: block;
}

.bottomnav .last {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.bottomnav .links-box {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-end;
}

.bottomnav .first .img-slogans {
    margin-top: .2em;
    display: flex;
    align-items: center;
}

.bottomnav .first .img-slogans h5 {
    margin-left: 1em;
    color: #FFFFFF;
}

.bottomnav .first img {
    margin-bottom: .2em;
    height: 2.5rem;
}

.bottomnav .last .imgs {
    display: flex;
    align-items: center;
}

.bottomnav .last .section {
    margin-right: 1em;
    height: 1.7rem;
}

.bottomnav .last .CEOP {
    height: 2.5rem;
}

.bottomnav p {
    margin-top: 0em;
    margin-bottom: 0;
    color: #FFFFFF;
    font-size: .5em;
}

.bottomnav p a {
    transition: .3s;
    font-weight: 900;
    text-decoration: none;
}

.bottomnav h5 a {
    text-decoration: none;
    display: inline-block;
    vertical-align: top;
    margin-top: .2em;
    margin-left: 1em;
}

.hidden {
    display: none;
}

@media (max-width: 1270px) {
    .person {
        display: flex;
        flex-direction: column;
        justify-content: initial;
        align-content: center;
        align-items: stretch;
    }

    .name {
        width: 100%;
        vertical-align: top;
        margin: 0;
    }
}

@media (max-width: 1100px) {
    html {
        font-size: 80%;
    }
}

@media (max-width: 950px) {
    .topnav {
        display: flex;
        justify-content: space-between;
        max-width: 99%;
    }

    .topnav a {
        display: none;
    }

    .topnav .links {
        margin: 0;
    }

    .topnav a.icon {
        display: block;
    }

    .topnav.responsive a {
        display: block;
    }

    .bottomnav {
        flex-direction: column;
    }

    .bottomnav .last {
        align-items: flex-start;
    }

    .bottomnav h5 a:first-of-type {
        margin-left: 0;
    }
}

@media (max-width: 860px) {
    html {
        font-size: 70%;
    }
}

@media (max-width: 650px) {
    html {
        font-size: 60%;
    }

    .title-text {
        font-size: 3.5em;
    }
}

@media (max-width: 440px) {
    html {
        font-size: 50%;
    }

    .title-text {
        font-size: 3.2em;
    }
}

@media (max-width: 400px) {
    html {
        font-size: 45%;
    }

    .title-text {
        font-size: 3.2em;
    }
}

@media (max-width: 300px) {
    html {
        font-size: 40%;
    }
}

@media (max-width: 300px) {
    html {
        font-size: 40%;
    }
}

@media (max-width: 270px) {
    html {
        font-size: 30%;
    }
}