@import url("reset.css");

/* poppins-regular - latin */

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: local('Poppins Regular'), local('Poppins-Regular'), url('../fonts/poppins-v5-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('../fonts/poppins-v5-latin-regular.woff') format('woff');
    /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* poppins-italic - latin */

@font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 400;
    src: local('Poppins Italic'), local('Poppins-Italic'), url('../fonts/poppins-v5-latin-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('../fonts/poppins-v5-latin-italic.woff') format('woff');
    /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* poppins-700 - latin */

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: local('Poppins Bold'), local('Poppins-Bold'), url('../fonts/poppins-v5-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('../fonts/poppins-v5-latin-700.woff') format('woff');
    /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
.clear {
    clear: both;
}
body {
    font: 400 15px/24px 'Poppins', arial, helvetica;
    color: #6d7881;
}

.inner {
    width: 100%;
    padding: 0 8%;
}
header {
    background:  url(../images/atardecer.jpg) no-repeat center center / cover;
    height: 100vh;
}
.links {
    margin: 10px 0 0 0;
    position: fixed;
    z-index: 99999;
    right: 10%;
    bottom: 0;
    background: #009faf;
    padding: 5px 10px;
    border-radius: 5px 5px 0 0;
}
.links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.6s ease;
    -webkit-transition: 0.6s ease;
    -moz-transition: 0.6s ease;
}
.links a:hover {
    color: #5cc1cb;
    transition: 0.6s ease;
    -webkit-transition: 0.6s ease;
    -moz-transition: 0.6s ease;
}
.logo {
    display: inline-block;
    float: left;
}
.butler {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    animation-name: butler;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}
@keyframes butler {
    from {
        transform: translate(-100%, 0);
        -webkit-transform: translate(-100%, 0);
    }
    to {
        transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
    }
}
.claim {
    position: relative;
    top: 30vh;
    z-index: 20;
    animation-name: claim;
    animation-duration: 2.5s;
    animation-delay: 2s;
    animation-fill-mode: forwards;
    transform: translate(-100%, 0);
    -webkit-transform: translate(-100%, 0);
    text-shadow: 1px 1px 2px #626262;
}
@keyframes claim {
    from {
        transform: translate(-100%, 0);
        -webkit-transform: translate(-100%, 0);
    }
    to {
        transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
    }
}
.claim .headline {
    font: 700 32px/54px 'Poppins', arial, helvetica;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
}
.claim .subline {
    font: 700 68px/74px 'Poppins', arial, helvetica;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
}
.pfeil {
    display: block;
    margin: auto;
    width: 38px;
    position: relative;
    top: 40vh;
    opacity: 0;
    -webkit-animation: pfeil 1s linear infinite;
    -moz-animation: pfeil 1s linear infinite;
    -ms-animation: pfeil 1s linear infinite;
    animation: pfeil 1s linear infinite;
    animation-iteration-count: 3;
    animation-delay: 4.5s;
}
@keyframes pfeil {
    0% {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -o-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 1;
    }
    50% {
        -webkit-transform: scale(0.8);
        -moz-transform: scale(0.8);
        -o-transform: scale(0.8);
        -ms-transform: scale(0.8);
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}
.nav-container {
	float: right;
	padding: 20px 0 0 0;
	position: relative;
	z-index: 99;
}
nav #nav_button {
    display: none;
}
nav {
    float: left;
    display: flex;
    justify-content: center;
    margin: 50px 0 25px 0;
    height: 40px;
}
nav ul li {
    display: inline-block;
    margin: 0 15px 0 0;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
}
nav ul li:last-child {
    margin: 0;
}
nav ul li a {
    text-decoration: none;
    color: #fff;
    transition: 0.6s ease;
    -webkit-transition: 0.6s ease;
    -moz-transition: 0.6s ease;
}
nav ul li:hover a {
    color: #009faf;
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
}
nav ul li:hover a:before {
    opacity: 1;
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
}
nav ul li a:before {
    content: '[ ';
    opacity: 0;
}
nav ul li a:after {
    content: ' ]';
    opacity: 0;
}
nav ul li:hover a:after {
    opacity: 1;
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
}
nav.menu-fixed * {
    -webkit-transition: all .4s ease-out;
    -moz-transition: all .4s ease-out;
    -ms-transition: all .4s ease-out;
    -o-transition: all .4s ease-out;
    transition: all .4s ease-out;
}
nav.menu-fixed {
    position: fixed;
    right: 30px;
    width: 310px;
    top: 70px;
    z-index: 99999;
    background: none;
    box-shadow: none;
    display: inherit;
    justify-content: inherit;
    margin: 0;
    height: 40px;
    transition: all 1s ease;
    -webkiit-transition: all 1s ease;
}
nav.menu-fixed ul li {
    display: block;
    padding: 0;
}
nav.menu-fixed ul li a {
    color: #fff;
    display: block;
}
nav.menu-fixed label {
    display: block;
    width: 100%;
    text-align: right;
    padding: 0;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
}
nav.menu-fixed #button {
    position: fixed;
    right: 30px;
    top: 30px;
}
nav.menu-fixed #nav_button ~ ul,
nav.menu-fixed #nav_button ~ ul li {
    max-height: 0;
    overflow: hidden;
    list-style-type: none;
    width: 100%;
    text-align: left;
    list-style-image: none;
    background-image: none;
}
nav.menu-fixed #nav_button ~ul li {
    background: #009faf;
    padding: 0 0 0 15px;
}
nav.menu-fixed #nav_button ~ ul li:first-child {
    border-radius: 5px 5px 0 0;
}
nav.menu-fixed #nav_button ~ ul li:last-child {
    border-radius: 0 0 5px 5px;
}
nav.menu-fixed #nav_button ~ul li:hover {
    background: #5cc1cb;
}
nav.menu-fixed #nav_button:checked ~ul {
    max-height: 500px;
    overflow: hidden;
}
nav.menu-fixed #nav_button:checked ~ul li {
    max-height: 60px;
    overflow: hidden;
    line-height: 40px;
}
nav.menu-fixed .burger-menu {
    position: relative;
    width: 30px;
    height: 30px;
    cursor: pointer;
}
nav.menu-fixed .burger {
    position: absolute;
    background: #999999;
    width: 100%;
    height: 4px;
    top: 50%;
    right: 0px;
    margin-top: -5px;
    opacity: 1;
}
nav.menu-fixed .burger::before {
    position: absolute;
    background: #999999;
    width: 30px;
    height: 4px;
    top: 10px;
    content: "";
    display: block;
}
nav.menu-fixed .burger::after {
    position: absolute;
    background: #999999;
    width: 30px;
    height: 4px;
    bottom: 10px;
    content: "";
    display: block;
}
nav.menu-fixed .burger::after,
nav.menu-fixed .burger::before,
nav.menu-fixed .burger {
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}
nav.menu-fixed .burger-menu.menu-on .burger::after {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    bottom: 0px;
}
nav.menu-fixed .burger-menu.menu-on .burger::before {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    top: 0px;
}
nav.menu-fixed .burger-menu.menu-on .burger {
    background: rgba(111, 111, 111, .0);
}
nav.menu-fixed + .abstand {
    height: 115px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}
