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

.wrap {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 1336px) {
  .wrap {
    padding: 0 20px;
  }
}

.flex {
  display: flex;
  flex-wrap: wrap;
}
.flex.row {
  flex-direction: row;
}
.flex.column {
  flex-direction: column;
}
.flex.align-center {
  align-items: center;
}
.flex .item.four {
  width: 33.333%;
}
.flex .item.five {
  width: 41.666%;
}
.flex .item.seven {
  width: 58.333%;
}
.flex .item.eight {
  width: 66.666%;
}
.flex .item.half {
  width: 50%;
}

body {
  background-color: #f6f6f6;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1.75;
}

header {
  background-color: #ffffff;
  height: 80px;
  position: relative;
}
header .flex {
  justify-content: space-between;
}
header .logo {
  display: inline-block;
  height: 100%;
}
header .logo img {
  max-height: 100%;
}
header .hamburger {
  display: none;
}
@media (max-width: 745px) {
  header .hamburger {
    display: block;
  }
}
header nav {
  display: inline-block;
}
header nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  height: 100%;
}
header nav ul li {
  margin: 0 20px;
}
header nav ul li i {
  margin-right: 6px;
}
header nav ul li a {
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  color: #363636;
}
header nav ul li a:hover {
  cursor: pointer;
  color: #af3445;
}
@media (max-width: 745px) {
  header nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    justify-content: flex-end;
    align-items: center;
    background-color: white;
    z-index: 999;
    width: 100%;
    height: calc(100vh - 80px);
    border-top: 1px solid #eaeaea;
  }
  header nav.active {
    display: flex;
  }
  header nav ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  header nav ul li {
    margin: 10px 20px;
  }
}

.link {
  margin-bottom: 40px;
}
.link .button {
  display: inline-block;
  font-weight: 600;
  text-transform: uppercase;
  border: 2px solid white;
  padding: 10px 25px;
  transition: all 0.1s ease-in-out;
  color: white !important;
  text-decoration: none;
}
.link .button:hover {
  cursor: pointer;
  transform: scale(1.02);
}

