/* COLORS */
:root {
	--base: #202020;
	--white: #ffffff;
    --offwhite: #f8f8f8;
	--primary: #ffd830;
	--primary--hover: #ffe988;
	--primary_ondark: #cf9f35;
	--primary_ondark--hover: #f2b632;
    --shadow__small-value1: rgba(0, 0, 0, 0.12);
	--shadow__small-value2: rgba(0, 0, 0, 0.24);
    --shadow__big_value1: rgba(0, 0, 0, 0.19);
	--shadow__big_value2: rgba(0, 0, 0, 0.23);
	--bgaccent: #f8f8f8;
	--bgaccent-2: #525252;
	--footer__bg: rgba(255, 255, 255, .9);
    --radius-small: 4px; /* 4px */
    --radius-big: 16px; /* 16px */
}
/* raleway-300 - latin */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/raleway-v28-latin-300.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/raleway-v28-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/raleway-v28-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/raleway-v28-latin-300.woff') format('woff'), /* Modern Browsers */
       url('../fonts/raleway-v28-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/raleway-v28-latin-300.svg#Raleway') format('svg'); /* Legacy iOS */
}

/* raleway-regular - latin */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/raleway-v28-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/raleway-v28-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/raleway-v28-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/raleway-v28-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/raleway-v28-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/raleway-v28-latin-regular.svg#Raleway') format('svg'); /* Legacy iOS */
}

/* abel-regular - latin */
@font-face {
  font-family: 'Abel';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/abel-v18-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/abel-v18-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/abel-v18-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/abel-v18-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/abel-v18-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/abel-v18-latin-regular.svg#Abel') format('svg'); /* Legacy iOS */
}

