* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  margin: auto;
  max-width: 1320px;
  font-family: "Open Sans";
  scroll-behavior: smooth;
}

h1 {
  color: white;
  font-family: "Open Sans";
  font-weight: 700;
  font-size: 60px;
  text-align: center;
  padding-top: 100px;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.8);
}
@media screen and (max-width: 1200px) {
  h1 {
    font-size: 48px;
  }
}
@media screen and (max-width: 600px) {
  h1 {
    font-size: 36px;
    padding: 20px 5px 0px 5px;
  }
}

h2 {
  text-align: center;
  color: #30333f;
  font-weight: 400;
  font-size: 42px;
}

h3 {
  text-align: center;
  color: #30333f;
  font-weight: 400;
  font-size: 24px;
}

.background {
  height: 650px;
  position: relative;
  top: -50px;
  z-index: 1;
  width: 100%;
}

@media screen and (max-width: 1200px) {
  header {
    position: sticky;
    top: 0;
    z-index: 99;
  }
}

.header_data {
  display: flex;
  padding: 10px 100px;
  justify-content: flex-end;
  background-color: #30333f;
}
@media screen and (max-width: 1200px) {
  .header_data {
    padding: 10px 20px;
    justify-content: space-between;
  }
}
@media screen and (max-width: 600px) {
  .header_data {
    display: none;
  }
}
.header_data .header_contact,
.header_data .header_home,
.header_data .header_time {
  display: flex;
  color: white;
  font-weight: 300;
  font-size: 12px;
  margin-left: 50px;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .header_data .header_contact,
  .header_data .header_home,
  .header_data .header_time {
    margin-left: 0px;
  }
}
.header_data .header_contact img,
.header_data .header_home img,
.header_data .header_time img {
  width: 15px;
}
.header_data .header_contact div,
.header_data .header_home div,
.header_data .header_time div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 10px;
}
.header_data .header_contact p,
.header_data .header_home p,
.header_data .header_time p {
  font-size: 14px;
}

