@import './style.css';
@import './slick.css';
@import './slick-theme.css';
/* own css */
.form-control {
 /* width:70%; */
  padding: 0;
  color: #777;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
       -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
          transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control:focus {
 -moz-box-shadow: 0 0 8px #88D5E9;
    -webkit-box-shadow: 0 0 8px #88D5E9;
    box-shadow: 0 0 8px #88D5E9;
    border: 1px solid #88D5E9;
	background-color: #222227;
	color: #fff;
}
.form-control::-moz-placeholder {
  color: #C0C0C0;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #C0C0C0;
}
.form-control::-webkit-input-placeholder {
  color: #C0C0C0;
}
.form-horizontal .control-label {

    padding-top: 3px;
}
.form-group * + * {
    margin-top: 0;
}
.form-group {
    margin-top: 10px;
}
.form-group input[type=checkbox] {
    width: auto;
	float: left;
	clear: right;
	margin-top: 0.5em !important;
	/*position: static !important;*/
}
/* Form End */
/* Form Style */
.form-style {
    margin:10px auto;
   /* max-width: 500px;*/
    padding: 20px 12px 10px 20px;
    border:0px solid green;
}
.form-style li {
    padding: 0;
    display: block;
    list-style: none;
    margin: 10px 0 0 0;
}
.form-style label{
    margin:0 0 3px 0;
    padding:0;
    display:block;
    font-weight: bold;
    color: #777;
}
.form-style input[type=checkbox] + label{
    display:inline;
    margin-left: 10px;
}
.form-style input[type=text],
.form-style input[type=date],
.form-style input[type=datetime],
.form-style input[type=number],
.form-style input[type=search],
.form-style input[type=time],
.form-style input[type=url],
.form-style input[type=email],
.form-style input[type=checkbox],
.form-style input[type=radio],
.form-style input[type=password],
textarea,
select{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 5px;
    margin:0;
    transition: all 0.30s ease-in-out;
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -ms-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
    color: #777;
    background-color: #fff;;
	border-radius: 4px;
    border: 1px solid #ccc;
}
.form-style input[type=text]:focus,
.form-style input[type=date]:focus,
.form-style input[type=datetime]:focus,
.form-style input[type=number]:focus,
.form-style input[type=search]:focus,
.form-style input[type=time]:focus,
.form-style input[type=url]:focus,
.form-style input[type=email]:focus,
.form-style input[type=checkbox]:focus,
.form-style input[type=radio]:focus,
.form-style input[type=password]:focus,
.form-style textarea:focus,
.form-style select:focus{
    -moz-box-shadow: 0 0 8px #7ab800;
    -webkit-box-shadow: 0 0 8px #7ab800;
    box-shadow: 0 0 8px #7ab800;
    border: 1px solid #7ab800;
	background-color: #F9F9F9;
	color: #777;
}
.form-style .field-divided{
    width: 49%;
}
.form-style .field-long{
    width: 100%;
}
.form-style .field-select{
    width: 100%;
}
.form-style .field-textarea{
    height: 100px;
}
.form-style input[type=submit]{
    float: right;
    position: relative;
    top:-25px;
}
.form-style input[type=submit], .form-style input[type=button]{
    background: #f7b03f;
    padding: 8px 15px 8px 15px;
    border: none;
    color: #fff;
}
.form-style input[type=submit]:hover, .form-style input[type=button]:hover{
    background: #4691A4;
    -moz-box-shadow:none;
    -webkit-box-shadow:none;
    box-shadow:none;
}
.form-style .required{
    color:#777;
}
/* Form Style*/
/* send button */
.btn-default {
  color:#777;
  background-color: #3f434d;
  border-color: #999;
  font-weight: bold;
	border-radius: 4px;
}
.btn-default:hover {
  color: #fff;
  background-color: #30333b;
  border-color: #ccc;
}
.btn-default:active,
.btn-default.active {
  color: #333;
  background-color: #222227;
  border-color: #adadad;
}
.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus {
  color: #23262d;
  background-color: #7ab800;
  border-color: #8c8c8c;
}

/* send button Ende */
/* Classes Formularprüfung */
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
  color: #7ab800;
}

