* {
    box-sizing: border-box;
}

html, body {
    padding: 0;
    margin: 0;
    color: #0f1139;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-size: 1rem;
}

li {
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    padding: .3rem 0;
}

header {
    background: #000 url("img/parken.jpg") center top no-repeat;
    background-size: cover;
    padding: 2rem 0;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
}

h1 {
    color: #fff;
}

h2 {
    font-weight: normal;
    font-size: 30px;
}

h3 {
    text-transform: uppercase;
    font-size: 18px;
    color: #2E3192;
}

h4 {
    font-size: 18px;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: auto;
    padding: 0 2rem;
}

.flex {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.top {
    margin-top: 6rem;
}

.s-top {
    margin-top: 2rem;
}

p a, li a {
    text-decoration: underline;
    font-weight: bold;
    color: #000;
}

.sixty {
    width: calc(100% - 545px);
}

.twenty {
    width: 250px;
    background: rgba(73, 77, 204, 0.1);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    flex-flow: column;
}

.twenty h4 {
    margin-bottom: 0;
}

.fifty {
    width: calc(50% - 1rem);
    padding: 1.4rem 1.8rem;
    border-radius: 16px;
    border: 2px solid rgb(46, 49, 146);
}

.fifty p a {
    font-weight: normal;
    color: #2E3192;
    text-decoration: none;
}

iframe {
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
    border: none;
    box-shadow: 0 10px 25px -10px rgba(0, 0, 0, .25);
    margin-bottom: 1.5rem;
}

.inner {
    max-width: 750px;
}

.inner h3 {
    margin-top: .5rem;
    margin-bottom: 2rem;
}

.inner h2 {
    margin-bottom: 0;
}

.btn {
    background: #2E3192;
    border: 1px solid #2E3192;
    color: #fff;
    border-radius: 7px;
    padding: .9rem 1.3rem;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    margin: .5rem 0;
    transition: all .15s;
}

.btn:hover {
    background: none;
    color: #2E3192;
}

.btn-2 {
    background: #7633C7;
    border: 1px solid #7633C7;
}

.btn-2:hover {
    background: none;
    color: #7633C7;
}

.buttons {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.buttons .btn {
    width: calc(50% - .5rem);
}

footer {
    background: #0a0b2b;
    color: #fff;
    padding: 2rem 0;
}

footer .flex {
    align-items: center;
}

footer .flex > div {
    width: calc(100% - 120px);
    padding-right: 1.5rem;
}

.anchor {
    display: none;
    margin: 0 0 1rem;
}

.anchor a {
    text-decoration: none;
    padding-right: 1rem;
    color: #2E3192;
}

.anchor a:first-child, .anchor a:hover {
    font-weight: bold;
}

.back {
    color: #2E3192;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: bold;
    margin: 3rem 0;
    padding: .5rem 0;
    display: block;
    text-decoration: none;
}

.inner h1 {
    color: #0a0b2b;
}

@media (max-width: 1100px) {
    .container {
        max-width: 900px;
    }

    .sixty {
        width: 100%;
        margin-bottom: 2rem;
    }

    .twenty {
        width: calc(50% - .7rem);
    }

    .fifty {
        width: 100%;
        margin: .7rem 0;
    }

    .top {
        margin-top: 4rem;
    }

    .anchor {
        display: block;
    }

    * {
        scroll-behavior: smooth;
    }
}

@media (max-width: 750px) {
    header .container {
        justify-content: space-between;
    }

    h1 {
        max-width: 500px;
        text-align: right;
        margin: 0;
        padding-left: 1.5rem;
    }
}

@media (max-width: 650px) {
    .twenty {
        width: 100%;
        margin: .5rem 0;
    }

    footer .flex svg {
        display: none;
    }

    footer .flex > div {
        width: 100%
    }

    h1 {
        font-size: 25px;
        max-width: 300px;
    }

    header {
        padding: 0;
    }
}

@media (max-width: 470px) {
    header .container {
        flex-flow: column;
        align-items: center;
    }

    .container {
        padding: 0 1.5rem;
    }

    header .container svg {
    }

    h1 {
        font-size: 23px;
        max-width: none;
        text-align: center;
        margin-top: 1rem;
        padding-left: 0;
    }

    h2 {
        font-size: 22px;
    }

    .twenty {
        padding: 1.1rem;
    }

    .fifty {
        padding: 1.1rem;
    }

    .buttons .btn {
        width: 100%;
        margin: .3rem 0;
    }
}