﻿/* reset */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
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 {
    border: 0;
    font-size: 100%;
    margin: 0;
    padding: 0;
}

a {
    outline: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

fieldset,
img {
    border: 0;
}

img {
    vertical-align: bottom;
}

del,
ins {
    text-decoration: none;
}

caption,
th {
    text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
}

q:before,
q:after {
    content: '';
}

abbr,
acronym {
    border: 0;
    font-variant: normal;
}

sup,
sub {
    vertical-align: baseline;
}

legend {
    color: #000;
}

input,
button,
textarea,
select,
optgroup,
option {
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
}

input,
button,
textarea,
select {
    font-size: 100%;
}

/* global **************************************************************/

/* gilda-display-regular - latin */
@font-face {
    font-family: 'Gilda Display';
    font-style: normal;
    font-weight: 400;
    src: url('../font/gilda-display-v13-latin-regular.eot');
    /* IE9 Compat Modes */
    src: local(''),
        url('../font/gilda-display-v13-latin-regular.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../font/gilda-display-v13-latin-regular.woff2') format('woff2'),
        /* Super Modern Browsers */
        url('../font/gilda-display-v13-latin-regular.woff') format('woff'),
        /* Modern Browsers */
        url('../font/gilda-display-v13-latin-regular.ttf') format('truetype'),
        /* Safari, Android, iOS */
        url('../font/gilda-display-v13-latin-regular.svg#GildaDisplay') format('svg');
    /* Legacy iOS */
}

/* inter-300 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    src: url('../font/inter-v20-latin-300.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

html {
    height: 100%;
}

body {
    background: #292929;
    color: #fff;
    font-family: 'Inter', sans-serif;font-weight: 300;
    font-size: 1em;
    -webkit-font-smoothing: antialiased;
    /* Fix for webkit rendering */
    -webkit-text-size-adjust: none;
}

.serif {
    font-family: 'Gilda Display', serif;
}

h1 {
    font-size: 34px;
    line-height: 1;
    margin-bottom: 30px;
}

h2 {
    font-size: 1.6em;
    line-height: 1;
    margin-bottom: 1em;
    padding-left: 1.5em;
    position: relative;
}

h3 {
    font-size: 1.3em;
    margin: 0.6em 0 1em 0;
}

h4 {
    font-size: 1.2em;
    margin-bottom: 1em;
}

p {
    font-family: 'Gilda Display', serif;
    font-size: 1.2em;
    line-height: 1.5em;
}

li {
    font-family: 'Gilda Display', serif;
    font-size: 1.2em;
    line-height: 1.5em;
    list-style-type: none;
}

li h4 {
    font-family: 'Inter', sans-serif;font-weight: 300;
    font-size: 1em;
    margin-bottom: 0.8em;
}

a {
    text-decoration: none;
}

a {
    color: #fff;
}

a:hover,
a:focus {
    color: #2781bb;
}

img {
    height: auto;
    width: 100%;
}

*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.h2-square {
    display: block;
    background-color: #2781bb;
    top: 0;
    height: 1em;
    left: 0;
    position: absolute;
    width: 1em
}

.h2-small {
    display: inline-block;
    font-size: 0.8em;
    margin-top: 0.15em;
    vertical-align: top;
}

.deko-square {
    background-color: #2781bb;
}

.wd {
    letter-spacing: 1px;
}

.blau {
    color: #2781bb;
}

.desktop {
    display: none;
}

#section1,
#section2,
#section3,
#section4,
#section5,
#section6 {
    padding: 70px 20px 100px 20px;
}

#section1 h1,
#section2 h1,
#section3 h1,
#section4 h1,
#section5 h1,
#section6 h1 {
    text-align: center;
}

/* Floats **************************************************************/

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.clear {
    clear: both;
}

span.clear {
    clear: both;
    display: block;
    height: 0;
}

/* Clearfix **************************************************************/

.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}

/* IE 6/7 */

.ie6 .clearfix {
    zoom: 1;
}

.ie7 .clearfix {
    zoom: 1;
}

/* Animationen ***********************************************************/

