* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Roboto, Arial, Helvetica, sans-serif;
    color: inherit;
}

body {
    color: #333333;
}

.hidden {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 1s, opacity 1s linear;
}

@media(min-width: 1000px) {
    p, li {
        font-weight: 700;
    }
}

p.para {
    margin-bottom: 20px;
}

li.para {
    padding-bottom: 20px;
}

button:hover, a:hover {
    cursor: pointer;
}

ul {
    list-style: inside;
}

nav {
    width: 100%;
    height: 75px;
    background-color: #002f5f;
    position: relative;
    display: flex;
    /* border-bottom: 1px solid #ffffff; */
    z-index: 100;
}

.flex-spacer {
    flex-grow: 1;
}

nav #nav-links-container {
    width: max-content;
    position: absolute;
    right: 0;
    height: 100%;
    padding: 0 10px;
}

nav #nav-links-container a {
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    margin: 0 20px;
    color: #ffffff;
    display: inline-block;
    height: 100%;
    line-height: 75px;
}

nav #nav-open-close {
    height: 100%;
    width: 75px;
    font-size: 23px;
    background: none;
    outline: none;
    border: none;
    color: #ffffff;
    display: none;
}

@media(max-width: 1000px) {
    nav #nav-open-close {
        display: block;
        margin-left: auto;
    }

    nav #nav-links-container {
        display: block;
        height: 0;
        width: 100%;
        transition: height 0.2s ease-in-out;
        background-color: #002f5f;
        overflow: hidden;
        margin-top: 75px;
    }

    nav #nav-links-container a {
        display: block;
        height: 75px;
    }

    nav #nav-links-container.open {
        height: 450px;
    }
}

#nav-logo {
    height: 75px;
    margin-left: 20px;
    display: inline-block;
}

.section {
    width: 100%;
    height: max-content;
    padding: 50px;
}

.section.thin .content {
    max-width: 800px;
}

.section.center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column nowrap;
}

.section h1 {
    text-align: center;
    margin-bottom: 20px;
}

.section .section-description {
    text-align: center;
    font-weight: 600;
    margin-bottom: 50px;
}

.no-overflow {
    overflow: hidden;
}

.header-small {
    height: calc(100vh * .5);
    width: 100%;
    clip-path: polygon(0 0, 100% 0%, 100% 80%, 0% 100%);
    overflow: hidden;
    position: relative;
    background-color: #000000;
}

.header-small .content {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: white;
    font-weight: bold;
    opacity: 1;
    z-index: 100;
}

.header-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.6;
}

.flex-img-half {
    max-width: 50%;
    object-fit: cover;
    object-position: center;
}

.flex-row {
    display: flex;
    margin-bottom: 20px;
}

.flex-row.wrap {
    flex-wrap: wrap;
}

.half {
    max-width: 50%;
}

.flex-row .half {
    padding: 0 20px;
}

@media(max-width: 700px) {
    .flex-img-half {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .flex-row .half {
        padding: 0;
    }

    .half {
        max-width: 100%;
    }

    .flex-row {
        margin-bottom: 0;
    }
}

.no-x-padding {
    padding-left: 0;
    padding-right: 0;
}