/* ================================================
   RESET & FONTS
   ================================================ */

a:link,
a:visited,
a:active,
a:hover {
    text-decoration: none;
    color: black;
}

#datenschutz a:link {
    text-decoration: none;
    color: white;
}
#datenschutz a:visited,
#datenschutz a:active {
    text-decoration: none;
    color: white;
}
#datenschutz a:hover {
    text-decoration: underline;
    color: white;
}

.menu-element:hover,
.menu-element-mobile:hover {
    border-bottom: 3px solid black;
}

span:has(a:hover) {
    text-decoration: none;
    color: dimgray;
}

@font-face {
    font-family: "mont";
    src: url("../fonts/Montserrat-Regular.ttf") format("truetype");
}

@font-face {
    font-family: "montBold";
    src: url("../fonts/Montserrat-Bold.ttf") format("truetype");
}

@font-face {
    font-family: "montSemiBold";
    src: url("../fonts/Montserrat-SemiBold.ttf") format("truetype");
}

html, body {
    font-family: mont;
    font-size: 16px;
}

body {
    margin: 0;
    padding: 0;
    background-color: white;
    line-height: 1.5em;
}

/* ================================================
   TYPOGRAPHY
   ================================================ */

h1 {
    font-family: montBold;
    font-size: 44px;
    line-height: 1.1em;
    margin-top: 50px;
    margin-bottom: 50px;
}

h2 {
    font-family: montBold;
    line-height: 30px;
}

h3 {
    font-size: 20px;
    margin-bottom: 30px;
}

/* ================================================
   LAYOUT UTILITIES
   ================================================ */

.grid {
    display: grid;
    /* width: 100%; */
}