.slide-in-left {
    -webkit-animation-name: slide-in-left;
    animation-name: slide-in-left;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes slide-in-left {
    0% {
        -webkit-transform: translateX(-3000%);
        transform: translateX(-3000%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes slide-in-left {
    0% {
        -webkit-transform: translateX(-3000%);
        transform: translateX(-3000%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.drop-down {
    -webkit-animation-name: drop-down;
    animation-name: drop-down;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-delay: 5.7s;
    animation-delay: 5.7s;
}

@-webkit-keyframes drop-down {
    0% {
        -webkit-transform: translateY(-3000%);
        transform: translateY(-3000%);
    }

    50% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    75% {
        -webkit-transform: translateY(-40%);
        transform: translateY(-40%);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes drop-down {
    0% {
        -webkit-transform: translateY(-3000%);
        transform: translateY(-3000%);
        visibility: visible;
    }

    50% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    75% {
        -webkit-transform: translateY(-40%);
        transform: translateY(-40%);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes slide-in-rotate {
    0% {
        -webkit-transform: translateX(-300%);
        transform: translateX(-300%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -webkit-transform: rotate(-90deg);
        -moz-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }
}

@keyframes slide-in-rotate {
    0% {
        -webkit-transform: translateX(-300%);
        transform: translateX(-300%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -webkit-transform: rotate(-90deg);
        -moz-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }
}

@-webkit-keyframes slide-square {
    0% {
        -webkit-transform: translateX(-35vw);
        transform: translateX(-35vw);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes slide-square {
    0% {
        -webkit-transform: translateX(-35vw);
        transform: translateX(-35vw);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.transition {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/* Fullpage **************************************************************/

html.fp-enabled,
.fp-enabled body {
    margin: 0;
    padding: 0;
    overflow: hidden;

    /*Avoid flicker on slides transitions for mobile phones #336 */
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

#superContainer {
    height: 100%;
    position: relative;

    /* Touch detection for Windows 8 */
    -ms-touch-action: none;

    /* IE 11 on Windows Phone 8.1*/
    touch-action: none;
}

.fp-section {
    position: relative;
    -webkit-box-sizing: border-box;
    /* Safari<=5 Android<=3 */
    -moz-box-sizing: border-box;
    /* <=28 */
    box-sizing: border-box;
    height: 100%;
}

.fp-slide {
    float: left;
}

.fp-slide,
.fp-slidesContainer {
    height: 100%;
    display: block;
}

.fp-slides {
    z-index: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.3s ease-out;
    /* Safari<=6 Android<=4.3 */
    transition: all 0.3s ease-out;
}

.fp-section.fp-table,
.fp-slide.fp-table {
    display: table;
    table-layout: fixed;
    width: 100%;
    height: 100%;
}

.fp-tableCell {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%;
}

.fp-slidesContainer {
    float: left;
    position: relative;
}

.fp-controlArrow {
    position: absolute;
    z-index: 4;
    top: 50%;
    cursor: pointer;
    width: 0;
    height: 0;
    border-style: solid;
    margin-top: -38px;
}

.fp-controlArrow.fp-prev {
    left: 15px;
    width: 0;
    border-width: 38.5px 34px 38.5px 0;
    border-color: transparent #fff transparent transparent;
}

.fp-controlArrow.fp-next {
    right: 15px;
    border-width: 38.5px 0 38.5px 34px;
    border-color: transparent transparent transparent #fff;
}

.fp-scrollable {
    overflow: scroll;

}

.fp-notransition {
    -webkit-transition: none !important;
    transition: none !important;
}

#fp-nav {
    display: none;
    position: fixed;
    z-index: 100;
    margin-top: -40px;
    top: 50%;
    opacity: 1;
}

#fp-nav.right {
    right: 20px;
}

#fp-nav.left {
    left: 20px;
}

.fp-slidesNav {
    position: absolute;
    z-index: 4;
    left: 50%;
    opacity: 1;
}

.fp-slidesNav.bottom {
    bottom: 17px;
}

.fp-slidesNav.top {
    top: 17px;
}

#fp-nav ul,
.fp-slidesNav ul {
    margin: 0;
    padding: 0;
}

#fp-nav ul li,
.fp-slidesNav ul li {
    display: block;
    width: 8px;
    height: 8px;
    margin: 10px 0;
    position: relative;
}


#fp-nav ul li:nth-child(6),
#fp-nav ul li:nth-child(7) {
    display: none;
}

.fp-slidesNav ul li {
    display: inline-block;
}

#fp-nav ul li a,
.fp-slidesNav ul li a {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
}

#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span,
#fp-nav ul li:hover a span,
.fp-slidesNav ul li:hover a span {
    background: #2781bb;
}

#fp-nav ul li a.active span {
    height: 10px;
    width: 10px;
    margin: -5px 0 0 -5px;
}

#fp-nav ul li a span,
.fp-slidesNav ul li a span {
    position: absolute;
    z-index: 1;
    height: 8px;
    width: 8px;
    border: 0;
    background: #fff;
    left: 50%;
    top: 50%;
    margin: -4px 0 0 -4px;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

#fp-nav ul li .fp-tooltip {
    position: absolute;
    top: -2px;
    color: #fff;
    font-size: 14px;
    font-family: arial, helvetica, sans-serif;
    white-space: nowrap;
    max-width: 220px;
    overflow: hidden;
    display: block;
    opacity: 0;
    width: 0;
}

#fp-nav ul li:hover .fp-tooltip,
#fp-nav.fp-show-active a.active + .fp-tooltip {
    -webkit-transition: opacity 0.2s ease-in;
    transition: opacity 0.2s ease-in;
    width: auto;
    opacity: 1;
}

#fp-nav ul li .fp-tooltip.right {
    right: 20px;
}

#fp-nav ul li .fp-tooltip.left {
    left: 20px;
}

/* Popup ***************************************************************/

.popup-link {
    cursor: pointer;
}

.hidden {
    opacity: 0;
    -webkit-transition: opacity 0.5s ease-in-out;
    -moz-transition: opacity 0.5s ease-in-out;
    -o-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
    visibility: hidden;
}

.hidden.popup {
    opacity: 1;
    background: rgba(41, 41, 41, 0.98);
    visibility: visible;
    padding: 70px 0 60px 0;
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 9999;
}

.al-icon {
    height: 50px;
    width: 50px;
    position: absolute;
    top: 0;
    left: 0;
}

.close-btn {
    background-color: #2781bb;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    height: 50px;
    width: 50px;
    z-index: 99999;
}

.close-btn span {
    border-bottom: 2px solid #fff;
    width: 30px;
    display: block;
    position: absolute;
    top: 25px;
    margin: auto;
    right: 10px;
}

.close-btn .cross1 {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.close-btn .cross2 {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.slider-wrapper {
    background-color: #292929;
    height: 100%;
    margin: 0 auto;
    overflow-x: hidden !important;
    overflow-y: auto;
    width: 90%;
}

.slider-box {
    position: relative;
    -webkit-transition: all 1.0s ease-in-out;
    -moz-transition: all 1.0s ease-in-out;
    -o-transition: all 1.0s ease-in-out;
    transition: all 1.0s ease-in-out;
    overflow: hidden;
}

#slider-1.slider-box {
    width: 400%;
}

#slider-2.slider-box {
    width: 900%;
}

.slider-box.item-1 {
    margin-left: 0;
}

.slider-box.item-2 {
    margin-left: -100%;
}

.slider-box.item-3 {
    margin-left: -200%;
}

.slider-box.item-4 {
    margin-left: -300%;
}

.slider-box.item-5 {
    margin-left: 0;
}

.slider-box.item-6 {
    margin-left: -100%;
}

.slider-box.item-7 {
    margin-left: -200%;
}

.slider-box.item-8 {
    margin-left: -300%;
}

.slider-box.item-9 {
    margin-left: -400%;
}

.slider-box.item-10 {
    margin-left: -500%;
}

.slider-box.item-11 {
    margin-left: -600%;
}

.slider-box.item-12 {
    margin-left: -700%;
}

.slider-box.item-13 {
    margin-left: -800%;
}

.slide-item {
    position: absolute;
    top: 0;
}

#slider-1 .slide-item {
    width: 25%;
}

#slider-1 .item-1 {
    left: 0;
}

#slider-1 .item-2 {
    left: 25%;
}

#slider-1 .item-3 {
    left: 50%;
}

#slider-1 .item-4 {
    left: 75%;
}

#slider-2 .slide-item {
    width: 11.111111%;
}

#slider-2 .item-5 {
    left: 0;
}

#slider-2 .item-6 {
    left: 11.111111%;
}

#slider-2 .item-7 {
    left: 22.222222%;
}

#slider-2 .item-8 {
    left: 33.333333%;
}