.has-success .form-control {
  border-color: #7ab800;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-success .form-control:focus {
  border-color: #2b542c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}

.has-success .input-group-addon {
  color: #7ab800;
  border-color: #7ab800;
  background-color: #dff0d8;
}

.has-success .form-control-feedback {
  color: #7ab800;
}

.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
  color: #8a6d3b;
}

.has-warning .form-control {
  border-color: #8a6d3b;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-warning .form-control:focus {
  border-color: #66512c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}

.has-warning .input-group-addon {
  color: #8a6d3b;
  border-color: #8a6d3b;
  background-color: #fcf8e3;
}

.has-warning .form-control-feedback {
  color: #8a6d3b;
}

.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .text,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.text label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
  color: #a94442;
}

.has-error .form-control {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-error .form-control:focus {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}

.has-error .input-group-addon {
  color: #a94442;
  border-color: #a94442;
  background-color: #f2dede;
}

.has-error .form-control-feedback {
  color: #a94442;
}

.has-feedback label ~ .form-control-feedback {
  top: 26px;
}

.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}

.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 5px;
  color: #b7b7b7;
}
/* Classes Formularprüfung Ende */
.glyphicon {
    position:absolute;
    top: 8px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.input-group-addon {
	padding: 0px 10px;
}
.bg-danger {
    background-color: #EFBCBC;
}
h1 small, h1 .small, h2 small, h2 .small, h3 small, h3 .small, h4 small, h4 .small, h5 small, h5 .small, h6 small, h6 .small, .h1 small, .h1 .small, .h2 small, .h2 .small, .h3 small, .h3 .small, .h4 small, .h4 .small, .h5 small, .h5 .small, .h6 small, .h6 .small {
    color: #777;
}
p.agb{
	padding:2px 0 0 25px;
}
.inspace-top1{padding-top:1em;}
.inspace-bottom1{padding-bottom:1em}
@media (max-width: 768px) {
.col-sm-10{padding-left:0;}
}


/* NEW CSS 2018 */
/* Autor: Falk Duwe */

body {
    font-family: 'Roboto', sans-serif;
}

h1, h2, h3, h4, h5 {
    font-family: 'Roboto Slab', serif;
}

p, h1, h2, h3, h4, h5, h6 {
    white-space: pre-line;
}

/* NAVIGATION */

.page-head {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 126px;
    z-index: 999;
}

.rd-navbar-wrap {
    max-width: 100%;
    margin: 0 60px;
}

.rd-navbar-fullwidth .rd-navbar-nav > li > a {
    padding: 25px 25px;
}

.rd-navbar-fullwidth .rd-navbar-inner {
    padding: 10px 60px;
}

.rd-navbar-brand .brand-name img {
    width: 300px;
}

/* LANG NAV */

.i18n-nav {
    position: fixed;
    right: 20px;
    top: 8px;
    z-index: 999999;
}

.i18n-nav ul li {
    color: #7ab800;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
}

/* MAIN */

main {
    padding: 0;
    box-sizing: border-box;
    margin-top: 200px;
    float: left;
    width: 100%;
}

main section {
    padding: 0;
}

main section .container {
    margin: 0;
    width: 100%;
    display: block;
    float: left;
}

@media (max-width: 800px){
    main {
        margin-top: 100px;
    }
    
    h1,h2,h3,h4,h5 {
        padding: 0 20px;
    }
}

/* STARTSEITE */

main.start-page {
    margin-top: 150px;
    padding: 0 60px;
}

main.start-page .bike-brand-wrap .bike-brand {
    position: relative;
    float: left;
    width: 25%;
    height: 240px;
    padding: 10px;
}

main.start-page .bike-brand-wrap .bike-brand .wrap {
    width: 100%;
    line-height: 200px;
}

main.start-page .bike-brand-wrap .bike-brand .vet-mit {
    display: inline-block;
    vertical-align: middle;
}

main.start-page .bike-brand-wrap .bike-brand .vet-mit img {
    max-width: 100%;
}

main.start-page .bike-brand-wrap h2 {
    width: 100%;
    float: left;
}

main.start-page .swiper {
    width: 100%;
    height: calc(100vh - 200px);
    min-height: 600px;
    position: relative;
    float: left;
}

main.start-page .swiper .swiper-item {
    width: 100%;
    height: 100%;
    background-attachment: scroll;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

main.start-page .swiper .swiper-item .content-wrap {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    opacity: 0;
}

main.start-page .swiper .swiper-item .content-wrap:hover { 
    cursor: pointer;
    opacity: 1;
    transition: .4s ease;
}

main.start-page .swiper .swiper-item .content-wrap::before {
    width: 100%;
    height: 100%;
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    opacity: .7;
    background-color: #171717;
    z-index: -1;
}

main.start-page .swiper .swiper-item .content-wrap .content {
    color: white;
    width: 100%;
    padding: 0 30px;
}

main.start-page .swiper .swiper-item .content-wrap .content h1 {
    font-size: 40px;
    color: white;
}

main.start-page .swiper .swiper-item .content-wrap .content p {
    font-size: 20px;
    padding-top: 20px; 
}

main.start-page .swiper .swiper-item .content-wrap .content .brands-list {
    width: 100%;
    box-sizing: border-box;
    float: left;
    padding: 0 30px;
    margin: 0;
    position: relative;
    margin: 20px;
}

main.start-page .swiper .swiper-item .content-wrap .content .brands-item {
    box-sizing: border-box;
    padding: 5px;
    text-align: center;
    width: 150px;
    height: 100px;
    display: inline-table;
    
}

main.start-page .swiper .swiper-item .content-wrap .content .brands-item img {
    width: 110px;
    height: auto;
    display: table-cell;
    vertical-align: middle;
}


@media (max-width: 1400px) { 

    main.start-page {
        margin-top: 190px;
    } 
}

@media (max-width: 800px) {
    
    main.start-page {
        padding: 0 30px;
        margin-top: 30px;
    }
    
    main.start-page .row {
        padding: 0 20px;
    }
    
    main.start-page .bike-brand-wrap .bike-brand {
        width: 100%;
        margin-bottom: 10px;
    }
    
    main.start-page .bike-brand-wrap .bike-brand .vet-mit img {
        max-width: 300px;
    }
    
    main.start-page .swiper .swiper-item .content-wrap .content .brands-item {
    width: 100px;
    }
    
    main.start-page .swiper .swiper-item .content-wrap .content .brands-item img {
    width: 80px;
}
    
}

.media-variant-2 .media-left {
    float: left;
    width: 100px;
    box-sizing: border-box;
    height: 100%;
    padding: 0;
    text-align: center;
}

.media-variant-2 .media-left .glyphicon {
    text-align: center;
    position: relative;
    display: table;
    box-sizing: border-box;
}

.media-variant-2 .media-left .glyphicon::before {
    display: table-cell;
    vertical-align: middle;
    transform: none;
    width: 50%;
}

.media-variant-2 .media-body2 {
    float: left;   
    width: calc(100% - 200px);
    height: 100%;
    box-sizing: border-box;
    padding: 10px;
    margin: 0;
    text-align: center;
}

#map {
    width: 100%;
    max-width: 100% !important;
    border: none !important;
}

/* SERVICE */ 

main.service {
    padding: 0 50px;
}

main.service .service-row {
    width: 100%;
    position: relative;
    align-items: center;
    height: auto;
    margin-bottom: 2rem;
}

main.service .service-row .service-content p {
    padding: 5px 0;
    font-weight: bold;
}

main.service .service-row .service-content p span {
    font-weight: normal;
}

main.service .service-row .service-item {
    width: 33.333333%;
    float: left;
    padding: 10px;
}

main.service .service-row .service-item .service-img {
    width: 100%;
    height: 240px; 
    display: flex;
    align-items: center;
    text-align: center;
    background-color: #efefef;
    position: relative;
}

main.service .service-row .service-item .service-img img {
    box-sizing: border-box;
    margin: 0 auto;
    max-width: 150px;
}

main.service .service-row .service-item .service-img::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: inline-block;
    background: #4baf4f;
    opacity: 0;
    transition: .6s;
    z-index: 1;
    width: 100%;
    height: 240px;
}

