/*
18:07 29.12.2022 AG - test
08:02 02.01.2022 SS - Body, Leistung
*/

* {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box !important;
}
html {
    scroll-behavior: smooth;
}

/* Body */

body {
    background: #f1f1f1;
    overflow: overlay;
}

p {
    font-size: 22px;
}
@media (max-width: 765px) {
    p {
        font-size: 20px;
    }
}
@media (max-width: 500px) {
    p {
        font-size: 18px;
    }
}

h2 {
    font-size: 25px;
    color: rgb(0, 0, 0);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 4px;
}
@media (max-width: 765px) {
    h2 {
        font-size: 22px;
    }
}
@media (max-width: 500px) {
    h2 {
        font-size: 20px;
    }
}

h3 {
    font-size: 64px;
    color: rgb(0, 0, 0);
    font-weight: 700;
    margin: 30px 0;
}
@media (max-width: 765px) {
    h3 {
        font-size: 50px;
    }
}
@media (max-width: 500px) {
    h3 {
        font-size: 34px;
    }
}

h4 {
    font-size: 74px;
    color: rgb(0, 0, 0);
    font-weight: 700;
}
@media (max-width: 500px) {
    h4 {
        font-size: 44px;
    }
}
::-webkit-scrollbar {
    width: 20px;
}
::-webkit-scrollbar-track {
    background-color: transparent;
}
::-webkit-scrollbar-thumb {
    background: #14ffec;
    border-radius: 30px;
    border: 4px solid transparent;
    background-clip: content-box;
}
::-webkit-scrollbar-thumb:hover {
    background-color: #0c978c;
}
::-webkit-scrollbar-corner {
    background: rgba(0, 0, 0, 0);
}





/* Nav */




.navbar {
    position: fixed;
    height: 70px;
    top: auto;
    bottom: 15px;
    left: 0;
    right: 0;
    margin: auto;
    width: max-content;
    justify-content: center;
    align-items: center;
    background: #04050F;
    border-radius: 100px;
    border: rgb(48, 48, 48) 1px solid;
    z-index: 999;
    padding: 5px; 
    transition: all 0.4s ease-in-out;
}
.navbar .menu {
    display: flex;
    flex-direction: row;
    height: 100%;
    width: 100%;
}
.navbar .menu li a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    height: 100%;
    padding: 0 15px;
    border-radius: 100px;
    margin-left: 5px;
    border: #04050F 1px solid;
    transition: all 0.4s;
}
.menu li a:hover {
    background: #ffffff;
    color: rgb(0, 0, 0);
    border-color: #ffffff;
}
.menu .navcontact a {
    border-radius: 100px;
    color: black !important;
    background: #14ffec;
}
.navbar .menu .arrow {
    width: 60px;
    background: rgb(255, 255, 255);
    border: #04050F 1px solid;
    margin-left: 0px;
}
.navbar .menu .arrow img {
    width: 60px;
    height: 60px;
    padding: 10px;
    margin: auto;
}
.navbar .menu .arrow:hover {
    background: rgb(255, 255, 255);
}

.hamburger-menu {
    display: none;
}

.navbarvisible {
    bottom: -100px;
}

@media (max-width: 750px) {


    .navbar {
        height: 60px;
    }
    .navbar .hamburger-menu {
        display: flex;
        flex-direction: row;
        height: 100%;
        width: 100%;
    }
    .navbar .hamburger-menu li a {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        font-weight: 500;
        color: rgb(255, 255, 255);
        height: 100%;
        padding: 0 15px;
        border-radius: 100px;
        margin: 0;
        border: #04050F 1px solid;
        transition: all 0.2s;
    }
    .hamburger-menu li a:hover {
        background: #ffffff;
        color: rgb(0, 0, 0);
        border-color: #ffffff;
    }
    .hamburger-menu .hamburger-content {
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgb(255, 255, 255);
        margin: 0 10px;
        padding: 0 15px;
        font-size: 18px;
        letter-spacing: 5px;
        text-transform: uppercase;
        border: 1px solid #04050F;
        border-radius: 100px;
        cursor: pointer;
    }
    .hamburger-menu .hamburger-content:hover {
        background: white;
        color: #000000;
    }
    .navbar .hamburger-menu .arrow {
        width: 60px;
        background: rgb(255, 255, 255);
        border: #04050F 1px solid;
        margin-left: 0px;
    }
    .hamburger-menu .arrow img {
        width: 50px;
        height: 50px;
        padding: 10px;
        margin: auto;
    }
    .navbar .hamburger-menu .arrow:hover {
        background: rgb(255, 255, 255);
    }
    .hamburger-menu .hamburger-navcontact {
        width: 60px;
    }
    .hamburger-menu .hamburger-navcontact a {
        border-radius: 100px;
        background: #14ffec;
    }
    
    .navbar .menu {
        position: fixed;
        display: flex;
        flex-direction: column;
        height: 100vh;
        width: 100vw;
        justify-content: center;
        align-items: center;
        background: #04050F;
        transform: translateY(100%);  
        right: 0;
        transition: all 0.4s ease;     
    }
    .navbar .menu li {
        margin: 10px 0;
    }
    .navbar .menu li a {
        font-size: 25px;
    }
    .navbar .menu .navcontact a{
        padding: 12px 15px ;
    }
    .navbar .menu.active {
        transform: translateY(0%); 
    }

    .navbar .hamburger-menu.active {
        display: none;
        content: "Close";
    }
}


