@charset "utf-8";

/* Fonts */

@font-face {
    font-family: 'Barlow-Regular';
    src: url('../fonts/Barlow-Regular.woff2') format('woff2'), url('../fonts/Barlow-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow-Italic';
    src: url('../fonts/Barlow-Italic.woff2') format('woff2'), url('../fonts/Barlow-Italic.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow-SemiBold';
    src: url('../fonts/Barlow-SemiBold.woff2') format('woff2'), url('../fonts/Barlow-SemiBold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow-SemiBoldItalic';
    src: url('../fonts/Barlow-SemiBoldItalic.woff2') format('woff2'), url('../fonts/Barlow-SemiBoldItalic.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Saira-Semicondensed-Regular';
    src: url('../fonts/sairasemicondensed-regular.woff2') format('woff2'), url('../fonts/sairasemicondensed-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Saira-Semicondensed-Semibold';
    src: url('../fonts/sairasemicondensed-semibold.woff2') format('woff2'), url('../fonts/sairasemicondensed-semibold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Basics */

:root {
    --color-1: #064380;
    --color-2: #064380;
    --color-3: #ebb000;
    --color-4: #e12d5f;
    --white: #ffffff;
    --grey-1: #f0f0f0;
    --grey-2: #737980;
    --grey-3: #363b40;
    --grey-4: #4c5359;
    --gradient-1: radial-gradient(circle, #f4f4f4 0%, #f0f0f0 67%, #e5e5e5 100%);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: subpixel-antialiased;
}

body {
    font-family: 'Barlow-Regular', sans-serif;
    color: var(--grey-3);
    background-color: var(--grey-1);
    overflow-y: scroll;
    font-size: 2em;
    line-height: 1.5;
    letter-spacing: 0.025rem;
    margin: 0;
    padding: 0;
}

p,
ul,
ol,
li {
    margin: 1.5rem 0;
}

p u,
li u {
    text-decoration-color: var(--color-3);
}

h1,
h2,
h3,
h4 {
    font-family: 'Saira-Semicondensed-Semibold', sans-serif;
    font-weight: normal;
    line-height: 1.25;
    color: var(--grey-2);
}

h1 {
    font-size: 4.8rem;
    margin: 3rem 0;
    letter-spacing: 0.025rem;
}

h2 {
    font-size: 3.8rem;
    margin: 2rem 0;
    letter-spacing: 0.025rem;
}

h3 {
    font-size: 3rem;
    margin: 2rem 0;
    letter-spacing: 0.025rem;
}

h4 {
    font-size: 2.4rem;
    margin: 2rem 0;
    letter-spacing: 0.025rem;
}

b,
strong {
    font-family: 'Barlow-SemiBold', sans-serif;
    font-weight: normal;
}

i,
em {
    font-family: 'Barlow-Italic', sans-serif;
    font-style: normal;
}

strong em, strong i, em strong, i strong, b em, b i, em b, i b {
	font-family: 'Barlow-SemiBoldItalic', sans-serif;
	font-weight: normal;
	font-style: normal;
}

a {
    text-decoration: none;
    color: var(--color-2);
    transition: color 0.25s ease;
}

a:hover, a:active {
    color: var(--color-3);
}

a:focus {
    outline: none;
}

a img {
    border: 2px solid var(--color-2);
    transition: border-color 0.25s ease;
}

a:hover img {
    border: 2px solid var(--color-3);
}

input,
textarea,
button,
select,
a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
h1 + h2,
h1 + h3,
h1 + h4,
h2 + h3,
h2 + h4,
p + h1,
p + h2,
p + h3,
p + h4,
ul + h1,
ul + h2,
ul + h3,
ul + h4,
ol + h1,
ol + h2,
ol + h3,
ol + h4,
figure + h1,
figure + h2,
figure + h3,
figure + h4 {
    margin-top: 4rem;
}

img {
    max-width: 100%;
}

img[data-sizes="auto"] {
    display: block;
    width: 100%;
}

figure {
    font-size: 0;
    margin: 2rem 0;
    text-align: center;
}

figure img {
    width: 100%;
    max-width: 102.4rem;
    border-radius: 3px;
}

figcaption {
    font-family: 'Barlow-Italic', sans-serif;
    font-style: italic;
    font-size: 1.6rem;
    margin: 1rem 0 0 0;
}

table {
    margin: 2rem 0;
    width: 100%;
}

tr, td {
    vertical-align: top;
}

.bg-white {
    background-color: var(--white);
    overflow: auto;
}

.bg-gradient {
    background: var(--grey-1);
    background: var(--gradient-1);
    overflow: auto;
}

.bg-dark {
    background-color: var(--grey-4);
    border-bottom: 2px solid var(--grey-4);
    overflow: auto;
}

.bg-color {
    background-color: var(--color-1);
    overflow: auto;
}

.bg-highlight {
    background-color: var(--color-3);
    overflow: auto;
}

.bg-highlight a:hover {
    color: var(--white);
}

/* Flex */

.flex {
    display: flex;
    position: relative;
}

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

.flex-start {
    justify-content: flex-start;
    align-items: flex-start;
}

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

.flex-end {
    justify-content: flex-end;
}

.flex-end-vertical {
    align-items: flex-end;
}

.sort-1-3-2-4:nth-child(1) {
    order: 1;
}

.sort-1-3-2-4:nth-child(2) {
    order: 2;
}

.sort-1-3-2-4:nth-child(3) {
    order: 3;
}

.sort-1-3-2-4:nth-child(4) {
    order: 4;
}

.v-centered {
    align-items: center;
    height: 100%;
}

.h-centered {
    justify-content: center;
}

.space-between {
    justify-content: space-between;
}

/* Layout */

.content-wide,
.content-narrow {
    position: relative;
    height: 100%;
    margin: 0 auto;
    padding: 0 6rem;
}

.content-wide {
    max-width: 192rem;
}

.content-narrow {
    max-width: 160rem;
}

.content-tiles {
    max-width: 128rem;
}

.grid {
    width: calc(100% + 6rem);
    margin: 0 -3rem;
}

.block-1-1,
.block-1-2,
.block-1-3,
.block-1-4,
.block-3-4 {
    position: relative;
    top: 0;
    z-index: 2;
    height: 100%;
    padding-right: 3rem;
    padding-left: 3rem;
}

.block-1-1 {
    width: 100%;
}

.block-1-2 {
    width: 50%;
}

.block-1-3 {
    width: 33.33%;
}

.block-1-4 {
    width: 25%;
}

.block-3-4 {
    width: 75%;
}

.block-auto {
    width: auto;
    padding-left: 3rem;
}

.block-text {
    display: block;
}

.padding-top-bottom {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.padding-top {
    padding-top: 3rem;
}

.padding-bottom {
    padding-bottom: 3rem;
}

.icon {
    width: 14rem;
    height: 14rem;
    float: left;
    margin: 1.5rem 2rem 1rem 0;
}

.square {
    position: relative;
    height: 0;
    padding-bottom: 100%;
}

.tile {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    cursor: pointer;
    border-radius: 3px;
    overflow: hidden;
    transform: scale(1);
    transition: all 0.5s ease;
}

.tile:hover {
    transform: scale(1.05);
}

.tile.bg-color:hover {
    background-color: var(--grey-4);
}

.tile .icon {
    width: 60%;
    height: 60%;
    float: none;
    margin: 10% auto 5% auto;
}

.tile-text {
    font-family: 'Saira-Semicondensed-Regular', sans-serif;
    font-size: 2.4rem;
    text-align: center;
    color: var(--white);
    margin: 0;
    transition: color 0.5s ease;
}

a:hover .tile-text {
    color: var(--color-3);
}

.icon-stroke-color-1 {
    stroke: var(--color-1);
}

.icon-fill-color-1 {
    fill: var(--color-1);
}

.icon-stroke-color-2 {
    stroke: var(--color-3);
}

.icon-fill-color-2 {
    fill: var(--color-3);
}

.icon-stroke-color-3 {
    stroke: var(--white);
}

.icon-fill-color-3 {
    fill: var(--white);
}

.tile .icon-stroke-color-1 {
    stroke: var(--white);
}

.tile .icon-fill-color-1 {
    fill: var(--white);
}

.tile .icon-stroke-color-2 {
    stroke: var(--color-3);
}

.tile .icon-fill-color-2 {
    fill: var(--color-3);
}

.tile .icon-stroke-color-3 {
    stroke: var(--color-1);
}

.tile .icon-fill-color-3 {
    fill: var(--color-1);
}

.adaptable-right {
    position: absolute;
    right: 0;
}

.adaptable-left {
    position: absolute;
    left: 0;
}

.adaptable-bg-img {
    position: relative;
    top: 0;
    width: 100%;
    height: calc(100% - 12rem);
    margin: 6rem 0;
    background-size: cover;
    background-position: center center;
    border-radius: 3px;
    overflow: hidden;
}

.move-1-2 {
    left: 50%;
}

.inverted-box {
    width: 100%;
    overflow: hidden;
    border-radius: 3px;
    margin: 2rem 0;
    padding: 0.5rem 2rem;
    color: var(--white);
    background-color: var(--grey-4);
}

.highlight-box {
    width: 100%;
    overflow: hidden;
    border-radius: 3px;
    margin: 2rem 0;
    padding: 0.5rem 2rem 1rem 2rem;
}

.bg-white .highlight-box {
    background: var(--grey-1);
    /*background: linear-gradient(0deg, rgba(242, 242, 242, 1) 0%, rgba(217, 217, 217, 1) 100%);*/
    background: radial-gradient(circle, #f2f2f2 0%, var(--grey-1) 67%, var(--grey-1) 100%);
}

.bg-gradient .highlight-box, .bg-color .highlight-box {
    background-color: var(--white);
}

/* Header */

.header {
    position: fixed;
    z-index: 10;
    width: 100%;
    border-bottom: 2px solid var(--white);
}

/* Title */

.title {
    position: relative;
    background-color: var(--white);
    width: 100%;
    height: 12rem;
    transition: all 0.5s ease;
}

/* Logo */

.logo {
    position: relative;
    top: 0;
    margin: 0;
    transform: scale(1);
    transform-origin: 0 50%;
    transition: all 0.5s ease;
}

.logo svg {
    position: relative;
    top: 0;
    height: 8rem;
    margin: 0 2rem 0 0;
}

.logo svg .logo-color {
    fill: var(--color-1);
    transition: fill 0.25s ease;
}

.logo a:hover svg .logo-color {
    fill: var(--color-3);
}

.logo h2 {
    line-height: 1;
    margin: 0;
    color: var(--color-1);
}

.logo a h2 {
    transition: color 0.25s ease;
}

.logo a:hover h2 {
    color: var(--color-3);
}

.logotext-1 {
    display: block;
    font-size: 2.5rem;
    margin: 0;
}

.logotext-2 {
    display: block;
    font-family: 'Saira-Semicondensed-Regular', sans-serif;
    font-size: 2.19rem;
    line-height: 1.2;
    margin: 0.3rem 0 0 0;
    letter-spacing: 0.02rem;
}

/* Social Icons */

.header-social {
    position: relative;
}

.social-trigger {
    display: none;
}

.social-icons {
    list-style: none;
    margin: 0;
    transition: all 0.5s ease;
}

.social-icons li {
    margin: 0 0 0 1.5rem;
    transition: all 0.5s ease;
}

.social-icons svg,
.social-icons img {
    position: relative;
    width: 4.8rem;
    height: 4.8rem;
    transition: all 0.5s ease;
}

.social-icons a {
    display: block;
    font-size: 0;
}

.social-icons a img {
    border: none;
}

.social-icons a svg path,
.social-icons a svg rect,
.social-icons a svg circle,
.social-icons a svg polyline {
    fill: var(--color-1);
    transition: fill 0.25s ease;
}


.social-icons img {
    margin-right: 0.5rem;
    padding: 0.3rem;
}

.social-icons a:hover svg path,
.social-icons a:hover svg rect,
.social-icons a:hover svg circle,
.social-icons a:hover svg polyline {
    fill: var(--color-3);
}

/* Contact Icons */

.contact-icons {
    list-style: none;
    margin: 0;
    transition: all 0.5s ease;
}

.contact-icons li {
    margin: 0 1rem 0 0;
    transition: all 0.5s ease;
}

.contact-icons svg {
    width: 3.6rem;
    height: 3.6rem;
    background-color: var(--color-1);
    border-radius: 1.8rem;
    transition: all 0.25s ease;
}

.contact-icons a {
    display: block;
    font-size: 0;
    padding: 1rem;
}

.contact-icons a:hover svg {
    background-color: var(--color-3);
}

.contact-icons a svg path {
    fill: var(--white);
}

.burger {
    display: none;
}

/* Menu */

.menu {
    position: relative;
    background-color: var(--color-1);
    width: 100%;
    height: 6rem;
    transition: all 0.5s ease;
}

.topmenu {
    font-family: 'Saira-Semicondensed-Regular', sans-serif;
    font-size: 2.4rem;
    line-height: 6rem;
    height: 100%;
    list-style: none;
    letter-spacing: 0.025rem;
    margin: 0 0 0 2rem;
    transition: color 0.5s ease;
}

.topmenu li {
    position: relative;
    height: auto;
    margin: 0 0 0 4rem;
    color: var(--white);
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.5s ease;
}

.topmenu li:hover {
    color: var(--color-3);
}

.topmenu a {
    position: relative;
    display: block;
    height: 100%;
    color: var(--white);
    transition: all 0.5s ease;
}

.topmenu a:hover,
.topmenu li.active a {
    color: var(--color-3);
}

.submenu-outer {
    display: none;
}

.topmenu li:hover .submenu-outer {
    display: block;
}

.topmenu li .submenu {
    position: absolute;
    top: 6rem;
    left: 0;
    line-height: 6rem;
    height: auto;
    margin: 0 0 0 -2rem;
    border-top: 2px solid var(--white);
    opacity: 1;
    animation-name: submenu-fadein-ani;
    animation-duration: 0.25s;
    animation-iteration-count: 1;
    animation-fill-mode: backwards;
    animation-timing-function: ease;
}

@keyframes submenu-fadein-ani {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.topmenu li .submenu.show {
    display: block;
}

.topmenu li .submenu li {
    display: block;
    margin: 0;
    padding: 0 2rem;
    background-color: var(--color-1);
    border-bottom: 2px solid var(--white);
}

.topmenu li .submenu li:hover {
    background-color: var(--grey-4);
}

.topmenu li .submenu li a {
    display: block;
}

.topmenu li.active .submenu li a {
    color: var(--white);
}

.topmenu li.active .submenu li a:hover {
    color: var(--color-3);
}

.topmenu li.active .submenu li.active a {
    color: var(--color-3);
}

/* Search */

.search-trigger {
    margin: 0 0 0 3rem;
    transition: all 0.5s ease;
}

.search-icon {
    position: relative;
    top: 0.5rem;
    width: 5.2rem;
    height: 5.2rem;
    padding: 1rem;
    cursor: pointer;
}

.search-icon path {
    fill: var(--white);
    transition: fill 0.25s ease;
}

.search-icon:hover path {
    fill: var(--color-3);
}

.search-form {
    position: absolute;
    top: 100%;
    padding: 1rem;
    background-color: var(--color-1);
    border-top: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
}

.search-field {
    vertical-align: top;
    height: 4rem;
    width: 32rem;
    margin: 0;
    background-color: var(--white);
    border-radius: 2px 0 0 2px;
}

.search-button {
    vertical-align: top;
    width: 4rem;
    height: 4rem;
    margin: 0;
    background-color: var(--color-3);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg%20enable-background%3D%22new%200%200%2044%2044%22%20version%3D%221.1%22%20viewBox%3D%220%200%2044%2044%22%20xml%3Aspace%3D%22preserve%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpolyline%20points%3D%228%2024%2018%2032%2036%2012%22%20stroke%3D%22%23002d59%22%20fill%3D%22none%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%224%22%2F%3E%0A%3C%2Fsvg%3E');
    transition: all 0.25s ease;
    border-radius: 0 2px 2px 0;
}

.search-button:hover {
    background-color: var(--white);
}

/* Search Animation */

#search-form.show {
    display: flex;
}

#search-form.fadein {
    animation-name: search-form-fadein-ani;
    animation-duration: 0.25s;
    animation-iteration-count: 1;
    animation-fill-mode: backwards;
    opacity: 1;
}

@keyframes search-form-fadein-ani {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

#search-form {
    display: none;
}

#search-form.fadeout {
    animation-name: search-form-fadeout-ani;
    animation-duration: 0.25s;
    animation-iteration-count: 1;
    animation-fill-mode: backwards;
    opacity: 0;
}

@keyframes search-form-fadeout-ani {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.simplesearch-paging {
    display: none;
}

.simplesearch-result {
    margin: 3rem 0;
}

.simplesearch-highlight {
    font-family: 'Barlow-SemiBold', sans-serif;
    color: var(--color-1);
}

/* Shrink */

.header.shrink .title {
    height: 6rem;
}

.header.shrink .logo {
    transform: scale(0.6);
}

/* Main */

.main {
    padding-top: 18.2rem;
    transition: padding 0.25s ease;
    overflow: hidden;
}

/* Title mobile */

.logotext-mobile {
    display: none;
}

/* Key visual */

.key-visual-outer {
    overflow: hidden;
}

.key-visual {
    height: 0;
    padding: 0 0 55% 0;
    overflow: hidden;
}

.key-visual-img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
}

.key-visual-img.lazyloaded {
    transform: scale(1.15);
    opacity: 1;
    transform-origin: 50% 25%;
    animation-name: kv-scale-ani;
    animation-duration: 10s;
    animation-iteration-count: 1;
    animation-fill-mode: backwards;
    animation-timing-function: ease-in-out;
}

@keyframes kv-scale-ani {
    0% {
        transform: scale(1);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        transform: scale(1.15);
        opacity: 1;
    }
}

/* Stoerer */

.stoerer-turnitin {
    position: absolute;
    overflow: hidden;
    left: 6rem;
    top: 6rem;
    width: 15rem;
    height: 15rem;
    padding: 1rem 0;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    transform: scale(1) rotate(-15deg);
    text-align: center;
    display: block;
}

.stoerer-turnitin-inner {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    width: 80%;
    margin: 0 auto;
}

.stoerer-turnitin-inner p {
    font-size: 1.5rem;
    margin: 0;
    color: var(--color-1);
    line-height: 1.3;
    letter-spacing: 0.05rem;
}

.stoerer-turnitin-inner svg {
    width: 12rem;
    height: 3.289rem;
    margin: 0.4rem 0 -0.4rem 0;
}

.stoerer-turnitin-inner svg path {
    fill: var(--color-1);
}

.stoerer-rechts {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    overflow: hidden;
    right: 6rem;
    top: 6rem;
    font-family: 'Saira-Semicondensed-Semibold';
    color: var(--color-1);
    line-height: 1.2;
    width: 15rem;
    height: 15rem;
    padding: 1rem;
    border-radius: 50%;
    background-color: var(--color-3);
    transform: scale(1) rotate(15deg);
    text-align: center;
    border: 2px solid var(--color-3);
    transition: background-color 0.25s ease;
}

.stoerer-rechts p svg {
    margin: 0.2rem 0 -0.2rem 0;
}

/* Claim */

.claim {
    position: absolute;
    left: 0;
    bottom: 20%;
    display: flex;
    justify-content: flex-end;
    width: auto;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 0 2px 2px 0;
}

.claim p {
    position: relative;
    font-family: 'Saira-Semicondensed-Semibold', sans-serif;
    font-size: 6rem;
    line-height: 1.5;
    width: auto;
    color: var(--color-1);
    margin: 0;
    padding: 2rem 4rem 2rem 6rem;
}

/* CTA */

.claim p.cta-button-startseite {
    position: absolute;
    top: 0;
    left: calc(100% + 9rem);
    font-family: 'Saira-Semicondensed-Semibold', sans-serif;
    font-size: 3rem;
    line-height: 8.6rem;
    text-align: center;
    letter-spacing: 0.025rem;
    width: 32.5rem;
    height: 9rem;
    margin: 0;
    padding: 0;
    border-radius: 3px;
    overflow: hidden;
}

.claim p.cta-button-startseite a {
    border: 2px solid var(--color-3);
    display: block;
    height: 100%;
    width: 100%;
    color: var(--color-1);
    background-color: rgba(255, 255, 255, 0.85);
    transition: all 0.25s ease;
}

.claim p.cta-button-startseite a:hover {
    background-color: var(--color-3);
}

.cta-button a {
    display: block;
    height: 100%;
    width: 100%;
    color: var(--color-1);
    background-color: transparent;
    border: 2px solid var(--color-3);
    transition: all 0.25s ease;
}

.cta-button a:hover {
    background-color: var(--color-3);
}

.cta-button {
    position: relative;
    font-family: 'Saira-Semicondensed-Semibold', sans-serif;
    font-size: 3rem;
    line-height: 5.6rem;
    height: 6rem;
    width: 30rem;
    text-align: center;
    letter-spacing: 0.025rem;
    margin: 3rem auto;
    border-radius: 3px;
    overflow: hidden;
}

/* Footer */

.footer {
    position: relative;
    z-index: 2;
    font-family: 'Saira-Semicondensed-Regular', sans-serif;
    font-size: 2rem;
    background-color: var(--grey-4);
    color: var(--white);
    padding: 3rem 0 2rem 0;
    letter-spacing: 0.025rem;
}

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

.footer .logo {
    position: relative;
    margin-top: -0.4rem;
}

.footer .logo svg {
    margin: 0;
}

.footer p {
    margin: 0 0 0 2rem;
}

.footer ul {
    margin: 0;
}

.footer li {
    margin: 0 0 0 2rem;
    list-style: none;
}

.footer a {
    color: var(--white);
    text-transform: none;
    display: block;
}

.footer a:hover {
    color: var(--color-3);
}

.footer-column {
    padding: 0;
}

.footer-column-wide.flex {
    flex-wrap: wrap;
    justify-content: flex-start;
}

.footer .logo svg {
    width: 4.2rem;
    height: 3.66rem;
}

.footer .logo svg .logo-color {
    fill: var(--white);
}

.footer .logo a:hover svg .logo-color {
    fill: var(--color-3);
}

/* Carousel */

.carousel {
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.carousel-highlight {
    position: relative;
    width: 100%;
    height: 9rem;
    margin: 0;
    border-bottom: 2px solid var(--white);
}

.carousel-highlight p {
    height: 7.8rem;
    overflow: hidden;
    margin: 0;
    padding: 1.2rem 2rem 1.2rem 2rem;
}

.carousel-highlight p:before {
    content: "Latest News: ";
    font-family: 'Barlow-SemiBold', sans-serif;
    color: var(--color-3);
}

.carousel-container {
    position: relative;
    top: -2px;
    width: 100%;
    padding: 0;
    margin: 0 auto;
    border-radius: 3px;
}

.carousel-container li {
    list-style-type: none;
    width: 100%;
    height: 9rem;
    margin: 0;
    padding: 0;
    border-top: 2px solid var(--white);
}

.carousel-container li p {
    margin: 1.2rem 0 0 0;
    height: 6rem;
    overflow: hidden;
    padding: 0 2rem;
}

/* Form */

input,
textarea,
select {
    display: block;
    position: relative;
    font-family: 'Barlow-Regular', sans-serif;
    font-size: 2rem;
    color: var(--grey-4);
    margin: 0.5rem 0 1rem 0;
    padding: 0.6rem 0.8rem 0.6rem 0.8rem;
    width: 100%;
    background-color: var(--grey-1);
    border: 2px solid transparent;
    outline: none;
    transition: border 0.25s ease;
    border-radius: 3px;
}

input[type="date"],
input[type="time"] {
    position: relative;
    height: 4rem;
}

input[type="date"] {
    width: auto;
    min-width: 12rem;
}

input[type="time"] {
    width: auto;
    min-width: 7rem;
}

input:focus,
textarea:focus,
select:focus {
    border: 2px solid var(--color-3);
}

textarea {
    resize: vertical;
    min-height: 14rem;
}

::-webkit-input-placeholder {
    color: var(--grey-4);
}

::-moz-placeholder {
    color: var(--grey-4);
}

input[placeholder] {
    color: var(--grey-4);
}

.input-check {
    display: flex;
    text-align: left;
}

input[type="checkbox"] {
    display: none;
}

input[type="checkbox"] + label span.check {
    height: 4rem;
    width: 4rem;
    display: inline-block;
    position: relative;
    top: 0;
    margin: 0 1rem 0 0;
    background-color: var(--grey-1);
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 3px;
    transition: border 0.25s ease;
}

input[type="checkbox"]:checked + label span.check {
    background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg%20enable-background%3D%22new%200%200%2044%2044%22%20version%3D%221.1%22%20viewBox%3D%220%200%2044%2044%22%20xml%3Aspace%3D%22preserve%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpolyline%20points%3D%228%2024%2018%2032%2036%2012%22%20stroke%3D%22%231f2c39%22%20fill%3D%22none%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%224%22%2F%3E%0A%3C%2Fsvg%3E');
    background-size: 3.6rem 3.6rem;
    background-position: 0 0;
    background-repeat: no-repeat;
    border: 2px solid var(--grey-2);
    ;
}

.submit {
    font-family: 'Saira-Semicondensed-Regular', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    border: 2px solid var(--color-2);
    color: var(--white);
    padding: 0.2rem 1.2rem;
    background-color: var(--color-2);
    border-radius: 3px;
    width: auto;
    margin: 2rem 0 0 0;
    cursor: pointer;
    transition-property: color, background-color, border-color, display;
    transition-duration: 0.25s;
    transition-timing-function: ease;
}

.submit:hover,
.submit:focus {
    color: var(--color-3);
    background-color: var(--grey-3);
}

/* Ajax-Upload */

.qq-uploader {
    font-size: 0;
}

.qq-upload-button {
    display: inline-block;
    font-family: 'Saira-Semicondensed-Regular', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.025rem;
    border: none;
    border-radius: 3px;
    color: var(--white);
    padding: 0.4rem 1.2rem;
    background-color: var(--grey-2);
    width: auto;
    margin: 0;
    cursor: pointer;
    transition-property: color, background-color, border-color, display;
    transition-duration: 0.25s;
    transition-timing-function: ease;
}

.qq-upload-button:hover,
.qq-upload-button:focus {
    color: var(--color-3);
    background-color: var(--grey-4);
}

.qq-clear-button {
    display: none;
}

.file-wrap {
    font-size: 1.6rem;
    height: auto;
    margin: 2rem 0;
    border-radius: 3px;
}

.file-wrap .thumb {
    display: inline-block;
    position: relative;
    top: 0;
    max-width: 6rem;
    max-height: 6rem;
}

.file-wrap .title {
    display: inline-block;
    position: relative;
    top: -0.8rem;
    width: auto;
    height: auto;
    padding: 0 1rem 0 1rem;
    background-color: transparent;
}

.file-wrap .delete-button {
    display: inline-block;
    position: relative;
    top: -0.4rem;
    width: 2rem;
    height: 2rem;
    border-radius: 1rem;
    background-color: var(--color-3);
    background-image: url(../img/delete-button.svg);
    cursor: pointer;
}

.file-wrap .delete-button:hover {
    background-color: var(--color-4);
}

/* Notification */

/* Notification AjaxForm */
.jGrowl {
    z-index: 9999;
    font-family: 'Barlow-Regular', sans-serif;
    color: var(--white);
    font-size: 2rem;
    position: fixed;
    box-sizing: border-box;
    width: 100%;
}

.jGrowl p {
    margin: 1rem 0;
}

.jGrowl.top-right {
    top: 40vh;
    left: auto;
    right: auto;
    margin: 0 auto;
}

.jGrowl-notification {
    position: relative;
    background-color: var(--color-1);
    opacity: 1;
    zoom: 1;
    padding: 1.2rem 3.6rem;
    margin: 0 auto;
    text-align: center;
    display: none;
    border: 2px solid var(--white);
    border-radius: 3px;
    max-width: 40rem;
}

.jGrowl-notification .ui-state-highlight,
.jGrowl-notification .ui-widget-content .ui-state-highlight,
.jGrowl-notification .ui-widget-header .ui-state-highlight {
    border: 2px solid var(--white);
    background: var(--grey-4);
    color: var(--white);
}

.jGrowl-notification .jGrowl-close {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 4rem;
    line-height: 0;
    margin: 0;
    padding: 1.6rem 0.8rem;
    background-color: transparent;
    border: none;
    webkit-appearance: none;
}

.af-message-success {
    background-color: var(--color-1);
}

.af-message-error {
    background-color: var(--color-4);
}

.af-message-info {
    background-color: var(--color-1);
}

.label-check {
    font-size: 0;
}

.check-text {
    display: inline-block;
    position: relative;
    top: 0.4rem;
    width: calc(100% - 5rem);
    margin: 0;
}

.js-link {
    text-decoration: none;
    cursor: pointer;
    color: var(--color-2);
    transform: color;
    transition-property: color;
    transition-duration: 0.25s;
    transition-timing-function: ease;
}

.js-link:hover {
    color: var(--color-3);
}

.file-buttons {
    margin: 2rem 0;
}

.file-buttons p {
    margin-bottom: 0;
}

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

fieldset {
    width: 100%;
    margin: 0;
    padding: 0;
    border: none;
}

fieldset.block-1-2:nth-child(odd) {
    padding: 0 3rem 0 0;
}

fieldset.block-1-2:nth-child(even) {
    padding: 0 0 0 3rem;
}

.form-text {
    width: 100%;
}

.form-box {
    width: 100%;
    overflow: hidden;
    border-radius: 3px;
    margin: 0 0 3rem 0;
    padding: 0 2rem 2rem 2rem;
}

/* Poll */

.poll {
    position: relative;
    top: 2rem;
    height: 42rem;
}

.poll-headline {
    position: absolute;
    z-index: 2;
    top: 0;
    width: 100%;
    height: 15rem;
}

.poll-headline h3 {
    margin: 0;
    padding-bottom: 1.8rem;
}

.poll-headline p {
    padding: 0 2rem;
}

.poll-body {
    position: absolute;
    top: 9.3rem;
    width: 100%;
    height: 36rem;
    border-radius: 3px;
}

.poll-question {
    position: absolute;
    z-index: 2;
    top: 9rem;
    left: 0;
    width: 100%;
    height: 27rem;
}

.poll-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 3rem 5%;
    max-width: 102.4rem;
    margin: 0 auto;
}

.poll-input {
    font-family: 'Saira-Semicondensed-Semibold', sans-serif;
    font-size: 2.4rem;
    color: var(--white);
    text-align: center;
    margin: 0;
    width: 12rem;
    height: 12rem;
    cursor: pointer;
    border: none;
    border-radius: 50%;
    transition: background 0.25s ease;
}

.poll-input-1 {
    background-color: var(--color-2);
}

.poll-input-2 {
    background-color: var(--color-3);
}

.poll-input-1:hover,
.poll-input-2:hover,
.poll-input-1:focus,
.poll-input-2:focus {
    background-color: var(--grey-4);
    border-color: transparent;
}

.poll-view-result {
    width: 100%;
    margin: 0;
    height: 3rem;
}

.poll-trigger-result {
    text-align: center;
    cursor: pointer;
    color: var(--color-2);
    display: none;
    transition: color 0.25s ease;
}

.poll-trigger-result:hover {
    color: var(--color-3);
}

.poll-result {
    position: absolute;
    top: 6rem;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 30rem;
    padding: 1px 0;
    display: none;
}

.poll-info {
    display: flex;
    align-items: center;
    height: 100%;
}

.poll-chart {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    margin: 0;
}

.poll-chart svg {
    display: block;
    margin: 0 auto;
    max-width: 70%;
    max-height: 70%;
}

.poll-text {
    width: 50%;
}

.poll-text p {
    margin: 0.5rem 0;
    padding: 0 2rem 0 0;
}

.poll-color-1 {
    position: relative;
    top: 0.2rem;
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background-color: var(--color-2);
    margin-right: 1rem;
}

.poll-color-2 {
    position: relative;
    top: 0.2rem;
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background-color: var(--color-3);
    margin-right: 1rem;
}

.pieTip {
    display: none;
}

button:focus {
    outline: 0;
}

/* Slideshow */

#slideshow {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 60%;
    overflow: hidden;
    margin: 0 0 3rem 0;
    background-color: var(--white);
    border-radius: 3px;
}

#slideshow .slide {
    position: absolute;
    height: 100%;
    width: 100%;
    margin: 0;
    overflow: hidden;
}

#slideshow .slide .slide-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    transform-origin: center center;
    width: 100%;
    height: 100%;
    opacity: 0;
}

#slideshow .slide.fx .slide-inner {
    animation-name: slideshow-ani;
    animation-duration: 15s;
    animation-iteration-count: 1;
    animation-fill-mode: backwards;
    animation-timing-function: ease-in;
    opacity: 0;
    transform: scale3D(1, 1, 1);
}

@keyframes slideshow-ani {
    0% {
        transform: scale3D(0.5, 0.5, 0.5);
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    55% {
        opacity: 1;
    }

    85% {
        opacity: 0;
    }

    100% {
        transform: scale3D(2, 2, 2);
        opacity: 0;
    }
}

#slideshow .fx {
    opacity: 1;
}

/* Testimonials */

.testimonial {
    margin: 0 0 0 10%;
    width: auto;
    height: auto;
}

.testimonial blockquote {
    position: relative;
    display: table-row;
    font-family: 'Barlow-Italic', sans-serif;
    font-style: normal;
    text-indent: -2.8rem;
    margin: 0 auto;
    font-size: 3.6rem;
    line-height: 4.8rem;
}

.testimonial blockquote:before {
    content: "»";
    position: relative;
    top: 0.5rem;
    left: 0;
    font-size: 5rem;
    line-height: 3.6rem;
    color: var(--color-3);
}

.testimonial blockquote:after {
    content: "«";
    position: relative;
    top: 0.5rem;
    left: 0;
    font-size: 5rem;
    line-height: 3.6rem;
    color: var(--color-3);
}

.testimonial figcaption {
    display: table-row;
    font-size: 2rem;
    color: var(--grey-2);
}

.testimonial figcaption:before,
.testimonial figcaption:after {
    content: "";
    display: table-row;
    height: 1rem;
}

/* DARKBOX STYLES */

#darkbox {
    position: fixed;
    z-index: 9999;
    background: var(--grey-4) no-repeat none 50%/contain;
    box-shadow: 0 0 0 2000px var(--grey-4);
    opacity: 0;
    visibility: hidden;
}

#darkbox.on {
    opacity: 1;
    visibility: visible;
    height: calc(100% - 12rem) !important;
    width: calc(100% - 4rem) !important;
    left: 2rem !important;
    top: 6rem !important;
    cursor: zoom-out;
}

#darkbox:after {
    content: "";
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    width: 4rem;
    height: 4rem;
    margin: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg%20enable-background%3D%22new%200%200%2040%2040%22%20version%3D%221.1%22%20viewBox%3D%220%200%2040%2040%22%20xml%3Aspace%3D%22preserve%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cline%20x1%3D%2210%22%20x2%3D%2230%22%20y1%3D%2210%22%20y2%3D%2230%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%2F%3E%0A%3Cline%20x1%3D%2230%22%20x2%3D%2210%22%20y1%3D%2210%22%20y2%3D%2230%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%2F%3E%0A%3C%2Fsvg%3E');
    cursor: pointer;
}

#darkbox .copyright {
    position: fixed;
    bottom: 0;
    left: 0;
    color: var(--white);
    font-size: 1.6rem;
    padding: 2rem 2rem;
}