* {
    font-family: "Raleway", Arial, Helvetica, sans-serif;
    font-size: calc(18px + (26 - 18) * ((100vw - 300px)/(1600 - 300)));
    font-weight: 300;
    box-sizing: border-box;
    font-style: normal;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -moz-hyphens: auto;
    -o-hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

section img, section video {
    box-shadow: 0 1px 3px var(--shadow__small-value1), 0 1px 2px var(--shadow__small-value2);
    border-radius: var(--radius-big);
}

.noshadow {
    box-shadow: none;
}

body {
    width: 100%;
    margin: 0;
    padding: 0;
    color: var(--base);
    background: var(--white);
    overflow-x: hidden;
    position: relative;
}


blockquote,
q {
    quotes: none;
}

blockquote p {
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 1rem;
}

blockquote cite {
    font-size: .9rem;
    font-weight: 400;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.largeonly {
    display: none;
}

section p a,
.arrowlink {
    color: var(--base);
    font-weight: 400;
    text-decoration: none;
    position: relative;
    background-image: linear-gradient(var(--primary) 0%, var(--primary) 100%);
    background-repeat: no-repeat;
    background-size: calc(100% - .4em) 6px;
    background-position: .2em 75%;
    transition: background-size 0.1s ease-in, background-position .1s ease, background-image .2s ease, color .2s ease;
    padding: .2em .2em .2em .2em;
    border-radius: var(--radius-small);
}

.arrowlink {
    margin-left: -.2em;
}

section p a:hover,
.arrowlink:hover {
    background-image: linear-gradient(var(--primary--hover) 0%, var(--primary--hover) 100%);
    background-size: 100% 100%;
    background-position: 0 86%;
}

section p a::after,
.arrowlink::after {
    content: url(../assets/arrow-link.svg);
    position: relative;
    top: -1px;
    left: 0.4rem;
    margin-right: 15px;
    transition: left .3s ease;
}

a .bigteaser__text h2::after,
a .crossteaser__text h3::after {
  content: "";
    background-image:url(../assets/arrow-link-white.svg);
    background-size: 100% 100%;
    display: inline-block;

    /*size of your image*/
    height: .8rem;
    width: .8rem;

    /*if you want to change the position you can use margins or:*/
    position:relative;
    left: .4rem;
    transition: left .3s ease;
}

a .crossteaser__text h3::after {
  height: .7rem;
  width: .7rem;
}

a:hover .bigteaser__text h2::after,
a:hover .crossteaser__text h3::after {
    left: .8rem;
}

section p a:hover::after,
.arrowlink:hover::after {
    left: 15px;
}

.arrowlink.arrowlink--white {
    color: var(--white);
    background-image: linear-gradient(var(--primary_ondark) 0%, var(--primary_ondark) 100%);
}

.arrowlink.arrowlink--white:hover {
    color: var(--base);
    background-image: linear-gradient(var(--primary_ondark--hover) 0%, var(--primary_ondark--hover) 100%);
}

.arrowlink.arrowlink--white::after {
    content: url(../assets/arrow-link-white.svg);
}

.arrowlink.arrowlink--white:hover::after {
    content: url(../assets/arrow-link.svg);
}

.fullwidth {
    width: 100%;
}

.responsive-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    border-radius: var(--radius-big);
}

.responsive-video.responsive-video--einszueins {
    padding-bottom: 100%;
}

.responsive-video iframe,
.embed-container object,
.embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.rem2--sides {
    padding-left: 2rem;
    padding-right: 2rem;
}

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

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

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

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

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

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

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

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

.bgaccent {
    background-color: var(--bgaccent);
}

.bgaccent2 {
    background-color: var(--bgaccent-2);
    color: var(--white);
}

.bgdark {
    background-color: var(--base);
    color: var(--white);
}

.breakout {
    width: calc(100% + 6rem);
}

.bigteaser__icon svg,
.crossteaser__icon svg {
    opacity: 0
}

;

.bigteaser__image img, .bigteaser__image video {
    width: 100%;
    box-shadow: 0 1px 3px var(--shadow__small-value1), 0 1px 2px var(--shadow__small-value2);
    display: block;
}


    .bigteaser__image.multiimage :first-child {
        border-radius: var(--radius-big) var(--radius-big) 0 0;
    }
    .bigteaser__image.multiimage img,
    .bigteaser__image.multiimage video  {
        border-radius: 0;
    }
    .bigteaser__image.multiimage :last-child {
        border-radius: 0 0 var(--radius-big) var(--radius-big);
    }


.bigteaser__box {
    padding-left: 0;
    padding-right: 0;
    margin-top: 0;
}

.bigteaser__text {
    color: var(--white);
    background-color: var(--base);
    padding: 1.2rem 1.6rem 1.2rem 1.6rem;
    position: relative;
    box-shadow: 0 10px 20px var(--shadow__big_value1), 0 6px 6px var(--shadow__big_value2);
    margin-top: -3rem;
    border-radius: var(--radius-small);
}

.bigteaser__icon {
    background-color: var(--primary);
    height: 6px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: opacity .2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .8;
    transition: opacity .2s ease;
    border-radius: 0 0 var(--radius-small) var(--radius-small);
}

.bigteaser a {
    text-decoration: none;
}

.bigteaser a:hover .bigteaser__icon {
    opacity: 1;
}

.crossteaser img {
    box-shadow: 0 1px 3px var(--shadow__small-value1), 0 1px 2px var(--shadow__small-value2);
    width: 100%;
    border-radius: var(--radius-big);
}

.crossteaser .crossteaser__text {
    position: relative;
    width: calc(100% - 2rem);
    padding: 1rem 2rem 1rem 1rem;
    margin-left: 1rem;
    margin-top: -2rem;
    background-color: var(--base);
    box-shadow: 0 10px 20px var(--shadow__big_value1), 0 6px 6px var(--shadow__big_value2);
    text-align: center;
    border-radius: var(--radius-small);
}

.crossteaser__icon {
    background-color: var(--primary);
    height: 4px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: opacity .2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .8;
    transition: opacity .2s ease;
    border-radius: 0 0 var(--radius-small) var(--radius-small);
}

.crossteaser a:hover .crossteaser__icon {
    opacity: 1;
}

.main {
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1rem;
    padding-left: 1rem;
}

.main--inset {
    width: 95%;
    max-width: 1100px;
    margin: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Abel", Arial, Helvetica, sans-serif;
    line-height: 1.2em;
    hyphens: none;
    text-wrap: balance;
}

h1 {
    font-size: 2.1rem;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 0.03rem;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: .7rem;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: .5rem;
    font-weight: 400;
}

p,
strong,
em {
    font-size: .9rem;
    line-height: 1.6em;
    margin-bottom: 1.3em;
    text-wrap: pretty;
    hyphens: none;
}

small {
    font-size: .8rem;
    line-height: 1.4em;
}

strong {
    font-weight: 400;
}

em {
    font-style: italic;
}

figcaption {
    font-size: .8rem;
    line-height: 1.2em;
    text-align: center;
    margin-top: .2rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style-type: square;
}

li {
    font-size: .9rem;
    line-height: 1.6em;
    padding-left: .6rem;
    margin-left: .9rem;
    list-style-position: outside;
    margin-bottom: .5rem;

}

.introtext {
    font-size: 1rem;
}

.introtext--center {
    text-align: center;
}

.main--header {
    background: no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 80vh;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.main--header--small {
    height: 30vh;
    min-height: 300px;
}

.maincut {
    width: calc(100% + 2rem);
    height: 5rem;
    transform: translateY(0.5px);
    margin-left: -1rem;
    display: block;
}

.main--header .animatedcut {
    width: calc(100% + 2rem);
    margin-left: -1rem;
    height: 10rem;
    transform: translateY(5rem);
    opacity: .3;
    animation: slide 3s ease-in-out infinite alternate;
}

#home__header {
    background-image: url(../img/home-mobile-1.jpg);
    background-position: center bottom;
}

.trimmedfooter {
    padding-top: 0;
    color: var(--white);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.trimmedfooter .maincut {
    width: 100%;
    transform: translateY(-0.5px);
    margin-bottom: 2rem;
    margin-left: 0;
}

.footer {
    background: var(--footer__bg);
    padding: 1.5rem 0 1.3rem 0;
    margin-top: 2rem;
    color: var(--base);
}

.footer .footer__icons {
    margin-right: 10px;
    position: relative;
    float: left;
}

.footer svg {
    margin-right: .8rem;
}

.footer svg:hover path,
.footer svg:hover circle {
    fill: var(--primary);
}

.footer .footertitle {
    float: right;
    font-size: 1.2rem;
    font-family: "Abel", Arial, Helvetica, sans-serif;
    margin-top: -.2rem;
    letter-spacing: .05rem;
}

.footer ul {
    list-style: none;
    text-align: right;
}

.footer ul li {
    display: inline-block;
    margin-left: .2rem;
}

.footer a {
    color: var(--base);
    text-decoration: none;
    font-size: .9rem;
}

.animatedcut2 {
    width: calc(100% + 2rem);
    margin-left: -1rem;
    height: 10rem;
    transform: translateY(15rem);
    opacity: .3;
    animation: slide2 4s ease-in-out infinite alternate-reverse;
}

.animatedcut3 {
    width: calc(100% + 2rem);
    margin-left: -1rem;
    height: 10rem;
    transform: translateY(25rem);
    opacity: .3;
    animation: slide3 5s ease-in-out infinite alternate;
}

.afteranimated {
    position: relative;
}

.homepage__teaser {
    position: absolute;
    top: calc(35vh);
    left: 0;
    right: 0;
    margin: auto;
}

.homepage__teaser h1 {
    margin-bottom: .5rem;
}

@media screen and (max-height:625px) {
    .homepage__teaser {
        top: 220px;
    }
}

@keyframes slide {
    0% {
        transform: translateY(10rem);
    }

    100% {
        transform: translateY(5rem);
    }
}

@keyframes slide2 {
    0% {
        transform: translateY(25rem);
    }

    100% {
        transform: translateY(15rem);
    }
}

@keyframes slide3 {
    0% {
        transform: translateY(35rem);
    }

    100% {
        transform: translateY(25rem);
    }
}

.readmore-cta {
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.readmore-cta .arrowlink,
.readmore-cta input {
    background: var(--primary);
    color: var(--base);
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem 0 1.2rem;
    position: relative;
    z-index: 5;
    outline: solid 1rem var(--white);
    transition: background .3s ease;
    font-weight: 400;
}

.readmore-cta input {
    border: 0;
    border-radius: 0;
    color: inherit;
    line-height: normal;
    overflow: visible;
    -webkit-appearance: button;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.readmore-cta:after {
    width: calc(90% - 2rem);
    height: 2px;
    background: var(--offwhite);
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
}

.bgaccent .readmore-cta:after {
    background: var(--white);
}

.bgaccent .readmore-cta .arrowlink {
    outline: solid 1rem var(--offwhite);
}

.readmore-cta .arrowlink:hover,
.readmore-cta input:hover {
    background: var(--primary--hover);
    cursor: pointer;
}

.readmore-cta .arrowlink:after {
    content: url(../assets/arrow-link.svg);
}

.detailup {
    color: var(--white);
    margin-top: -8rem;
    position: relative;
}

.detailup--headlineonly {
    margin-top: -5rem;
    display: flex;
    justify-content: center;
}

.detailup--headlineonly .detailup__header {
    padding: 1.4rem 2rem;
    display: inline-block;
}

.detailup--headlineonly h1 {
    margin-bottom: .1rem;
    text-align: center;
}

.detailup__header {
    background: var(--base);
    padding: 1.6rem 1.6rem 0.6rem 1.6rem;
    box-shadow: 0 10px 20px var(--shadow__big_value1), 0 6px 6px var(--shadow__big_value2);
    position: relative;
    z-index: 999;
    text-align: center;
    border-radius: var(--radius-small);
}

.loginteaser {
    color: var(--white);
    background: var(--base);
    /* padding: 1.6rem 1.6rem 0.6rem 1.6rem; */
    padding: 0;
    box-shadow: 0 10px 20px var(--shadow__big_value1), 0 6px 6px var(--shadow__big_value2);
    position: relative;
    z-index: 888;
    text-align: center;
    border-radius: var(--radius-small);
}

.loginteaser img {
    box-shadow: none;
    border-radius: var(--radius-small) var(--radius-small) 0 0 ;
}

.loginteaser__text {
    padding: 2rem 2rem 1.2rem 2.5rem;
}


.detailup__footer {
    width: calc(100% - 2rem);
    margin-left: 1rem;
    background-color: var(--offwhite);
    position: relative;
    box-shadow: 0 1px 3px var(--shadow__small-value1), 0 1px 2px var(--shadow__small-value2);
    display: flex;
    border-radius: 0 0 var(--radius-small) var(--radius-small);
}

.detailup__footer--fullwidth {
    width: 100%;
    margin: 0;
}

.bigteaser__text .detailup__footer {
  width: 100%;
  margin: 0;
  background-color: inherit;
  color: var(--offwhite);
  box-shadow: none;
}

.bigteaser__text .detailup__footer__tagcontainer {
  margin-left: -10px;
  padding-left: 0;
  padding-bottom: 0;
}

.detailup__footer ul,
ul.tags {
    list-style: none;
    padding-left: 0rem;
    color: var(--base);
}

.bigteaser__text .detailup__footer ul {
  color: var(--white);
}

.detailup__footer ul {
    padding-left: .5rem;
}

.detailup__footer li,
.tags li {
    border: 1px solid var(--base);
    float: left;
    margin-right: .3rem;
    margin-bottom: .3rem;
    margin-left: 0;
    font-size: .75rem;
    padding: .1rem .25rem;
    line-height: 1rem;
    border-radius: var(--radius-small);
}

.bigteaser__text .detailup__footer li {
  border: 1px solid var(--white);
}

.tags--light {
    color: var(--white);
}

.tags--light li {
    color: var(--white);
    border: 1px solid var(--white);
}

.tags--bigger li {
    font-size: .9rem;
    padding: .2rem .35rem;
}

.tags--center {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.tags--center li {
    margin-right: .2rem;
    margin-left: .2rem;
    margin-bottom: .4rem;
}

.detailup__cta {
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease;
    height: 100%;
    padding-left: 1rem;
    padding-right: .5rem;
    padding-top: .7rem;
    padding-bottom: .7rem;
    width: 100%;
    border-radius: 0 0 var(--radius-small) var(--radius-small);
}

.detailup__cta:hover {
    background: var(--primary--hover);
}

.detailup__cta .arrowlink {
    background-image: none;
    text-align: center;
}

.detailup__cta svg {
    margin-left: .25rem;
}

.detailup__footer a {
    text-decoration: none;
    color: var(--base);
    width: 100%;
    display: flex;
    align-items: center;
}

.detailup__footer .detailup__footer__buttoncontainer {
    display: flex;
    background-color: var(--primary);
    justify-content: center;
    padding: 0;
    border-radius: 0 0 var(--radius-small) var(--radius-small);
}

.detailup__footer .detailup__footer__tagcontainer {
    padding-top: 1rem;
    padding-bottom: .7rem;
}


/* ANFANG */

#process_navbar {
  overflow: hidden;
  background-color: rgba(255,255,255, .96);
}

#process_navbar .main {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.processbar-element {
  /* border-bottom: 1px solid var(--base);*/
  width: 100%;
  text-align: center;
  padding: .2rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.processbar-element-number {
  background-color: red;
  width: 100px;
  height: 100px;
  transition: height .5s, opacity .2s;
}

#process_navbar.sticky{
box-shadow: 0 1px 3px var(--shadow__big_value1), 0 1px 2px var(--shadow__big_value2);
}

#process_navbar.sticky .processbar-element {
border-bottom: none;
}

#process_navbar.sticky .processbar-element-number {
  background-color: red;
  width: 0px;
  height: 0px;
  opacity: 0;
}

/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99999;
}

/* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
.sticky + section {
  padding-top: 7rem;
}



/* ENDE */


.navBar {
    position: absolute;
    top: 0;
    margin-left: auto;
    margin-right: auto;
    right: 0;
    left: 0;
    padding-bottom: 20vh;
}

.navBar > div {
    padding: 2rem 1rem 1rem 1rem;
    z-index: 99;
    display: block;
}

.navBar--lightgradient {
    background: linear-gradient(rgba(255, 255, 255, 0.3) 0%,
            rgba(255, 255, 255, 0.25) 14%,
            rgba(255, 255, 255, 0.2) 28%,
            rgba(255, 255, 255, 0.15) 42%,
            rgba(255, 255, 255, 0.1) 56%,
            rgba(255, 255, 255, 0.05) 70%,
            rgba(255, 255, 255, 0) 100%);
}

.navBar--darkgradient {
    background: linear-gradient(rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.25) 14%,
            rgba(0, 0, 0, 0.2) 28%,
            rgba(0, 0, 0, 0.15) 42%,
            rgba(0, 0, 0, 0.1) 56%,
            rgba(0, 0, 0, 0.05) 70%,
            rgba(0, 0, 0, 0) 100%);
    color: var(--white);
}

.navBar span {
    font-size: 1.65rem;
    font-family: "Abel", Arial, Helvetica, sans-serif;
    letter-spacing: 0.03rem;
}

