:root {
    --colorText: #228358;
    --accentColor: #228358;
    --accentTextColor: white;
    --backgroundDarkColor: black;
    --backgroundDarkTextColor: white;
}
* {
    box-sizing: border-box
}

/*@font-face {
    font-family: GothamCondBold;
    src: url(/fonts/GothamCond-Bold.ttf);
}

@font-face {
    font-family: GothamCondBook;
    src: url(/fonts/GothamCond-Book.ttf);
}*/
body {
    margin: 0px;
    padding: 0px;
    background-color: white;
    color: black;
    font-family: "Segoe UI", SegoeUI, "SF Pro Text", Verdana, "Helvetica Neue", Helvetica, Arial, sans-serif
}
input {
    font-family: "Segoe UI", SegoeUI, "SF Pro Text", Verdana, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 20px;

}
textarea {
    font-family: "Segoe UI", SegoeUI, "SF Pro Text", Verdana, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 20px;
}

.mediumText {
    font-size: 20px;
}

header {
    background-color: black;
    color: white;
    margin: 0px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    padding: 12px;
}
.headerTitle {
    font-size: 3.8vw;
    color: white;
    margin: 8px;
    text-align: center
}

.headerLogo {
    width: 220px;
    margin: 8px 8px 8px
}

.navHeaderRight {
    display: flex;
    margin: 0px;
    font-weight: 600;
    font-size: 24px
}

    .navHeaderRight > li {
        margin: 0px 0px 0px 24px;
        cursor: pointer;
    }

.collapsibleMenuButton {
    display: none
}

.centerContentContainer {
    background-color: #F1F1F1;
    min-height: 100px;
    display: flex;
    flex-flow: row nowrap;
    padding: 0px 24px;
    justify-content: center
}

.navFooter {
    background-color: black;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    margin: 0px 0px 12px 0px
}


.navMenu {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: -100px;
    left: 0px;
    background-color: rgba(0,0,0,.82);
    backdrop-filter: blur(16px);
    padding: 32px;
    opacity: 0;
    display: none;
    transition: top .2s, opacity .2s;
    transition-timing-function: ease-out
}

.navMenuOpen {
    top: 0px;
    opacity: 1;
}

.navMenuItem {
    color: var(--backgroundDarkTextColor);
    font-size: 32px;
    padding: 8px;
    white-space: nowrap;
    text-decoration: none
}

.contentBlock {
    width: 100%;
    background-color: white;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    overflow: hidden;
}

section {
    height: 100px
}

footer {
    background-color: black;
}

.socialList {
    list-style: none;
    display: flex;
    margin: 0px;
    padding: 0px;
}

    .socialList > li {
        margin: 0px 12px 0px 12px;
        cursor: pointer;
    }

.subTitle {
    font-size: 3.8vw;
    color: white;
    margin: 8px;
    text-align: center
}
.button {
    background-color: var(--accentColor);
    border: none;
    color: var(--accentTextColor);
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    padding: 12px 20px;
    border-radius: 6px;
    box-shadow: 2px 2px 4px 2px #B8B8B855;
}

@media screen and (max-width: 600px) {
    .navFooter {
        flex-flow: column nowrap;
    }
}

@media screen and (min-width: 735px) {
    .navMenu {
        display: none;
    }

}

@media screen and (max-width: 734px) {
    .navHeaderRight {
        display: none;
    }

    .collapsibleMenuButton {
        display: initial;
    }

    .sectionBlock {
        flex-flow: column nowrap;
    }

    .sectionText {
        width: 100%
    }

    .sectionImage {
        width: 100%
    }

    .headerLogo {
        width: 160px
    }
}
