.letter-color {
  color: #f4982c; }

h1 {
  font-family: Lato;
  font-weight: bold;
  font-size: 3.6rem; }

h2 {
  font-family: Lato;
  font-size: 2.8rem; }

h3 {
  font-family: Lato;
  font-weight: 300;
  font-size: 3.6rem; }

p {
  font-family: Lato;
  font-weight: 300;
  font-size: 1.7rem; }

@font-face {
  font-family: 'Lato';
  src: url("Lato-Bold.woff2") format("woff2"), url("Lato-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal; }
@font-face {
  font-family: 'Lato';
  src: url("Lato-Light.woff2") format("woff2"), url("Lato-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal; }
@font-face {
  font-family: 'Lato';
  src: url("Lato-Regular.woff2") format("woff2"), url("Lato-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal; }
.footer-logo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000; }

.Site {
  display: flex;
  min-height: 100vh;
  flex-direction: column; }

.Site-content {
  flex: 1; }

.contact:link, .contact:visited, .contact:hover, .contact:active {
  text-decoration: none;
  color: #000; }

.author-logo {
  width: 30px;
  height: auto; }

.nav-row {
  margin-left: 0px;
  margin-right: 0px; }

.button_container {
  position: fixed;
  height: 22px;
  width: 30px;
  cursor: pointer;
  z-index: 100;
  -webkit-transition-transition: opacity .25s ease;
  -moz-transition-transition: opacity .25s ease;
  -o-transition-transition: opacity .25s ease;
  transition: opacity .25s ease; }
  .button_container:hover {
    opacity: 0.7; }
  .button_container.active .top {
    -webkit-transition-transform: translateY(11px) translateX(0) rotate(45deg);
    -moz-transition-transform: translateY(11px) translateX(0) rotate(45deg);
    -o-transition-transform: translateY(11px) translateX(0) rotate(45deg);
    transform: translateY(11px) translateX(0) rotate(45deg);
    background: #fff !important; }
  .button_container.active .middle {
    opacity: 0;
    background: #fff !important; }
  .button_container.active .bottom {
    -webkit-transition-transform: translateY(-11px) translateX(0) rotate(-45deg);
    -moz-transition-transform: translateY(-11px) translateX(0) rotate(-45deg);
    -o-transition-transform: translateY(-11px) translateX(0) rotate(-45deg);
    transform: translateY(-11px) translateX(0) rotate(-45deg);
    background: #fff !important; }
  .button_container span {
    background: #f4982c;
    border: none;
    height: 4px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .35s ease;
    cursor: pointer; }
    .button_container span:nth-of-type(2) {
      top: 11px; }
    .button_container span:nth-of-type(3) {
      top: 22px; }

.overlay {
  position: fixed;
  background-color: black;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s, height .35s;
  overflow: hidden; }
  .overlay.open {
    opacity: .95;
    visibility: visible;
    height: 100%; }
    .overlay.open li {
      animation: fadeInRight .5s ease forwards;
      animation-delay: .35s; }
      .overlay.open li:nth-of-type(2) {
        animation-delay: .4s; }
      .overlay.open li:nth-of-type(3) {
        animation-delay: .45s; }
      .overlay.open li:nth-of-type(4) {
        animation-delay: .50s; }
  .overlay nav {
    position: relative;
    height: 70%;
    top: 60%;
    transform: translateY(-50%);
    font-family: 'Lato', sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 3.6rem;
    line-height: 77px;
    text-align: center;
    text-transform: uppercase; }
  .overlay ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
    position: relative;
    height: 100%; }
    .overlay ul li {
      display: block;
      height: 15%;
      min-height: 50px;
      position: relative;
      opacity: 0; }
      .overlay ul li a {
        display: block;
        position: relative;
        color: #fff;
        text-decoration: none;
        overflow: hidden; }
        .overlay ul li a:hover:after, .overlay ul li a:focus:after, .overlay ul li a:active:after {
          width: 100%; }
        .overlay ul li a:after {
          content: '';
          position: absolute;
          bottom: 0;
          left: 50%;
          width: 0%;
          transform: translateX(-50%);
          height: 3px;
          background: #f4982c;
          transition: .35s; }

@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%; }
  100% {
    opacity: 1;
    left: 0; } }
.btn-group a {
  font-family: Lato;
  font-weight: normal;
  font-size: 1.3rem;
  color: #000; }

.btn-group .btn {
  padding: .8rem 1.2rem; }
.btn-group .btn.focus, .btn-group .btn:focus {
  box-shadow: none; }
.btn-group .btn.active {
  border: 1px solid #000;
  border-radius: 0;
  color: #000;
  background-color: #fff;
  margin: 1px;
  text-decoration: none;
  pointer-events: none; }

.arrow {
  text-align: center;
  margin: 8% 0;
  width: auto;
  height: 70px;
  margin-top: 0px;
  padding: 7px 16px; }

.bounce {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  -o-transition-animation: bounce 2s infinite;
  animation: bounce 2s infinite; }

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0); }
  40% {
    transform: translateY(-30px); }
  60% {
    transform: translateY(-15px); } }
.photo-effect {
  position: relative; }

.photo-effect img {
  width: 100%;
  vertical-align: top; }

.photo-effect:before {
  content: '';
  cursor: pointer;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 1;
  transition: all 0.5s;
  -webkit-transition: all 0.5s; }

.photo-effect:hover:before {
  opacity: 0; }

.photo-effect p {
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  padding-bottom: 2em;
  font-size: 3.0rem;
  width: 100%;
  height: 50%;
  color: #fff; }

.photo-effect:hover p {
  opacity: 0; }

html {
  height: 100%;
  font-size: 10px;
  font-family: Lato; }

body {
  height: 100%;
  width: 100%; }

section {
  min-height: 100vh;
  overflow-y: hidden; }

.container-lg {
  max-width: 1400px; }

#map {
  height: 85vh; }

.col-md-12.logo {
  padding: 25px;
  width: 96%; }

.col-md-12.logo img {
  width: 80%;
  max-width: 800px;
  min-width: 100px;
  padding-top: 30px; }

.logo {
  width: 60%;
  max-width: 1100px;
  margin-top: 100px; }

.logo-space {
  padding-top: 30px; }

.logo-space-title {
  font-size: 2.8rem; }

.contact-center-left {
  margin-left: 20px; }

.btn-group {
  top: 2%; }

.bg-color {
  background-color: #f4982c; }

.uber-uns-color {
  background-color: #000; }

.icons-text-size {
  font-size: 1.5rem; }

.kaufen {
  margin: auto;
  text-align: center; }

.kaufen a {
  margin-right: 0px; }

.kaufen a.btn {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0px;
  font-size: 1.6rem;
  background: transparent;
  width: 75%;
  height: 35px;
  padding: 3px 0 0 0;
  border: solid #fff 1px;
  text-decoration: none;
  color: #fff;
  line-height: 25px;
  -webkit-transition-duration: 0.6s;
  -moz-transition-duration: 0.6s;
  -o-transition-duration: 0.6s;
  transition-duration: 0.6s; }

.kaufen a.btn:hover {
  color: #000;
  background-color: #fff;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s; }

.btn-fotos p {
  color: #fff; }

.btn-fotos a.btn {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0px;
  color: #000;
  font-size: 1.6rem;
  background: transparent;
  width: 50%;
  height: 50px;
  padding: 10px 0 0 0;
  border: solid #fff 1px;
  text-decoration: none;
  -webkit-transition-duration: 0.7s;
  -moz-transition-duration: 0.7s;
  -o-transition-duration: 0.7s;
  transition-duration: 0.7s; }
  .btn-fotos a.btn:hover {
    background-color: #fff;
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    transition-duration: 0.2s; }
    .btn-fotos a.btn:hover p {
      color: #000; }

a {
  text-decoration: none;
  outline: none !important; }
  a:hover {
    text-decoration: none;
    outline: none !important; }
  a:focus {
    text-decoration: none;
    outline: none !important; }
  a:active {
    text-decoration: none;
    outline: none !important; }

.uber-uns-border-effect {
  width: 140px;
  text-align: center;
  margin: auto;
  margin-top: 200px; }
  .uber-uns-border-effect::after {
    content: "";
    height: 1px;
    background: #fff;
    display: block;
    margin-right: -52%;
    margin-left: 52%;
    margin-top: 20px;
    margin-bottom: -20px; }
  .uber-uns-border-effect::before {
    content: "";
    height: 1px;
    background: #fff;
    display: block;
    margin-right: 35%;
    margin-left: -35%;
    margin-top: -20px;
    margin-bottom: 20px; }

h3 {
  color: #fff; }

.box-size {
  padding: 32px; }

.mobile-pull {
  padding-left: 50px; }

/* MEDIA QUERIES
/* --------------------------------------- */
@media all and (max-width: 1200px) {
  html {
    font-size: 8px !important; }

  .logo {
    width: 85%; }

  .small-car-icons {
    text-align: center !important; }

  #auto-kaufen {
    padding-top: 10rem !important; } }
@media (min-width: 992px) and (max-width: 1199.98px) {
  .btn-fotos a.btn {
    width: 50%;
    height: 28px;
    padding: 5px 0 0 0; }

  .mobile-pull {
    padding-left: 50px; } }
@media (min-width: 768px) and (max-width: 991.98px) {
  html {
    font-size: 6px !important; }

  .logo {
    width: 95%; }

  .col-md-12.logo img {
    width: 95%; }

  .mobile-center {
    padding: 0 4% 0 4%;
    text-align: center;
    margin: 0px; }

  h1, p {
    text-align: center;
    margin: 0px; }

  .mobile-pull {
    padding-left: 50px; }

  .uber-uns-border-effect {
    width: 110px;
    text-align: center;
    margin: auto;
    margin-top: 200px; }
    .uber-uns-border-effect::after {
      content: "";
      height: 1px;
      background: #fff;
      display: block;
      margin-right: -52%;
      margin-left: 52%;
      margin-top: 20px;
      margin-bottom: -20px; }
    .uber-uns-border-effect::before {
      content: "";
      height: 1px;
      background: #fff;
      display: block;
      margin-right: 35%;
      margin-left: -35%;
      margin-top: -20px;
      margin-bottom: 20px; }

  .kaufen a.btn {
    width: 75%;
    height: 25px;
    margin: auto;
    padding: 0 0 3px 0; }

  .btn-fotos a.btn {
    width: 45%;
    height: 28px;
    padding: 5px 0 0 0; } }
.text-just-mobile {
  text-align: justify; }

.container-lg {
  padding: 40px; }

.mobile-line {
  border-top: 2px solid #fff;
  width: 100%;
  padding-top: 30px; }

.mobile-only .btn-group div a {
  font-family: Lato;
  font-weight: normal;
  font-size: 1.3rem;
  color: #fff; }
.mobile-only .btn-group {
  padding: .8rem 1.2rem;
  padding-top: 30px; }
  .mobile-only .btn-group .btn {
    padding: .8rem 1.2rem;
    font-size: 3.6rem;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: normal;
    font-style: normal; }
  .mobile-only .btn-group .btn.focus, .mobile-only .btn-group .btn:focus {
    box-shadow: none; }
  .mobile-only .btn-group .btn.active {
    border: 1px solid #fff;
    border-radius: 0;
    color: #fff;
    background-color: black;
    margin: 1px;
    text-decoration: none;
    pointer-events: none; }

@media (min-width: 576px) and (max-width: 767.98px) {
  .kaufen a.btn {
    width: 65%;
    height: 25px;
    margin: auto;
    padding: 0 0 3px 0; }

  .btn-fotos a.btn {
    width: 38%;
    height: 28px;
    padding: 5px 0 0 0; }

  .text-just-mobile {
    text-align: justify !important; }

  .mobile-line {
    border-top: 2px solid #fff;
    width: 100%;
    padding-top: 30px; }

  .uber-uns-border-effect {
    width: 110px;
    text-align: center;
    margin: auto;
    margin-top: 200px; }
    .uber-uns-border-effect::after {
      content: "";
      height: 1px;
      background: #fff;
      display: block;
      margin-right: -52%;
      margin-left: 52%;
      margin-top: 20px;
      margin-bottom: -20px; }
    .uber-uns-border-effect::before {
      content: "";
      height: 1px;
      background: #fff;
      display: block;
      margin-right: 35%;
      margin-left: -35%;
      margin-top: -20px;
      margin-bottom: 20px; }

  .mobile-pull {
    padding-left: 50px; }

  .mobile-center {
    padding: 0 4% 0 4%;
    text-align: center;
    margin: 0px; }

  .just-mobile {
    display: -webkit-flex;
    /* Safari */
    -webkit-justify-content: start;
    /* Safari 6.1+ */
    display: flex;
    justify-content: start; } }
@media (max-width: 575.98px) {
  .kaufen a.btn {
    width: 60%;
    height: 25px;
    margin: auto;
    padding: 0 0 3px 0; }

  .btn-fotos a.btn {
    width: 55%;
    height: 35px;
    padding: 5px 0 0 0; }

  .text-just-mobile {
    text-align: justify !important; }

  h1, p {
    text-align: center;
    margin: 0px; }

  .mobile-pull {
    padding-left: 80px; }

  .mobile-center {
    padding: 0 4% 0 4%;
    text-align: center;
    margin: 0px; }

  .mobile-line {
    border-top: 2px solid #fff;
    width: 100%;
    padding-top: 30px; }

  .just-mobile {
    display: -webkit-flex;
    /* Safari */
    -webkit-justify-content: start;
    /* Safari 6.1+ */
    display: flex;
    justify-content: start; }

  .uber-uns-border-effect {
    width: 108px;
    text-align: start;
    margin: auto;
    margin-top: 200px; }
    .uber-uns-border-effect::after {
      content: "";
      height: 1px;
      background: #fff;
      display: block;
      margin-right: -52%;
      margin-left: 52%;
      margin-top: 20px;
      margin-bottom: -20px; }
    .uber-uns-border-effect::before {
      content: "";
      height: 1px;
      background: #fff;
      display: block;
      margin-right: 35%;
      margin-left: -35%;
      margin-top: -20px;
      margin-bottom: 20px; } }

/*# sourceMappingURL=style.css.map */