main.service .service-row .service-item .service-img:hover::before {
    opacity: .5;
}

@media (max-width: 800px) {
    main.service {
        padding: 0 30px;
    }  
    
    main.service .service-row {
        display: block;
    }
    
    main.service .service-row .service-item {
    width: 100%;
}
}

/* DEALERSEARCH */

.dealer {
    padding: 0 100px;
}

.dealer .dealer-item h1 {
    text-align: left;
}

.dealer input {
    width: 100%;
    padding: 10px 20px;
    text-align: center;
    margin-bottom: 10px;
}

.dealer h1 {
    font-size: 50px;
    padding: 0 0 20px; 
}

.one.col {
    width: 100%;
    float: left;
    position: relative;
    box-sizing: border-box;
} 

.one.col #map {
    margin: 20px 0;
    height: 700px;
}
.one.col #map h1 {
    font-size: 20px;
    text-align: left;
}

main.dealer .dealer-list .dealer-item {
    padding: 0 20px;
    margin: 10px 0;
}

main.dealer .dealer-list .dealer-item h1 {
    font-size: 17px;
    padding: 10px 0;
}

main.dealer .dealer-list .dealer-item p {
    line-height: 23px;
}

main.dealer .dealerfilter label .folgt {
    opacity: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    width: calc(100% - 50px);
    height: auto;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transition: .4s ease;
}