.navBar nav {}

.navBar a {
    text-decoration: none;
    color: inherit;
}

.navtitle {
    float: left;
    width: 100%;
    text-align: center;
}

#cd-nav ul {
    list-style: none;
    position: fixed;
    width: calc(100% - 40px);
    max-width: 400px;
    right: 20px;
    bottom: 20px;
    box-shadow: 0 0 10px var(--shadow__big_value2);
    background: var(--white);
    visibility: hidden;
    overflow: hidden;
    z-index: 998;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 100% 100%;
    -moz-transform-origin: 100% 100%;
    -ms-transform-origin: 100% 100%;
    -o-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    -webkit-transition: -webkit-transform 0.3s, visibility 0s 0.3s;
    -moz-transition: -moz-transform 0.3s, visibility 0s 0.3s;
    transition: transform 0.3s, visibility 0s 0.3s;
    border-radius: var(--radius-small);
}

#cd-nav ul li {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

#cd-nav ul.is-visible li {
  margin-left: -.5rem;
  margin-bottom: 0;
  line-height: 2rem;
}

#cd-nav ul.is-visible {
    visibility: visible;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform 0.3s, visibility 0s 0s;
    -moz-transition: -moz-transform 0.3s, visibility 0s 0s;
    transition: transform 0.3s, visibility 0s 0s;
    color: var(--base);
    z-index: 1999;
}

