@font-face {
    font-family: "helvetica_light";
    src: url("fonts/helvetica_light.otf") format("truetype");
}
@font-face {
    font-family: "helvetica_regular";
    src: url("fonts/helvetica_regular.otf") format("truetype");
}
@font-face {
    font-family: "helvetica_bold";
    src: url("fonts/helvetica_bold.otf") format("truetype");
}
@font-face {
    font-family: "helvetica_lightoblique";
    src: url("fonts/helvetica_lightoblique.otf") format("truetype");
}
@font-face {
    font-family: "helvetica_oblique";
    src: url("fonts/helvetica_oblique.otf") format("truetype");
}
@font-face {
    font-family: "helvetica_boldoblique";
    src: url("fonts/helvetica_boldoblique.otf") format("truetype");
}

body {
    margin: 0;
    color: black !important;
    font-family: "helvetica_regular";
    background-color: #ffffff !important;
    font-synthesis: none !important;
}

a {
    color: black !important;
    text-decoration: none !important;
}

b,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "helvetica_bold";
}

i {
    font-family: "helvetica_oblique";
}

b i {
    font-family: "helvetica_boldoblique";
}

i b {
    font-family: "helvetica_boldoblique";
}

.row {
    display: flex;
    flex-direction: row;
    gap: 1em;
}

.row2 {
    display: flex;
    flex-direction: row;
    gap: 1em;
}

.column {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.header {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    padding: 0.5em 6em;
    border-bottom: #ddd 1px solid;
}

.logo {
    height: 2em;
}

.head {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: #2f2f59;
    color: white;
    padding: 3em 6em;
}

.info {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.headline {
    font-size: 50px;
    font-family: "helvetica_bold";
    margin: 0.3em 0;
}

.headimg {
    width: 30%;
}

.about {
    display: flex;
    flex-direction: column;
    gap: 1em;
    padding: 3em 6em;
}

.cards {
    display: flex;
    flex-direction: row;
    gap: 1em;
}

.card {
    padding: 1em;
    border-radius: 10px;
    border: #ddd 1px solid;
    font-size: 17px;
    width: 20em;
}

.card img {
    height: 4em;
}

a.card {
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
}

a.card:hover {
    color: #49498a !important;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
}

.footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: #2a2a3a;
    color: white;
    padding: 2.1em 6em;
}

.legacy {
    display: flex;
    flex-direction: column;
}

.legacy a {
    color: white !important;
}

sub {
    color: #ddd;
    margin-left: 0.3em;
}

@media screen and (max-width: 1120px) {
    body {
        margin: 0;
        color: black !important;
        font-family: "helvetica_regular";
        background-color: #ffffff !important;
        font-synthesis: none !important;
        font-size: 50px;
    }

    a {
        color: black !important;
        text-decoration: none !important;
    }

    .row {
        display: flex;
        flex-direction: column;
        gap: 0.25em;
    }

    .row2 {
        display: flex;
        flex-direction: row;
        gap: 0.25em;
    }

    .column {
        display: flex;
        flex-direction: column;
        gap: 0.25em;
    }

    .header {
        display: flex;
        flex-direction: row;
        justify-content: center;
        padding: 0.5em 0.5em;
        border-bottom: #ddd 1px solid;
    }

    .logo {
        height: 2em;
    }

    .head {
        display: flex;
        flex-direction: column;
        justify-content: unset;
        align-items: center;
        background-color: #2f2f59;
        color: white;
        padding: 1em 1em;
    }

    .info {
        display: flex;
        flex-direction: column;
        width: unset;
    }

    .headline {
        font-size: 100px;
        font-family: "helvetica_bold";
        margin: 0.3em 0;
    }

    .headimg {
        width: unset;
    }

    .about {
        display: flex;
        flex-direction: column;
        gap: 1em;
        padding: 1em 1em;
    }

    .cards {
        display: flex;
        flex-direction: column;
        gap: 1em;
    }

    .card {
        padding: 1em;
        border-radius: unset;
        border: unset;
        font-size: 50px;
        width: unset;
    }

    .card img {
        height: 4em;
    }

    a.card {
        transition: all 0.3s;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
    }

    a.card:hover {
        color: #49498a !important;
        transition: all 0.3s;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
    }

    .footer {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        background-color: #2a2a3a;
        color: white;
        padding: 1em 1em;
    }

    .legacy {
        display: flex;
        flex-direction: column;
    }

    .legacy a {
        color: white !important;
    }

    sub {
        color: #ddd;
        margin-left: 0.3em;
    }
}