/* Header */

.video2 {
    display: none;
}

@media (max-width: 750px) {
    .video1 {
        display: none;
    }
    .video2 {
        display: block;
    }
}

/* Thiedemedia */

.thiedemedia {
    display: grid;
    position: relative;
    gap: 1.5em;
    grid-template-areas: 
    'one' 
    'two' 
    'three' 
    'four' 
    'five' 
    'six' 
    'seven';
    margin: 50px auto 100px auto;
}
.thiedemedia .title {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    width: 350px;
    overflow: hidden;
}
.thiedemedia .title img {
    width: 900px;
    object-fit: cover;
}
.thiedemedia .title h4 {
    color: black;
}
.thiedemedia .content {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
}
.grid:nth-child(1) {
    grid-area: one;
}
.grid:nth-child(2) {
    grid-area: two;
}
.grid:nth-child(3) {
    grid-area: three;
}
.grid:nth-child(4) {
    grid-area: four;
}
.grid:nth-child(5) {
    grid-area: five;
}
.grid:nth-child(6) {
    grid-area: six;
}
.grid:nth-child(7) {
    grid-area: seven;
}

@media (min-width: 765px) {
    .thiedemedia {
        grid-template-areas: 
        'one one'
        'two three'
        'four five'
        'six seven';
    }
}
@media (min-width: 1000px) {
    .thiedemedia {
        grid-template-areas: 
        'one one one'
        'two three four'
        'five six seven';
    }
}









/* Leistung */
.leistung {
    display: flex;
        position: relative;
        isolation: isolate;
        flex-direction: column;
        width: 100%;
        min-height: 100vh;
        background: #f1f1f1;
        padding-bottom: 150px;
}
.body-leistung {
    background-color: #f1f1f1;
    height: 300vh;
    width: 100%;
}
.leistung::after {
    content: '';
    background: #04050F;
    position: absolute;
    z-index: -1;
    inset: 0;
    transform: skewY(-5deg);
}
.leistung .title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 150px auto;
}

.leistung h2,
.leistung h3 {
    color: white;
    margin: 0;
}
.section-leistung {
    background: #04050F;
    position: relative;
    height: 200vh;
    width: 100vw;
}
.section-leistung:nth-child(2) {
    top: -100vh;
}
.section-leistung:nth-child(3) {
    top: -200vh;
    height: 100vh;
}
.section-leistung .sticky {
    position: sticky;
    width: 100%;
    height: 80vh;
    top: 0;
    padding: 20px auto;
    will-change: filter, transform;
    border-radius: 20px;
}
.section-leistung .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}
.leistung .content .blur {
    position: relative;
    display: flex;
    text-align: center;
    height: max-content;
    width: 100%;
    z-index: 2;
    background: #00000056;
    backdrop-filter: blur(5px);
}
.blur h3 {
    width: 100%;
    padding: 10px;
    text-transform: uppercase;
    letter-spacing: 10px;
    color: #ffffff;
    font-weight: 100;
}
.section-leistung .content .content-video {
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    inset: 0;
    z-index: 1;
    border-radius: 20px;
}
.section-leistung .content .content-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