#cd-nav ul.is-visible li:nth-child(1) {
    -webkit-animation: cd-slide-in 0.2s;
    -moz-animation: cd-slide-in 0.2s;
    animation: cd-slide-in 0.2s;
}

#cd-nav ul.is-visible li:nth-child(2) {
    -webkit-animation: cd-slide-in 0.3s;
    -moz-animation: cd-slide-in 0.3s;
    animation: cd-slide-in 0.3s;
}

#cd-nav ul.is-visible li:nth-child(3) {
    -webkit-animation: cd-slide-in 0.4s;
    -moz-animation: cd-slide-in 0.4s;
    animation: cd-slide-in 0.4s;
}

#cd-nav ul.is-visible li:nth-child(4) {
    -webkit-animation: cd-slide-in 0.5s;
    -moz-animation: cd-slide-in 0.5s;
    animation: cd-slide-in 0.5s;
}

#cd-nav ul.is-visible li:nth-child(5) {
    -webkit-animation: cd-slide-in 0.6s;
    -moz-animation: cd-slide-in 0.6s;
    animation: cd-slide-in 0.6s;
}

#cd-nav li a {
    display: block;
    padding: 1rem;
    border-bottom: 1px solid var(--offwhite);
}

#cd-nav li a:hover {
    background-color: var(--offwhite);
}