main.dealer .dealerfilter label:hover > .folgt {
    opacity: 1;
}

@media (max-width: 800px) {
    .dealer {
        padding: 0 30px;
    }
    .dealer h1 {
        font-size: 35px;
    }
}

/* FAHRRÄDER */

.parts .part-brand-wrap .part-brand {
    position: relative;
    float: left;
    width: 33.33333%;
    height: auto;
    padding: 10px;
}

.parts .part-brand-wrap.sub .part-brand {
    width: 20%;
}

.parts .part-brand-wrap .part-brand p {
    padding: 20px 30px 20px;
    float: left;
    color: #333333;
}

.parts .part-brand-wrap .part-brand .wrap {
    width: 100%;
}

.parts .part-brand-wrap .part-brand .vet-mit {
    display: flex;
}

.parts .part-brand-wrap .part-brand .vet-mit img {
    width:  100%;
}

.parts .part-brand-wrap h2 {
    margin: 20px 0;
    width: 100%;
    float: left;
}

@media (max-width: 800px) {
    .parts .part-brand-wrap .part-brand,
    .parts .part-brand-wrap.sub .part-brand {
        width: 100%;
        margin-bottom: 10px;
        min-height: auto;
    }    
}

/* MOVIES */

.movies {
    margin: 0;
    position: relative;
    width: 100%;
    margin-top: 40px;
    float: left;
}


.movies .movie-item {
    width: 50%;
    float: left;
    margin-bottom: 30px;
    height: 400px;
    display: flex;
    align-items: center;
}

.movies .movie-item .content {
    width: 100%;
    float: left;
}

.movies .movie-item .content .big {
    padding: 20px;
    box-sizing: border-box;
}

.movies .movie-item .img-thumbnail-variant-1 {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.movies .movie-item .thumb-child {
    width: 100%;
    height: auto;
    max-width: 100px;
    bottom: 32px;
    float: right;
}

.movies .movie-item .thumb-child::before {
    display: none;
    content: '';
}

.movies .movie-item .thumb-child a {
    width: 100%;
}

@media (max-width: 800px) {
    
    .movies .movie-item {
        width: 100%;
        height: auto;
    }  
    
}

/* SOCIAL MEDIA */

.social {
    margin: 40px 0;
}

.social .title h1 {
    margin: 0;
    padding: 20px 0;
}

.social .title p {
    font-size: 18px;
}

.social .social-row {
    margin-top: 50px;
    float: left;
    width: 100%;
    position: relative;
}

.social .social-row .social-item {
    width: calc(50%);
    float: left;
    position: relative;
    height: 100%;
    margin-bottom: 30px;
}

.social .social-row .social-item .fb-page {
    width: calc(100% - 20px);
    height: auto;
    position: relative;
    margin: 0 auto !important;
    border:0;
}

.social .social-row .social-item .fb-page span {
    position: relative;
    border-radius: 3px;
    overflow: hidden;
    box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15) !important; 
    max-height: 700px;
    border: 1px solid #C7C7C7;
}

