.footer {
  background-color: #545744;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
  flex-direction: column;
  gap: 10px; }
  @media (max-width: 1359px) {
    .footer {
      padding: 50px 20px 175px !important; } }
  .footer > .links > a {
    text-decoration: none;
    color: #fff; }
    .footer > .links > a:hover {
      color: #AECA37; }
  .footer > .links > span {
    color: #AECA37; }

body {
  font-family: 'Montserrat';
  padding: 0;
  margin: 0;
  font-size: 18px; }

h1, h2 {
  margin-top: 0; }

.caption {
  font-style: italic;
  color: #AECA37; }

.contentframe {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center; }
  .contentframe.white-bg {
    background-color: #fff; }
  .contentframe.grey-bg {
    background-color: #efefef; }
  .contentframe.contact-picture {
    background-image: url("../img/backgrounds/contact.jpg");
    background-size: cover;
    background-position: center; }
  .contentframe.introframe {
    margin: 200px 0; }
  .contentframe.mainframe {
    padding: 100px 0; }
  .contentframe > .content {
    max-width: 1200px;
    width: 100%;
    margin: 0 25px;
    line-height: 1.5; }
    .contentframe > .content.column {
      display: inline-flex;
      flex-direction: column;
      justify-content: center;
      align-items: center; }

.contact-button-container {
  display: flex;
  gap: 25px;
  margin-top: 25px; }
  .contact-button-container > .contact-button {
    height: 90px;
    width: 90px;
    background-color: #AECA37;
    display: flex;
    justify-content: center;
    align-items: center; }
    .contact-button-container > .contact-button > img {
      width: 40px; }

/* Contact form styling */
.contact-form {
  padding: 25px;
  background: #fff;
  border: 1px solid #cfcfcf;
  max-width: 600px;
  margin: 40px auto;
  border-radius: 15px;
  box-shadow: 5px 5px 11px -6px #8d8d8d; }

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-size: 12px; }

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  box-sizing: border-box; }

.contact-form textarea {
  min-height: 150px; }

.contact-form button {
  background-color: #AECA37;
  border: none;
  padding: 12px 24px;
  color: #ffffff;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease; }

.contact-form button:hover {
  background-color: #95b322; }

.logo-container {
  padding: 10px 180px 10px 30px;
  width: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  z-index: 1;
  border-bottom: 1px solid #efefef;
  box-shadow: 5px 5px 11px -6px #8d8d8d;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box; }
  .logo-container > img {
    height: 100px; }

.info-box {
  display: flex;
  gap: 25px; }
  @media (max-width: 1000px) {
    .info-box {
      display: none; } }
  .info-box > .info-cont {
    display: flex;
    gap: 10px;
    align-items: center; }
    .info-box > .info-cont > img {
      height: 32px;
      width: 32px; }

.burger-navi-container {
  display: flex;
  position: fixed;
  top: 0;
  bottom: 0;
  right: calc(-700px + 200px);
  height: 100vh;
  width: 650px;
  transition: .5s;
  z-index: 2; }
  .burger-navi-container > .menu-background {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px; }
    .burger-navi-container > .menu-background > a {
      text-decoration: none;
      color: #fff;
      font-size: 36px;
      transition: .5s; }
      .burger-navi-container > .menu-background > a:hover {
        color: #545744; }
  .burger-navi-container.active {
    right: -51px; }
  .burger-navi-container > .wheel-background {
    height: 150px;
    width: 150px;
    margin-right: -1px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom left;
    background-image: url("../img/navi/navi-wheel-quarter.png"); }
  .burger-navi-container > .menu-background {
    height: 100vh;
    width: 410px;
    background-color: #AECA37;
    display: flex;
    align-items: flex-end;
    padding-right: 90px; }
    .burger-navi-container > .menu-background > a {
      text-decoration: none;
      color: #fff;
      font-weight: 700;
      font-size: 20px; }

a {
  color: #000; }

/* mobile */
@media (max-width: 1359px) {
  .mobile-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    z-index: 999; }
    .mobile-nav > .mobile-nav-sec1 {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 25px;
      padding: 0 25px;
      width: calc(100% - 50px);
      background-color: #545744;
      color: #fff;
      font-weight: 700;
      text-transform: uppercase; }
    .mobile-nav > .mobile-nav-sec2 {
      display: flex;
      background-color: #fff; }
      .mobile-nav > .mobile-nav-sec2 > .mobile-nav-btn {
        width: calc(100% / 3);
        height: 75px;
        display: flex;
        justify-content: center;
        align-items: center; }
        .mobile-nav > .mobile-nav-sec2 > .mobile-nav-btn > img {
          height: 45px;
          width: 45px; }
        .mobile-nav > .mobile-nav-sec2 > .mobile-nav-btn.middle {
          border-left: 1px solid #8d8d8d;
          border-right: 1px solid #8d8d8d; } }
@media (min-width: 1360px) {
  .mobile-nav {
    position: fixed;
    width: 75px;
    display: flex;
    flex-direction: column;
    top: calc(50% - 125px);
    left: -1px; }
    .mobile-nav > .mobile-nav-sec1 {
      display: none; }
    .mobile-nav > .mobile-nav-sec2 {
      display: flex;
      flex-direction: column; }
      .mobile-nav > .mobile-nav-sec2 > .mobile-nav-btn {
        height: calc(100% / 3);
        height: 75px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: .5s;
        cursor: pointer;
        border: 1px solid #cfcfcf;
        margin-bottom: 10px;
        background-color: #ffffff;
        border-radius: 0 15px 15px 0;
        box-shadow: 5px 5px 11px -6px #8d8d8d; }
        .mobile-nav > .mobile-nav-sec2 > .mobile-nav-btn:hover {
          background-color: #d7d7d7; }
        .mobile-nav > .mobile-nav-sec2 > .mobile-nav-btn > img {
          height: 35px;
          width: 35px; } }
/* header */
.header {
  position: fixed;
  z-index: 3;
  top: 0;
  right: 0; }

.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background-color: #fff; }

.header li a {
  display: block;
  padding: 20px 20px;
  border-right: 1px solid #f4f4f4;
  text-decoration: none; }

.header li a:hover,
.header .menu-btn:hover {
  background-color: #f4f4f4; }

.header .logo {
  display: block;
  float: left;
  font-size: 2em;
  padding: 10px 20px;
  text-decoration: none; }

/* menu */
.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out; }

/* menu icon */
.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 55px 35px;
  position: relative;
  user-select: none; }

.header .menu-icon .navicon {
  background: #fff;
  display: block;
  height: 3px;
  position: relative;
  transition: background .2s ease-out;
  width: 40px; }

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: #fff;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%; }

.header .menu-icon .navicon:before {
  top: 12.5px; }

.header .menu-icon .navicon:after {
  top: -12.5px; }

/* menu btn */
.header .menu-btn {
  display: none; }

.header .menu-btn:checked ~ .menu .burger-navi-container {
  right: 0; }

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent; }

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg); }

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg); }

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0; }

/* montserrat-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/montserrat-v29-latin-regular.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ }
/* montserrat-italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/montserrat-v29-latin-italic.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ }
/* montserrat-600 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/montserrat-v29-latin-600.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ }
/* montserrat-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/montserrat-v29-latin-700.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ }
/* montserrat-800 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/montserrat-v29-latin-800.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ }
/* montserrat-900 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/montserrat-v29-latin-900.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ }
.intro {
  width: 100%;
  background-size: cover;
  background-position: center;
  margin-top: 120px; }
  .intro.startseite {
    background-image: url("../img/backgrounds/lkw-reifen.jpg"); }
  .intro.reifenservice {
    background-image: url("../img/backgrounds/reifenservice.jpg"); }
  .intro.pannenservice {
    background-image: url("../img/backgrounds/pannenservice.jpg"); }
  .intro.balmservice {
    background-image: url("../img/backgrounds/balmservice.jpg"); }
  .intro.scheibenservice {
    background-image: url("../img/backgrounds/scheibenservice.jpg"); }

.int-1, .int-2, .int-3 {
  text-transform: uppercase;
  font-size: 3rem;
  font-weight: 800;
  padding: 10px;
  display: inline-flex;
  text-align: center; }
  @media (max-width: 980px) {
    .int-1, .int-2, .int-3 {
      font-size: 32px; } }

.int-1 {
  background-color: #545744;
  color: #fff; }

.int-2 {
  background-color: #AECA37;
  color: #fff; }

.int-3 {
  background: #fff;
  color: #AECA37;
  align-items: center;
  margin-left: 150px;
  transform: rotate(-3deg); }
  @media (max-width: 980px) {
    .int-3 {
      margin-left: 0; } }
  .int-3 > img {
    height: 84px;
    margin-right: 15px; }
    @media (max-width: 980px) {
      .int-3 > img {
        height: 32px; } }