.grid-2-cols {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3-cols {
    grid-template-columns: repeat(3, 1fr);
}

.grid-5-cols {
    grid-template-columns: repeat(5, 1fr);
}

.grid-7-cols {
    grid-template-columns: repeat(7, 1fr);
}

.grid-10-cols {
    grid-template-columns: repeat(10, 1fr);
}

.grid-split-11-10 {
    grid-template-columns: 11fr 10fr;
}

.grid-split-6-4 {
    grid-template-columns: 6fr 4fr;
}

.grid-split-4-6 {
    grid-template-columns: 4fr 6fr;
}

.grid-content-wrapper {
    grid-template-columns: 1fr 4fr 1fr;
}

.grid-content-center {
    grid-template-columns: 1fr 6fr 1fr;
}

.grid-centered-content {
    grid-template-columns: 2fr 4fr 2fr;
    grid-template-rows: 1fr 3fr 1fr;
}

.col-span-2-3 {
    grid-column: 2 / 3;
}

.row-span-2-3 {
    grid-row: 2 / 3;
}

.col-span-full {
    grid-column: 1 / -1;
}

/* ================================================
   POSITIONING
   ================================================ */

.sticky-top {
    position: sticky;
    top: 0;
}

.fixed-top {
    position: fixed;
    top: 0;
}

.fixed-left {
    left: 0;
}

.fixed-right {
    right: 0;
}

.z-1000 { z-index: 1000; }
.z-990  { z-index: 990; }
.z-980  { z-index: 980; }

/* ================================================
   ALIGNMENT
   ================================================ */

.text-center { text-align: center; }
.text-right  { text-align: right; }
.text-left   { text-align: left; }

.items-center {
    align-items: center;
}

.justify-center {
    justify-items: center;
}

/* ================================================
   SPACING
   ================================================ */

.pt-100 { padding-top: 100px; }
.pt-109 { padding-top: 109px; }
.pb-50  { padding-bottom: 50px; }
.pb-100 { padding-bottom: 100px; }
.mt-50  { margin-top: 50px; }
.mt-60  { margin-top: 60px; }
.mb-30  { margin-bottom: 30px; }

.section-padding {
    padding-top: 109px;
    padding-bottom: 100px;
}

.section-padding-lg {
    padding-top: 100px;
    padding-bottom: 100px;
}

/* ================================================
   HEIGHTS
   ================================================ */

.h-full     { height: 100vh; }
.h-800      { height: 800px; }
.h-50       { height: 50px; }
.line-h-50  { line-height: 50px; }

/* ================================================
   BACKGROUND UTILITIES
   ================================================ */

.bg-image {
    background-repeat: no-repeat;
    background-size: auto 100%;
}

.bg-image-stretch {
    background-repeat: no-repeat;
    background-size: 100% auto;
}

.bg-cover {
    background-size: cover;
}

.bg-center {
    background-position: center center;
}

.bg-right-top {
    background-position: right top;
}

.bg-right-center {
    background-position: right center;
}

.bg-left-center {
    background-position: left center;
}

.bg-fixed {
    background-attachment: fixed;
}

/* ================================================
   BUTTONS
   ================================================ */

.btn {
    width: 96%;
    border-radius: 7px;
    padding: 2%;
    font-family: montBold;
    text-align: center;
    font-size: 18px;
    cursor: pointer;
    display: block;
}

.btn-lg {
    padding: 15px;
    border-radius: 10px;
    margin-top: 70px;
    margin-bottom: 70px;
}

/* ================================================
   HEADER & NAVIGATION
   ================================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.logo {
    position: fixed;
    top: 0;
    left: 0;
    width: 30%;
    height: auto;
    z-index: 990;
    transition: .3s;
}

.logo img {
    max-width: 100%;
    height: auto;
}

.logoMitmachen {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    z-index: 990;
    transition: .3s;
}

.logoMitmachen img {
    max-width: 100%;
    height: auto;
}

.menu {
    position: fixed;
    top: 0;
    right: 0;
    font-family: montSemiBold;
    font-size: medium;
    background-color: white;
    height: 40px;
    text-align: right;
    line-height: 40px;
    padding-right: 4%;
    width: 96%;
    z-index: 980;
}

.menu-element {
    padding: 0 15px;
    cursor: pointer;
    display: inline-block;
}

/* ================================================
   FOOTER
   ================================================ */

.footer {
    height: 50px;
    line-height: 50px;
    margin-left: 50px;
    background-color: white;
    font-family: montSemiBold;
    font-size: medium;
    color: black;
}

.footer-left {
    float: left;
}

.footer-right {
    float: right;
    height: 32px;
    margin-top: 9px;
    margin-right: 40px;
}

.footer-menu-element {
    padding: 0 15px;
    cursor: pointer;
    display: inline-block;
}

/* ================================================
   CONTENT SECTIONS
   ================================================ */

.sticky-section {
    height: 100vh;
    position: sticky;
    top: 0;
}

.parallax-section {
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: auto 100%;
}

.parallax-section-left {
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: 100% auto;
}

.content-section {
    display: grid;
    grid-template-columns: 2fr 4fr 2fr;
    grid-template-rows: 1fr 3fr 1fr;
}

.content-section-inner {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.content-section-single {
    display: grid;
    grid-template-columns: 2fr 4fr 2fr;
}

/* ================================================
   CARDS & CONTAINERS
   ================================================ */

.card {
    border-radius: 7px;
}

.card-top {
    border-radius: 7px 7px 0 0;
}

.card-bottom {
    border-radius: 0 0 7px 7px;
}

/* ================================================
   DOWN ARROW (Testimonials/Divider)
   ================================================ */

.down-arrow {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 155px;
}

.down-arrow-ze {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 135px;
}

.down-arrow-img {
    grid-column: 1 / 4;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
}




video {
    height: 900px;
    width: auto;
}

/* #videoOverlay {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    background-color: black;
    width: 100%;
    height: 100vh;
    opacity: .8;
    display: none;
} */

.menumobile {
    display: none;
    height: 40px;
}

.burgerbutton {
    float: right;
    width: 40px;
    height: 40px;
    /* background-color: red; */
    background-image: url(../img/burgeropen.png);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 993;
}

.menumobileoverlay {
    display: none;
    width: 100%;
    height: 100vh;
    background-color: white;
    position: fixed;
    top: 40px;
    right: 0;
    padding-right: 40px;
    z-index: 999;
}

.menu-element-mobile {
    padding-top: 10px;
}

.sm-padding {
    padding-left: 30px;
    padding-right: 25%;
}

#testimonial2 {
    display: none;
}

.sm-image {
    background-image: url(../img/car.png);
}

.float {
    float: left;
}

.float img {
    width: 90%;
}

.clear {
    clear: both;
}

.w15 {
    width: 15%;
}

.w85 {
    width: 80%;
}

.imagesm {
    background-size: 100% auto;
}

.numcolumn1 {
    padding-right: 25px;
    padding-left: 100px;
}

.numcolumn2 {
    padding-right: 100px;
    padding-left: 25px;
}

/* ================================================
   RESPONSIVE
   ================================================ */

@media only screen and (max-device-width: 1366px) {
    .bg-fixed {
        background-attachment: scroll;
    }
}

@media (max-width: 1366px) {
    h1 {
        font-size: xx-large;
    }

    .menudesktop {
        display: none;
    }
    
    .menumobile {
        display: block;
    }

    .logo {
        width: 40px;
    }

    .logo img{
        width: 40px;
    }
}

@media (max-width: 1366px) {
    .bg-image {
        background-repeat: no-repeat;
        background-size: 100% auto;
    }

    .hub-image {
        display: none;
    }

    .section-padding {
        padding-top: 0;
        padding-bottom: 100px;
    }

    .numinos-section,
    .servicegarant-section {
        display: block;
        padding: 10%;
    }

    .section-benefits {
        /* grid-template-columns: repeat(10, 1fr) !important; */
        grid-template-columns: none !important;
    }

    .col-1-7 {
        grid-column: 1 / 11 !important;
    }

    .karriere-row,
    .contact-row,
    .benefit-row,
    .video-row {
        grid-template-columns: repeat(10, 1fr) !important;
    }

    .img-fullscreen {
        display: none;
    }

    .sm-padding {
        padding-left: 10%;
        padding-right: 10%;
    }

    .fullservice-row {
        height: 1100px !important;
    }

    .service-number img {
        max-width: 60% !important;
    }

    .summary-row {
        height: 1500px !important;
    }

    .video-cont {
        grid-column: 1 / 11 !important;
    }

    .h-800 {
        height: 1200px;
    }

    .h-werkstatt {
        height: 700px !important;
    }

    .sm-image {
        background-image: url(../img/car_small.png) !important;
        background-position: center !important;
        background-size: auto 100% !important;
        background-color: white !important;
    }

    .h-800media {
        height: 500px !important;
    }

    .down-arrow {
        height: 210px;
    }

    .imagesm {
        background-size: auto 100%;
    }

    .numcolumn1 {
        padding-right: 100px;
        padding-left: 25px;
    }

    .numcolumn2 {
        padding-right: 100px;
        padding-left: 25px;
    }

    .down-arrow-ze {
        height: 200px;
    }
}

@media (max-width: 900px) {
    .contact-row h2 {
        font-size: large;
    }

    .contact-icon {
        background-size: auto 40% !important;
    }

    .benefit-icon {
        height: 180px !important;
    }

    .h-800media {
        height: 700px !important;
    }

    .down-arrow {
        height: 150px;
    }

    .imagesm {
        background-size: 100% auto;
    }

    .down-arrow-ze {
        height: 125px;
    }
}

@media (max-width: 770px) {
    .zeicon {
        display: none;
    }

    .down-arrow-ze {
        height: 110px;
    }
}

@media (max-width: 675px) {
    .contact-row h2 {
        font-size: medium;
    }

    .benefit-row {
        height: 370px !important;
    }

    .image-bar-subline {
        font-size: small !important;
    }

    .summary-row {
        height: 1600px !important;
    }

    .h-800 {
        height: 1300px !important;
    }

    .parallax-section-left {
        background-size: auto 100%;
    }

    .h-800media {
        height: 800px !important;
    }

    .down-arrow {
        height: 100px;
    }

    .down-arrow-ze {
        height: 100px;
    }

    .benefit-icon {
        display: none;
    }

    .fullservice-row {
        height: 1300px !important;
    }
}

@media (max-width: 515px) {
    .benefit-row {
        height: 440px !important;
    }
}

@media (max-width: 405px) {
    .benefit-row {
        height: 500px !important;
    }

    .fullservice-row {
        height: 1500px !important;
    }
}