@charset "utf-8";

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 100;
    src: url('../fonts/roboto-v30-latin-100.eot');
    src: url('../fonts/roboto-v30-latin-100.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-100.woff2') format('woff2'), url('../fonts/roboto-v30-latin-100.woff') format('woff'), url('../fonts/roboto-v30-latin-100.ttf') format('truetype'), url('../fonts/roboto-v30-latin-100.svg#Roboto') format('svg');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v30-latin-regular.woff') format('woff'), url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
}

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #333;
    font-family: "Roboto", sans-serif;
    font-size: 0.937rem;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a.link {
    color: #e20020;
    transition: all .2s ease-in-out;
}

a.link:hover {
    color: #960015;
}

p {
    margin: 0 0 0.937rem;
}

.nowrap {
    white-space: nowrap;
}

.margin {
    margin: 1.562rem 0;
}

ul {
    list-style: none;
    margin: 0 0 0.625rem;
    padding: 0;
}

ul li {
    padding-left: 0.8rem;
}

ul li:before {
    content: "";
    float: left;
    position: relative;
    width: 0.437rem;
    height: 0.437rem;
    background: #D9212A;
    margin-left: -0.625rem;
    top: 0.5rem;
}

.big {
    font-size: 1.562rem;
    position: relative;
    top: 0.125rem;
}

h1 {
    max-width: 56.25rem;
    margin: 0 auto;
    font-weight: 100;
    padding: 0 0.937rem;
    font-size: 2.25rem;
}

h2 {
    font-size: 1.625rem;
    font-weight: 100;
    margin: 0 0 1.25rem;
}

h3 {
    color: #e20020;
    font-size: 1.875rem;
    font-weight: normal;
    line-height: 1.1;
    margin: 1.875rem 0;
}

.new_line {
    font-size: 1rem;
    color: #a3a3a3;
}

h4 {
    font-size: 1.5rem;
    margin: 1.5rem 0;
    font-weight: normal;
}

h5 {
    font-size: 1.75rem;
    font-weight: normal;
    text-align: center;
    margin: 0 0 0.937rem;
}

h6 {
    font-size: 1.25rem;
    line-height: 1.2;
    margin-bottom: 0.937rem;
}

h6 span {
    font-weight: 100;
}

.grau {
    background: #EDEDED;
    border-radius: 0.375rem;
    padding: 0.937rem;
    margin-bottom: 2.5rem;
}

.flex {
    display: flex;
    justify-content: space-between;
}

.flex1 {
    display: flex;
    column-gap: 12.5rem;
}

.red {
    color: #e20020;
}

header,
.box {
    max-width: 56.25rem;
    margin: 0 auto;
    padding: 0.625rem 1.25rem;
}

article {
    position: relative;
    max-width: 56.25rem;
    margin: 1rem auto;
    background: #fff;
    padding: 1.25rem;
}

a.button {
    color: #fff;
    background-color: #e20020;
    border-color: #e20020;
    padding: 0.5rem 0.937rem;
    border-radius: 0.375rem;
    transition: all .2s ease-in-out;
}

a.button:hover {
    background: #B41923;
}

.rot {
    background: radial-gradient(circle at center, #e20020 20%, #49000a);
    color: #fff;
    padding: 0.625rem;
}

.fa-print {
    background: #e20020;
    color: #fff;
    padding: 0.25rem;
    border-radius: 0.312rem;
    cursor: pointer;
    transition: all .2s ease-in-out;
}

.fa-print:hover {
    background: #90121B;
}

.flip-box {
    background-color: transparent;
    width: 25%;
    height: 12.5rem;
    perspective: 62.5rem;
}

.flip-box-front p {
    color: #D92124;
    margin: 0.625rem 0 0;
}

.flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-box:hover .flip-box-inner {
    transform: rotateY(180deg);
}

.flip-box-front,
.flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flip-box-front {
    color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.flip-box-back {
    background-color: #fff;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.flip-box-back p {
    margin: 0;
}

.flipper {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    flex-wrap: wrap;
}

.icon {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 9.375rem;
}

.icon img {
    max-width: 6.25rem;
    width: 100%;
}

footer {
    background: #E8E8E8;
    padding: 2.5rem 0;
}

.kontakt {
    background: #FFFFFF;
    display: flex;
    padding: 3.125rem;
    border-radius: 1.25rem;
    width: 40rem;
    margin: 0 auto;
    column-gap: 1.875rem;
}

.kontakt img {
    border-radius: 0.312rem;
}

@media only screen and (max-width: 56.187rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        margin: 0 0 1rem;
    }

    header {
        display: flex;
        justify-content: center;
        padding: 0;
    }

    h1 {
        font-size: 1.75rem;
        text-align: center;
        font-weight: normal;
    }

    article {
        margin: 0;
        padding: 0.625rem;
    }

    .flipper {
        flex-flow: wrap;
        justify-content: center;
        margin: 0 0 0.125rem;
    }

    .flip-box {
        width: 18.75rem;
    }

    .flex1 {
        column-gap: 10%;
    }

    .kontakt {
        width: auto;
        margin: 0 2.5rem;
    }
}

@media only screen and (max-width: 41.812rem) {
    .flip-box {
        width: 13.437rem;
    }
}

@media only screen and (max-width: 37.437rem) {
    .flipper {
        gap: 1.875rem;
        margin: 0 0 2.5rem;
    }

    .flex1 {
        flex-direction: column;
        align-items: center;
    }

    .flex {
        justify-content: center;
        align-items: center;
        column-gap: 0.937rem;
    }

    .column_left p,
    .column_right p,
    h6,
    .kontakt p {
        text-align: center;
    }

    .column_right {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    a.button {
        padding: 0 0.625rem;
    }

    h2 {
        margin: 0;
    }

    .grau,
    h3,
    h4 {
        margin: 0.625rem 0;
    }

    .big {
        font-size: 1.187rem;
        top: 0;
    }

    .margin {
        margin: 0.625rem 0;
    }

    .kontakt {
        flex-direction: column;
        align-items: center;
        padding: 0.625rem;
        margin: 0 0.312rem;
    }

    .kontakt img {
        margin-bottom: 1.25rem;
    }
}