html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin-bottom: 60px;
}

.main {
    margin: 21% 0 21% 0;
}

.header {
    width: 100%;
    padding: 16px 10px;
    background-color: var(--bg-primary);
    border-bottom: solid 2px var(--color-primary);
}

.header__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    margin-left: 10%;
}

.header__logo {
    place-self: center;
}

.header__nav-button {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
}

    .header__nav-button img {
        width: 29px;
        height: 25px;
    }

.header__logo-img {
    width: 150px;
}

.footer {
    width: 100%;
    height: 30px;
    background-color: #f8f7f7;
    bottom: 0px;
    position: fixed;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 11px;
    z-index: 2;
    min-width: 320px;
}

    .footer div {
        width: 50%;
        padding: 0px 3%
    }

        .footer div:nth-child(1) {
            border-right: 2px solid #0f6445;
            text-align: right;
        }

        .footer div:nth-child(2) {
            text-align: left;
        }

.content-block {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.headline-wrapper {
    margin: 0 auto;
    padding-left: 22px;
    padding-right: 22px;
    text-align: left;
    width: 50%;
}

@media (max-width: 1400px) {
    .headline-wrapper {
        width: 60%;
    }
}

@media (max-width: 1024px) {
    .headline-wrapper {
        width: 70%;
    }
}

@media (max-width: 950px) {
    .headline-wrapper {
        width: 80%;
    }
}


@media (max-width: 500px) {
    .headline-wrapper {
        width: 90%;
    }
}


.content-block .headline-copy {
    font-size: 20px;
    line-height: 28px;
}

.content-block .headline {
    font-weight: bold;
    font-size: 62px;
    margin-bottom: 16px;
}

@media (max-width: 420px) {
    .headline-wrapper {
        width: 100%;
        text-align: justify;
    }


    .footer div {
        width: 100%;
        text-align: center;
    }

        .footer div:nth-child(1) {
            padding-top: 5px;
            border-right: none;
            text-align: center;
        }

        .footer div:nth-child(2) {
            display: none;
        }
}

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

a {
    color: #0077cc;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}