#cd-nav li:last-child a {
    border-bottom: none;
}

.cd-nav-trigger {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    box-shadow: 0 0 10px var(--shadow__big_value2);
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    z-index: 2999;
    transition: background .2s ease;
    border-radius: var(--radius-small);
}

.cd-nav-trigger:hover {
    background: var(--primary--hover);
}

.cd-nav-trigger span {
    position: absolute;
    display: block;
    width: 20px;
    height: 2px;
    background: var(--base);
    top: 50%;
    margin-top: -1px;
    left: 50%;
    margin-left: -10px;
    -webkit-transition: background 0.3s;
    -moz-transition: background 0.3s;
    transition: background 0.3s;
}

.cd-nav-trigger span::before,
.cd-nav-trigger span::after {
    content: '';
    position: absolute;
    left: 0;
    background: inherit;
    width: 100%;
    height: 100%;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: -webkit-transform 0.3s, background 0s;
    -moz-transition: -moz-transform 0.3s, background 0s;
    transition: transform 0.3s, background 0s;
}

.cd-nav-trigger span::before {
    top: -6px;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
}

.cd-nav-trigger span::after {
    bottom: -6px;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
}

.cd-nav-trigger.menu-is-open {
    box-shadow: none;
}

.cd-nav-trigger.menu-is-open span {
    background:  rgba(68, 68, 68, 0);
}

.cd-nav-trigger.menu-is-open span::before,
.cd-nav-trigger.menu-is-open span::after {
    background: var(--base);
}