.header_content {
  background-color: rgb(235, 235, 235);
  display: flex;
  padding: 0px 100px;
}
@media screen and (max-width: 1200px) {
  .header_content {
    padding: 0px 20px;
  }
}
.header_content img {
  width: 300px;
  padding: 20px 0px;
}
.header_content nav {
  width: 100%;
}
.header_content nav .nav_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .header_content nav .nav_content {
    display: none;
  }
}
.header_content nav .nav_content .navbar {
  display: flex;
  justify-content: right;
}
.header_content nav .nav_content .navbar li {
  list-style: none;
  padding-left: 70px;
}
.header_content nav .nav_content .navbar li a {
  text-decoration: none;
  color: #30323f;
  font-size: 24px;
}
.header_content nav .nav_content .navbar li:nth-child(-n+1) {
  padding-left: 0px;
}
.header_content nav .navbar_scroll {
  display: flex;
  position: fixed;
  top: -150px;
  left: 0;
  justify-content: space-between;
  width: 100%;
  padding: 0px 100px;
  background-color: rgb(235, 235, 235);
  z-index: 99;
  align-items: center;
  -webkit-box-shadow: 0px 10px 15px -10px #000000;
  box-shadow: 0px 10px 15px -10px #000000;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
@media screen and (max-width: 1200px) {
  .header_content nav .navbar_scroll {
    display: none;
  }
}
.header_content nav .navbar_scroll img {
  width: 100px;
  padding: 10px 0px;
}
.header_content nav .navbar_scroll .navbar {
  display: flex;
  justify-content: right;
}
.header_content nav .navbar_scroll .navbar li {
  list-style: none;
  padding-left: 70px;
}
.header_content nav .navbar_scroll .navbar li a {
  text-decoration: none;
  color: #30323f;
  font-size: 18px;
}
.header_content nav .navbar_scroll .navbar li:nth-child(-n+1) {
  padding-left: 0px;
}
.header_content nav .navbar_mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 1200px) {
  .header_content nav .navbar_mobile {
    display: none;
  }
}
.header_content nav .navbar_mobile img {
  width: 100px;
}
.header_content nav .navbar_mobile .open_nav svg {
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.header_content nav .sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: #30333f;
  overflow-x: hidden;
  padding-top: 60px;
  transition: 0.5s;
  white-space: nowrap;
}
.header_content nav .sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: white;
  display: block;
  transition: 0.3s;
}
.header_content nav .sidenav .close_nav {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

.to_top {
  position: fixed;
  bottom: 50px;
  right: -100px;
  width: 60px;
  z-index: 99;
  background-color: rgba(46, 46, 46, 0.3);
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.to_top:hover {
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
}

.header_img {
  background-image: url(../img/header_1920x.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  height: 100%;
  width: 100%;
  margin: auto;
  box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1200px) {
  .header_img {
    background-image: url(../img/header_1200x.jpg);
  }
}
@media screen and (min-width: 600px) {
  .header_img {
    background-image: url(../img/header_800x.jpg);
  }
}
.header_img p {
  color: white;
  font-family: "Open Sans";
  font-weight: 400;
  font-size: 24px;
  text-align: center;
  padding-top: 50px;
  text-shadow: 0px 0px 10px rgb(0, 0, 0);
}
@media screen and (min-width: 600px) {
  .header_img p {
    font-size: 16px;
  }
}
.header_img a {
  margin: 50px auto;
  text-align: center;
  width: 250px;
  color: #30333f;
  text-decoration: none;
  font-size: 24px;
  background-color: white;
  padding: 10px 15px;
  border-radius: 10px 5px;
  -webkit-border-radius: 10px 5px;
  -moz-border-radius: 10px 5px;
  -ms-border-radius: 10px 5px;
  -o-border-radius: 10px 5px;
}

.aboutus_content {
  display: flex;
  justify-content: space-between;
  align-content: center;
  padding: 100px 100px;
  z-index: 10;
}
@media screen and (max-width: 1020px) {
  .aboutus_content {
    flex-direction: column;
    padding: 50px 50px;
  }
}
.aboutus_content h2 {
  text-align: left;
}
.aboutus_content div:first-child {
  margin-right: 25px;
  width: 50%;
}
@media screen and (max-width: 1200px) {
  .aboutus_content div:first-child {
    width: 100%;
    padding-bottom: 20px;
  }
}
.aboutus_content div:last-child {
  margin-left: 25px;
  width: 50%;
}
@media screen and (max-width: 1200px) {
  .aboutus_content div:last-child {
    width: 100%;
    margin-left: 0px;
  }
}
.aboutus_content div:last-child p {
  font-size: 18px;
  line-height: 25px;
}
.aboutus_content .underline {
  margin-bottom: 25px;
}
.aboutus_content .aboutus_img img {
  width: 100%;
}

.services {
  padding: 100px 0px;
  background-color: rgb(235, 235, 235);
}
.services .underline {
  margin: 10px auto;
  display: flex;
}

.service_content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr auto;
  grid-gap: 30px;
  margin: 50px 100px 0px 100px;
  justify-content: center;
  justify-items: center;
}
@media screen and (max-width: 600px) {
  .service_content {
    grid-template-columns: 1fr;
    margin: 50px 5px 0px 5px;
  }
}

.service {
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
  transition: ease-in-out 0.5s;
  -webkit-transition: ease-in-out 0.5s;
  -moz-transition: ease-in-out 0.5s;
  -ms-transition: ease-in-out 0.5s;
  -o-transition: ease-in-out 0.5s;
}
.service img:first-child {
  height: 75px;
  margin: 10px auto 25px auto;
  z-index: 1;
  opacity: 100%;
  transition: ease-in-out 0.5s;
  -webkit-transition: ease-in-out 0.5s;
  -moz-transition: ease-in-out 0.5s;
  -ms-transition: ease-in-out 0.5s;
  -o-transition: ease-in-out 0.5s;
}
.service img:nth-child(2) {
  width: 50px;
  position: absolute;
  top: 20px;
  left: 50%;
  margin-left: -25px;
  opacity: 0;
  transition: ease-in-out 0.5s;
  -webkit-transition: ease-in-out 0.5s;
  -moz-transition: ease-in-out 0.5s;
  -ms-transition: ease-in-out 0.5s;
  -o-transition: ease-in-out 0.5s;
}
.service svg {
  width: 50px;
  height: 50px;
  fill: #30333f;
  position: absolute;
  top: 0px;
  right: 20px;
  display: none;
  cursor: pointer;
}
.service .service_desc {
  background-color: rgba(0, 0, 0, 0.04);
  padding: 20px;
  margin: 20px;
  display: none;
}
.service .service_desc p {
  line-height: 25px;
  font-size: 18px;
}
.service .service_desc ul {
  padding: 10px 20px;
}
.service .service_desc ul li {
  line-height: 25px;
  font-size: 18px;
}
.service .service_desc h4 {
  margin-bottom: 10px;
}

.cl_hover:hover {
  transition: ease-in-out 0.5s;
  -webkit-transition: ease-in-out 0.5s;
  -moz-transition: ease-in-out 0.5s;
  -ms-transition: ease-in-out 0.5s;
  -o-transition: ease-in-out 0.5s;
}
.cl_hover:hover img:first-child {
  opacity: 0;
}
.cl_hover:hover img:nth-child(2) {
  opacity: 1;
}

.info_strip {
  background-image: url(../img/car-mechanic-and-customer-shaking-hands.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 200px;
  color: white;
  display: flex;
  flex-direction: column;
  z-index: 2;
}
@media screen and (min-width: 1200px) {
  .info_strip {
    background-image: url(../img/car-mechanic-and-customer-shaking-hands_1200x.jpg);
  }
}
@media screen and (min-width: 600px) {
  .info_strip {
    background-image: url(../img/car-mechanic-and-customer-shaking-hands_700x.jpg);
  }
}
.info_strip h4 {
  margin: auto;
  text-align: center;
  font-weight: 500;
  z-index: 98;
  font-size: 24px;
  text-shadow: 0px 0px 10px rgb(0, 0, 0);
}
.info_strip div {
  margin: auto;
  display: flex;
  align-items: center;
}
.info_strip div p {
  font-size: 24px;
  text-shadow: 0px 0px 10px rgb(0, 0, 0);
}
.info_strip div img {
  width: 40px;
  margin-right: 10px;
  text-shadow: 0px 0px 10px rgb(0, 0, 0);
}

.contact {
  padding: 100px 0px;
}
.contact .underline {
  margin: 10px auto;
  display: flex;
}

.contact_content {
  display: flex;
}

footer {
  background-color: #30333f;
}
footer .footer_content {
  display: flex;
  justify-content: space-between;
  height: 100%;
  align-items: center;
  padding: 50px 100px 20px 100px;
}
@media screen and (max-width: 1200px) {
  footer .footer_content {
    padding: 50px 50px 20px 50px;
  }
}
@media screen and (max-width: 600px) {
  footer .footer_content {
    flex-direction: column;
    padding: 20px 5px;
  }
  footer .footer_content div {
    padding: 20px 50px;
  }
}
footer .footer_content h3 {
  color: white;
  text-align: left;
  padding-bottom: 5px;
}
footer .footer_content svg {
  display: flex;
}
footer .footer_content li {
  color: white;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 400;
  list-style: none;
  line-height: 25px;
}
footer .footer_content .footer_text {
  display: flex;
  justify-content: space-evenly;
  padding: 0px;
  width: 100%;
}
@media screen and (min-width: 1200px) {
  footer .footer_content .footer_text {
    justify-content: flex-start;
  }
}
@media screen and (min-width: 1200px) {
  footer .footer_content .footer_text div:first-child {
    margin-right: 220px;
  }
}
footer .footer_content .footer_text div {
  padding: 20px;
}
@media screen and (max-width: 400px) {
  footer .footer_content .footer_text {
    flex-direction: column;
  }
}
footer .footer_content .footer_adress ul {
  padding-top: 10px;
}
footer .footer_content .footer_adress ul a {
  color: white;
}
footer .footer_content .footer_adress ul img {
  width: 15px;
  margin-right: 5px;
}
footer .footer_content .footer_open ul {
  padding-top: 10px;
}
footer .footer_content .map {
  width: 400px;
  height: 200px;
  border: 1px solid white;
  z-index: 98;
}
@media screen and (max-width: 1200px) {
  footer .footer_content .map {
    width: 300px;
  }
}
@media screen and (max-width: 600px) {
  footer .footer_content .map {
    width: 80%;
  }
}
footer .footer_links {
  display: flex;
  margin: auto;
}
footer .footer_links ul {
  display: flex;
  margin: auto;
}
footer .footer_links ul li {
  list-style-type: none;
  color: white;
  margin: 10px;
}
@media screen and (max-width: 600px) {
  footer .footer_links ul li {
    margin: 2px;
  }
}
footer .footer_links ul li a {
  text-decoration: none;
  color: white;
}
footer .footer_copy {
  display: flex;
  justify-content: space-evenly;
  padding: 20px 100px 10px 100px;
  font-size: 11px;
}
@media screen and (max-width: 1200px) {
  footer .footer_copy {
    padding: 20px 50px 10px 50px;
  }
}
@media screen and (max-width: 600px) {
  footer .footer_copy {
    flex-direction: column;
  }
}
footer .footer_copy div {
  color: #818181;
}
footer .footer_copy p,
footer .footer_copy a {
  color: #818181;
}

.data_prot {
  padding: 50px 100px;
}
.data_prot h1,
.data_prot h2,
.data_prot h3 {
  color: black;
  text-shadow: none;
  padding: 20px;
}

.impressum h1 {
  color: black;
  text-shadow: none;
  padding: 20px 100px;
  font-size: 28px;
  text-align: left;
}
.impressum .imp_data {
  justify-content: space-evenly;
  align-items: center;
}
.impressum .imp_data ul {
  width: 500px;
  padding: 30px 100px;
  list-style: none;
}
.impressum .imp_data ul li {
  line-height: 25px;
}