.social .social-row .social-item .instagram-media {
    background:#FFF; 
    border:0; 
    border-radius:3px; 
    box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15) !important; 
    width: 500px; 
    padding: 0;
    box-sizing: border-box;
    margin: 0 auto !important;
    max-height: 700px;
}

@media (max-width: 800px) {
    .social .social-row .social-item {
        width: calc(100%);
    }
    
    .social .social-row .social-item .instagram-media,
    .social .social-row .social-item .fb-page {
        width: 100%;
    }
}

/* FAHRRÄDER */

main.bikes .bikes-item {
    position: relative;
    float: left;
    width: 100%;
}

main.bikes .bikes-item .bikes-imagebild {
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100%;
    height: 600px;
    float: left;
    position: relative;
}

main.bikes .bikes-item .bikes-logo {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    height: 200px;
    padding: 0 100px;
    margin: 20px 0;
    float: left;
}

main.bikes .bikes-item .bikes-logo .logo {
    max-width: 400px;
    margin: 0 auto;
    height: 200px;
}

main.bikes .bikes-item .bikes-logo .logo img {
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0 auto;
}

main.bikes .bikes-item .bikes-content {
    position: relative;
    float: left;
    width: 100%;
    padding: 0 100px;
    text-align: center;
    margin-bottom: 40px;
}

main.bikes .bikes-item .bikes-content .icon-list {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 40px;
}

main.bikes .bikes-item .bikes-content .icon-list .icon-item {
    width: 100%;
    height: 40px;
    position: relative;
    float: left;
    opacity: .8;
    transition: .3s ease;
}

main.bikes .bikes-item .bikes-content .icon-list .icon-item:hover {
    opacity: 1;
}

main.bikes .bikes-item .bikes-content .icon-list .icon-item:first-child {
    height: 50px;
}

main.bikes .bikes-item .bikes-content .icon-list .icon-item img {
    position: relative;
    height: 100%;
    width: auto;
}

main.bikes .bikes-item .bikes-content h2,
main.bikes .bikes-item .bikes-content p {
    width: 100%;
    float: left;
    margin: 0;
}

main.bikes .bikes-item .bikes-content h2 {
    font-size: 35px;
    margin-bottom: 20px;
}

main.bikes .bikes-item .bikes-content p {
    font-size: 20px;
    margin-bottom: 20px;
}

main.bikes .bikes-item .bikes-content button {
    text-transform: uppercase;
}
main.bikes .bikes-item .bikes-content a {
    color: white;
    font-weight: 800;
}

@media (max-width: 800px) {
    main.bikes .bikes-item .bikes-imagebild {
        background-attachment: scroll;
        background-position: center;
    }
    
    main.bikes .bikes-item .bikes-logo {
        padding: 0 30px;
    }
    
    main.bikes .bikes-item .bikes-logo .logo img {
        max-width: 200px;
    }
    
    main.bikes .bikes-item .bikes-content {
        padding: 0 30px;
    }
    
    main.bikes .bikes-item .bikes-content h2 {
        font-size: 25px;
    }
}


/* VERLEIH & INDUSTRIE */

.rent {
    padding: 0 100px;
    margin-bottom: 2rem;
}

.rent .content,
.rent .image-row {
    width: 100%;
    position: relative;
    float: left;
    text-align: center;
}

.rent .image-row {
    margin-top: 20px;
}

.rent .content h1,
.rent .content h2,
.rent .content p {
    margin: 0;
    padding: 10px 0;
}

.rent .content h1 {
    font-size: 50px;
}

.rent .content h2 {
    font-size: 30px;
}

.rent .content p {
    font-size: 20px;
}

.rent .image-row .image-item {
    position: relative;
    float: left;
    width: calc(33.333333% - 10px);
    height: 400px;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    background-position: center center;
    box-shadow: 0 0 15px rgba(0,0,0,0.6);
    margin: 5px;
}

.rent .image-row .image-item:first-child,
.rent .image-row .image-item:last-child{
    width: calc(66.66667% - 10px);
}