@media (max-width: 1000px) {
    .blur h3 {
        letter-spacing: 0;
    }
        .section-leistung .sticky {

            height: 60vh;

        }
}
















/* über mich */

.übermich {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    min-height: 100vh;
    padding: 150px 0;
}
.übermich-img {
    display: flex;
    width: 35%;
    height: 100%;
    justify-content: center;
    align-items: center;
}
.übermich-img1 {
    display: none;
}
.übermich-img img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0px 50px 100px rgba(10, 10, 10, 0.1);
}
.übermich-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 50%;
}
.übermich-content h2 {
    color: black;
}
.übtn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #04050F;
    border: #04050F 2px solid;
    border-radius: 100px;
    padding: 13px 30px 13px 30px;
    margin: 50px auto 0 0;
    font-size: 1.25rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0px;
    color: #14ffec;
    height: auto;
    width: 100%;
    transition: all;
    box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.2);
}
.übtn:hover {
    background: #14ffec;
    color: #000000;
    border-color: #14ffec;
    transition: all 0.2s ease;
    box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}
@media (max-width: 1000px) {
    .übermich {
        flex-direction: column;
    }    
    .übermich .übermich-content {
        width: 100%;
    }
    .übermich .übermich-img {
        display: none;
    }
    .übermich .übermich-img1 {
        display: flex;
        width: 100%;
        margin-bottom: 50px;
    }
    .übermich-img1 img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 20px;
        box-shadow: 0px 50px 100px rgba(10, 10, 10, 0.1);
    }
}


/* Ablauf */

.ablauf {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    color: rgb(0, 0, 0);
    padding: 50px 0;
}
.ablauf-container {
    width: 100%;
    height: 100%;
}
.ablauf .card {
    display: flex;
    margin: 100px 0;
    width: 100%;
    height: 100%;
    padding: 0 0 50px 0;
}
.ablauf .card-number {
    min-width: 180px;
    border-right: 2px solid black;
}
.ablauf .card-number p{
    display: inline-block;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 15rem;
    font-weight: 600;
    padding: 0 20px;
    line-height: 160px;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: black;
    -webkit-text-stroke-width: 1px;
    
}
.ablauf .card-text {
    padding: 0 20px;
}
.ablauf .card-text .header p {
    font-weight: 600;
    font-size: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.ablauf .card-text .content {
    padding: 30px 0;
}

@media (max-width: 500px) {
    .ablauf .card-number {
        min-width: 95px;
        border-right: 2px solid black;
    }
    
    .ablauf .card-number p {
        display: inline-block;
        font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        font-size: 7rem;
        font-weight: 600;
        padding: 0 20px;
        line-height: 85px;
        -webkit-text-fill-color: transparent;
        -webkit-text-stroke-color: black;
        -webkit-text-stroke-width: 1px;
    }   
    .ablauf .card-text .header p {
        font-weight: 600;
        font-size: 20px;
        text-transform: uppercase;
        letter-spacing: 3px;
    }
}

/*contact */

.contact {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100vw;
    min-height: 100vh;
    background: #04050F;
    color: white;
    padding: 150px 0;
}
.contact-header {
    display: flex;
    flex-direction: row;
    height: max-content;
    margin-bottom: 200px;
}
.contact-title {
    display: flex;
    flex-direction: column;
    width: 60%;
}
.contact .buttons {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: left;
    padding: 0;
    margin-top: 20px;
}
.buttons .cbtn {
    display: flex;
    background: #14ffec;
    border: #14ffec 2px solid;
    border-radius: 100px;
    padding: 8px 30px;
    font-size: 1.25rem;
    font-weight: 600;
    color: rgb(0, 0, 0);
    width: auto;
    margin: 0 20px 0 0;
    box-shadow: 0 5px 10px rgba(20, 255, 235, 0.1);
    transition: all;
}
.buttons .cbtn:hover {
    background: transparent;
    color: #ffffff;  
    transition: all 0.2s ease; 
}
.contact-img {
    display: flex;
    width: 40%;
    align-items: center;
    justify-content: center;
}
.contact-img img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 1000px;

}
.contact-title h3 {
    color: white;
}


.contact-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.contact-content .column-left {
    display: flex;
    flex-direction: column;
    width: 45%;
    height: max-content;
    margin: 0;
    padding: 0;  
}