.cd-nav-trigger.menu-is-open span::before {
    top: 0;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.cd-nav-trigger.menu-is-open span::after {
    bottom: 0;
    -webkit-transform: rotate(225deg);
    -moz-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    -o-transform: rotate(225deg);
    transform: rotate(225deg);
}

.textimage img,
.textimage video {
    box-shadow: 0 1px 3px var(--shadow__small-value1), 0 1px 2px var(--shadow__small-value2);
    width: 100%;
}

.textimage__text {
    box-shadow: 0 10px 20px var(--shadow__big_value1), 0 6px 6px var(--shadow__big_value2);
    padding: 1.3rem 1.6rem;
    margin-top: -3rem;
}

.textimage__text p:last-of-type {
    margin-bottom: 0;
}

.quotebox {
    box-shadow: 0 10px 20px var(--shadow__big_value1), 0 6px 6px var(--shadow__big_value2);
    padding: 1.3rem 1.6rem;
    border-radius: var(--radius-small);
}

.resume {
    background-color: var(--base);
    color: var(--white);
    display: flex;
}

.resume__centerline {
    width: 2px;
    background-color: var(--white);
    margin-right: -50%;
    margin-left: 50%;
}

.resume__headline {
    background-color: var(--base);
    padding: 1rem;
    text-align: center;
}

.resume__logo {
    background-color: var(--white);
    padding: 1rem;
    box-shadow: 0 10px 20px var(--shadow__big_value1), 0 6px 6px var(--shadow__big_value2);
    border-radius: var(--radius-big);
}

.resume__logo img {
    width: 100%;
    display: block;
    position: relative;
    z-index: 10;
}

.resume__jobtitle {
    padding: 1rem 1rem .1rem 1rem;
    background-color: var(--base);
    margin: 1rem 0;
}

.resume__jobtitle--desc {
    padding: 0 1rem .2rem 1rem;
    margin: -1rem 0 1rem 0;
}

.resume__jobtitle--desc p {
    font-size: .8rem;
    line-height: 1.4em;
}

@media only screen and (min-width:48em) {
    * {
        font-size: 22px;
    }

    .main--inset {
        width: 90%;
    }

    li {
        margin-left: -.5rem;
    }

    .quotebox li {
    margin-left: .9rem;
    }


    .footer ul {
        display: block;
    }

    .bigteaser__text {
        margin-top: -4rem;
    }

    .resume__jobtitle {
        padding-left: 1.5rem;
    }

    .resume__jobtitle--rightaligned {
        padding-left: 0;
        padding-right: 1.5rem;
        text-align: right;
    }

    .resume__jobtitle--desc {
        padding: 1rem 1rem .1rem 1.5rem;
        margin: 1rem 0;
    }

    .detailup__cta {
    border-radius: 0 0 var(--radius-small) 0;
    }

    .detailup__footer .detailup__footer__buttoncontainer {
    border-radius: 0 0 var(--radius-small) 0;
    }
}

@media only screen and (min-width:64em) {


    .navtitle {
        float: left;
        width: auto;
        text-align: left;
    }

    #cd-nav ul {
        position: inherit;
        width: auto;
        max-width: none;
        text-align: right;
        background: transparent;
        visibility: visible;
        box-shadow: none;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        -webkit-transition: all 0s;
        -moz-transition: all 0s;
        transition: all 0s;
    }

    #cd-nav li {
        display: inline-block;
        margin-top: -6px;
    }

    #cd-nav li a {
        opacity: 1;
        padding: .9rem 0 0 .3rem;
        margin-left: 1.6em;
        border-bottom: none;
    }

    #cd-nav li a:hover {
        background-color: transparent;
    }

    #cd-nav.is-fixed ul {
        position: fixed;
        width: 90%;
        max-width: 400px;
        bottom: 5%;
        right: 5%;
        top: auto;
        background: var(--white);
        visibility: hidden;
        box-shadow: 0 0 10px var(--shadow__big_value2);
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        text-align: left;
    }

    #cd-nav.is-fixed ul li {
        display: block;
    }

    #cd-nav.is-fixed ul li a {
        padding: 1rem;
        margin-left: 0;
        border-bottom: 1px solid var(--offwhite);
        transition: background .2s ease;
    }

    #cd-nav.is-fixed ul li a:hover {
        background-color: var(--offwhite);
        color: var(--base);
    }

    #cd-nav ul.has-transitions {
        -webkit-transition: -webkit-transform 0.3s, visibility 0s 0.3s;
        -moz-transition: -moz-transform 0.3s, visibility 0s 0.3s;
        transition: transform 0.3s, visibility 0s 0.3s;
    }

    #cd-nav ul.is-visible {
        visibility: visible;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        -webkit-transition: -webkit-transform 0.3s, visibility 0s 0s;
        -moz-transition: -moz-transform 0.3s, visibility 0s 0s;
        transition: transform 0.3s, visibility 0s 0s;
    }

    #cd-nav ul.is-hidden {
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        -webkit-transition: -webkit-transform 0.3s;
        -moz-transition: -moz-transform 0.3s;
        transition: transform 0.3s;
    }

    .cd-nav-trigger {
        visibility: hidden;
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        -webkit-transition: -webkit-transform 0.3s, visibility 0s 0.3s;
        -moz-transition: -moz-transform 0.3s, visibility 0s 0.3s;
        transition: transform 0.3s, visibility 0s 0.3s;
        right: 5%;
        bottom: 5%;
    }

    .is-fixed .cd-nav-trigger {
        visibility: visible;
        -webkit-transition: all 0s;
        -moz-transition: all 0s;
        transition: all 0s;
        transition: background .2s ease;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        -webkit-animation: cd-bounce-in 0.3s linear;
        -moz-animation: cd-bounce-in 0.3s linear;
        animation: cd-bounce-in 0.3s linear;
    }

    .paralax-slide {
        margin-top: 45px;
    }

    .paralax-slide--first {
        margin-top: 0;
    }

    .bigteaser__image {
        padding: 0;
    }

    .bigteaser--left .bigteaser__image img, .bigteaser--left .bigteaser__image video {
        margin-left: calc(-30% - 3rem);
    }

    .bigteaser__image img, .bigteaser__image video {
        width: calc(130% + 3rem);
    }

    .bigteaser__text {
        color: var(--white);
        background-color: var(--base);
        padding: 2rem 2rem 1.2rem 2.5rem;
        position: relative;
        box-shadow: 0 10px 20px var(--shadow__big_value1), 0 6px 6px var(--shadow__big_value2);
        z-index: 10;
    }

    .bigteaser--left .bigteaser__text {
        padding: 2rem 2.5rem 1.2rem 2rem;
    }

    .bigteaser__icon {
        height: 100%;
        width: 6px;
        position: absolute;
        left: 0;
        bottom: 0;
        border-radius: var(--radius-small) 0 0 var(--radius-small);
    }

    .bigteaser--left .bigteaser__icon {
        right: 0;
        left: auto;
        border-radius: 0 var(--radius-small) var(--radius-small) 0;
    }

    .bigteaser a {
        text-decoration: none;
    }

    .textimage img,
    .textimage video {
        box-shadow: 0 1px 3px var(--shadow__small-value1), 0 1px 2px var(--shadow__small-value2);
        width: calc(100% + 1.1rem);
    }

    .textimage--reverse img {
        margin-left: -1.1rem;
    }

    .textimage__text {
        position: relative;
        z-index: 99;
        padding: 1.4rem 1.8rem;
        border-radius: var(--radius-small);
    }

    .textimage__text p {
        font-size: .8rem;
        line-height: 1.5em;
    }

    .quotebox {
        padding: 1.4rem 1.8rem;
    }

    .detailup__header {
        padding: 1.6rem 2rem 1.4rem 2rem;
    }

    #home__header {
        background-image: url(../img/home-1.jpg);
        background-position: right bottom;
    }
}

