@import url(fonts.css);
@import url(normalize.css);

body {
    font-family: "Clear Sans", Regular;
    font-size: 20px;
    line-height: 1.5;
    color: #707070;
    background-color: #FFFFFF;
    margin: 0;
}

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

.main {
    width: 100%;
    overflow: hidden;
}

.container {
    max-width: 1378px;
    padding: 0 35px;
    margin: 0 auto;
}

.header-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
}

header {
    padding: 50px 50px 50px 0px;
    position: relative;
}

.header-logo {
    width: 350px;
}

.nav {
    height: 70px;
    line-height: 70px;
}

.menu a {
    clear: right;
    font-weight: bold;
    font-size: 16px;
    color: #4A4A49;
    text-decoration: none;
    padding: 0 20px 0 20px;
    line-height: 70px;
}

.nav label {
    color: #4A4A49;
    font-size: 31px;
    display: none;
    width: 26px;
    float: right;
    transform: translateY(5px);
}

#toggle {
    display: none;
}

.menu a:hover {
    color: #C9001E;
}

h1 {
    font-size: 39px;
    color: #C9001E;
    max-width: 796px;
    margin-top: 90px;
    margin-bottom: 90px;
    position: relative;
    z-index: 2;
}

h2 {
    font-size: 39px;
    color: #4A4A49;
    font-weight: bold;
    margin-top: 130px;
    margin-bottom: 80px;
    text-align: left;
}

h3 {
    font-size: 25px;
    color: #707070;
    font-weight: normal;
    margin: 0;
    margin-bottom: 40px;
}

h4 {
    font-size: 39px;
    text-align: center;
}

p {
    font-size: 21px;
}

a {
    text-decoration: none;
    scroll-behavior: smooth;
}

.fs16 {
	font-size: 16px!important;
}

.text-dark {
    color: #4A4A49;
}

.text-bold {
    font-weight: 600;
}

.uppercase {
    text-transform: uppercase;
}

.graue-box {
    background-color: #F1F1F1;
    width: 100%;
    position: relative;
}

.graue-box .container {
    position: relative;
}

.hero-titel,
.hero-text {
    font-size: 20px;
    margin: 0;
    max-width: 490px;
    line-height: 1.5;
}

.hero-titel {
    font-weight: bold;
    padding-top: 57px;
}

.hero-text {
    padding-bottom: 76px;
}

.hero-img {
    z-index: 1;
    position: absolute;
    bottom: 0;
    left: 490px;
    height: 600px;
    margin-left: 100px;
    max-width: none;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    /* drei Spalten */
    grid-gap: 80px 80px;
    /* Zeilenabstand Spaltenabstand */

}

.werte .grid-container{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    /* drei Spalten */
    grid-gap: 80px 80px;
}

.leistungen h2,
.kunden h2 {
    text-align: center;
}

.leistung-img {
    max-width: 100%;
}

.leistungen-titel {
    font-size: 25px;
    color: #C9001E;
    font-weight: bold;
}

.leistungen-liste {
    list-style: none;
    padding: 0;
}

.leistungen-liste a {
    color: #707070;
    transition: 300ms;
    text-decoration: none;
}

.leistungen-liste li {
    border-bottom: solid 2px #A5A5A4;
    padding: 5px 0;
    position: relative;
    padding-right: 1.25em;
}


.leistungen-liste li:after {
    content: '';
    position: absolute;
    right: 0;
    background-image: url("/assets/arrow-right.svg");
    width: 1em;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    top: 0;
}

.leistungen-liste a:hover {
    color: #C9001E;
}


/*Menü Leiste*/

.leiste {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 0;
    pointer-events: none;
    opacity: 0;
    z-index: 50;
    transition: all .6s ease-in-out;
}

.leiste:target {
    pointer-events: all;
    opacity: 1;

}

.leiste-inner {
    padding: 110px 140px 110px 60px;
    margin: 0 auto;
    box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.2);
    background: white;
    display: flex;
    max-width: calc(100% - 40px);
    width: 770px;
    height: 100%;
    position: fixed;
    right: 0;
    overflow: auto;
    transform: translateX(100%);
    transition: all .6s ease-in-out;
}

.leiste:target .leiste-inner {
    transform: translateX(0);
}