#slider-2 .item-9 {
    left: 44.444444%;
}

#slider-2 .item-10 {
    left: 55.555555%;
}

#slider-2 .item-11 {
    left: 66.666666%;
}

#slider-2 .item-12 {
    left: 77.777777%;
}

#slider-2 .item-13 {
    left: 88.888888%;
}

.hidden.popup .inner-box {
    padding: 10px;
}

.hidden.popup .scroll-scrolly_visible .inner-box {
    padding-right: 30px;
}

.arrows {
    bottom: 0;
    position: absolute;
    width: 100%;
}

.arrow {
    background-color: #2781bb;
    cursor: pointer;
    color: #fff;
    font-size: 30px;
    line-height: 50px;
    text-align: center;
}

.arrow-left {
    height: 50px;
    position: absolute;
    bottom: 0;
    left: 0;
    padding-right: 3px;
    width: 50px;
}

.arrow-right {
    height: 50px;
    position: absolute;
    bottom: 0;
    right: 0;
    padding-left: 3px;
    width: 50px;
}

.slide-nav {
    bottom: 12px;
    left: 50%;
    margin-left: -30%;
    position: absolute;
    text-align: center;
    width: 60%;
}

.slide-nav li {
    display: inline-block;
    padding: 5px;
}

.slide-nav li span {
    background-color: #fff;
    cursor: pointer;
    display: block;
    height: 8px;
    width: 8px;
}

.slide-nav li span:hover,
.slide-nav li span:focus {
    background-color: #2781bb;
}

.slide-nav li.current span {
    background-color: #2781bb;
    height: 10px;
    margin-bottom: -1px;
    width: 10px;
}

.gap {
    height: 500px;
    width: 100%;
}

/* Scrollbar **********************************************************/

/* basics */

.mCustomScrollbar {
    -ms-touch-action: pinch-zoom;
    touch-action: pinch-zoom;
    /* direct pointer events to js */
}

.mCustomScrollbar.mCS_no_scrollbar,
.mCustomScrollbar.mCS_touch_action {
    -ms-touch-action: auto;
    touch-action: auto;
}

.mCustomScrollBox {
    /* contains plugin's markup */
    position: relative;
    overflow: hidden;
    height: 100%;
    max-width: 100%;
    outline: none;
    direction: ltr;
}

.mCSB_container {
    /* contains the original content */
    overflow: hidden;
    width: auto;
    height: auto;
}

/* vertical scrollbar */

.mCSB_inside > .mCSB_container {
    margin-right: 30px;
}

.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
    margin-right: 0;
}

/* non-visible scrollbar */

.mCS-dir-rtl > .mCSB_inside > .mCSB_container {
    /* RTL direction/left-side scrollbar */
    margin-right: 0;
    margin-left: 30px;
}

.mCS-dir-rtl > .mCSB_inside > .mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
    margin-left: 0;
}

/* RTL direction/left-side scrollbar */

.mCSB_scrollTools {
    /* contains scrollbar markup (draggable element, dragger rail, buttons etc.) */
    position: absolute;
    width: 16px;
    height: auto;
    left: auto;
    top: 0;
    right: 0;
    bottom: 0;
}

.mCSB_outside + .mCSB_scrollTools {
    right: -26px;
}

/* scrollbar position: outside */

.mCS-dir-rtl > .mCSB_inside > .mCSB_scrollTools,
.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools {
    /* RTL direction/left-side scrollbar */
    right: auto;
    left: 0;
}

.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools {
    left: -26px;
}

/* RTL direction/left-side scrollbar (scrollbar position: outside) */

.mCSB_scrollTools .mCSB_draggerContainer {
    /* contains the draggable element and dragger rail markup */
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: auto;
}

.mCSB_scrollTools a + .mCSB_draggerContainer {
    margin: 20px 0;
}

.mCSB_scrollTools .mCSB_draggerRail {
    width: 2px;
    height: 100%;
    margin: 0 auto;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
}

.mCSB_scrollTools .mCSB_dragger {
    /* the draggable element */
    cursor: pointer;
    width: 100%;
    height: 30px;
    /* minimum dragger height */
    z-index: 1;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    /* the dragger element */
    position: relative;
    width: 4px;
    height: 100%;
    margin: 0 auto;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
    text-align: center;
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
    width: 12px;
    /* auto-expanded scrollbar */
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
    width: 8px;
    /* auto-expanded scrollbar */
}

.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown {
    display: block;
    position: absolute;
    height: 20px;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    cursor: pointer;
}

.mCSB_scrollTools .mCSB_buttonUp {
    background: url('../images/scroll-up.png') center center no-repeat;
    top: 0;
}

.mCSB_scrollTools .mCSB_buttonDown {
    background: url('../images/scroll-down.png') center center no-repeat;
    bottom: 0;
}

/* theme "light-thick" */

.mCS-light-thick.mCSB_scrollTools .mCSB_draggerRail,
.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail {
    width: 2px;
    background-color: #000;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 6px;
    background-color: #2781bb;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}


/* Header **************************************************************/

#top {
    background: #292929;
    border-bottom: 2px solid #1a1a1a;
    position: fixed;
    width: 100%;
    z-index: 999;
}

.js-nav-active #top {
    background: rgba(30, 30, 30, 0.95);
}

#logo {
    float: left;
    height: 50px;
}

#logo img {
    height: 100%;
    width: auto;
}

#nav-toggle {
    cursor: pointer;
    float: right;
    height: 50px;
    padding: 8px 10px 0 10px;
    position: relative;
    width: 50px;
}

.nav-icon {
    border-bottom: 2px solid #fff;
    display: block;
    margin-top: 7px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    width: 100%;
}

#nav-toggle:hover .nav-icon,
#nav-toggle:focus .nav-icon {
    border-color: #2781bb;
}

#nav-toggle.active .nav-icon {
    width: 30px;
    display: block;
    position: absolute;
    top: 25px;
    margin: auto;
    right: 10px;
}

