/*Allgemein*/

body{
    margin: 0px;
}

.container{
    width: 100%;
}

/*Typo*/

h1{
    line-height: 1.0em;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    text-align: left;
    font-size: 2.0rem;
    font-weight: bolder;
    text-shadow: 0px 3px 6px #000000;
}

h2{
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #678072;
    text-transform: uppercase;
    font-weight: bolder;
}

h3{
    font-family: 'Montserrat', sans-serif;
    font-size: 1.0rem;
    color: #678072;
    text-transform: uppercase;
}

p{
    font-family: 'Montserrat', sans-serif;
    font-size: 1.0rem;
    color: #678072;
    font-weight: bold;
    line-height: 2em;
}

a{
    font-family: 'Montserrat', sans-serif;
    font-size: 1.0rem;
    color: #678072;
    font-weight: bold;
    text-decoration: none;
    transition: .4s ease transform;
}

a:hover{
    transform: translateY(-10px);
}


/*Navigation*/

header{
    background-color: #678072;
    height: 5vw;
}

nav ul{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    margin: 0 auto;
    padding-right: 10%;
    align-items: center;
    height: 5vw;
}

nav ul li{
    display: inline-block;
}

nav ul li a{
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: bolder;
    text-decoration: none;
    display: inline-block;
    margin-left: 3vw;
    transition: .4s ease transform;
}

nav ul li a:hover{
    color: #ffffff;
    transform: translateY(-10px);
}

.logo img{
    position: absolute;
    max-width: 15vw;
    margin-left: 10%;
    margin-top: 25px;
    transition: .4s ease transform;
    z-index: 900;
}

.logo img:hover{
    transform: translateY(-10px);
}

/*Viewport*/

@media (max-width: 1350px){
    nav ul li a{
        font-size: 1.0rem;
        margin-left: 2vw;
    }
}

@media (max-width: 1000px){
    nav{
        width: 100%;
        text-align: right;
        margin: 0;
    }

    header{
        height: 5vw;
    }

    nav#desktop{
        display: none;
    }

    .mobiles_menü svg{
        width: 30px;
    }
}

@media (max-width: 855px){
    header{
        height: 8vw;
    }
}

@media (max-width: 768px){
    .logo img{
        max-width: 20vw;
    }
}

@media (max-width: 450px){
    header{
        height: 10vw;
    }

    .logo img{
        max-width: 25vw;
    }
}

@media only screen and (max-width:400px) and (min-width:200px){
    header{
        height: 12vw;
    }
}

@media only screen and (min-width: 1000px){
    nav#desktop{
        display: block;
    }

    nav#main-menu{
        display: none;
    }
}


/*Navigation Mobil*/

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

.menu-toggle {
    float: right;
    padding: 3% 0 0 5%;
    margin-top: 1vw;
    margin-right: 10%;
    background-image: url('Piktogramme/open.svg');
    background-repeat: no-repeat;
    background-size: contain;
    transition: .9s ease all;
    transform-origin: center;
}

.menu-toggle:hover,
.menu-toggle:focus {
    transform: rotate(1turn);
}

/*Viewport*/

@media only screen and (min-width: 1000px){
    .menu-toggle{
        display: none;
    }
}

@media only screen and (max-width: 855px){
    .menu-toggle{
        padding: 5% 0 0 7%;
        margin-top: 1.5vw;
        margin-right: 10%;
    }
}

.main-menu {
    position: absolute;
    display: none;
    left: -200px;
    top: 0;
    height: 100%;
	overflow-y: scroll;
	overflow-x: visible;
	transition: left 0.3s ease, box-shadow 0.3s ease;
	z-index: 999;
}

.main-menu ul {
    list-style: none;
    margin: 0 auto;
    padding: 0 10%;
    min-height: 100%;
    background-color: #678072;
}

#main-menu ul li a{
    margin: 0;
    text-align: center;
}

#main-menu ul li:nth-child(2) a, #main-menu ul li:nth-child(3) a, #main-menu ul li:nth-child(4) a, #main-menu ul li:nth-child(5) a{
    padding: 15px;
    font-size: 1.5rem;
}

#main-menu ul li:nth-child(6) a, #main-menu ul li:nth-child(7) a{
    text-transform: none;
}

#main-menu ul li:nth-child(6){
    margin-top: 10%;
    margin-bottom: -5%;
}

#main-menu ul li:nth-child(6) img{
    width: 30px;
    margin-right: 30px;
}

#main-menu ul li:nth-child(7) img{
    height: 30px;
    margin-right: 30px;
}

.main-menu .menu-close {
    position: absolute;
    right: 0;
    top: 0;
    margin: 10px 10% 0 0;
    background-image: url('Piktogramme/close.svg');
    background-repeat: no-repeat;
    background-size: contain;
    width: 30px;
    height: 30px;
}