.banner {
  position: relative;
  background-image: url("../img/audi.jpg");
  background-size: cover;
  background-position: center;
  min-height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner .content {
  position: relative;
  z-index: 2;
  color: white;
}
.banner .content h1 {
  font-family: "Staatliches", cursive;
  font-weight: 300;
}
.banner .content .buttons {
  width: 100%;
  margin: 40px 0;
  display: block;
  text-align: center;
}
.banner .content .buttons .button {
  display: inline-block;
  font-weight: 600;
  text-transform: uppercase;
  border: 2px solid white;
  padding: 10px 25px;
  margin: 0 10px;
  transition: all 0.1s ease-in-out;
  color: white !important;
  text-decoration: none;
}
.banner .content .buttons .button:hover {
  cursor: pointer;
  transform: scale(1.02);
}
@media (max-width: 645px) {
  .banner .content .buttons .button {
    margin-bottom: 20px !important;
  }
}
@media (max-width: 745px) {
  .banner .content {
    text-align: center;
  }
}
.banner::after {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  content: " ";
  background-color: black;
  height: 100%;
  width: 100%;
  opacity: 0.4;
}
@media (max-width: 745px) {
  .banner::after {
    opacity: 0.4;
  }
}

section.content {
  color: #373737;
  padding: 40px 0;
}
section.content .centerized {
  text-align: center;
}
section.content h1, section.content h2, section.content h3, section.content h4, section.content h5, section.content h6 {
  color: #af3445;
  font-weight: 600;
}
section.content h1 {
  font-size: 34px;
}
@media (max-width: 745px) {
  section.content .benefit-listing {
    width: 100% !important;
    border-right: none;
    padding-right: 0;
  }
}
section.content .benefits {
  margin: 15px 0;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
section.content .benefits .benefit {
  align-self: stretch;
  width: calc(50% - 15px);
  box-sizing: border-box;
  margin-bottom: 30px;
  background-color: white;
  border-radius: 6px;
  -webkit-box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.05);
  padding: 30px;
  border: 1px solid #ececec;
}
@media (max-width: 745px) {
  section.content .benefits .benefit {
    width: 100%;
  }
}
section.content .benefits .benefit .benefit-title {
  padding-bottom: 10px;
  border-bottom: 1px solid #eaeaea;
  display: flex;
  align-items: center;
}
section.content .benefits .benefit .icon {
  content: " ";
  margin-right: 20px;
  width: 45px;
  height: 45px;
  background-color: #171717;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}
section.content .benefits .benefit .icon.maintenance {
  mask-image: url(../img/icons/maintenance.svg);
  mask-size: 100%;
  -webkit-mask-image: url(../img/icons/maintenance.svg);
  -webkit-mask-size: 100%;
}
section.content .benefits .benefit .icon.tire {
  mask-image: url(../img/icons/tire.svg);
  mask-size: 100%;
  -webkit-mask-image: url(../img/icons/tire.svg);
  -webkit-mask-size: 100%;
}
section.content .benefits .benefit .icon.eco {
  mask-image: url(../img/icons/eco.svg);
  mask-size: 100%;
  -webkit-mask-image: url(../img/icons/eco.svg);
  -webkit-mask-size: 100%;
}
section.content .benefits .benefit .icon.service {
  mask-image: url(../img/icons/service.svg);
  mask-size: 100%;
  -webkit-mask-image: url(../img/icons/service.svg);
  -webkit-mask-size: 100%;
}
section.content .benefits .benefit h4 {
  font-size: 21px;
}
section.content .benefits .benefit p {
  padding-top: 15px;
}
section.content .service-image {
  background-image: url("../img/dat_ass.jpg");
  background-size: cover;
  height: 100%;
}
section.content .text-pd-right {
  padding-left: 40px;
}
@media (max-width: 745px) {
  section.content .text-pd-right {
    padding-left: 0;
    width: 100% !important;
  }
}
@media (max-width: 745px) {
  section.content {
    padding: 20px 0;
  }
}

.latest-cars {
  padding: 60px 0;
  background-color: #171717;
}
.latest-cars .button-holder {
  text-align: center;
}
.latest-cars .button-holder a {
  border: 2px solid white;
  padding: 15px 50px;
  display: inline-table;
  text-decoration: none;
  color: white;
  font-size: 24px;
  margin-top: 30px;
  border-radius: 100px;
}
.latest-cars h2 {
  color: white;
}
@media (max-width: 745px) {
  .latest-cars h2 {
    text-align: center;
  }
}
.latest-cars .latest-cars-listings {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 745px) {
  .latest-cars .latest-cars-listings {
    justify-content: center;
    align-items: center;
  }
}
.latest-cars .latest-cars-listings .car {
  text-decoration: none;
  width: calc(33.33% - 20px);
  margin: 15px 0;
  background-color: white;
  border-radius: 6px;
  overflow: hidden;
  -webkit-box-shadow: 2px 2px 15px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 2px 2px 15px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 15px 0px rgba(0, 0, 0, 0.1);
}
.latest-cars .latest-cars-listings .car .image {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  margin-bottom: 10px;
}
.latest-cars .latest-cars-listings .car .details {
  padding: 30px;
}
.latest-cars .latest-cars-listings .car .details .specs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.latest-cars .latest-cars-listings .car .details .specs .spec {
  color: #656565;
  margin: 5px 0;
}
.latest-cars .latest-cars-listings .car .details .specs .spec i {
  text-align: center;
  margin-right: 5px;
  min-width: 20px;
}
.latest-cars .latest-cars-listings .car p.date {
  font-size: 16px;
  color: #656565;
}
.latest-cars .latest-cars-listings .car h5 {
  margin: 5px 0;
  font-size: 18px;
  color: #af3445;
}
@media (max-width: 745px) {
  .latest-cars {
    width: 100% !important;
    padding-left: 0;
  }
}

footer {
  background-color: #141414;
  color: white;
  padding: 40px;
}
footer ul {
  list-style: none;
}
footer ul li {
  margin: 5px;
}
footer ul li i {
  width: 20px;
  text-align: center;
  margin-right: 5px;
}
footer a {
  color: white;
  text-decoration: none;
}
footer a:hover {
  cursor: pointer;
  text-decoration: underline;
}
@media (max-width: 645px) {
  footer .item {
    width: 100% !important;
    margin-bottom: 40px;
  }
}
@media (max-width: 745px) {
  footer {
    padding: 40px 0;
  }
}

.service-form {
  margin-top: 20px;
}
.service-form .sided-inputs {
  display: flex;
  justify-content: space-between;
}
.service-form input {
  display: inline-block;
  padding: 10px;
  border: none;
  border-radius: 6px;
  margin-bottom: 10px;
  border: 1px solid #c4c4c4;
  font-size: 14px;
  font-family: "Roboto Condensed", sans-serif;
  width: calc(50% - 5px);
}
.service-form textarea {
  padding: 10px;
  border: none;
  border-radius: 6px;
  margin-bottom: 10px;
  width: 100%;
  border: 1px solid #c4c4c4;
  font-size: 14px;
  font-family: "Roboto Condensed", sans-serif;
}
.service-form input[type=submit] {
  background-color: #af3445;
  color: white;
  border: 1px solid #72121f;
  width: 100%;
}

@media (max-width: 745px) {
  .no-tablet {
    display: none;
  }
}

@media (max-width: 1175px) {
  .latest-cars .latest-cars-listings .car {
    width: calc(50% - 15px);
  }
}
@media (max-width: 745px) {
  .latest-cars .latest-cars-listings .car {
    width: calc(100%);
    max-width: 460px;
  }
}
section.admin-logon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
section.admin-logon form {
  display: flex;
  flex-direction: column;
}
section.admin-logon form input {
  margin-bottom: 10px;
}
section.admin-logon form input[type=text], section.admin-logon form input[type=password] {
  font-size: 16px;
  padding: 0 7px;
}

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