#nav-toggle.active .nav-icon1 {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#nav-toggle.active .nav-icon2 {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#nav-toggle.active .nav-icon3 {
    opacity: 0;
}

.js .nav-collapse {
    clip: rect(0 0 0 0);
    max-height: 0;
    position: absolute;
    display: block;
    overflow: hidden;
    zoom: 1;
}

.nav-collapse.opened {
    max-height: 9999px;
}

#menu {
    font-size: 24px;
    font-weight: 400;
    width: 100%;
}

#menu ul {
    height: 1000px;
    padding-top: 40px;
    width: 100%;
}

#menu li {
    font-family: 'Inter', sans-serif;font-weight: 300;
    font-size: 1em;
    width: 100%;
    text-align: center;
}

#menu li a {
    color: #fff;
    display: block;
    padding: 15px 0;
}

#menu li.active a,
#menu li a:hover,
#menu li a:focus {
    color: #2781bb;
}

/* Home *****************************************************************/

#section0 {
    background-image: url('../images/hintergrund-s.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

#headline {
    height: 120px;
    margin: -15% auto 0 auto;
    position: relative;
    width: 300px;
}

#headline h3 {
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
    font-size: 18px;
    margin: 0;
    top: 0;
    position: absolute;
    right: 170px;
}

#headline h1 {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
    font-size: 24px;
    margin: 0;
    top: 30px;
    position: absolute;
    right: 10px;
}

#headline h2 {
    -webkit-animation-delay: 2.2s;
    animation-delay: 2.2s;
    font-size: 20px;
    line-height: normal;
    margin: 0;
    top: 65px;
    padding: 0;
    position: absolute;
    right: 30px;
}

#headline div {
    -webkit-animation-delay: 3.7s;
    animation-delay: 3.7s;
    top: 68px;
    right: 5px;
    position: absolute;
    width: 100%;
}

#headline span {
    background-color: #2781bb;
    display: inline-block;
    float: right;
    height: 16px;
    width: 16px;
}

#claim {
    margin-left: -60px;
    left: 50%;
    position: absolute;
    text-align: center;
    top: 50vh;
    width: 120px;
}

#claim h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

/* Arbeitsbereiche ******************************************************/

#section1 .square {
    background-color: #424242;
    height: 200px;
    font-size: 20px;
    margin: 0 auto 20px auto;
    text-align: center;
    width: 200px;
}

#section1 .deko-square {
    display: none;
}

#section1 a {
    color: #fff;
}

#section1 .square:hover,
#section1 .square:focus {
    background-color: #2781bb;
}

/* Arbeit Popup *********************************************************/

#slider-1 .slide-item h2 {
    margin-bottom: 30px;
}

#slider-1 .slide-item ul {
    font-family: 'Gilda Display', serif;
    padding-left: 1.8em;
}

#slider-1 .slide-item li {
    list-style-type: square;
    list-style-image: url(../images/square.png);
    margin: 15px 0;
}

/* Arbeitsbeispiele *****************************************************/

#section2 .square {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 200px;
    font-size: 20px;
    margin: 0 auto 20px auto;
    overflow: hidden;
    text-align: center;
    width: 200px;
}

#section2 .square.q1 {
    background-image: url(../images/simonis-sw.jpg);
}

#section2 .square.q2 {
    background-image: url(../images/vibus-sw.jpg);
}

#section2 .square.q3 {
    background-image: url(../images/b-und-s-sw.jpg);
}

#section2 .square.q4 {
    background-image: url(../images/wambach-sw.jpg);
}

#section2 .square.q5 {
    background-image: url(../images/bruennet-sw.jpg);
}

#section2 .square.q6 {
    background-image: url(../images/gothier-sw.jpg);
}

#section2 .square.q7 {
    background-image: url(../images/salzwedel-sw.jpg);
}

#section2 .square.q8 {
    background-image: url(../images/fontaine-sw.jpg);
}

#section2 .square.q9 {
    background-image: url(../images/limbach-sw.jpg);
}

#section2 .square img {
    opacity: 0;
}

#section2 .square:hover img,
#section2 .square:focus img {
    opacity: 1;
}

/* Beispiele Popup ******************************************************/

.ref .ref-web {
    margin: 30px auto -20px auto;
    width: 90%;
    max-width: 600px;
}

.ref .ref-link {
    color: #A8A8A8;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.ref a {
    color: #A8A8A8;
}

.ref .ref-link:hover,
.ref .ref-link:focus,
.ref a:hover,
.ref a:focus {
    color: #2781bb;
}

.ref ul {
    margin: 40px 0;
}

.ref li {
    font-family: 'Gilda Display', serif;
    list-style-type: square;
    list-style-position: inside;
    list-style-image: url(../images/square.png);
    margin: 10px 0;
}

.ref .ref-ad {
    margin: 0 auto;
    max-width: 900px;
}

.ref .ref-ad img {
    display: block;
    margin: 0 auto;
}

#salzwedel .ref-1 {
    width: 90%;
    max-width: 600px;
}

#salzwedel .ref-2 {
    width: 80%;
    max-width: 600px;
}

#wambach .ref-1 {
    width: 80%;
    max-width: 600px;
}

#wambach .ref-2 {
    width: 100%;
    max-width: 600px;
}

#bruennet .ref-1 {
    width: 100%;
    max-width: 500px;
}

#bruennet .ref-2 {
    width: 74%;
    max-width: 700px;
}

#b-und-s .ref-1 {
    width: 90%;
    max-width: 450px;
}

#b-und-s .ref-2 {
    width: 70%;
    max-width: 420px;
}

#gothier .ref-1 {
    width: 90%;
    max-width: 700px;
}

#limbach .ref-1 {
    width: 90%;
    max-width: 700px;
}

/* Informationen ********************************************************/

#section3 .text-box {
    margin-bottom: 50px;
}

#section-nav {
    display: none;
}

#section3 h2 {
    margin-bottom: 30px;
}

#section3 ul {
    padding-left: 1.8em;
}

#section3 li {
    font-family: 'Gilda Display', serif;
    list-style-type: square;
    list-style-image: url(../images/square.png);
    margin: 15px 0;
}

/* Kontakt **************************************************************/

.tel-nr a,
.tel a,
.handy a {
    color: #fff;
}

#section4 #daten {
    margin-bottom: 100px;
}