@media only screen and (min-width:75em) {
    .largeonly {
        display: block;
    }

    .readmore-cta:after {
        max-width: calc(1100px - 2rem);
    }

    .bigteaser__image video {
        width: calc(100% + 3rem);
        margin-left: 0;
    }

    .bigteaser--largescaled .bigteaser__image img, .bigteaser--largescaled .bigteaser__image video {
        width: calc(110% + 3rem);
        margin-left: -10%;
    }

    .bigteaser--left .bigteaser__image img, .bigteaser--left .bigteaser__image video {
        margin-left: -3rem;
    }

    .bigteaser {
        margin-bottom: 1rem;
    }

    .bigteaser.bigteaser--largescaled {
        margin-bottom: 1.5rem
    }
}

@-webkit-keyframes cd-slide-in {
    0% {
        -webkit-transform: translateX(100px);
    }

    100% {
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes cd-slide-in {
    0% {
        -moz-transform: translateX(100px);
    }

    100% {
        -moz-transform: translateY(0);
    }
}

@keyframes cd-slide-in {
    0% {
        -webkit-transform: translateX(100px);
        -moz-transform: translateX(100px);
        -ms-transform: translateX(100px);
        -o-transform: translateX(100px);
        transform: translateX(100px);
    }

    100% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes cd-bounce-in {
    0% {
        -webkit-transform: scale(0);
    }

    60% {
        -webkit-transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
    }
}

@-moz-keyframes cd-bounce-in {
    0% {
        -moz-transform: scale(0);
    }

    60% {
        -moz-transform: scale(1.2);
    }

    100% {
        -moz-transform: scale(1);
    }
}

@keyframes cd-bounce-in {
    0% {
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
    }

    60% {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}