.main-menu:target, .main-menu[aria-expanded="true"] {
    display: block;
    left: 0;
}

.main-menu:target .menu-close, .main-menu[aria-expanded="true"] .menu-close {
    z-index: 1001;
}

.main-menu:target ul, .main-menu[aria-expanded="true"] ul {
    position: relative;
    z-index: 1000;
    display: grid;
    justify-items: center;
    align-items: center;
    grid-template-columns: 100%;
}

.main-menu:target + .backdrop, .main-menu[aria-expanded="true"] + .backdrop{
    position: absolute;
    display: block;  
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 998;
    cursor: default;
}

/*progressiv enhancement*/

@supports (position: fixed) {
    .main-menu, .main-menu:target + .backdrop, .main-menu[aria-expanded="true"] + .backdrop {
        position: fixed;
    }
}

/*Viewport*/

@media only screen and (max-width: 450px){
    .menu-toggle{
        margin-top: 3.5vw;
    }
}

@media only screen and (max-width:300px) and (min-width:200px){
    .menu-toggle{
        margin-top: 4.5vw;
    }
}

@media only screen and (max-width: 400px){
    #main-menu ul li:nth-child(2) a, #main-menu ul li:nth-child(3) a, #main-menu ul li:nth-child(4) a, #main-menu ul li:nth-child(5) a{
        font-size: 1.0rem;
    }
}


/*To Top Button*/

#myBtn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 500;
    border: none;
    outline: none;
    cursor: pointer;
    background-color: #ffffff00;
    -webkit-animation-name: rotate_right; 
    -webkit-animation-duration: 5s; 
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: rotate_right; 
    -moz-animation-duration: 5s; 
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    animation-name: rotate_right; 
    animation-duration: 5s; 
    animation-iteration-count: infinite;
    animation-timing-function: linear;
	transform-origin:center;
	transform-box: fill-box; 
}

@-webkit-keyframes rotate_right {
    from {-webkit-transform: rotate(0deg);}
    to {-webkit-transform: rotate(360deg);}
}

@-moz-keyframes rotate_right {
    from {-moz-transform: rotate(0deg);}
    to {-moz-transform: rotate(360deg);}
}

@keyframes rotate_right {
    from {transform: rotate(0deg);}
    to {transform: rotate(360deg);}
}

/*Viewport*/

@media only screen and (max-width: 600px){
    #myBtn {
        bottom: 30px;
        right: 15px;
    }

    #myBtn img {
        width: 35px;
    }
}


/*Slider*/

.slider{
    width: 100%;
    height: 90vh;
    margin: 0 auto;
    overflow: hidden;
}

.slides{
    width: 400%;
    height: 100%;
    overflow: hidden;
}

.slides.animation{
    animation:  slide-1 1s ease-in-out 7s 1 forwards,
                slide-2 1s ease-in-out 14s 1 forwards,
                slide-3 1s ease-in-out 21s 1 forwards,
                slide-4 1s ease-in-out 28s 1 forwards;
}

.slides h1{
    line-height: 1.0em;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    text-align: left;
    font-size: 4.0rem;
    font-weight: bolder;
    text-shadow: 0px 3px 6px #000000;
}

.slides h2{
    font-family: 'Montserrat', sans-serif;
    font-size: 2.0rem;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: bolder;
    line-height: 1.25em;
    width: 75vw;
    text-shadow: 0px 3px 6px #000000;
}

.txt{
    margin-top: 35vh;
    padding: 0 0 0 10vw;
}

.slider-1, .slider-2, .slider-3, .slider-4{
    width: 25%;
    height: 100%;
    float: left;
}

.slider-1{
    background-image: url('Slider/Startbild.jpg');
    background-repeat: no-repeat;
    background-position: center 10%;
    background-size: cover;
}