#section-1 {
    padding: 80px 0 0 0;
}
#section-1 .column-1 img {
    width: 100%;
    max-width: 400px;
}
#section-1 .content,
#section-2 .content {
    display: flex;
    justify-content: space-between;
}
#section-1 .content a {
    color: #009faf;
    text-decoration: none;
}
#section-1 h2 {
    font: 700 20px/24px 'Poppins', arial, helvetica;
    text-align: left;
    color: #009faf;
    margin: 0 0 12px 0;
    ;
}
.content ul li:before,
#section-3 li:before {
    content: url(../images/checked.png);
    margin: 0 6px 0 0;
}
.content ul li,
#section-3 li {
    line-height: 28px;
}
.column-1 {
    width: 48%;
}
h1 {
    font: 700 40px/48px 'Poppins', arial, helvetica;
    text-transform: uppercase;
    text-align: center;
    color: #009faf;
    width: 100%;
    margin: 0 0 30px 0;
}
strong {
    font-weight: 700;
}
section p,
section ul {
    margin: 0 0 16px 0;
}
figure img {
    position: relative;
    z-index: 10;
    border-radius: 5px;
}
figcaption {
    background: #5cc1cb;
    padding: 150px 35px 20px 35px;
    width: 70%;
    position: relative;
    top: -145px;
    left: 10%;
    border-radius: 5px;
    color: #009faf;
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    text-transform: uppercase;
}
figcaption span {
    font-weight: 400;
}
#section-2 {
    background: #009faf;
    position: relative;
    padding: 50px 0;
}
#section-2::before {
    content: '';
    background: url(../images/welle-bg.svg) no-repeat top /cover;
    top: -58px;
    width: 100%;
    position: absolute;
    height: 58px;
}
#section-2::after {
    content: '';
    background: url(../images/welle-bg-unten.svg) no-repeat bottom /cover;
    position: absolute;
    bottom: -58px;
    width: 100%;
    height: 58px;
}
h2 {
    font: 700 40px/48px 'Poppins', arial, helvetica;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    width: 100%;
    margin: 0 0 30px 0;
}
#section-2 .content {
    color: #fff;
}
#section-2 .content .column-1 img {
    width: 100%;
    border-radius: 5px;
}
.circle {
    width: 90px;
    height: 90px;
    margin: 0 20px 30px 0;
    display: inline-block;
    vertical-align: top;
}
.txt {
    display: inline-block;
    width: 75%;
    vertical-align: top;
    margin: 15px 0 0 0;
}
.txt h3 {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 24px;
    color: #5cc1cb;
    margin: 0 0 8px 0;
}
.txt-box {
    background: #5cc1cb;
    padding: 20px;
    border-radius: 5px;
    display: inline-block;
}
.txt-box h3 {
    font-weight: 700;
    font-size: 18px;
}
#section-3 .inner {
    display: flex;
    justify-content: space-between;
    padding: 0 0 0 8%;
}
#section-3 .column-2 {
    width: 40%;
    padding: 150px 0;
}
#section-3 .column-2:last-child {
    width: 50%;
    background: url(../images/velero.jpg) no-repeat center center / cover;
}
#section-3 h2 {
    color: #009faf;
    text-align: left;
}
#section-3 p {
    text-align: left;
}
#section-3 #accordion h3 {
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
    text-transform: uppercase;
    color: #009faf;
    background: #efefef url(../images/pfeil-unten.png) no-repeat 95% center;
    padding: 15px 15px 15px 30px;
    border-radius: 5px;
    cursor: pointer;
    margin: 0 0 10px 0;
    outline: none;
}
#section-3 #accordion h3.ui-state-active {
    background: #5cc1cb url(../images/pfeil-rechts.png) no-repeat 95% center;
}
#accordion img {
    width: 100%;
    max-width: 520px;
    margin: 0 0 12px 0;
}
#section-4 {
    background: #5cc1cb;
    position: relative;
    padding: 50px 0;
    z-index: 9;
}
#section-4::before {
    content: '';
    background: url(../images/welle-gruen.svg) no-repeat top /cover;
    position: absolute;
    top: -58px;
    width: 100%;
    height: 58px;
}
#section-4::after {
    content: '';
    background: url(../images/welle-gruen-unten.svg) no-repeat bottom /cover;
    position: absolute;
    width: 100%;
    height: 58px;
    bottom: -58px;
}
#section-4 .content {
    display: flex;
    color: #FFF;
    justify-content: space-between;
}
#section-4 .column-3 {
    width: 27%;
}
#section-4 .column-3:last-child {
    width: 46%;
}
#section-4 .column-3 a {
    text-decoration: underline;
    color: #FFF;
}
#section-4 h2 {
    color: #FFF;
}
#section-6 {
    background: url(../images/barco-contacto.jpg) no-repeat center center / cover;
    height: 950px;
    position: relative;
    overflow: hidden;
}
#section-6 iframe {
    background: #009faf;
    width: 40%;
    height: 950px;
}
#section-7::before {
    content: '';
    background: url(../images/welle-bg-white-oben.svg) no-repeat top / cover;
    position: absolute;
    height: 58px;
    width: 100%;
    top: -58px;
}
#section-7 {
    padding: 0 0 85px 0;
    position: relative;
}
#section-7 h2 {
    color: #5cc1cb;
    font: 700 26px/30px 'Poppins', arial, helvetica;
}
footer {
    background: #009faf;
    position: relative;
    text-align: center;
    padding: 0 0 40px 0;
}
footer:before {
    content: '';
    background: url(../images/welle-bg.svg) no-repeat top / cover;
    position: absolute;
    height: 58px;
    width: 100%;
    top: -58px;
    left: 0;
}
footer a {
    text-decoration: none;
    color: #fff;
    padding: 0 8px 0 0;
}
footer a:after {
    content: '•';
    padding: 0 0 0 8px;
}
footer a:last-child:after {
    content: '';
}
#politica-privacidad {
padding: 15px; font-size: 12px; text-align: justify;
}
#politica-privacidad h2 {font-style: bold; color:black; font-size:  14px; text-align: left; margin: 0; padding: 0;}


