@font-face {
    font-family:"permanent marker";
    font-weight: normal;
    src: url(../fonts/PermanentMarker-Regular.ttf);
}


@font-face {
    font-family:"planer";
    font-weight: regular;
    src: url(../fonts/Planer_Reg.otf);
}



* {
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
}

body {
    width: 100%;
	height: 100vh;
    transition: all .2s linear; 
    cursor: none;
}

input[type=submit] {
    border: none;
} 

.logo{
    text-align: center; 
}

img{
    max-width: 100%;
    height: auto;
}

#header {
    padding: 50px 0;
    font-family:"planer";
    color:#ffbf00;
}

#body {
   background-color:#000;
}

#footer{
   text-align: center;
   font-family:"planer";
   color:#ffbf00;
   font-size: 30px;
   line-height: 120%;
}


/* flexcontainer*/

.container {
    max-width: 1200px; 
    margin:  0 auto; 
    background: #000;
}
.flexbox-panel {
    display:flex;
    align-items: left;
}
 
.flexbox-items {
    margin: 0 25px;
    flex:1;
}

/*burger menu */
.menu-toggler {
    cursor: pointer;
    display: none;
    height: 40px;
    margin: 20px;
}

.hamburger {
    margin-top: 50px;
}

.hamburger,.hamburger::before,.hamburger::after{
    content:"";
    display: block;
    background: #ffbf00;
    height: 5px;
    width: 50px;
    border-radius: 50%;
}

.hamburger::before{
    transform: translateY(-12px);
}

.hamburger::after{
    transform: translateY(8px);
}

/*nav-bar*/ 

.main-nav{
    display:flex;
    flex-direction: row;
    margin-bottom: 250px;
   
}

.nav-bar {
    display: flex; 
    font-size: 30px;
    margin: 0 auto;

    
}

.nav-bar li   {
    list-style: none;
    position:relative;
    margin: 0 25px;
   
}

.nav-bar li  ul {
    position: absolute;
    list-style: none;
    display: none;
    padding-top:10px;
    
    flex-direction: column;
}

.nav-bar li  ul li {
    margin: 10px;
}

.nav-bar li ul.open {
    display:flex;
}

.nav-bar li:hover ul {
    display: block;
}

.nav-bar li .nav-link {
    color: #fff;
    text-decoration: none;
    white-space: nowrap; 
}


.nav-bar li .nav-link:hover {
    color: #ffbf00;
    cursor: pointer;
}

.nav-bar li .nav-link.nav-link-activ {
    color: #2c698e;
    font-size: 30px;
}

 /* allg.abstände*/

.py {
    padding-top:50px;
    padding-bottom: 50px;
}
 
.pt {
    padding-top:50px;
  
}
.pb {
    
    padding-bottom: 50px;
}

.mb {
    margin-bottom: 25px;
}
.mt {
    margin-top: 25px;
}
.text-center {
    text-align: center;
}

.blue {
    color: #2c698e;
}

.white {
    color:#fff;
}

.block {
    text-align:justify;
}
/* kontaktformular*/

.contact-form label {
    display: block;
    margin-bottom: 7px;
    color:#ffbf00;
    font-family: Planer;
    font-size: 24px;
}

#anfrage{
    padding: 12px;
    color:#fff;
    background-color: #2c698e;
    font-family: Planer;
    font-size: 28px;
    border-radius: 15px;
    text-align: center;
    margin: 10px 0px;
}

#anfrage:hover{
    padding: 10px;
    background-color: #2c698e;
    font-family: permanent marker;
    font-size: 28px;
    cursor: pointer;
}

#txtarea {
    resize: none;
    width: 500px;
    height: 400px;
    border-radius: 15px;
}

.contact-form .input-field {
    padding: 12px;
    border: 5px solid #2c698e;
    width: 90%;
    border-radius: 15px;

}

.radio {
    display: flex;
    color:#ffbf00;
    font-family: planer;
    font-size: 24px;
    justify-content: start;
    
}
.radio label{
    margin: 25px;
    
}



.checkbox {
    color:#ffbf00;
    font-family: Planer;
    font-size: 24px;
    text-align: start;
    margin-top: 50px;
}


/* untere navigation */


.foco{
    font-size: 21px;
    display:inline;

}
.footer-nav {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 10px;
}


.footer-nav a {
    text-decoration: none;
    color:#fff;
    font-size: 25px;
    padding: 0 15px;
}

.footer-nav a:hover {
    color: #2c698e;
    font-size: 25px;
    padding: 0 15px;
    text-decoration: none;
}

.copyright {
    font-size: 20px;
    color: #fff;
}


/*headlines*/

h1{
    font-family: permanent marker;
    font-size: 60px;
    margin-bottom: 15px;
    text-align: center;
}

h2 {
    margin-bottom: 20px;
    font-family: permanent marker;
    color:#ffbf00;
    font-size: 40px;
    text-align: center;
}

h3 {
    text-align: center;
    font-family: permanent marker;
    font-size: 60px ;
    color: #2c698e;
    
}

p {
    margin-bottom: 20px;
    color: #fff;
    font-size: 25px;
    font-family:Planer;
    line-height: 150%;
}

.yellow {
    color:#ffbf00;
}


.button {
    background: #2c698e;
    color: #fff;
    padding: 10px 15px;
    border-radius: 25px; 
    text-decoration: none;
    font-size: 20px;
}

.button:hover {
   background:#ffbf00;
   cursor: pointer;
}

.right{
    text-align: right;
    margin: 30px;
}

.link{
    text-decoration: none;
    padding: 10px 15px;
    color:#2c698e;
}


.link:hover {
    color: #ffbf00;
    
}
/* media queries*/

@media screen and (max-width:576px) {
   header h1,h2,h3,main h1,h2,h3 {
        font-size: 10vw;
    }
    #footer {
        font-size: 12pt;
    }

    .footer-nav a {
        font-size: 12pt;
    }
    .copyright {
        font-size: 10pt;

    }

    .menu-toggler {
            display: block;
    
    }
    #anfrage {
        width: auto;
        height: auto;
    }
    #txtarea {
    width: 250px;
    height: 250px;
    }
    .nav-bar {
    display:none;
    width: 100%;
    padding: 25px 0;
    text-align: right;
        }


    .nav-bar li ul {
    position: relative;
   text-align: right;
    }
    .nav-bar.open {
    display: block;
    line-height: 150%;
    }
    .flexbox-panel {
    flex-direction: column;
    }

    .foco{
        font-size:14px;
        line-height: 120%;
       display: block;
    }
   
}

.cursor {
    width: 70px;
    height:70px;
    border: 3px solid #2c698e;
    border-radius:50%;
    position: absolute;
    box-shadow: 2px -3px 41px -1px rgba(250,250,250,0.64);
    transition: all .1s linear; 
    pointer-events: none;
    cursor: pointer;
   

    
  }

  .title {
    color:#ffffff;
    position: relative;
    display: block;
    -webkit-text-stroke: 1px white;
    -webkit-text-fill-color: transparent;
    color: transparent;
    transition: all .4s linear; 
    opacity: 0.3;
    user-select: none;
}

.title:hover {
    opacity: 1;
    -webkit-text-fill-color: white;
}

.title:hover ~ .cursor {
    transform: scale(1.4);
    mix-blend-mode: difference;
    background: white;
}