a.close {
    content: '';
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #858585;
    opacity: 0.8;
    transition: opacity 200ms;
}

a.close:hover {
    opacity: 0.5;
}

a.close-botton {
    content: '';
    position: absolute;
    opacity: 0.8;
    transition: opacity 200ms;
}

.circle-small {
    width: 32px;
    height: 32px;
    border-radius: 50px;
    background-color: #C9001E;
}

/* Grow */
.hvr-grow {
    display: inline-block;
    vertical-align: middle;
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    transition-duration: 0.3s;
    transition-property: transform;
}

.hvr-grow:hover,
.hvr-grow:focus,
.hvr-grow:active {
    transform: scale(1.1);
}


.leiste-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.leiste-header .circle-small {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.leiste p {
    font-size: 20px;
    margin-top: 0;
}

.leiste h3 {
    color: #C9001E;
    margin-top: 70px;
    font-size: 31px;
}

.leiste-text {
    font-weight: 500px;
}

.leiste .definition {
    font-size: 16px;
    padding-bottom: 60px;
}

.container-leiste{
    width:100%;
}
.titel-dunkel {
    color: #4A4A49;
    font-weight: 500;
    margin-bottom: 0;
    width: auto;
}

.trennlinie {
    height: 1px;
    margin-left: .5rem;
    margin-right: .5rem;
    vertical-align: middle;
    background: #A5A5A4;
    content: "";
    flex: 1 1 0%;
}

.kunden .splide-track {
    text-align: center;
}

.kunden .splide__slide {
    padding: 70px;
}

.kunden .splide__slide img{
    vertical-align:bottom;
    max-width:300px;
    max-height: 250px;
    margin: 0 auto;
    object-fit: contain;
}

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

.splide__pagination__page.is-active {
    background-color: #707070;
    transform: none;
}

.splide__pagination__page {
    background-color: #AEAEAD;
}

.kunden .splide__slide {
    align-items: center;
}

.werte h2 {
    margin-bottom: 0;
}

.beispiel {
    position: relative;
    padding-left: 1em;
}

.grid-container h3 {
    color: #4A4A49;
    margin-top: 30px;
}

.circle {
    width: 55px;
    height: 55px;
    border-radius: 50px;
    background-color: #C9001E;
}

.beispiel:before {
    content: '';
    position: absolute;
    left: 0;
    background-image: url("/assets/line-red.svg");
    width: 0.1em;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    top: 0;
    margin-right: 10px;
}


.referenzen {
    background-image: url(/assets/background-referenzen.jpg);
    background-size: cover;
    padding-top: 190px;
    padding-bottom: 160px;
    background-position: center;
    color: #FFF;
    text-align: center;
	opacity: 0.95;
}

.quote {
    width: 46px;
    z-index: 10;
    display: inline-block;
}

.referenzen-content {
    max-width: 100%;
    padding: 0 4em;
    margin: 0 auto;
}

.logo-img {
    max-width: 200px;
}

.zertifikate h3,
.zertifikate p {
    max-width: 1030px;
    margin-left: 340px;
}

.stempel-img {
    margin-left: 340px;
}

.über-uns .graue-box {
    border-bottom: solid 1px #AEAEAD;
    margin-top:0px;
}

.über-uns p {
    max-width: 800px;
    margin: 0 auto 20px 0;
}

.über-uns .text-lange {
    margin: 0 auto 0 0;
    font-size: 16px;
}

.about-us-wrapper {
    display: flex;
    flex-wrap: wrap;
    padding: 80px 0;
    margin-left: -10px;
    margin-right: 10px;

}

.about-us-image {
    /* width: auto; */
    padding: 10px;
    margin-left: auto;
    width: calc(100% / 12 * 4);

}

.about-us-portrait {
    margin-top: calc(-80px - 136px);
}

.about-us-text {
    /* flex: 1 1 0%; */
    padding: 10px;
    width: calc(100% / 12 * 7);
}

.portrait-img {
    z-index: 1;
    position: absolute;
    bottom: 80px;
    left: 890px;
    height: 551px;
    max-width: 448px;
}

.kontaktaufnahme {
    padding-top: 50px;
	padding-bottom: 50px;
    background-color: #F1F1F1;
}

.contact-block {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: -20px;
}

.contact-block h3 {
    margin: 0;
}

.contact-icon {
    width: auto;
    padding: 20px;
}

.contact-text {
    flex: 1 1 0%;
    ;
    padding: 20px;
    margin: 0;
}

a h3:hover {
    color: #C9001E;
}

.contact-block .circle {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map,
.cross {
    position: absolute;
}

.kontaktaufnahme h2 {
    margin-top: 0;
    padding-top: 0px;
    margin-bottom: 60px;
    margin-left: +20px
}

.kontaktaufnahme .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.antwortfeld {
    background-color: #ffffff;
    color: #A5A5A4;
    font-size: 20px;
    width: 100%;
    padding: 12px 0px;
    padding-left: 15px;
    margin: 0;
    margin-bottom: 30px;
    margin-top: 10px;
    display: block;
    border: none;
    font-family: "Clear Sans", Regular;
}

.formular {
    margin-top: 0px;
    display: block;
    width: 500px;
    max-width: 100%;
}

.formularoption {
    padding-bottom: 10px;
    margin: 0;
    font-size: 20px;
    font-family: "Clear Sans", Regular;
}

.honeypot {
    display: none;
}

textarea {
    resize: vertical;
}

.senden {
    color: #fff;
    background-color: #C9001E;
    width: 150px;
    text-align: center;
    padding: 12px 0px;
    margin: 10px 0 40px 0;
    border: none;
    font-size: 20px;
    font-family: "Clear Sans", Regular;
}

.senden:hover {
    color: #fff;
    background-color: #C9001E;
}

.hvr-shrink {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

.hvr-shrink:hover, .hvr-shrink:focus, .hvr-shrink:active {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}

::placeholder {
    opacity: 1;
    transition: opacity 1s;
    color: #A5A5A4;
}

:focus::placeholder {
    opacity: 0
}


footer {
    margin: 45px auto 45px auto;
}

footer a {
    color: #A5A5A4;
    margin-bottom: 0px;
    text-decoration: none;
    padding-right: 40px;
}

footer a:hover {
    color: #C9001E;
}


.splide__arrow {
    background: #fff;
    opacity: .9;
}

.splide__arrow[disabled] {
    opacity: 0.5;
    pointer-events: none;
}

.splide__arrow:hover {
    opacity: .7
}


.splide__arrow svg {
    fill: #C9001E;
}

.impressum {
    margin-bottom: 150px;
}

.impressum h1 {
    margin-bottom: 60px;
}

.impressum h3 {
    color: #707070;
    font-weight: bold;
    margin-top: 40px;
}

.impressum a {
    text-decoration: none;
    color: #707070;
}

.impressum a:hover {
    color: #C9001E;
}



/*Laptop*/
@media only screen and (max-width:1200px) {

    .h1 {
        margin-top: 10px;
    }

    .menu a {
        padding: 0 20px 0 20px;
    }

    .hero-img {
        bottom: 100%;
        right: 0;
        margin-bottom: -50px;
        height: 550px;
        left: auto;
    }

    .graue-box {
        margin-top: 380px;
    }

    .kontaktaufnahme .graue-box {
        margin-top: 0px;
    }

    .logo-img {
        width: 200px;
    }

    .kunden .splide__slide img{
        vertical-align:bottom;
        max-width:150px;
        max-height: 150px;
        margin: 0 auto;
        object-fit: contain;
    }

}




/*Tablet*/
@media only screen and (max-width:992px) {
    .nav label {
        display: block;
        cursor: pointer;
    }

    .menu {
        position: absolute;
        background-color: #FFFFFF;
        top: 100%;
        left: 0;
        text-align: center;
        width: 100%;
        display: none;
        z-index: 9;
    }

    .menu a {
        display: block;
        border-bottom: 1px solid #A5A5A4;
        margin: 0;
    }

    #toggle:checked+.menu {
        display: block;
    }

    h1 {
        margin-top: 40px;
        max-width: 650px
    }

    h2 {
        margin-top: 60px;
        margin-bottom: 60px;
    }

    h4 {
        font-size: 31px;
    }

    .hero .graue-box {
        margin-top: 290px;
    }

    .hero h1 {
        margin-top: 50px;
    }

    .hero-titel {
        padding-top: 80px;
    }

    .hero-img {
        bottom: 100%;
        margin-bottom: -50px;
        height: 450px;

        max-width: 100%;
        right: 0;
        left: auto;
    }

    .leistungen-liste a {
        font-size: 21px;
    }

    .grid-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        /* zwei Spalten */
    }

    .quote {
        width: 35px;
    }

    .logo-img {
        width: 200px;
    }

    .zertifikate h3,
    .zertifikate p {
        margin-left: 200px;
    }

    .stempel-img {
        margin-left: 200px;
    }

    .formular {
        padding-top: 60px;
    }

    .über-uns .graue-box {
        margin-top: 200px;
    }

    .about-us-image {
        order: 1;
        margin: 0;
        width: 100%;
    }

    .about-us-portrait {
        margin-left: auto;
        margin-right: auto;
        display: block;
        width: 40%;
    }

    .about-us-text {
        order: 2;
        width: 100%;
    }

    .kunden .splide__slide img{
        vertical-align:bottom;
        max-width:175px;
        max-height: 150px;
        margin: 0 auto;
        object-fit: contain;
    }

    .kunden .splide__slide{
        padding:40px;
    }

}







/*Mobil*/

@media only screen and (max-width:576px) {
    .header-logo {
        width: 230px;
    }

    h1 {
        font-size: 31px;
        max-width: 354px;
        margin-top: 17px;
    }

    h2 {
        font-size: 31px;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    h3 {
        font-size: 21px;
    }

    h4 {
        font-size: 20px;
    }

    p {
        font-size: 16px;
    }

    .header-container {
        margin-top: 43px;
    }

    .beispiel {
        margin-bottom: 20px;
    }

    .hero-titel,
    .hero-text {
        font-size: 20px;
        max-width: 100%;
    }

    .hero .graue-box {
        margin-top: 200px;
    }

    .hero-img {
        max-width: 100%;
        height: auto;
        right: 30px;
        left: auto;
    }

    .grid-container {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        /* eine Spalte */
        grid-gap: 50px 50px;
    }

    .grid-container h3 {
        margin-top: 20px;
        padding: 20px;
    }

    .circle {
        width: 45px;
        height: 45px;
    }

    .leistungen-titel,
    .leistungen-liste {
        font-size: 21px;
    }

    .kunden .splide__slide{
        padding:20px;
    }

    .kunden .splide__arrow{
        background:none;
    }

    .kunden .splide__arrow--prev{
        left:-20px;
    }

    .kunden .splide__arrow--next {
        right: -20px;
    }

    .kunden .splide__slide img{
        vertical-align: bottom;
        max-width: 70px;
        max-height: 150px;
        margin: 0 auto;
        object-fit: contain;
    }

    .werte .grid-container {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        grid-gap: 40px 80px;
    }

    .referenzen {
        padding-top: 120px;
        padding-bottom: 100px;
    }

    .referenzen .container {
        padding: 0 25px;
    }

    .quote {
        width: 21px;
    }

    .logo-img {
        width: 100px;
    }

    .zertifikate h3,
    .zertifikate p {
        margin-left: 0;
    }

    .zertifikat-img,
    .stempel-img {
        width: 50%;
        margin-left: 25%;
    }

    .zertifikate h3 {
        font-size: 20px;
        margin-bottom: 30px;
    }


    .zertifikate p {
        font-size: 16px;
    }

    .über-uns .graue-box {
        margin-top: 170px;
    }

    .über-uns p {
        font-size: 21px;
    }

    .about-us-portrait {
        width: 50%;
    }

    .kontaktaufnahme h2 {
        margin-bottom: 30px
    }

    .contact-block {
        display: block;
    }

    .contact-icon {
        padding: 40px 20px 0 20px;
    }

    .formular {
        padding-top: 60px;
    }

    footer {
        margin: 30px auto 30px auto;
    }

    footer a {
        padding-right: 20px;
        font-size: 14px;
    }

    .leiste-inner {
        width: 375px;
        padding: 70px 30px 70px 30px;
    }

    .leiste h3 {
        margin-top: 60px;
        font-size: 28px;
    }

    .circle-small {
        width: 26px;
        height: 26px;
    }

    .splide__arrow--prev {
        left: 0;
    }

    .splide__arrow--next {
        right: 0;
    }

}

@media only screen and (max-width:420px) {
	.kunden .splide__slide img {
		max-width: 60px;
	}
}