.slider-2{
    background-image: url('Slider/Werkstatt.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

  .slider-3{
    background-image: url('Slider/Lastenrad.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.slider-4{
    background-image: url('Slider/Kinderrad.jpg');
    background-repeat: no-repeat;
    background-position: center 10%;
    background-size: cover;
}
  
@-webkit-keyframes slide-1{
    from{margin-left:0px;}
    to{margin-left:-100%;}
}

@-webkit-keyframes slide-2{
    from{margin-left:-100%;}
    to{margin-left:-200%;}
}

@-webkit-keyframes slide-3{
    from{margin-left:-200%;}
    to{margin-left:-300%;}
}

@-webkit-keyframes slide-4{
    from{margin-left:-300%;}
    to{margin-left:0%;}
}

@-moz-keyframes slide-1{
    from{margin-left:0px;}
    to{margin-left:-100%;}
}

@-moz-keyframes slide-2{
    from{margin-left:-100%;}
    to{margin-left:-200%;}
}

@-moz-keyframes slide-3{
    from{margin-left:-200%;}
    to{margin-left:-300%;}
}

@-moz-keyframes slide-4{
    from{margin-left:-300%;}
    to{margin-left:0%;}
}

@keyframes slide-1{
    from{margin-left:0px;}
    to{margin-left:-100%;}
}

@keyframes slide-2{
    from{margin-left:-100%;}
    to{margin-left:-200%;}
}

@keyframes slide-3{
    from{margin-left:-200%;}
    to{margin-left:-300%;}
}

@keyframes slide-4{
    from{margin-left:-300%;}
    to{margin-left:0%;}
}
  
/*Viewport*/

@media only screen and (max-width:1275px) and (min-width:950px){
    .slides h1{
        padding: 0 0 0 15vw;
        width: 65vw;
    } 
}

@media only screen and (max-width:890px) and (min-width:200px){
    .slides h1{
        font-size: 2.25rem;
    } 
    
    .slides h2 {
        width: 65vw;
        font-size: 1.0rem;
    }

    .slider{
        height: 60vh;
    }
}

@media only screen and (max-width:420px) and (min-width:200px){    
    .txt{
        margin-top: 25vh;
    }
}


/*Kontakt Icons*/

.mail{
    background-color: #678072;
    border-radius: 5px 0 0 5px;
    height: 45px;
    width: 45px;
    padding-top: 0;
    position: absolute;
    right: 0;
    top: 6vw;
    z-index: 500;
}

.maps{
    background-color: #678072;
    border-radius: 5px 0 0 5px;
    height: 45px;
    width: 45px;
    padding-top: 0;
    position: absolute;
    right: 0;
    top: 11vw;
    z-index: 500;
}

.mail img{
    width: 35px;
    margin-top: 9px;
    margin-left: 5px;
}

.maps img{
    height: 35px;
    margin-top: 5px;
    margin-left: 9px;
}

.mail .tooltiptext, .maps .tooltiptext {
    visibility: hidden;
    width: 175px;
    background-color: #678072;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 5px 0;
    margin-left: -220px;
    margin-top: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.0rem;
    font-weight: bold;
    position: absolute;
    z-index: 1;
}

.maps .tooltiptext {
    width: 85px;
    margin-left: -125px;
}
  
.mail:hover .tooltiptext, .maps:hover .tooltiptext {
    visibility: visible;
}


/*Viewport*/

@media (max-width: 1000px){
    .header-icons{
        display: none;
    }
}


/*Section 1*/

.Section_1{
    margin: 15% 0 10% 0;
    padding: 0 10%;
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
}

.Section_1 h2{
    text-align: center;
}

.piktogramm_1 {
    padding: 5%;
}

.piktogramm_1_img{
    background-color: #678072;
    width: 150px;
    height: 150px;
    margin: 0 auto;
    border-radius: 100%;
    transition: .4s ease transform;
}

.piktogramm_1_img:hover{
    transform: translateY(-10px);
}

.piktogramm_1_img img{
    width: 80%;
    margin-top: 35px;
    margin-left: 15px;
}

.piktogramm_2 {
    padding: 5%;
}

.piktogramm_2_img{
    background-color: #7FB396;
    width: 150px;
    height: 150px;
    margin: 0 auto;
    border-radius: 100%;
    transition: .4s ease transform;
}

.piktogramm_2_img:hover{
    transform: translateY(-10px);
}

.piktogramm_2_img img{
    width: 60%;
    margin-top: 30px;
    margin-left: 30px;
}

.piktogramm_3 {
    padding: 5%;
}

.piktogramm_3_img{
    background-color: #B3736D;
    width: 150px;
    height: 150px;
    margin: 0 auto;
    border-radius: 100%;  
    transition: .4s ease transform;
}

.piktogramm_3_img:hover{
    transform: translateY(-10px);
}

.piktogramm_3_img img{
    width: 85%;
    margin-top: 40px;
    margin-left: 12px;
}

.piktogramm_4 {
    padding: 5%;
}

.piktogramm_4_img{
    background-color: #FFD3CF;
    width: 150px;
    height: 150px;
    margin: 0 auto;
    border-radius: 100%;
    transition: .4s ease transform;
}

.piktogramm_4_img:hover{
    transform: translateY(-10px);
}

.piktogramm_4_img img{
    width: 75%;
    margin-top: 40px;
    margin-left: 19px;
}


/*Viewport*/

@media (max-width: 890px){
    .Section_1{
        grid-template-columns: 50% 50%;
    }
}

@media (max-width: 500px){
    .Section_1{
        grid-template-columns: 100%;
    }
}


/*Section 2*/

.Section_2{
    background-image: url('Bilder/grafik-Rad.png');
    background-position: right;
    background-repeat: no-repeat;
    background-size: 25%;
    background-position-x: 80%;
    background-color: #67807240;
    background-color: rgba(103, 128, 114, 0.25);
    padding: 10% 50% 10% 10%;
}

/*Viewport*/

@media (max-width: 890px){
    .Section_2{
        background-size: 35%;
        background-position-x: 80%;
        padding: 10% 10% 10% 10%;
    }
}

@media (max-width: 580px){
    .Section_2{
        background-size: 45%;
    }
}

@media (max-width: 390px){
    .Section_2{
        background-size: 75%;
    }
}


/*Section 3*/

.Section_3{
    padding: 10%;
    background-image: url('Slider/Kontakt.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position-y: center;
    background-position-x: center;
}

.öffnungszeiten{
    background-color: #67807240;
    background-color: rgba(103, 128, 114, 0.5);
    padding: 5%;
    border-radius: 5px;
    width: 40%;
}

.öffnungszeiten h2{
    color: #ffffff;
    margin-top: 0;
    text-shadow: 0px 3px 6px #000000;
}

.öffnungszeiten table{
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.0rem;
    font-weight: bold;
    line-height: 2em;
    text-shadow: 0px 3px 6px #000000;
}

td{
    padding-right: 20px;
}

/*Viewport*/

@media (max-width: 975px){
    .öffnungszeiten{
        width: 50%;
    }
}

@media (max-width: 735px){
    .öffnungszeiten{
        width: 60%;
    }
}

@media (max-width: 590px){
    .öffnungszeiten{
        width: 75%;
    }
}

@media (max-width: 460px){
    .öffnungszeiten{
        width: 100%;
    }
}


/*Section 4*/

.Section_4{
    padding: 10%;
    display: block;
}

.Zeile1{
    display: grid;
    grid-template-columns: 25% 65% 10%;
    align-items: center;
    width: 100%;
    padding-bottom: 10%;
}

.pikto_1{
    background-color: #678072;
    width: 150px;
    height: 150px;
    border-radius: 100%;
    transition: .4s ease transform;
}

.pikto_1:hover{
    transform: translateY(-10px);
}

.pikto_1 img{
    max-width: 80%;
    transform: translate(12%, 45%);
}

.Zeile1 svg{
    width: 50%;
    transition: .4s ease transform;
    margin-left: 50px;
}

.Zeile1 svg:hover{
    transform: scale(1.25);
}

.Zeile1 a{
    width: 100%;
}

.text{
    margin-left: 50px;
}

.Zeile2{
    display: grid;
    grid-template-columns: 25% 65% 10%;
    align-items: center;
    width: 100%;
    padding-bottom: 10%;
}

.pikto_2{
    background-color: #7FB396;
    width: 150px;
    height: 150px;
    border-radius: 100%;
    transition: .4s ease transform;
}

.pikto_2:hover{
    transform: translateY(-10px);
}

.pikto_2 img{
    max-width: 65%;
    transform: translate(12%, 45%);
    margin-top: -15px;
    margin-left: 15px;
}

.Zeile2 svg{
    width: 50%;
    transition: .4s ease transform;
    margin-left: 50px;
}

.Zeile2 svg:hover{
    transform: scale(1.25);
}

.Zeile2 a{
    width: 100%;
}

.Zeile3{
    display: grid;
    grid-template-columns: 25% 65% 10%;
    align-items: center;
    width: 100%;
    padding-bottom: 10%;
}

.pikto_3{
    background-color: #B3736D;
    width: 150px;
    height: 150px;
    border-radius: 100%;
    transition: .4s ease transform;
}

.pikto_3:hover{
    transform: translateY(-10px);
}

.pikto_3 img{
    max-width: 80%;
    transform: translate(12%, 45%);
    padding-top: 10px;
}

.Zeile3 svg{
    width: 50%;
    transition: .4s ease transform;
    margin-left: 50px;
}

.Zeile3 svg:hover{
    transform: scale(1.25);
}

.Zeile3 a{
    width: 100%;
}

.Zeile4{
    display: grid;
    grid-template-columns: 25% 65% 10%;
    align-items: center;
    width: 100%;
    padding-bottom: 10%;
}

.pikto_4{
    background-color: #FFD3CF;
    width: 150px;
    height: 150px;
    border-radius: 100%;
    transition: .4s ease transform;
}

.pikto_4:hover{
    transform: translateY(-10px);
}

.pikto_4 img{
    max-width: 80%;
    transform: translate(12%, 45%);
}

.Zeile4 svg{
    width: 50%;
    transition: .4s ease transform;
    margin-left: 50px;
}

.Zeile4 svg:hover{
    transform: scale(1.25);
}

.Zeile4 a{
    width: 100%;
}

/*Viewport*/

@media (max-width: 800px){
    .Zeile1{
        display: grid;
        grid-template-columns: 15% 85%;
        align-items: center;
        width: 100%;
        padding-bottom: 25%;
    }

    .pikto_1{
        width: 100px;
        height: 100px;
    }

    .Zeile1 svg{
        position: absolute;
        right: 0;
        margin-top: 20px;
    }

    .Zeile2{
        display: grid;
        grid-template-columns: 15% 85%;
        align-items: center;
        width: 100%;
        padding-bottom: 25%;
    }

    .pikto_2{
        width: 100px;
        height: 100px;
    }

    .pikto_2 img{
        margin-top: -10px;
        margin-left: 10px;
        padding-left: 0;
    }

    .Zeile2 svg{
        position: absolute;
        right: 0;
        margin-top: 20px;
    }

    .Zeile3{
        display: grid;
        grid-template-columns: 15% 85%;
        align-items: center;
        width: 100%;
        padding-bottom: 25%;
    }

    .pikto_3{
        width: 100px;
        height: 100px;
    }

    .Zeile3 svg{
        position: absolute;
        right: 0;
        margin-top: 20px;
    }

    .Zeile4{
        display: grid;
        grid-template-columns: 15% 85%;
        align-items: center;
        width: 100%;
        padding-bottom: 25%;
    }

    .pikto_4{
        width: 100px;
        height: 100px;
    }

    .Zeile4 svg{
        position: absolute;
        right: 0;
        margin-top: 20px;
    }
}

@media (max-width: 620px){
    .Zeile1{
        grid-template-columns: 100%;
    }

    .pikto_1{
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }

    .text{
        margin: 0;
    }

    .Zeile1 svg{
        position: absolute;
        margin-top: 0;
        margin-left: 10%;
        left: 0;
        width: auto;
    }
    
    .Zeile2{
        grid-template-columns: 100%;
        margin-top: 20%;
    }

    .pikto_2{
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }

    .pikto_2 img{
        margin-top: -18px;
        margin-left: 14px;
        padding-left: 0;
    }

    .Zeile2 svg{
        position: absolute;
        margin-top: 0;
        margin-left: 10%;
        left: 0;
        width: auto;
    }

    .Zeile3 svg{
        position: absolute;
        margin-top: 0;
        margin-left: 10%;
        left: 0;
        width: auto;
    }
    
    .Zeile3{
        grid-template-columns: 100%;
        margin-top: 20%;
    }

    .pikto_3{
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }

    .Zeile3 svg{
        position: absolute;
        margin-top: 0;
        margin-left: 10%;
        left: 0;
        width: auto;
    }
    .Zeile4 svg{
        position: absolute;
        margin-top: 0;
        margin-left: 10%;
        left: 0;
        width: auto;
    }
    
    .Zeile4{
        grid-template-columns: 100%;
        margin-top: 20%;
    }

    .pikto_4{
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }

    .Zeile4 svg{
        position: absolute;
        margin-top: 0;
        margin-left: 10%;
        left: 0;
        width: auto;
    }
}


/*Footer*/

footer{
    width: 100%;
}

.footer_img{
    margin-bottom: -10px;
}

.footer_links{
    width: 100%;
    justify-content: space-around;
    background-color: #678072;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: nowrap;
    padding-top: 20px;
    padding-bottom: 20px;
    margin: 0;
}

.footer_links a{
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: bolder;
    text-decoration: none;
    display: inline-block;
    transition: .4s ease transform;
}

.footer_links a:hover{
    color: #ffffff;
    transform: translateY(-10px);
}

.copyright{
    background-color: #67807240;
    background-color: rgba(103, 128, 114, 0.25);
    width: 100%;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 0;
}

.copyright h3{
    margin: 0;
    color: #ffffff;
    line-height: 2em;
    padding: 10px;
}

/*Viewport*/

@media (max-width: 1250px){
    .footer_links a{
        font-size: 1.0rem;
    }
}

@media (max-width: 550px){
    .footer_links{
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        flex-wrap: nowrap;
    }

    .footer_links a{
        padding-top: 20px;
    }

    .copyright h3{
        font-size: 0.7rem;
    }
}



/*Unterseite Verkauf*/

/*Section Verkauf 1*/

body.verkauf .Schwerpunkt{
    width: 100%;
    height: 75vh;
    background-image: linear-gradient(#67807280,#67807280), url('Slider/Verkauf2.jpg');
    background-image: linear-gradient(rgba(103, 128, 114, 0.5),rgba(103, 128, 114, 0.5)), url('Slider/Verkauf2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.Bereich_1{
    width: 25%;
    padding-top: 15%;
    padding-left: 10%;
}

.Piktogramm_1{
    background-color: #678072;
    width: 160px;
    height: 160px;
    margin: 0 auto;
    border-radius: 100%;
    border: solid #ffffff 5px;
}

.Piktogramm_1 img{
    width: 80%;
    margin-top: 40px;
    margin-left: 16px;
}

.Bereich_1 h1{
    text-align: center;
    margin: 10px 0;
}

/*Viewport*/

@media (max-width: 1000px){
    .Bereich_1{
        width: 250px;
        padding-top: 20%;
    }

    .Piktogramm_1{
        width: 150px;
        height: 150px;
    }

    .Piktogramm_1 img{
        margin-top: 35px;
        margin-left: 15px;
    }

    .Bereich_1 h1{
        font-size: 2.2rem;
    }
}

@media (max-width: 720px){
    .Bereich_1{
        width: 250px;
        padding-top: 35%;
    }
}

@media (max-width: 500px){
    .Bereich_1{
        padding-top: 60%;
    }

    .Piktogramm_1{
        width: 100px;
        height: 100px;
    }

    .Piktogramm_1 img{
        margin-top: 25px;
        margin-left: 10px;
    }
}

@media (max-width: 450px){
    .Bereich_1{
        padding-top: 75%;
        padding-left: 0;
        margin: 0 auto;
    }
}

@media only screen and (max-width:400px) and (min-width:200px){
    .Bereich_1{
        padding-top: 85%;
    }
}

.icon-menü{
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    padding: 0 10%;
    margin-bottom: 25px;
    margin-top: -65px;
}

.icon-menü h2{
    text-align: center;
    margin: 10px 0;
}

.Piktogramm_2{
    background-color: #7FB396;
    width: 125px;
    height: 125px;
    border-radius: 100%;
    transition: .4s ease transform;
    border: solid #ffffff 5px;
    margin: 0 auto;
}

.Piktogramm_2:hover{
    transform: translateY(-10px);
}

.Piktogramm_2 img{
    width: 70%;
    padding-top: 20px;
    padding-left: 19px;
}

.Piktogramm_3{
    background-color: #B3736D;
    width: 125px;
    height: 125px;
    border-radius: 100%;
    transition: .4s ease transform;
    border: solid #ffffff 5px;
    margin: 0 auto;
}

.Piktogramm_3:hover{
    transform: translateY(-10px);
}

.Piktogramm_3 img{
    width: 90%;
    padding-top: 30px;
    padding-left: 7px;
}

.Piktogramm_4{
    background-color: #FFD3CF;
    width: 125px;
    height: 125px;
    border-radius: 100%;
    transition: .4s ease transform;
    border: solid #ffffff 5px;
    margin: 0 auto;
}

.Piktogramm_4:hover{
    transform: translateY(-10px);
}

.Piktogramm_4 img{
    width: 85%;
    padding-top: 25px;
    padding-left: 10px;
}

/*Viewport*/

@media (max-width: 1000px){
    .Bereich_Platzhalter{
        display: none;
    }

    .icon-menü{
        grid-template-columns: 33.3% 33.3% 33.3%;
    }
}

@media (max-width: 1000px){
    .Piktogramm_2{
        width: 85px;
        height: 85px;
    }
    
    .Piktogramm_2 img{
        padding-top: 15px;
        padding-left: 15px;
    }
    
    .Piktogramm_3{
        width: 85px;
        height: 85px;
    }

    .Piktogramm_3 img{
        padding-top: 18px;
        padding-left: 4px;
    }
    
    .Piktogramm_4{
        width: 85px;
        height: 85px;
    }
    
    .Piktogramm_4 img{
        padding-top: 18px;
        padding-left: 8px;
    }

    .icon-menü h2{
        font-size: 1.0rem;
    }
}

@media (max-width: 450px){
    .icon-menü{
        grid-template-columns: 100%;
    }
}


/* Section Verkauf 2*/

.Informationen{
    padding: 10%;
    display: grid;
    grid-template-columns: 80% 20%;
}

body.verkauf .Hintergrundbild{
    width: 100%;
    height: auto;
    background-image: url('Bilder/Bild_01.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.Infos{
    width: 40vw;
    background-color: #ffffffd9;
    background-color: rgba(255, 255, 255, 0.85);
    margin-left: -25vw;
    margin-top: 35%;
    margin-bottom: 35%;
    padding: 15% 0 15% 15%;
}

/*Viewport*/

@media (max-width: 755px){
    .Infos{
        width: 40vw;
        padding: 15%;
    }
}

@media (max-width: 580px){
    .Informationen{
        grid-template-columns: 99% 1%;
    }
    .Infos{
        width: 60vw;
        margin-top: 10vw;
        margin-bottom: 10vw;
        margin-left: -68vw;
        padding: 10vw;
    }
}


/* Section Verkauf 3*/

.Laufband{
    background-color: #678072;
    height: 65px;
    margin-left: -10%;
    margin-bottom: 10%;
}

.Laufband marquee{
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: bolder;
    height: 65px;
    display: inline-grid;
    align-content: center;
}

.Laufband marquee img{
    position: absolute;
    top: -4px;
}

.spacer{
    display: inline-block;
    width: 100px;
}


/* Section Verkauf 4*/

.Termin{
    padding-left: 10%;
    padding-right: 10%;
    padding-bottom: 10%;
}

.direkt-kontakt{
    width: 100%;
    display: grid;
    grid-template-columns: 33.3% 33.3% 33.3%;
    padding-top: 50px;
    padding-bottom: 50px;
}

#Mail{
    width: 100%;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

#Telefon{
    width: 100%;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

#Fax{
    width: 100%;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}

#Mail img, #Telefon img, #Fax img{
    margin-right: 25px;
}

/*Viewport*/

@media (max-width: 890px){
    .direkt-kontakt{
        grid-template-columns: 50% 50%;
    }

    #Fax{
        justify-content: flex-start;
        margin-top: 50px;
    }
}

@media (max-width: 575px){
    .direkt-kontakt{
        grid-template-columns: 100%;
    }

    #Telefon{
        justify-content: flex-start;
        margin-top: 50px;
    }
}


/*Unterseite Werkstatt*/

/*Section Werkstatt 1*/

body.werkstatt .Schwerpunkt{
    width: 100%;
    height: 75vh;
    background-image: linear-gradient(#7FB39680,#7FB39680), url('Slider/Werkstatt.jpg');
    background-image: linear-gradient(rgba(127, 179, 150, 0.5),rgba(127, 179, 150, 0.5)), url('Slider/Werkstatt.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

body.werkstatt .Piktogramm_1{
    background-color: #7FB396;
}

body.werkstatt .Piktogramm_1 img{
    width: 70%;
    padding-top: 25px;
    padding-left: 25px;
    margin: 0;
}

/*Viewport*/

@media (max-width: 1000px){

    body.werkstatt .Piktogramm_1 img{
        margin-top: 0;
        margin-left: 0;
    }
}

@media (max-width: 500px){
    body.werkstatt .Piktogramm_1 img{
        margin-top: -7px;
        margin-left: -5px;
        width: 90%;
    }
}


body.werkstatt .Piktogramm_2{
    background-color: #678072;
}

body.werkstatt .Piktogramm_2 img{
    width: 80%;
    padding-top: 30px;
    padding-left: 15px;
}

/*Viewport*/

@media (max-width: 1000px){
    body.werkstatt .Piktogramm_2{
        width: 85px;
        height: 85px;
    }
    
    body.werkstatt .Piktogramm_2 img{
        padding-top: 20px;
        padding-left: 10px;
    }
}


/*Section 2 Werkstatt*/

body.werkstatt .Hintergrundbild{
    width: 100%;
    height: auto;
    background-image: url('Bilder/Bild_02.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}



/*Unterseite Lastenrad-Leasing*/

/*Section 1 Lastenrad*/

body.lastenrad .Schwerpunkt{
    width: 100%;
    height: 75vh;
    background-image: linear-gradient(#B3736D80,#B3736D80), url('Slider/Lastenrad2.jpg');
    background-image: linear-gradient(rgba(179, 115, 109, 0.5),rgba(179, 115, 109, 0.5)), url('Slider/Lastenrad2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

body.lastenrad .Piktogramm_1{
    background-color: #B3736D;
}

body.lastenrad .Piktogramm_1 img{
    width: 90%;
    padding-top: 35px;
    padding-left: 8px;
    margin: 0;
}

/*Viewport*/

@media (max-width: 1000px){
    body.lastenrad .Piktogramm_1 img{
        margin-top: 0;
        margin-left: 0;
    }
}

@media (max-width: 500px){
    body.lastenrad .Piktogramm_1 img{
        margin-top: -13px;
        margin-left: -4px;
        width: 100%;
    }

    body.lastenrad .Bereich_1{
        padding-top: 60%;
    }
}


body.lastenrad .Piktogramm_2{
    background-color: #678072;
}

body.lastenrad .Piktogramm_2 img{
    width: 80%;
    padding-top: 30px;
    padding-left: 13px;
}

body.lastenrad .Piktogramm_3{
    background-color: #7FB396;
}
body.lastenrad .Piktogramm_3 img{
    width: 65%;
    padding-top: 22px;
    padding-left: 22px;
}

/*Viewport*/

@media (max-width: 1000px){
    body.lastenrad .Piktogramm_2 img{
        padding-top: 20px;
        padding-left: 10px;
    }

    body.lastenrad .Piktogramm_3 img{
        padding-top: 15px;
        padding-left: 15px;
    }
}


/*Section Lastenrad 2*/

body.lastenrad .Hintergrundbild{
    width: 100%;
    height: auto;
    background-image: url('Bilder/Bild_05.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}



/*Unterseite Kinderrad-Abo*/

/*Section Kinderrad 1*/

body.kinderrad .Schwerpunkt{
    width: 100%;
    height: 75vh;
    background-image: linear-gradient(#FFD3CF80, #FFD3CF80), url('Slider/Kinderrad2.jpg');
    background-image: linear-gradient(rgba(255, 211, 207, 0.5),rgba(255, 211, 207, 0.5)), url('Slider/Kinderrad2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

body.kinderrad .Piktogramm_1{
    background-color: #FFD3CF;
}

body.kinderrad .Piktogramm_1 img{
    width: 85%;
    padding-top: 35px;
    padding-left: 12px;
    margin: 0;
}

/*Viewport*/

@media (max-width: 1000px){
    body.kinderrad .Piktogramm_1 img{
        margin-top: 0;
        margin-left: 0;
    }
}

@media (max-width: 500px){
    body.kinderrad .Piktogramm_1 img{
        margin-top: -13px;
        margin-left: -7px;
        width: 100%;
    }

    body.kinderrad .Bereich_1{
        padding-top: 60%;
    }
}


body.kinderrad .Piktogramm_2{
    background-color: #678072;
}

body.kinderrad .Piktogramm_2 img{
    width: 80%;
    padding-top: 30px;
    padding-left: 14px;
}

body.kinderrad .Piktogramm_3{
    background-color: #7FB396;
}

body.kinderrad .Piktogramm_3 img{
    width: 65%;
    padding-top: 22px;
    padding-left: 22px;
}

body.kinderrad .Piktogramm_4{
    background-color: #B3736D;
}

body.kinderrad .Piktogramm_4 img{
    width: 90%;
    padding-top: 30px;
    padding-left: 6px;
}

/*Viewport*/

@media (max-width: 1000px){
    body.kinderrad .Piktogramm_2 img{
        padding-top: 20px;
        padding-left: 10px;
    }
    
    body.kinderrad .Piktogramm_3 img{
        padding-top: 15px;
        padding-left: 15px;
    }
    
    body.kinderrad .Piktogramm_4 img{
        padding-top: 18px;
        padding-left: 5px;
    }
}


/*Section 2 Kinderrad*/

body.kinderrad .Hintergrundbild{
    width: 100%;
    height: auto;
    background-image: url('Bilder/Bild_03.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: initial !important;
}



/*Unterseite Kontakt*/

/*Section 1 Kontakt*/

.Kontakt{
    height: 30vh;
    padding: 10%;
    background-image: url('Slider/Kontakt.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    font-size: 4.0rem;
}

.Kontakt h1{
    font-size: 4.0rem;
}


/*Section 2 Kontakt*/

.Kontakt_Termin{
    padding: 5% 10%;
    display: grid;
    grid-template-columns: 60% 40%;
}

#kontakt_ort, #kontakt_mail, #kontakt_telefon, #kontakt_fax{
    display: grid;
    grid-template-columns: 20% 80%;
    margin-top: 25px;
    align-items: center;
    transition: .4s ease transform;
}

#kontakt_ort:hover, #kontakt_mail:hover, #kontakt_telefon:hover, #kontakt_fax:hover{
    transform: translateY(-10px);
}

.zeiten table{
    color: #678072;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.0rem;
    font-weight: bold;
    line-height: 2em;
}

/*Viewport*/

@media (max-width: 750px){
    .Kontakt_Termin{
        grid-template-columns: 100%;
    }

    .zeiten{
        margin-top: 50px;
    }
}


/*Section 3 Kontakt*/

.impressum{
    background-color: rgba(127, 179, 150, 0.25);
    padding: 5% 10% 10% 10%;
    margin-bottom: -25%;
    display: grid;
    grid-template-columns: 60% 40%;
}

/*Viewport*/

@media (max-width: 750px){
    .impressum{
        grid-template-columns: 20% 80%;
    }
}

@media (max-width: 500px){
    .impressum{
        grid-template-columns: 100%;
        padding-bottom: 25%;
    }
}