/* Specials */

.v-h-max {
    width: 100%;
    height: 100%;
}

.font-weight-normal {
    font-family: 'Barlow-Regular', sans-serif;
}

.form-icon {
    position: relative;
    top: 3rem;
    left: -2rem;
    width: 8rem;
    height: 8rem;
    margin: -5rem -2rem 0 0;
}

.form-icon-color {
    fill: var(--color-3);
}

.lazyloaded {
    animation-name: lazyloaded-ani;
    animation-duration: 2s;
    animation-iteration-count: 1;
    animation-fill-mode: backwards;
}

@keyframes lazyloaded-ani {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.adaptable-bg-img .lazyloaded {
    margin: 0;
    opacity: 0;
    animation-name: lazyloaded-hide-ani;
    animation-duration: 0.1s;
    animation-iteration-count: 1;
    animation-fill-mode: backwards;
}

@keyframes lazyloaded-hide-ani {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.video {
    margin: 0;
    border-radius: 3px;
    overflow: hidden;
    font-size: 0;
    margin: 2rem 0 0 0;
}

.video video {
    margin: 0;
    border-radius: 3px;
    width: 100%;
    height: auto;
}

.youtube {
    position: relative;
    height: 0;
    padding-bottom: 56.25%;
    border-radius: 3px;
}

.youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.book {
    position: relative;
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    border-radius: 3px;
    margin: 2rem 0 0 0;
}

.book-inner {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.book-thumb {
    position: relative;
    align-self: center;
    font-size: 0;
    width: 75%;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.book-text {
    position: relative;
    left: -15%;
    align-self: center;
    width: 60%;
    overflow: hidden;
}

.article-img {
    border-radius: 3px;
    font-size: 0;
    overflow: hidden;
    margin: 0;
}

.has-credit + .credit {
    display: none;
}

.img-avatar {
    float: left; 
    width: 10rem; 
    height: 10rem; 
    margin: 1.5rem 2.5rem 1.5rem 0; 
    border-radius: 5rem;
}

.small {
    font-size: 1.6rem;
    margin: 1rem 0;
}

.nowrap {
    white-space: nowrap;
}

.tile-extratext {
    margin: 1.5rem 0 1rem 0;
}

.hide-on-desktop {
    display: none;
}

.hide-on-mobile {
    display: block;
}

.nowrap {
    white-space: nowrap;
}

a.special {
    margin: 1.5rem 0;
}

a.special p {
    color: var(--white);
    margin: 0;
    transition: color 0.25s ease;
}

a.special:hover p {
    color: var(--color-3);
}

a.special p img {
    border-radius: 3px;
    border: 2px solid var(--white);
    overflow: hidden;
    transition: border-color 0.25s ease;
}

a.special:hover p img {
    border-radius: 3px;
    border: 2px solid var(--color-3);
    overflow: hidden;
}

.article .content-wide ol,
.article .content-narrow ol {
    list-style: none;
    counter-reset: plag-counter;
}

.article .content-wide ol li,
.article .content-narrow ol li {
    position: relative;
    counter-increment: plag-counter;
}

.article .content-wide ol li::before,
.article .content-narrow ol li::before {
    content: counter(plag-counter) ".";
    position: absolute;
    left: -2.8rem;
    font-family: 'Barlow-SemiBold', sans-serif;
    width: 2.8rem;
    color: var(--color-3);
}

.article .content-wide ol,
.article .content-narrow ol {
    padding: 0 0 0 3rem;
}

.article .content-wide ul,
.article .content-narrow ul {
    list-style: none;
    padding: 0 0 0 3rem;
}

.article .content-wide li,
.article .content-narrow li {
    position: relative;
}

.article .content-wide ul li:before,
.article .content-narrow ul li:before {
    content: "";
    position: absolute;
    top: 1rem;
    left: -3rem;
    display: block;
    width: 1.3rem;
    height: 1.3rem;
    background-color: var(--color-3);
    border-radius: 3px;
}

/* Shariff */
.sharing {
    width: 100%;
    margin: 2rem 0;
}
.sharing p {
    display: inline-block;
    vertical-align: top;
}
.shariff {
    display: inline-block;
    vertical-align: top;
}
.article .content-narrow .shariff ul {
    display: flex;
    justify-content: center;
    font-size: 0;
    padding: 0;
}
.article .content-narrow .shariff ul li {
    position: relative;
    top: -0.5rem;
    width: 4rem;
    height: 4rem;
    margin: 0 0 0 2rem;
    list-style: none;
}
.article .content-wide ul li:before, .article .content-narrow .shariff ul li:before {
    width: 0;
    height: 0;
}
.article .content-narrow .shariff ul li a {
    position: relative;
    display: block;
    width: 3.6rem;
    height: 3.6rem;
    opacity: 0.25;
    transition: opacity 0.25s ease;
}
.article .content-narrow .shariff ul li a:hover {
    opacity: 0.5;
}
.shariff ul li a .fab {
    position: absolute;
    width: 3.6rem;
    height: 3.6rem;
    background-repeat: no-repeat;
    background-size: 3.6rem 3.6rem;
}
.fa-twitter {
    background-image: url(../img/twitter.svg);
}
.fa-facebook-f {
    background-image: url(../img/facebook.svg);
}
.fa-xing {
    background-image: url(../img/xing.svg);
}
.fa-linkedin-in {
    background-image: url(../img/linkedin.svg);
}
.article .content-narrow .shariff ul li:before {
    position: absolute;
    width: 0;
    height: 0;
    content: "";
    top: 0;
    left: 0;
    background-image: none;
    opacity: 1;
}

/* Preisliste */

.preisliste {
    background-color: var(--white);
    border-collapse:separate;
    border-spacing: 0 1rem;
}

.preisliste tr {
    position: relative;
    margin: 0.2rem 0;
    background: var(--gradient-1);
    border-radius: 2px;
}

.preisliste td {
    padding: 1.5rem 0;
}

.preisliste td:first-child {
    padding: 1rem;
    border-radius: 2px 0 0 2px;
}

.preisliste td:last-child {
    padding: 1.5rem 2rem;
    text-align: right;
    border-radius: 0 2px 2px 0;
}

.preisliste .icon {
    width: 7rem;
    height: 7rem;
    margin: 0;
}

.linklist {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.linklist-item {
    white-space: nowrap;
}

@media only screen and (max-width: 1599px) {

    /* Claim */

    .claim p {
        font-size: 3.75vw;
        padding: 1.25vw 2.5vw 1.25vw 6rem;
    }

}

@media only screen and (max-width: 1279px) {

    /* Layout */

    .content-wide,
    .content-narrow {
        padding: 0 3rem;
    }

    .grid {
        width: calc(100% + 3rem);
        margin: 0 -1.5rem;
    }

    .block-1-1,
    .block-1-2,
    .block-1-3,
    .block-1-4,
    .block-3-4 {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }

    .block-auto {
        padding-left: 1.5rem;
    }

    .padding-top-bottom {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .padding-top {
        padding-top: 1.5rem;
    }

    .padding-bottom {
        padding-bottom: 1.5rem;
    }

    .adaptable-bg-img {
        height: calc(100% - 7rem);
        margin: 4rem 0 3rem 0;
    }
    

    /* Stoerer */

    .stoerer-turnitin {
        left: 3rem;
        top: 3rem;
        transform: scale(1) rotate(-15deg);
        background-color: rgba(255, 255, 255, 0.85);
    }
    
    .stoerer-rechts {
        right: 3rem;
        top: 3rem;
        transform: scale(1) rotate(15deg);
    }


    /* Claim */

    .claim {
        background-color: rgba(255, 255, 255, 0.85);
    }

    .claim p {
        padding: 1.25vw 2.5vw 1.25vw 3rem;
    }

    /* CTA */

    .claim p.cta-button-startseite {
        left: calc(100% + 7rem);
        line-height: 5.6rem;
        height: 6rem;
        width: 30rem;
    }

    .cta-button {
        line-height: 5.6rem;
        height: 6rem;
        width: 30rem;
    }

    /* Form */

    .form-box {
        margin: 0 0 1.5rem 0;
    }
    
    /* Tiles */
    
    .tile-text {
        font-size: 2rem;
    }

    /* Carousel */

    .carousel {
        font-size: 1.6rem;
        margin: 0 0 1.5rem 0;
    }

    .carousel-container li p {
        height: 5rem;
    }

    #slideshow {
        margin: 0 0 1.5rem 0;
    }

    /* Specials */

    .book-text h4 {
        font-size: 2rem;
        margin: 1rem 0;
    }

    .book-text p {
        font-size: 1.6rem;
        margin: 1rem 0;
    }
    
    .gwp-box {
        margin: 1rem 0 1rem 0;
    }

}

@media only screen and (max-width: 1023px) {

    /* Basics */

    h2,
    h3,
    h4 {
        margin: 1.5rem 0;
    }

    figure {
        margin: 1.5rem 0;
    }

    /* Layout */

    .block-1-2 {
        width: 100%;
    }
    
    .block-1-3 {
        width: 50%;
    }

    .block-1-4 {
        width: 50%;
    }
    
    .block-3-4 {
        width: 100%;
    }

    .block-button {
        min-width: 30rem;
        max-width: 34rem;
    }

    .highlight-box {
        margin: 1.5rem 0;
    }

    .adaptable-right {
        position: relative;
        right: auto;
        height: 50vw;
    }

    .adaptable-left {
        position: relative;
        left: auto;
        height: 50vw;
        margin: 1.5rem 0;
    }

    .adaptable-bg-img {
        top: 0;
        margin-top: 0;
        height: 100%;
    }

    .move-1-2 {
        left: auto;
    }

    .margin-top {
        margin-top: 0;
    }

    /* Flex */

    .sort-1-3-2-4:nth-child(1) {
        order: 1;
    }

    .sort-1-3-2-4:nth-child(2) {
        order: 3;
    }

    .sort-1-3-2-4:nth-child(3) {
        order: 2;
    }

    .sort-1-3-2-4:nth-child(4) {
        order: 4;
    }

    /* Header */

    .header {
        display: flex;
    }

    .header .content-wide {
        padding: 0;
    }

    .hide {
        display: none;
    }

    .title {
        height: 9rem;
        background-color: var(--color-1);
        padding-left: 3rem;
    }
    
    .comments .title {
        height: auto;
        padding-left: 0;
        background-color: transparent;
    }

    .logo a h2 {
        color: var(--white);
    }

    .logo a:hover h2 {
        color: var(--color-3);
    }

    .logo svg {
        height: 6rem;
        margin: 0 1.5rem 0 0;
    }

    .logo svg .logo-color {
        fill: var(--white);
    }

    .logo a:hover svg .logo-color {
        fill: var(--color-3);
    }

    .logotext-1 {
        font-size: 1.9rem;
    }

    .logotext-2 {
        font-size: 1.62rem;
        margin: 0.2rem 0 0 0;
        letter-spacing: 0.04rem;
    }

    .social-trigger {
        position: relative;
        display: block;
        height: 5rem;
        width: 5rem;
        margin: 0;
        cursor: pointer;
        top: 0;
        right: 0;
    }

    .social-trigger-element {
        position: absolute;
        height: 2px;
        width: 60%;
        background-color: var(--white);
        opacity: 1;
        transform: translate(0, 0) rotate(0);
        transition: all 0.25s ease;
    }

    .social-trigger:hover .social-trigger-element {
        background-color: var(--color-3);
    }

    .social-trigger-element:nth-child(1) {
        top: 2.4rem;
        left: 1rem;
        transform: scaleX(0.8) rotate(0);
    }

    .social-trigger-element:nth-child(2) {
        top: 2.4rem;
        left: 1rem;
        transform: scaleY(0.8) rotate(90deg);
    }

    .social-trigger.close .social-trigger-element:nth-child(1) {
        transform: scaleX(1) rotate(45deg);
    }

    .social-trigger.close .social-trigger-element:nth-child(2) {
        transform: scaleY(1) rotate(135deg);
    }

    .social-icons {
        position: absolute;
        display: none;
        top: 7rem;
        left: -0.75rem;
        border-top: 2px solid var(--white);
        border-bottom: 2px solid var(--white);
        z-index: 3;
    }

    .social-icons img {
        margin: 0;
    }

    .social-icons li {
        display: block;
        margin: 0;
        padding: 1.5rem;
        background-color: var(--color-1);

    }

    .social-icons a svg path,
    .social-icons a svg rect,
    .social-icons a svg circle,
    .social-icons a svg polyline {
        fill: var(--white);
    }

    .social-icons a:hover svg path,
    .social-icons a:hover svg rect,
    .social-icons a:hover svg circle,
    .social-icons a:hover svg polyline {
        fill: var(--color-3);
    }

    /* Social Animation */

    #social-icons.show {
        display: block;
    }

    #social-icons.fadein {
        animation-name: social-icons-fadein-ani;
        animation-duration: 0.25s;
        animation-iteration-count: 1;
        animation-fill-mode: backwards;
        opacity: 1;
    }

    @keyframes social-icons-fadein-ani {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    #social-icons.hide {
        display: none;
    }

    #social-icons.fadeout {
        animation-name: social-icons-fadeout-ani;
        animation-duration: 0.25s;
        animation-iteration-count: 1;
        animation-fill-mode: backwards;
        opacity: 0;
    }

    @keyframes social-icons-fadeout-ani {
        0% {
            opacity: 1;
        }

        100% {
            opacity: 0;
        }
    }

    /* Search */

    .search-trigger {
        margin: 0 0.5rem;
    }

    .search-form {
        right: -3rem;
        padding: 1rem 3rem 1rem 1rem;
    }

    /* Menu */

    .menu {
        width: auto;
        min-height: 9rem;
        padding-right: 2rem;
    }

    .burger {
        display: block;
        position: relative;
        top: 0;
        right: 0;
        height: 5rem;
        width: 5rem;
        margin: 0;
        padding: 0;
        cursor: pointer;
    }

    .burger-element {
        position: absolute;
        height: 2px;
        width: 60%;
        background-color: var(--white);
        opacity: 1;
        transform: translate(0, 0) rotate(0);
        transition: all 0.25s ease;
    }
    
    .burger.open .burger-element {
        background-color: var(--white);
    }

    .burger:hover .burger-element {
        background-color: var(--color-3);
    }

    .burger-element:nth-child(1) {
        top: 1.4rem;
        left: 1rem;
    }

    .burger-element:nth-child(2) {
        top: 2.4rem;
        left: 1rem;
    }

    .burger-element:nth-child(3) {
        top: 2.4rem;
        left: 1rem;
    }

    .burger-element:nth-child(4) {
        top: 3.4rem;
        left: 1rem;
    }
    
    .burger.close .burger-element {
        background-color: var(--color-3);
    }

    .burger.close .burger-element:nth-child(1),
    .burger.close .burger-element:nth-child(4) {
        opacity: 0;
    }

    .burger.close .burger-element:nth-child(2) {
        transform: rotate(135deg);
    }

    .burger.close .burger-element:nth-child(3) {
        transform: rotate(45deg);
    }

    .topmenu {
        position: fixed;
        display: none;
        top: 9rem;
        left: 0;
        right: 0;
        height: auto;
        font-size: 3rem;
        margin: 0;
        text-align: center;
        border-top: 2px solid var(--white);
    }

    .topmenu li {
        display: block;
        margin: 0;
        padding: 0;
        background-color: var(--color-1);
        border-bottom: 2px solid var(--white);
    }

    .topmenu li:hover {
        background-color: var(--color-1);
        color: var(--white);
    }

    .topmenu a:active {
        background-color: var(--grey-4);
        color: var(--color-3);
    }

    .topmenu li:hover .submenu-outer {
        display: none;
    }

    .topmenu li .submenu li {
        padding: 0;
    }

    /* Menu Animation */

    #menu.show {
        display: block;
    }

    #menu.fadein {
        animation-name: menu-fadein-ani;
        animation-duration: 0.25s;
        animation-iteration-count: 1;
        animation-fill-mode: backwards;
        opacity: 1;
    }

    @keyframes menu-fadein-ani {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    #menu.hide {
        display: none;
    }

    #menu.fadeout {
        animation-name: menu-fadeout-ani;
        animation-duration: 0.25s;
        animation-iteration-count: 1;
        animation-fill-mode: backwards;
        opacity: 0;
    }

    @keyframes menu-fadeout-ani {
        0% {
            opacity: 1;
        }

        100% {
            opacity: 0;
        }
    }

    .topmenu li .submenu {
        display: block;
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        margin: 0 0 -2px 0;
    }

    .topmenu li .submenu li {
        background-color: var(--grey-4);
    }

    .contact-icons {
        margin: 0;
    }

    .contact-icons li {
        margin: 0 0.5rem 0 0.5rem;
    }

    .contact-icons svg {
        width: 3rem;
        height: 3rem;
        background-color: var(--white);
        border-radius: 1.5rem;
    }

    .contact-icons a:hover svg {
        background-color: var(--color-3);
    }

    .contact-icons a svg path {
        fill: var(--color-1);
    }
    
    /* Remove Transitions for Mobile */

    .title,
    .menu,
    .logo,
    .social-icons,
    .social-icons li,
    .social-icons svg,
    .social-icons img,
    .contact-icons,
    .contact-icons li,
    .contact-icons svg,
    .search-trigger,
    .topmenu li,
    .topmenu a,
    .main {
        transition: none;
    }
    
    /* Main */

    .main {
        padding-top: 9rem;
    }

    /* Key visual */

    .key-visual {
        padding: 0 0 75% 0;
    }

    .key-visual-img.lazyloaded {
        transform-origin: 50% 50%;
    }

    /* Claim */

    .claim {
        bottom: 25%;
    }

    /* CTA */

    .claim p.cta-button-startseite {
        left: 3rem;
        top: auto;
        bottom: -9rem;
        font-size: 2.4rem;
        line-height: 5.6rem;
        width: 24rem;
        height: 6rem;
    }

    .cta-button {
        font-size: 2.4rem;
        line-height: 5.6rem;
        width: 24rem;
        height: 6rem;
    }
    
    /* Tiles */
    
    .tile-text {
        font-size: 2.4rem;
    }

    /* Form */

    fieldset.block-1-2:nth-child(odd) {
        padding: 0 0 0 0;
    }

    fieldset.block-1-2:nth-child(even) {
        padding: 0 0 0 0;
    }

    /* Carousel */

    .carousel {
        font-size: 2rem;
        margin: 0;
    }

    .carousel-container li p {
        height: 6rem;
    }

    /* Poll */

    .poll {
        top: 0;
        height: 40.2rem;
        margin: 3rem 0 0 0;
    }

    .poll-headline h3 {
        padding-bottom: 1.3rem;
    }

    .poll-body {
        top: 8.9rem;
        height: 30rem;
    }

    .poll-question {
        top: 8rem;
        height: 22rem;
    }

    .poll-result {
        top: 8rem;
        height: 22rem;
    }

    /* Footer */

    .footer {
        font-size: 2rem;
        padding: 2rem 0 2rem 0;
    }

    .footer .logo svg {
        margin: 0 2rem 0 0;
    }

    .footer p,
    .footer li {
        margin: 0 2rem 0 0;
    }

    .footer .content-wide.flex {
        display: block;
    }

    .footer .footer-column.flex {
        justify-content: flex-start;
    }

    /* Specials */

    .hide-on-desktop {
        display: block;
    }

    .hide-on-mobile {
        display: none;
    }

    .article-img {
        margin: 1.5rem 0 0 0;
    }

    .book {
        height: auto;
        padding-bottom: 0;
        margin: 1.5rem 0 2rem 0;
    }

    .book:last-child {
        margin: 1.5rem 0 0 0;
    }

    .book-inner {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }

    .book-thumb {
        width: 50%;
    }

    .book-text {
        left: -5%;
        width: 70%;
        padding: 1rem 0;
    }

    .book-text h4 {
        font-size: 2.4rem;
    }

    .book-text p {
        font-size: 2rem;
    }

}