.infobanner.initclose{display:none;}
.infobanner.closed-banner{display:none;}
.infobanner-closer{position: absolute; left:auto; top:-30px; color:white;}
.infobanner{position: fixed; z-index:9999999; top:0; padding: 10%; height:100vh; width:100vw;  background-color: rgba(60, 60, 62, 0.7); }
.infobanner .infobanner-content{ width:50%; min-width:750px; margin:auto; position: relative;}
.highlightcontent { background-color: white; height:400px; width: 100%}
.highlightcontent img {width: 100%}
.highlightcontent-left {float:left; width:40%; padding-top:3%; padding-right:5%; padding-left:3%;}
.highlightcontent-left img {width:100%; height:auto;}
.highlightcontent-right {float:right; width:60%; padding:3%}
.highlightcontent-right h3{text-transform: uppercase; font-weight:600; line-height:15px;color: #009faf}
.highlightcontent-right p {color:#009faf; padding-top: 6px;}
.banner-button{display:inline-block; padding: 2%; margin-top: 2%; color:white; background-color:#009faf; text-decoration: none;}

@media screen and (max-width:880px) {
.infobanner{padding:5%;	}
.infobanner .infobanner-content{margin-top:5%; min-width: inherit; width:90%;	}
}

@media screen and (max-width:600px) {
}

@media screen and (max-width:560px) {
	.infobanner .infobanner-content{width:100%; margin-top:30vh;}
.highlightcontent-left{width:100%; display:none;}
.highlightcontent-right{width:100%; text-align: center;}
}

@media screen and (max-width:400px) {
.infobanner .banner-button{display:block; margin-top:20px;}
}

/*---------------------------------------
MEDIA Queries | Tablet | Phone
---------------------------------------*/

@media screen and (max-width: 1280px) {
    .txt {
        width: 70%;
    }
    nav * {
        -webkit-transition: all .4s ease-out;
        -moz-transition: all .4s ease-out;
        -ms-transition: all .4s ease-out;
        -o-transition: all .4s ease-out;
        transition: all .4s ease-out;
    }
    nav {
        position: fixed;
        right: 30px;
        width: 310px;
        top: 70px;
        z-index: 99999;
        background: none;
        box-shadow: none;
        display: inherit;
        justify-content: inherit;
        margin: 0;
        height: 40px;
        transition: all 1s ease;
        -webkit-transition: all 1s ease;
    }
    nav ul li {
        display: block;
        padding: 0;
    }
    nav ul li a {
        color: #fff;
        display: block;
    }
    nav label {
        display: block;
        width: 100%;
        text-align: right;
        padding: 0;
        -webkit-transition: all .2s ease-out;
        -moz-transition: all .2s ease-out;
        -ms-transition: all .2s ease-out;
        -o-transition: all .2s ease-out;
        transition: all .2s ease-out;
    }
    nav #button {
        position: fixed;
        right: 30px;
        top: 30px;
    }
    nav #nav_button ~ ul,
    nav #nav_button ~ ul li {
        max-height: 0;
        overflow: hidden;
        list-style-type: none;
        width: 100%;
        text-align: left;
        list-style-image: none;
        background-image: none;
    }
    nav #nav_button ~ul li {
        background: #009faf;
        padding: 0 0 0 15px;
    }
    nav #nav_button ~ ul li:first-child {
        border-radius: 5px 5px 0 0;
    }
    nav #nav_button ~ ul li:last-child {
        border-radius: 0 0 5px 5px;
    }
    nav #nav_button ~ul li:hover {
        background: #5cc1cb;
    }
    nav #nav_button ~ul li:hover a {
        color: #fff;
    }
    nav #nav_button:checked ~ul {
        max-height: 500px;
        overflow: hidden;
    }
    nav #nav_button:checked ~ul li {
        max-height: 60px;
        overflow: hidden;
        line-height: 40px;
    }
    nav .burger-menu {
        position: relative;
        width: 30px;
        height: 30px;
        cursor: pointer;
    }
    nav .burger {
        position: absolute;
        background: #999999;
        width: 100%;
        height: 4px;
        top: 50%;
        right: 0px;
        margin-top: -5px;
        opacity: 1;
    }
    nav .burger::before {
        position: absolute;
        background: #999999;
        width: 30px;
        height: 4px;
        top: 10px;
        content: "";
        display: block;
    }
    nav .burger::after {
        position: absolute;
        background: #999999;
        width: 30px;
        height: 4px;
        bottom: 10px;
        content: "";
        display: block;
    }
    nav .burger::after,
    nav .burger::before,
    nav .burger {
        transition: all .3s ease-in-out;
        -webkit-transition: all .3s ease-in-out;
    }
    nav .burger-menu.menu-on .burger::after {
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        bottom: 0px;
    }
    nav .burger-menu.menu-on .burger::before {
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        top: 0px;
    }
    nav .burger-menu.menu-on .burger {
        background: rgba(111, 111, 111, .0);
    }
    nav + .abstand {
        height: 40px!important;
        transition: all 0.5s ease;
    }
}
@media screen and (max-width: 1230px) {
    .inner {
        width: 100%;
        padding: 0 5%;
    }
    .logo {
        margin: 0 20px 0 0;
    }
    #section-2 .txt {
        width: 65%;
    }
    #section-2 .txt-box {
        text-align: center;
        width: 100%;
        display: block;
    }
    #section-6 iframe {
        width: 50%;
    }
}
@media screen and (max-width: 1024px) {
    h1 {
        text-align: center;
    }
    h1,
    h2 {
        font: 700 36px/40px 'Poppins', arial, helvetica;
    }
    figcaption {
        width: 75%;
    }
    #section-2 .txt h3 {
        font-size: 22px;
    }
    #section-6 iframe {
        width: 50%;
    }
}
@media screen and (max-width: 960px) {
    #section-2 .content {
        display: block;
    }
    #section-2 .column-1 {
        width: 100%;
    }
    #section-2 .column-1:last-child {
        margin: 50px 0 0 0;
    }
    #section-2 .txt {
        width: 80%;
    }
    #section-3 .inner {
        display: block;
        justify-content: inherit;
        padding: 0;
    }
    #section-3 .column-2 {
        width: 100%;
        padding: 100px 5% 0 5%;
    }
    #section-3 .column-2:last-child {
        width: 100%;
        background: url(../images/velero.jpg) no-repeat center center / cover;
        padding: 0!important;
        height: 500px;
        margin: 50px 0 0 0;
    }
    #section-4 .content {
        flex-flow: row wrap;
    }
    #section-4 .column-3 {
        width: 50%;
    }
    #section-4 .column-3:last-child {
        width: 100%;
    
    }
    #section-6 {
        height: 900px;
    }
    #section-6 .inner {
        padding: 0;
    }
}
@media screen and (max-width: 820px) {
    .logo {
        margin: 20px auto 0;
    }
    #section-1 .content {
        display: block;
    }
    #section-1 .column-1 {
        width: 100%;
    }
    h1 {
        text-align: left;
    }
    #section-1 .column-1:last-child {
        margin: 30px 0 0 0;
    }
    figcaption {
        width: 40%;
    }
    #section-1 .column-1 img {
        width: 65%;
    }
    #section-4 h2 {
        text-align: left;
    }
    #section-6 iframe {
        width: 58%;
    }
}
@media screen and (max-width: 720px) {
    #section-2 .txt h3 {
        font-size: 18px;
    }
    #section-2 .circle {
        width: 50px;
        height: 50px;
        margin: 0 15px 30px 0;
    }
    #section-2 .txt {
        margin: 10px 0 0 0;
    }
    .circle span {
        font-size: 22px;
        height: 40px;
        width: 40px;
    }
    #section-6 {
        height: 930px;
        padding: 30px 0 0 0;
    }
    #section-6 iframe {
        width: 100%;
    }
}
@media screen and (max-width: 580px) {
    h1,
    h2 {
        font: 700 30px/34px 'Poppins', arial, helvetica;
    }
    .claim .subline {
        font: 700 50px/56px 'Poppins', arial, helvetica;
    }
    header,
    .butler {
        height: 500px;
    }
    .claim {
        top: 60px;
    }
    .claim .headline,
    .claim .subline {
        text-shadow: 1px 1px 2px #626262;
    }
    figcaption {
        width: 60%;
    }
    #section-4 h2 {
        text-align: center;
    }
    #section-4 .column-3 {
        width: 100%;
        text-align: center;
    }
}
@media screen and (max-width: 520px) {
    .claim .headline {
        font: 700 22px/30px 'Poppins', arial, helvetica;
    }
    .claim .subline {
        font: 700 42px/50px 'Poppins', arial, helvetica;
    }
    #section-2 .txt {
        width: 80%;
    }
    figcaption {
        width: 70%;
        top: -100px;
        padding: 100px 35px 20px 35px;
    }
    .logo {
        margin: 0 45px 0 0;
    }
    #section-1 {
        padding: 50px 0 60px 0;
    }
    h1 {
        margin: 0 0 12px 0;
    }
    #section-2 .circle {
        margin: 0 15px 20px 0;
    }
    #section-3 .column-2 {
        padding: 0 5%;
    }
    #section-3 {
        padding: 110px 0 50px 0;
    }
    #section-4 {
        padding: 20px 0;
    }
    .pfeil {
        top: 70px;
    }
    #section-3 .column-2:last-child {
        position: relative;
        bottom: -10px;
    }
}
@media screen and (max-width: 420px) {
    header,
    .butler {
        height: 400px;
    }
    .dsa-secure-plugin {
        height: 280px!important;
    }
    #section-2 .column-1:last-child {
        margin: 20px 0 0 0;
    }
    body {
        font: 400 13px/20px 'Poppins', arial, helvetica;
    }
    figcaption {
        font-size: 14px;
        line-height: 22px;
    }
    #section-2 .txt {
        width: 75%;
    }
}
@media screen and (max-width: 380px) {
    .logo {
        width: 280px;
    }
    nav {
        right: 0;
        width: 320px;
    }
    h1,
    h2 {
        font: 700 26px/30px 'Poppins', arial, helvetica;
        margin: 0 0 12px 0;
    }
    nav #button,
    nav.menu-fixed #button {
        right: 15px;
    }
    #section-2 {
        padding: 0;
    }
    #section-3 .column-2:last-child {
        height: 300px;
    }
    figure img {
        width: 100%;
    }
}
@media screen and (max-width: 320px) {
    .claim .headline {
        font: 700 18px/26px 'Poppins', arial, helvetica;
    }
    h1, h2 {
        font: 700 22px/28px 'Poppins', arial, helvetica;
    }
    #section-3 #accordion h3 {
        font-size: 16px;
        line-height: 24px;
        padding: 10px 10px 10px 20px;
    }
}