#section4 #daten div {
    font-size: 20px;
    margin: 10px 0;
    padding: 5px 0 5px 40px;
}

#section4 #daten .lilie {
    background: url('../images/lilie.png') no-repeat left center;
}

#section4 #daten .tel {
    background: url('../images/tel.png') no-repeat left center;
}

#section4 #daten .lilie {
    font-size: 24px;
}

#section4 #daten .handy {
    background: url('../images/handy.png') no-repeat left center;
}

#section4 #daten .mail {
    background: url('../images/mail.png') no-repeat left center;
}

#section4 #daten #portrait {
    margin: 0 auto 30px auto;
    padding: 0;
    width: 150px;
}

#section4 #mail-form {}

#section4 input,
#section4 textarea {
    background: #292929;
    border: 1px solid #595959;
    color: #fff;
    margin-top: 20px;
    padding: 12px 10px;
    width: 100%;
}

#section4 input.font,
#section4 textarea {
    font-family: sans-serif;
}

#section4 input:hover,
#section4 textarea:hover {
    border-color: #2781bb;
}

#section4 input:focus,
#section4 textarea:focus {
    background: #2e2e2e;
    border-color: #2781bb;
}

#section4 textarea {
    min-height: 100px;
    overflow-y: auto;
}

::-webkit-input-placeholder {
    color: #787878;
}

::-moz-placeholder {
    color: #787878;
}

:-ms-input-placeholder {
    color: #787878;
}

:-moz-placeholder {
    color: #787878;
}

#section4 input.button {
    background: #1a1a1a;
    border: 0;
    color: #fff;
    cursor: pointer;
    font-size: 1.2em;
}

#section4 input.button:hover,
#section4 input.button:focus {
    background-color: #2781bb;
}

#section4 input.check {
    margin: 20px 10px 0 0;
    width: 10px;
}

#section4 #check-text {
    font-size: 14px;
}

#section4 #check-text-close,
#section4 #check-text-btn {
    display: none;
}

/* Validatr ***********************************************************/

#section4 .validatr-message {
    background-color: #2781bb !important;
    color: #000 !important;
    font-size: 12px !important;
    border: 0 none !important;
}

#section4 .validatr-message:before {
    content: '■';
    color: #2781bb;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    display: inline-block;
    position: absolute;
    bottom: -8px;
    font-size: 14px;
    left: 1px;
}

/* Impressum **********************************************************/

#section5 .al {
    display: inline-block;
    font-size: 24px;
    margin-bottom: 30px;
}

/* Datenschutz ********************************************************/

#section6 {
    overflow: auto;
}

#section6 li {
    margin: 0 0 20px 10px;
}

#section6 li ul li {
    font-size: 1em;
    list-style-type: square;
    margin-left: 15px;
}

/* Footer *************************************************************/

#bottom {
    background-color: #292929;
    bottom: 0;
    border-top: 2px solid #1a1a1a;
    font-size: 14px;
    padding: 10px 20px;
    position: fixed;
    text-align: center;
    width: 100%;
    z-index: 999;
}

#adress {
    margin-bottom: 10px;
}

#adress span.bottom-square {
    background-color: #2781bb;
    display: inline-block;
    height: 5px;
    margin: 0 8px 1px 8px;
    width: 5px;
}

#adress .tel-nr {
    color: #fff;
    text-decoration: none;
}

#bottom-link a {
    color: #fff;
    padding: 0 20px;
}

#bottom-link a:hover,
#bottom-link a:focus {
    color: #2781bb;
}

/* Antwort ************************************************/

#antwort {
    padding: 170px 20px 0 20px;
    text-align: center;
}

#antwort p {
    font-size: 1.3em;
    line-height: 1.6em;
}

/* 404 ***********************************************************/

#fehler {
    padding: 18% 10px 90px 10px;
    text-align: center;
}

#f-404 {
    color: #999;
    font-size: 30px;
}

#duck {
    margin: 0 auto;
    max-width: 150px;
}

#fehler ul {
    font-size: 16px;
    padding-left: 50px;
    text-align: left;
    margin: 0 auto;
    width: 180px;
}

#fehler li {
    list-style-type: square;
    list-style-image: url(../images/square.png);
    margin: 15px 0;
}

#fehler a {
    font-family: 'Inter', sans-serif;font-weight: 300;
}



/**********************************************************
************************* 480 PX **************************
***********************************************************/

@media only screen and (min-width: 480px) {

    .square-box {
        margin: 0 auto;
        width: 100%;
    }

    .text-box {
        margin: 0 auto;
        width: 90%;
    }

    /* Home *****************************************************************/
    #claim {
        margin-left: -170px;
        top: 65vh;
        width: 340px;
    }

    #claim h3 {
        float: left;
        margin-bottom: 0;
    }

    #claim h3:nth-child(2):before,
    #claim h3:nth-child(3):before {
        content: '■';
        color: #2781bb;
        margin-left: 5px;
        padding-right: 5px;
    }

    /* Arbeitsbereiche ******************************************************/
    #section1 .square {
        float: left;
        height: 0;
        font-size: 18px;
        margin: 0 5% 40px 5%;
        padding-bottom: 40%;
        width: 40%;
    }

    #section1 .square.q3,
    #section1 .square.q4 {
        margin-bottom: 0;
    }

    /* Arbeitsbeispiele *****************************************************/
    #section2 .square {
        float: left;
        height: 0;
        font-size: 18px;
        margin: 0 5% 40px 5%;
        padding-bottom: 40%;
        width: 40%;
    }

    #section2 .square.q7,
    #section2 .square.q8 {
        margin-bottom: 0;
    }

    #section2 .square.q9 {
        display: none;
    }

}

/**********************************************************
************************* 580 PX **************************
***********************************************************/