.contact-content .column-right {
    display: flex;
    flex-direction: column;
    width: 45%;
    margin: 0;
    padding: 0;
}
.column-right .form-header p{
    text-align: center;
    font-size: 30px;
    padding-bottom: 30px;
}
.column-right .field {
    width: 100%;
    margin-bottom: 50px;
}
.column-right .form-control {
    width: 100%;
    min-height: 50px;
    background: #04050F;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: rgb(212, 212, 212) 1px solid;
    color: white;
    font-size: 20px;
}
.column-right .form-control:hover{
    padding-left: 10px;
}
.column-right .cbtn {
    display: flex;
    background: transparent;
    border: #14ffec 2px solid;
    border-radius: 100px;
    padding: 8px 30px;
    font-size: 1.25rem;
    font-weight: 600;
    color: rgb(255, 255, 255);
    box-shadow: 0 5px 10px rgba(20, 255, 235, 0.1);
    width: auto;
    cursor: pointer;
}
.column-right .cbtn:hover {
    background: #14ffec;
    color: #000000;
    
}

@media (max-width: 1200px) {
    .buttons .cbtn {
        display: flex;
        background: #14ffec;
        border: #14ffec 2px solid;
        border-radius: 100px;
        padding: 8px 20px;
        font-size: 1.25rem;
        font-weight: 600;
        color: rgb(0, 0, 0);
        width: auto;
        margin: 0 20px 0 0;
    }
    .contact-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .contact-content .column-left {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 0 0 100px 0;
        padding: 0;
    }
    .contact-content .column-right {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 0;
        padding: 0;
    }
}
@media (max-width: 1000px) {
    .contact-title {
        width: 100%;
    }
    .contact-header {
        flex-direction: column-reverse;
    }
    .contact-img {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: flex-start;
    }
    .contact-img img {
        width: 200px;
        height: 200px;
        object-fit: cover;
        border-radius: 1000px;
    }
}
@media (max-width: 768px) {
    .contact-header {
        margin-bottom: 100px;
    }
    .buttons .cbtn {
        display: flex;
        background: #14ffec;
        border: #14ffec 2px solid;
        border-radius: 100px;
        padding: 8px 20px;
        font-size: 1.0rem;
        font-weight: 600;
        color: rgb(0, 0, 0);
        width: auto;
        margin: 0 20px 0 0;
    } 
}
@media (max-width: 500px) {
    .contact .buttons {
        display: flex;
        width: 100%;
        justify-content: space-around;
        padding: 0;
    }
    .contact-img {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: 50px;
    }
    .contact-img img {
        width: 200px;
        height: 200px;
        object-fit: cover;
        border-radius: 1000px;
    }
    .buttons .cbtn {
        display: flex;
        background: #14ffec;
        border: #14ffec 2px solid;
        border-radius: 100px;
        padding: 8px 10px;
        font-size: 0.75rem;
        font-weight: 600;
        color: rgb(0, 0, 0);
        width: max-content;
        margin: 0 20px 20px 0;
    }
}

/* footer */

.footer {
    display: flex;
    flex-direction:column;
    align-items: center;
    justify-content: center;
    padding: 30px 0px 100px 0px;
    background: #f1f1f1;
    color: rgb(0, 0, 0);
}
.footer .line {
    width: 100%;
    height: 1px;
    background: #04050F;
}
.footer p {
    margin: 5px 0;
}
.footer  a:link,
.footer a:visited {
    color: rgb(0, 0, 0);
}
.footer a:hover,
.footer a:active {
    color: #14ffec;
}
.footer .footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px 0;
}
.footer .footer-social .content {
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer .footer-social img {
    width: 40px;
    margin-right: auto;
}
.footer .footer-links {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: max-content;
    padding: 20px 0;
    text-align: center;
}
.footer .footer-data {
    display: flex;
    align-items: center; 
    justify-content: center;
    width: 100%;
    padding: 20px 0;
}
.footer .footer-data p {
    margin: 0 10px;
}



.impressum {
    color: white;
    padding-bottom: 150px;
}

.impressum h3 {
    text-align: center;
    color: white;
}
.impressum p strong {
    color: #14ffec;
}

.datenschutz {
    color: white;
    padding-bottom: 150px;
}
.datenschutz h2 {
    color: #14ffec;
}
.datenschutz h3 {
    text-align: center;
    color: white;
}

.datenschutz p strong {
    color: #ffffff;
}