.hero-header {
  position: relative;
  overflow: hidden;
  padding: 70px 0;
}
@media (max-width: 768px) {
  .hero-header {
    padding: 30px 0;
  }
}
.hero-header .item {
  margin-bottom: 10px;
}
.hero-header .mb-30 {
  margin-bottom: 30px;
}
.hero-header .mb-20 {
  margin-bottom: 20px;
}
.hero-header .mt-30 {
  margin-top: 30px;
}
.hero-header .bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.hero-header .bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .hero-header .bg-image img {
    object-position: left center;
  }
}
.hero-header .container-inner {
  max-width: 600px;
}
.hero-header .container-inner h1 {
  max-width: 430px;
}
@media (max-width: 992px) {
  .hero-header .container-inner {
    max-width: none;
  }
}
@media (min-width: 768px) {
  .hero-header .container-inner h1 {
    max-width: 500px;
  }
}
@media (min-width: 1135px) {
  .hero-header .container-inner h1 {
    max-width: none;
  }
}
.hero-header .container-inner #reset-form, .hero-header .container-inner #recovery-confirm-form {
  opacity: 0;
  visibility: hidden;
}
.hero-header .container-inner #reset-form.fadeIn, .hero-header .container-inner #recovery-confirm-form.fadeIn {
  opacity: 1;
  visibility: visible;
  animation: fadeinAnimation ease-in-out 0.2s;
}
.hero-header .signin-with {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 10px;
  margin-bottom: 20px;
}
.hero-header .signin-with li {
  transition: 0.3s box-shadow ease;
}
.hero-header .signin-with li a {
  background-color: #FFFFFF;
  border-radius: 2px;
  padding: 11px 20px;
  display: flex;
  align-items: center;
  color: #0E0E0E;
}
.hero-header .signin-with li img {
  width: 28px;
  height: 28px;
  margin-right: 22px;
}
.hero-header .signin-with li:hover {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}
.hero-header .button-link {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  margin-top: 20px;
}
.hero-header .button-link button {
  margin-right: 40px;
}
@media (max-width: 576px) {
  .hero-header .button-link {
    flex-direction: column;
  }
  .hero-header .button-link button {
    margin: 0;
    margin-bottom: 20px;
  }
}
.hero-header .text-link {
  display: flex;
  grid-gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .hero-header .text-link {
    justify-content: center;
  }
}
.hero-header .button-button {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .hero-header .button-button {
    grid-gap: 30px;
  }
}
@media (max-width: 576px) {
  .hero-header .button-button {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  .hero-header .button-button .button {
    justify-self: center;
  }
}
.hero-header .hinweis {
  margin-top: 10px;
}
.hero-header.logged-in {
  min-height: 440px;
  display: flex;
}
@media (max-width: 768px) {
  .hero-header.logged-in {
    min-height: initial;
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
  }
  .hero-header.logged-in .bg-image {
    position: relative;
    order: 1;
    width: calc(100% + 50vw);
  }
  .hero-header.logged-in .bg-image:after {
    content: "";
    top: 0;
    position: absolute;
    left: 0;
    background-image: linear-gradient(to top, transparent 90%, #FFFFFF);
    z-index: 1;
    width: 100%;
    height: 100%;
  }
  .hero-header.logged-in .bg-image img {
    object-position: calc(100% - 50vw);
  }
}
@keyframes fadeinAnimation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.hero-header.Register, .hero-header.RegisterConfirmation, .hero-header.Recovery, .hero-header.RecoveryConfirm, .hero-header.Reset, .hero-header.CheckoutDankePage, .hero-header.DeleteDanke {
  min-height: calc(100vh - (60px + 138px));
}
.hero-header.MyVehicles, .hero-header.VehicleDetail, .hero-header.PersonalData, .hero-header.ServiceFlatRate, .hero-header.ServiceVoucher, .hero-header.ResetPassword {
  height: 440px;
}
.hero-header.MyVehicles .container, .hero-header.VehicleDetail .container, .hero-header.PersonalData .container, .hero-header.ServiceFlatRate .container, .hero-header.ServiceVoucher .container, .hero-header.ResetPassword .container {
  height: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .hero-header.MyVehicles, .hero-header.VehicleDetail, .hero-header.PersonalData, .hero-header.ServiceFlatRate, .hero-header.ServiceVoucher, .hero-header.ResetPassword {
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
    height: auto;
  }
  .hero-header.MyVehicles .container, .hero-header.VehicleDetail .container, .hero-header.PersonalData .container, .hero-header.ServiceFlatRate .container, .hero-header.ServiceVoucher .container, .hero-header.ResetPassword .container {
    display: block;
    height: auto;
  }
  .hero-header.MyVehicles .bg-image, .hero-header.VehicleDetail .bg-image, .hero-header.PersonalData .bg-image, .hero-header.ServiceFlatRate .bg-image, .hero-header.ServiceVoucher .bg-image, .hero-header.ResetPassword .bg-image {
    position: relative;
    order: 1;
    width: calc(100% + 50vw);
  }
  .hero-header.MyVehicles .bg-image img, .hero-header.VehicleDetail .bg-image img, .hero-header.PersonalData .bg-image img, .hero-header.ServiceFlatRate .bg-image img, .hero-header.ServiceVoucher .bg-image img, .hero-header.ResetPassword .bg-image img {
    object-position: calc(100% - 50vw);
  }
}
@media (max-width: 768px) {
  .hero-header.withBackground {
    padding-top: 30px;
    padding-bottom: 0px;
    background-color: #FFFFFF;
  }
  .hero-header.withBackground .bg-image {
    z-index: 0;
  }
}