@media only screen and (min-width: 580px) {

    .square-box {
        width: 80%;
    }

    .text-box {
        width: 80%;
    }

    /* Popup ***************************************************************/
    .slider-wrapper {
        width: 80%;
    }

    .hidden.popup .inner-box {}

    .scrollbar-rail > .scroll-element.scroll-y {}

    /* Header **************************************************************/
    #logo {
        height: 60px;
    }

    #nav-toggle {
        padding: 14px 10px 0 10px;
    }

    #nav-toggle.active .nav-icon {
        top: 30px;
    }


    /* Home *******************************************************/
    #headline {
        margin: -10% auto 0 auto;
        width: 435px;
    }

    #headline h3 {
        font-size: 26px;
        right: 240px;
    }

    #headline h1 {
        font-size: 34px;
        right: 20px;
        top: 35px;
    }

    #headline h2 {
        font-size: 30px;
        right: 35px;
        top: 80px;
    }

    #headline div {
        right: 0;
        top: 85px;
    }

    #headline span {
        height: 23px;
        width: 23px;
    }

    #claim {
        margin-left: -188px;
        width: 376px;
    }

    #claim h3 {
        font-size: 20px;
    }

    /* Arbeitsbereiche ******************************************************/
    /* Beispiele Popup ******************************************************/
    .ref .ref-ad img {
        margin: 0;
    }

    .ref .ref-1 {
        float: left;
    }

    .ref .ref-2 {
        float: right;
    }

    #salzwedel .ref-1 {
        margin-top: 35%;
        width: 60%;
    }

    #salzwedel .ref-2 {
        width: 40%;
    }

    #wambach .ref-1 {
        width: 44%;
    }

    #wambach .ref-2 {
        width: 56%;
    }

    #bruennet .ref-1 {
        width: 63%;
        margin-top: 10%;
    }

    #bruennet .ref-2 {
        width: 37%;
    }

    #b-und-s .ref-1 {
        margin-top: 40%;
        width: 60%;
    }

    #b-und-s .ref-2 {
        width: 40%;
    }

    #gothier .ref-1 {
        float: none;
        width: 60%;
    }

    #limbach .ref-1 {
        float: none;
        width: 60%;
    }

    /* Informationen ********************************************************/
    #section3 .text-box {
        margin-bottom: 80px;
    }

    /* Kontakt **************************************************************/
    #section4 #daten #portrait {
        margin: 0 0 30px 0;
    }

}

/**********************************************************
************************* 768 PX **************************
***********************************************************/

@media only screen and (min-width: 768px) {

    .desktop {
        display: block;
    }

    .mobil {
        display: none !important;
    }

    #section1,
    #section2,
    #section3,
    #section4,
    #section5,
    #section6 {
        padding: 0 40px;
    }

    .square-box {
        margin-top: 4%;
        position: relative;
        height: auto;
        width: 60vh;
        max-width: 1040px;
    }

    .text-box {
        margin: 0 5% 0 15%;
        position: relative;
    }

    h1.slide-in-rotate {
        font-size: 34px;
        left: -10vh;
        margin: -2vh 0 0 0;
        position: absolute;
        top: 50%;
        -webkit-transform: rotate(-90deg);
        -moz-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
        transform: rotate(-90deg);
        width: 270px;
    }

    /* Animationen ***********************************************************/
    /* schwenkende Überschrift */
    .section.active .slide-in-rotate {
        -webkit-animation-name: slide-in-rotate;
        animation-name: slide-in-rotate;
        -webkit-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        -webkit-animation-direction: normal;
        animation-direction: normal;
    }

    /* gleitendes Quadrat */
    .section.active .slide-square {
        -webkit-animation-name: slide-square;
        animation-name: slide-square;
        -webkit-animation-duration: 2s;
        animation-duration: 2s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        -webkit-animation-delay: 1s;
        animation-delay: 1s;
        -webkit-animation-timing-function: cubic-bezier(0, 0, 0.58, 1);
        animation-timing-function: cubic-bezier(0, 0, 0.58, 1);
    }

    /* Fullpage **************************************************************/
    #fp-nav {
        display: block;
    }

    /* Popup **************************************************************/
    .slider-wrapper {
        width: 70%;
    }

    .hidden.popup .inner-box {
        padding: 20px;
    }

    .gap {
        height: 300px;
    }

    /* Header ****************************************************/
    #logo {
        height: 70px;
    }

    .js .nav-collapse {
        clip: inherit;
        max-height: none;
        position: relative;
        overflow: visible;
    }

    #nav-toggle {
        display: none;
    }

    #menu {
        background: transparent;
        font-size: 20px;
        margin-top: -15px;
        position: absolute !important;
        right: 0;
        top: 50%;
        width: 340px;
    }

    #menu ul {
        padding: 0;
        height: auto;
    }

    #menu li {
        float: left;
        margin-right: 20px;
        text-align: right;
        width: auto;
    }

    #menu li a {
        padding: 0;
    }

    /* Home *****************************************************************/
    #section0 {
        background-image: url('../images/hintergrund.jpg');
    }

    #claim {
        top: 63vh;
    }

    /* Arbeitsbereiche ******************************************************/
    #section1 .square {
        margin: 0 0 55px 0;
        font-size: 16px;
        padding-bottom: 45%;
        width: 45%;
    }

    #section1 .square.q2,
    #section1 .square.q4 {
        margin-left: 10%;
    }

    #section1 .deko-square {
        display: block;
        position: absolute;
        height: 0;
        left: 50%;
        margin-left: -2.5%;
        margin-top: -2.5%;
        padding-bottom: 5%;
        top: 50%;
        width: 5%;
    }

    /* Bereiche Popup *******************************************************/
    #webdesign .inner-box {
        background-image: url('../images/bg-web.jpg');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    #printdesign .inner-box {
        background-image: url('../images/bg-print.jpg');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    #cd .inner-box {
        background-image: url('../images/bg-cd.jpg');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    #produktfotografie .inner-box {
        background-image: url('../images/bg-foto.jpg');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    /* Arbeitsbeispiele *****************************************************/
    #section2 .square {
        margin: 0 0 30px 0;
        padding-bottom: 29.33%;
        width: 29.33%;
    }

    #section2 .square.q2,
    #section2 .square.q5,
    #section2 .square.q8 {
        margin-left: 6%;
        margin-right: 6%;
    }

    #section2 .square.q9 {
        display: block;
        margin-bottom: 0;
    }

    /* Beispiele Popup ******************************************************/
    .ref .ref-web {
        margin: 30px auto -38px auto;
    }

    /* Informationen ********************************************************/
    #section3 .text-box {
        margin-bottom: 0;
    }

    #section-nav {
        display: block;
        position: absolute;
        bottom: 60px;
        left: 50%;
        margin-left: -300px;
        width: 600px;
        text-align: center;
        z-index: 999;
    }

    #section-nav a {
        background-color: #000;
        color: #fff;
        margin: 0 5px;
        padding: 5px 10px;
    }

    #section-nav a:hover,
    #section-nav a:focus {
        background-color: #2781bb;
    }

    #section3 li {
        margin: 10px 0;
    }

    /* Kontakt **************************************************************/
    #section4 #daten {
        float: left;
        margin-bottom: 0;
        /* width: 42%;*/
    }

    #section4 #daten #portrait {}

    #section4 #mail-formular {
        float: right;
        width: 55%;
    }

    #section4 input,
    #section4 textarea {
        margin-top: 10px;
    }

    #section4 input.font,
    #section4 textarea {
        padding: 8px 10px;
    }

    #section4 input.check {
        float: left;
    }

    #section4 #check-text {
        display: none;
    }

    #section4 #check-text.visible {
        background-color: #1a1a1a;
        display: block;
        font-size: 16px;
        line-height: 1.4;
        padding: 40px;
        position: absolute;
        top: 25%;
        left: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    #section4 #check-text-close {
        background-color: #2781bb;
        color: #000;
        cursor: pointer;
        font-size: 60px;
        display: block;
        height: 40px;
        line-height: 0;
        padding-top: 22px;
        position: absolute;
        text-align: center;
        top: 0;
        right: 0;
        width: 40px;
    }

    #section4 #check-text-btn {
        display: inline-block;
        float: left;
        font-size: 14px;
        margin: 19px 0 10px 0;
        width: 90%;
    }

    #section4 #check-text-btn span {
        background-color: #2781bb;
        font-family: 'Inter', sans-serif;font-weight: 300;
        color: #000;
        padding: 0 10px;
        margin: 0 10px;
        cursor: pointer;
    }

    /* Datenschutz ********************************************************/
    #section6 {
        padding-left: 0 !important;
    }

    #section6 .fp-scrollable {
        overflow: hidden;
        padding-left: 40px;
    }

    #section6 .text-box {
        padding-top: 10%;
        padding-bottom: 100px;
    }

    #section6 h1.slide-in-rotate {
        left: -14vh;
        top: 50vh;
    }

    #section6 .iScrollVerticalScrollbar {
        top: 14% !important;
        right: 5px !important;
        bottom: 60px !important;
    }

    #section6 .iScrollIndicator {
        background-color: #2781bb !important;
        border: 0 none !important;
    }

    /* Footer *************************************************************/
    #adress {
        float: left;
        margin-bottom: 0;
    }

    #bottom-link {
        float: right;
    }

    #bottom-link a {
        padding: 0 0 0 30px;
    }

}