@media only screen and (max-width: 799px) {

    /* Basics */

    html {
        font-size: 50%;
    }

    p + h1,
    p + h2,
    p + h3,
    p + h4,
    ul + h1,
    ul + h2,
    ul + h3,
    ul + h4,
    ol + h1,
    ol + h2,
    ol + h3,
    ol + h4,
    figure + h1,
    figure + h2,
    figure + h3,
    figure + h4 {
        margin-top: 3rem;
    }

    /* Layout */

    .content-wide,
    .content-narrow {
        padding: 0 2rem;
    }

    .grid {
        width: calc(100% + 2rem);
        margin: 0 -1rem;
    }

    .block-1-1,
    .block-1-2,
    .block-1-3,
    .block-1-4,
    .block-3-4 {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .block-auto {
        padding-left: 1rem;
    }

    .padding-top-bottom {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    
    .padding-top {
        padding-top: 1rem;
    }

    .padding-bottom {
        padding-bottom: 1rem;
    }
    
    .block-button {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    /* Header */

    .title {
        padding-left: 2rem;
    }

    .social-icons svg,
    .social-icons img {
        width: 4rem;
        height: 4rem;
    }

    .search-form {
        right: -2rem;
        padding: 1rem 2rem;
        width: 100vw;
    }

    .search-field {
        height: 5rem;
        width: 100%;
    }

    .search-button {
        width: 5rem;
        height: 5rem;
    }

    /* Key visual */

    .key-visual {
        padding: 0 0 100% 0;
    }

    /* StÃ¶rer */

    .stoerer-turnitin {
        left: 2rem;
        top: 2rem;
        transform: scale(1) rotate(-15deg);
    }

    .stoerer-turnitin-inner p {
        font-family: 'Barlow-SemiBold', sans-serif;
    }
    
    .stoerer-rechts {
        right: 2rem;
        top: 2rem;
        transform: scale(1) rotate(15deg);
    }

    /* Claim */

    .claim p {
        font-size: 5vw;
        padding: 1.75vw 3.5vw 1.75vw 2rem;
    }

    /* CTA */

    .claim p.cta-button-startseite {
        left: 2rem;
        bottom: -8rem;
    }

    /* Carousel */

    .carousel-highlight {
        height: 12rem;
    }

    .carousel-highlight p {
        height: 10.8rem;
    }

    .carousel-container li {
        height: 12rem;
    }

    .carousel-container li p {
        height: 9rem;
    }
    
    /* Specials */
    
    .small {
        font-size: 2rem;
    }
    
    .highlight-box {
        margin: 1rem 0;
    }

}

@media only screen and (max-width: 599px) {


    /* Basics */

    h1 {
        font-size: 3.6rem;
    }

    h2 {
        font-size: 3rem;
    }

    h3 {
        font-size: 2.4rem;
    }

    h4 {
        font-size: 2rem;
    }

    /* Layout */

    .tile .icon {
        margin: 8% auto 4% auto;
    }

    /* Header */

    .logo h2 {
        display: none;
    }
    
    /* Title mobile */

    .logotext-mobile {
        position: relative;
        z-index: 2;
        display: block;
        background-color: var(--white);
        padding: 1rem 0 1.2rem 0;
        
    }

    .logotext-mobile h2 {
        color: var(--color-1);
        margin: 0;
        transition: color 0.25s ease;
    }
    
    .logotext-mobile:hover h2 {
        color: var(--color-3);
    }

    .logotext-mobile-1 {
        display: block;
        font-family: 'Saira-Semicondensed-Semibold', sans-serif;
        font-size: 2.6rem;
        line-height: 1.5;
        margin: 0.5rem 0 0 0;
        letter-spacing: 0.005rem;
    }

    .logotext-mobile-2 {
        display: block;
        font-family: 'Saira-Semicondensed-Regular', sans-serif;
        font-size: 2.22rem;
        line-height: 1.5;
    }
    
    .contact-icons .hide-icon-mobile {
        display: none;
    }

    /* Key visual */

    .key-visual {
        padding: 0 0 133.33% 0;
    }

    /* Claim */

    .claim p {
        font-size: 6vw;
        padding: 3vw 0 3vw 2rem;
        width: calc(100vw - 2rem);
    }

    /* CTA */

    .claim p.cta-button-startseite {
        left: 2rem;
    }
    
    /* Carousel */
    
    .carousel-highlight {
        height: 15rem;
    }

    .carousel-highlight p {
        height: 14rem;
    }

    .carousel-container li {
        height: 15rem;
    }
    
    .carousel-container li p {
        height: 14rem;
    }

    /* Poll */

    .poll {
        height: 39rem;
    }

    .poll-headline h3 {
        padding-bottom: 1.3rem;
    }

    .poll-body {
        top: 7.7rem;
        height: 30rem;
    }

    /* Specials */

    .book-thumb {
        align-self: flex-start;
    }
    
    .linklist {
        display: block;
    }
    
    .linklist-item {
        display: block;
        margin: 1.5rem 0;
    }

}

@media only screen and (max-width: 479px) {

    
    /* Layout */
    
    .block-1-3, .block-1-4 {
        width: 100%;
    }
    
    .tile-text {
        font-size: 2.4rem;
    }
    
    /* Form */

    fieldset .flex {
        display: block;
    }
    
    /* Specials */

    #slideshow {
        padding-bottom: 75%;
    }
    
    .book {
        height: auto;
        padding-bottom: 0;
    }

    .book-thumb {
        width: 60%;
    }

    .book-text {
        position: relative;
        top: auto;
        width: 60%;
        left: -10%;
    }
    
    .preisliste td {
        padding: 1.5rem 2rem;
    }
    
    .preisliste td:first-child {
        display: none;
        hyphens: auto;
    }
    
    .preisliste td:last-child {
        padding: 1.5rem 2rem 1.5rem 1rem;
    }

}

@media only screen and (max-width: 399px) {

    /* Basics */
    
    p, ul ol {
        hyphens: auto;
    }
    
    /* Menu */

    .topmenu {
        font-size: 2.5rem;
        line-height: 5rem;
    }

    .topmenu li .submenu {
        line-height: 5rem;
    }

}