@charset "UTF-8";
/* CSS Document */

@font-face {
    font-family:'futura';
    src: url(fonts/futura/futuralight.ttf) format('truetype');
}

@font-face {
    font-family:'quicksand';
    src: url(fonts/quicksand/Quicksand_Light.otf) format('truetype');
}

@font-face {
    font-family:'quicksand_book';
    src: url(fonts/quicksand/Quicksand_Book.otf) format('truetype');
}

@font-face {
    font-family:'BebasNeue-Regular';
    src: url(fonts/bebas_neue/BebasNeue-Regular.otf) format('truetype');
}

html{
    scroll-behavior: smooth;
    cursor: none!important;
    overflow-x: hidden!important;
}

::selection{
    background: #FFA500;
}

::-webkit-scrollbar{
    width: 8px;
    z-index: -1;
}

::-webkit-scrollbar-track{
    border: 2px solid #292929;
    box-shadow: inset 0 0 2.5px 2px rgba(0,0,0,0.5);
}

::-webkit-scrollbar-thumb{
    background: #FFA500;
    border-radius: 3px;
}

:hover{
}

.cursor{
    width: 3rem;
    height: 3rem;
    border: 2px solid #ffffff;
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 100000;
    backdrop-filter: blur(0,5px);
}

* {
	margin:0px;
	padding:0px;
	box-sizing:border-box;
}

body {
    font-family: quicksand_book;
    background-color: #1E1E1E!important;
    overflow-x: hidden!important;
    width: 100vw;
}

span{
    color: #FFA500;
}

.logo img{
    width: 200px!important;
}

nav {
    display: flex!important;
    justify-content: space-around;
    align-items: center;
    min-height: 8vh;
    font-family: BebasNeue-Regular;
    position: fixed!important;
    width: 100%;
    top: 0!important;
    z-index: 999!important;
}

nav {
    background:transparent !important;
    transition:0.75s ease;
}
nav.scrolled {
    background-color: #1E1E1E!important;
}

.nav-links {
    display: flex;
    justify-content: space-around;
    width: 35%;
}

.nav-links li{
    list-style: none
}

.nav-links li:hover{
    color: #FFA500;
    transition: all .4s ease-out;
    text-decoration: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    letter-spacing: 3px;
    font-weight: 100;
    font-size: 14px;
}

.nav-links a:hover {
    color: #FFA500;
    text-decoration: none;
    letter-spacing: 3px;
    font-weight: 100;
    font-size: 14px;
}

.logo {
    color: white;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 30px;
}

.logo span {
    color: #FFA500;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div{
    width: 30px;
    height: 4px;
    background-color: white;
    margin: 5px;
}

@media screen and (max-width: 1450px){
    .nav-links {
        width: 50%;
    }
}

@media screen and (max-width: 768px){
    body{
        overflow-x: hidden!important;
    }
    
    .nav-links{
        position: absolute;
        right: 0px;
        height: 50vh!important;
        top: 8vh;
        background-color: #1E1E1E;
        display: flex;
        flex-direction: column;
        align-items: center!important;
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.2s ease-in;
        margin-top: 0px;
    }
    
    .nav-lights li{
        opacity: 0;
    }
    
    .burger {
        display: block;
    }
    
    #home-heading h1{
        font-size: 58px!important;
    }
}

.nav-active {
    transform: translateX(0%);
}

#marked {
    color:#FFA500!important;
}

#leistungen{
    background-image: url(pictures/style/10.jpg);
    background-size: cover;
    height: 100vh;
}

#schriftzug{
    padding-left: 35%;
    padding-right: 35%;
    height: 45vh;
    padding-top: 7%;
}

#links{
    padding-left: 3%;
    padding-right: 3%;
}

#box{
    width: 20%;
    height: auto;
    float: left;
    padding: 1%;
    position: relative;
    display: inline;
    transition: all 0.3s;
}

#box img{
    width: 100%;
    border-radius: 15px;
    filter: opacity(0.4);
    transition: all 0.3s;
}

#box img:hover{
    filter: opacity(1);
    transition: all 0.3s;
}

#box:hover{
    padding:0%;
    transition: all 0.3s;
}

#text a{
    position: absolute;
    font-size: 45px;
    font-family: BebasNeue-Regular;
    color: white;
    text-decoration: none;
    bottom: 85px;
    padding-left: 6%;
    padding-right: 10%;
    background: #1E1E1E;
}

#mehr a{
    position: absolute;
    font-size: 25px;
    font-family: BebasNeue-Regular;
    color: white;
    text-decoration: none;
    bottom: 43px;
    padding-left: 6%;
    padding-right: 10%;
    background: linear-gradient(34deg, rgba(255,165,0,1) 32%, rgba(252,99,69,1) 100%);
}

@media screen and (max-width: 1500px){
    #text a{
        font-size: 35px;
        bottom: 75px; 
    }

    #mehr a{
        font-size: 20px;
    }
}

@media screen and (max-width: 1100px){
    #schriftzug{
        padding-left: 30%;
        padding-right: 30%;
        height: 35vh;
        padding-top: 10%;
    }

    #box{
        width: 50%!important;
        padding: 5%;
    }

    #box img{
        width: 100%;
        border-radius: 15px;
        filter: opacity(1);
        transition: all 0.3s;
    }

    #leistungen{
        background: none;
    }
}

@media screen and (max-width: 550px){
    #schriftzug{
        padding-left: 30%;
        padding-right: 30%;
        height: 20vh;
        padding-top: 20%;
    }

    #text a{
        font-size: 25px;
        bottom: 68px; 
    }

    #mehr a{
        font-size: 15px;
    }
}

p {
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	letter-spacing:0.5px;	
}
	
a.link {
	color:#FFF;
	text-decoration:none;
	font-size:14px;
}

a.link:hover{
	color:#FF0D02;
}

h2 {
	font-family:"futura";
	font-size:50px;	
	letter-spacing: 1px;
    color: white;
}		

h3 {
	font-family:"quantify";
	margin-bottom:15px;	
	letter-spacing: 1px;	
}

.center{
	text-align:center;
}
	
.container {
	max-width:1100px;
	height:auto;
	margin-left:auto;
	margin-right:auto;
	padding:0px 0px;
	
}

/*Bilder bei Videos:*/
.bild {
	width:100%;     
	height:auto;
}

header .name p{
	font-size:35px;
    font-family: quicksand;
	display:inline-block;
    color: #ffffff;
    text-decoration: none;
    padding-left: 18px;
    padding-top: 6px;
}

.toggle {
    width: 100%;
    padding: 10px 10px;
    background: #393939;
    text-align: right;
    box-sizing: border-box;
    display: none;
}

.toggle i{
    color: #ffffff!important;
    font-size: 50px!important;
}

#titel img{
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -10%);
    z-index: 3;
    width:900px;
}

#gelb{
    background-color: #f6ae2d;
    height: 50px;
}

footer {
	background:#333;
	text-align:center;
    padding-top: 10px;
}
