.hero {
  background: var(--headercolor);
  padding: 48px 20px;
  overflow: hidden;
  max-width: 1200px;
  margin: auto;
  border-radius: 9px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
  flex-direction: row;
}

.hero-title {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 48px;
  line-height: 130%;
  color: var(--fontcolor);
}

.hero-lead {
  font-family: Montserrat;
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  color: var(--fontcolor);
}

.hero-image {
  order: 2;
  width: 520px;
  height: 380px;
  border-top-left-radius: 999px;
  border-bottom-left-radius: 999px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  transform: translateX(48px);
  justify-self: end;
  background: #e6e6e6;
  flex-shrink: 0;
}

.hero-image img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-info {
  order: 1;
  gap: 20px;
  display: flex;
  flex-direction: column;
  padding-left: 30px;
}

@media (max-width: 991.98px) {
  .hero {
    background: var(--headercolor);
    padding: 48px 20px;
    overflow: hidden;
    border-radius: 4px;
  }
}

@media (max-width: 991.98px) {
  .hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: center;
    flex-direction: column;
  }
}

@media (max-width: 991.98px) {
  .hero-info {
    order: 2;
    gap: 20px;
    display: flex;
    flex-direction: column;
    padding-left: 0px;
  }
}

@media (max-width: 991.98px) {
  .hero-image {
    order: 1;
    width: 100%;
    height: 300px;
    border-top-left-radius: 999px;
    border-bottom-left-radius: 999px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
    transform: translateX(48px);
    justify-self: end;
    background: #e6e6e6;
    flex-shrink: 0;
  }
}

@media (max-width: 991.98px) {
  .hero-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-position: 50% 75%;
  }
}

@media (max-width: 991.98px) {
  .hero-title {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 30px;
    line-height: 130%;
    color: var(--fontcolor);
    height: 78px;
  }
}

@media (max-width: 991.98px) {
  .hero-lead {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 14px;
    line-height: 130%;
    color: var(--fontcolor);
    height: 54.6px;
  }
}