.rent.ladenausstattung .image-row .image-item:first-child,
.rent.ladenausstattung .image-row .image-item:last-child {
    width: calc(33.333333% - 10px);
}

.rent.ladenausstattung .container:last-child {
    margin: 40px 0;
}

.rent.ladenausstattung .image-row .image-item.anzeige {
    width: calc(50% - 10px);
}

.rent .image-row .image-item .image-content {
    position: relative;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: .5s ease;
}

.rent .image-row .image-item .image-content::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(19, 17, 36, 0.63);
    transition: .5s ease;
}

.rent .image-row .image-item .image-content h2 {
    float: left;
    width: 100%;
    color: white;
    font-weight: 700;
    font-size: 2rem;
    text-transform: uppercase;
    z-index: 9;
    padding: 0 15px;
}

.rent .image-row .image-item .image-content:hover {
    opacity: 1;
    transition: .5s ease;
    cursor: pointer;
}

@media (max-width: 800px) {
    
    main.rent {
        padding: 0 30px;
    }
    
    .rent .image-row .image-item {
        width: 100% !important;
    }
    
    .rent .content h1 {
        font-size: 35px;
    }

    .rent .content h2 {
        font-size: 25px;
    }
    
    .rent .image-row .image-item .image-content h2 {
        font-size: 1.5rem;
    }
}

/* TEILE */

.parts .row {
    margin: 0;
}

.parts .isotope-item {
    padding: 0;
}

.parts .wrap {
    display: block;
    height: auto;
    position: relative;
    float: left;
    min-height: auto;
}

.parts .wrap .img-wrap {
    float: left;
    width: 100%;
    clear: both;
    display: flex;
    height: 100px;
    align-items: center;
}

.parts .wrap .img-wrap img {
    max-height: 100px;
    width: 100%;
}

.parts .wrap .text-left {
    float: left;
    width: 100%;
    text-align: justify;
    padding-right: 0;
}

.parts .wrap .text-left .btn {
    width: 100%;
    text-align: center;
    position: relative;
    min-width: 100%;
    float: left;
}
.parts .part-brands {
    margin: 3em 0;
    padding: 0 50px;
}

@media (max-width: 800px) {
    .parts .post-img {
        float: left;
    }
    .parts .wrap {
        max-width: 100%;
    }
}

/* GESCHICHTE */
.history .container {
    margin: 0;
    position: relative;
    float: left; 
    width: 100%;
    padding: 0;
}

.history h2 {
    width: 100%;
    float: left;
    padding: 50px 20px;
}

.history .col {
    position: relative;
    float: left;
    width: 100%;
}

.history .col .col-item {
    height: 400px;
    width: 100%;
    float: left;
    position: relative;
    overflow: hidden;
}

.history .col .col-item img {
    max-width: 585px;
    max-height: 100%;
    margin: 0 auto;
    width: 100%;
}

.history .col .col-item .col-info,
.history .col .col-item .col-img {
    width: 50%;
    height: 100%;
    position: relative;
    align-items: center;
    float: left;
    overflow: hidden;
    display: flex;
}


.history .col .col-item .col-img.right {
    float: right;
}

.history .col .col-item .col-info h4,
.history .col .col-item .col-info p {
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0 30px;
}

.history .col .col-item .col-info h4 {
    font-size: 4rem;
}

.history .col .col-item .col-info .info-content {
    float: left;
    height: auto;
    width: 100%;
}

.history .col .col-item .col-info p {
    font-size: 2rem;
}

@media (max-width: 800px) {
    .history .col .col-item {
        height: auto;
        margin-bottom: 40px;
    }
    
    .history .col .col-item .col-info,
    .history .col .col-item .col-img {
        width: 100%;
        float: left;
        padding: 30px;
    }
    
    .history .col .col-item .col-info h4,
    .history .col .col-item .col-info p {
        width: 100%;
        text-align: center;
        margin: 0;
    }
}

/* KARRIERE */

.full-width {
    width: 100%;
}

.karriere .col-wrapp {
    width: 100%;
    position: relative;
    float: left;
    height: 600px;
}

.karriere .col-wrapp .col-content {
    width: 50%;
    height: 100%;
    float: left;
    padding: 30px;
    display: flex;
    align-items: center;
}