/**********************************************************
************************* 900 PX **************************
***********************************************************/

@media only screen and (min-width: 768px) and (min-height: 900px) {

    body {
        font-size: 1.1em;
    }

    /* Animationen ***********************************************************/
    @-webkit-keyframes slide-square {
        0% {
            -webkit-transform: translateX(-40vw);
            transform: translateX(-40vw);
        }
    }

    @keyframes slide-square {
        0% {
            -webkit-transform: translateX(-40vw);
            transform: translateX(-40vw);
        }
    }

    .text-box {
        margin: 0 5% 0 10%;
        width: 85%;
    }

    /* Home *****************************************************************/
    #claim {
        top: 55vh;
    }

    /* Informationen ********************************************************/
    #section3 li {
        margin: 15px 0;
    }

    /* Antwort ************************************************/
    #antwort {
        padding: 300px 20px 0 20px;
    }

    #antwort p {
        font-size: 1.6em;
        line-height: 1.8em;
    }

    /* 404 ***********************************************************/
    #fehler {
        padding: 10% 10px 90px 10px;
    }

    #f-404 {
        font-size: 34px;
    }

    #duck {
        max-width: 280px;
        margin-bottom: 20px;
    }

    #fehler ul {
        margin: 20px auto;
        font-size: 1.2em;
        width: 200px;
    }

    #fehler p {
        font-size: 1.4em;
    }

}

/**********************************************************
************************* 890 PX **************************
***********************************************************/

@media only screen and (min-width: 890px) {

    .square-box {
        width: 70vh;
    }

    h1.slide-in-rotate {
        font-size: 40px;
        left: -12vh;
        margin: -4vh 0 0 0;
        width: 320px;
    }

    /* Arbeitsbereiche ******************************************************/
    #section1 .square {
        font-size: 20px;
        margin-bottom: 60px;
    }

    /* Arbeitsbeispiele *****************************************************/
    #section2 .square {
        margin-bottom: 30px;
    }

    /* Datenschutz ********************************************************/
    #section6 h1.slide-in-rotate {
        left: -16vh;
    }

}

/**********************************************************
************************* 950 PX *************************
***********************************************************/

@media only screen and (min-width: 950px) {

    #section1,
    #section2,
    #section3,
    #section4,
    #section5,
    #section6 {
        padding: 0 80px 0 40px;
    }

    /* Fullpage **************************************************************/
    #fp-nav.right {
        right: 40px;
    }

    #fp-nav ul li {
        width: 12px;
        height: 12px;
        margin: 12px 0;
    }

    #fp-nav ul li a.active span {
        height: 16px;
        width: 16px;
        margin: -8px 0 0 -8px;
    }

    #fp-nav ul li a span {
        height: 12px;
        width: 12px;
        margin: -6px 0 0 -6px;
    }

    /* Popup *********************************************/
    .slide-nav li span {
        height: 12px;
        width: 12px;
    }

    .slide-nav li.current span {
        background-color: #2781bb;
        height: 16px;
        margin-bottom: -2px;
        width: 16px;
    }

    /* Header ********************************************/
    #logo {
        height: 80px;
    }

    /* Home **********************************************/
    #headline {
        height: 150px;
        width: 560px;
    }

    #headline h3 {
        font-size: 34px;
        right: 310px;
    }

    #headline h1 {
        font-size: 44px;
        right: 25px;
        top: 50px;
    }

    #headline h2 {
        font-size: 38px;
        right: 45px;
        top: 111px;
    }

    #headline div {
        top: 117px;

    }

    #headline span {
        height: 29px;
        width: 29px;
    }

    #claim {
        margin-left: -245px;
        width: 490px;
    }

    #claim h3 {
        font-size: 24px;
    }

    #claim h3:nth-child(2):before,
    #claim h3:nth-child(3):before {
        margin-left: 15px;
        padding-right: 15px;
    }

    /* Kontakt *************************************************************/
    #section4 #daten {
        width: 45%;
    }

    #section4 #daten #portrait {
        display: block;
        margin: 0 0 30px 0;
    }

    #section4 #mail-formular {
        width: 50%;
    }

    #section4 input,
    #section4 textarea {
        margin-top: 20px;
    }

    /* Datenschutz ********************************************************/
    #section6 h1.slide-in-rotate {
        left: -16vh;
    }

    #section6 .iScrollVerticalScrollbar {
        right: 15px !important;
    }

}