.karriere .col-wrapp.full {
    height: 400px;
}

.karriere .col-wrapp.full .col-content {
    width: 100%;
    background-color: #333333;
}

.karriere .col-wrapp.full .col-content h2,
.karriere .col-wrapp.full .col-content h5 {
    color: white;
}

.karriere .col-wrapp .col-content .col-info {
    color: #333333;
    width: 100%;
    text-align: center;
    float: left;
}

.karriere .col-wrapp .col-content .col-info span {
    color: #7ab800;
}

.karriere .col-wrapp .col-content .col-info h2 {
    font-size: 40px;
}

.karriere .col-wrapp .col-content .col-info ul {
    width: 100%;
}

.karriere .col-wrapp .col-content .col-info ul li {
    padding: 5px 0;
}

.karriere .col-wrapp .col-image {
    width: 50%;
    height: 100%;
    float: left;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    background-position: center center;
}

.karriere .col-wrapp .col-image.right{
    float: right;
}

@media (max-width: 800px) {
    
    .karriere .col-wrapp,
    .karriere .col-wrapp.full { 
        height: auto;
    }
    
    .karriere .col-wrapp .col-image,
    .karriere .col-wrapp .col-content {
        width: 100%;
    }
    
    .karriere .col-wrapp .col-image {
        height: 300px;
    }
    .karriere .col-wrapp .col-content {
        height: auto;
    }
    .karriere .col-wrapp .col-image.right{
    float: left;
}
}

/* KATALOG */

main.katalog {
    padding: 0 100px;
}

.katalog article {
    margin-bottom: 2rem;
}

.katalog article h3 {
    padding: 20px 0;
}

@media (max-width: 800px) {
    main.katalog {
        padding: 0 30px;
    }
}

/* SUPPORT */

main.support {
    padding: 0 100px;
    margin-bottom: 4rem;
}

@media (max-width: 800px) {
    main.support {
        padding: 0 30px;
    }
}

/* MESSEN */

main.messen {
    padding: 0 100px;
}

main.messen .content h1 {
    font-size: 50px;
}

main.messen .content p {
    font-size: 20px;
    padding: 20px 0;
    color: #222222;
}

main.messen article {
    padding: 5px 0;
    display: flex;
    align-items: center;
}

main.messen article h3 {
    font-size: 20px;
    width: 100%;
    text-align: center;
    float: left;
}

main.messen article h3 a {
    font-size: 25px;
}

main.messen article a::after {
	position: relative;
	content: "\f061";
	font-family: "FontAwesome";
	font-size: 20px;
	color: #7ab800;
	transition: .4s;
	height: auto;
    padding: 0 10px;
    bottom: 1px;
}

main.messen article:last-child {
    margin-bottom: 2rem;
}

@media (max-width: 800px) {
    main.messen {
        padding: 0 30px;
    }
}

/* KONTAKT */

main.kontakt {
    padding: 0 100px;
}

main.kontakt h1 {
    font-size: 50px;
    padding-bottom: 20px;
}

main.kontakt form {
    margin-bottom: 4rem;
    text-align: center;
}

main.kontakt form input {
    font-size: 20px;
    font-family: 'Roboto Slab', serif;
}

main.kontakt form textarea {
    font-size: 20px;
    font-family: 'Roboto Slab', serif;
}

@media (max-width: 800px) {
    main.kontakt {
        padding: 0 30px;
    }
    
    main.kontakt h1 {
        font-size: 35px;
    }
}

/* FILIALE */

main.filiale h1 {
    font-size: 50px;
    padding: 20px 0;
}

main.filiale h2 {
    font-size: 35px;
    padding: 0 0 30px;
}

main.filiale .col-wrapp .col-image iframe {
    position: relative;
    width: 100%;
    height: 100%;
}

@media (max-width: 800px) { 
    main.filiale h1 {
        font-size: 35px;
    }
    
    main.filiale h2 {
        font-size: 25px;
    }
}

/* TYPO */

p {
    font-size: 1.5rem;
}
p.big {
    text-align: center;
}

main.start-page h2,
main.parts h2 {
    margin: 0;
    padding: 20px 0;
    font-size: 40px;
}