/**********************************************************
************************* 1100 PX *************************
***********************************************************/

@media only screen and (min-width: 1100px) {

    .square-box {
        margin-top: 5%;
        width: 75vh;
    }

    h1.slide-in-rotate {
        font-size: 48px;
        margin: -1vh 0 0 0;
        width: 380px;
    }

    /* Popup ***************************************************************/
    .hidden.popup {
        padding: 80px 0;
    }

    .hidden.popup .inner-box {
        padding: 30px;
    }

    .scrollbar-rail > .scroll-element.scroll-y {}

    .gap {
        height: 100px;
    }

    /* Header **************************************************************/
    #logo {
        height: 90px;
    }

    /* Arbeitsbereiche *****************************************************/
    #section1 .square {
        font-size: 26px;
        margin-bottom: 70px;
    }

    /* Kontakt *************************************************************/
    #section4 #daten {}

    #section4 #daten #portrait {
        width: 200px;
    }

    #section4 #mail-formular {}

    #section4 #daten .lilie {
        font-size: 30px;
    }

}

/**********************************************************
************************** 1400 PX ************************
***********************************************************/

@media only screen and (min-width: 1400px) {

    .square-box {
        margin-top: 3%;
    }

    .text-box {
        margin: 0 5% 0 25%;
        width: 65%;
        max-width: 1040px;
    }

    h1.slide-in-rotate {
        font-size: 54px;
        left: 0vh;
        margin: 0;
        width: 430px;
    }

    /* Animationen ***********************************************************/
    @-webkit-keyframes slide-square {
        0% {
            -webkit-transform: translateX(-31vw);
            transform: translateX(-31vw);
        }
    }

    @keyframes slide-square {
        0% {
            -webkit-transform: translateX(-31vw);
            transform: translateX(-31vw);
        }
    }

    /* Popup ***************************************************************/
    .hidden.popup {}

    .slider-wrapper {
        max-width: 1150px;
    }

    /* Header **************************************************************/
    #logo {
        height: 100px;
    }

    #menu {
        font-size: 22px;
        margin-top: -14px;
        width: 370px;
    }

    /* Home *****************************************************************/
    #headline {
        height: 185px;
        width: 680px;
    }

    #headline h3 {
        font-size: 40px;
        right: 380px;
    }

    #headline h1 {
        font-size: 54px;
        right: 30px;
        top: 60px;
    }

    #headline h2 {
        font-size: 46px;
        right: 60px;
        top: 135px;
    }

    #headline div {
        top: 143px;
    }

    #headline span {
        height: 36px;
        width: 36px;
    }

    #claim {
        top: 63vh;
    }

    /* Arbeitsbereiche ******************************************************/
    #section1 .square {
        margin-bottom: 75px;
    }

    /* Arbeitsbeispiele *****************************************************/
    #section2 .square {
        margin-bottom: 45px;
    }

    /* Informationen *******************************************************/
    #section-nav {
        bottom: 80px;
    }

    #section-nav a {
        padding: 10px;
    }

    #section3 li {
        margin: 15px 0;
    }

    /* Kontakt *************************************************************/
    #section4 #daten {}

    #section4 #mail-formular {}

    /* Datenschutz ********************************************************/
    #section6 h1.slide-in-rotate {
        left: -4vh;
    }


}

/**********************************************************
************************* 1400 PX *************************
***********************************************************/

@media only screen and (min-width: 1400px) and (min-height: 950px) {

    /* Arbeit Popup *********************************************************/
    /* Informationen *******************************************************/
    #section-nav {
        bottom: 80px;
    }

    #section-nav a {
        padding: 10px;
    }

    #section3 ul {
        padding-left: 1.9em;
    }

}

/**********************************************************
************************** 1600 PX ************************
***********************************************************/

@media only screen and (min-width: 1600px) {

    /* Animationen ***********************************************************/
    @-webkit-keyframes slide-square {
        0% {
            -webkit-transform: translateX(-30vw);
            transform: translateX(-30vw);
        }
    }

    @keyframes slide-square {
        0% {
            -webkit-transform: translateX(-30vw);
            transform: translateX(-30vw);
        }
    }

    /* Popup ***************************************************************/
    .hidden.popup {}

    /* Home *****************************************************************/
    #claim {
        margin-left: -260px;
        top: 60vh;
        width: 520px;
    }

    #claim h3 {
        font-size: 26px;
    }

}

/**********************************************************
************************** 1800 PX ************************
***********************************************************/

@media only screen and (min-width: 1800px) {

    body {
        font-size: 1.2em;
    }

    /* Animationen ***********************************************************/
    @-webkit-keyframes slide-square {
        0% {
            -webkit-transform: translateX(-34vw);
            transform: translateX(-34vw);
        }
    }

    @keyframes slide-square {
        0% {
            -webkit-transform: translateX(-34vw);
            transform: translateX(-34vw);
        }
    }

}


/**********************************************************
********************* 0 bis 768 PX*************************
***********************************************************/

@media only screen and (max-width: 767px) {

    /* Fullpage Slides in Informationen aufheben ****************************/
    #section3.section {
        height: auto !important;
    }

    #section3 .fp-slidesContainer {
        float: none;
        width: 100% !important;
    }

    #section3 .slide {
        width: 100% !important;
    }

    #section3 .fp-slide {
        float: none;
    }

    #section3 .fp-tableCell {
        height: auto !important;
    }

    #section3 .fp-controlArrow {
        display: none;
    }

}

/**********************************************************
************************* print ***************************
***********************************************************/

@media print {

    html.with-featherlight > * > :not(.featherlight) {
        display: none
    }

}
