.hero {
  overflow: hidden;
}
.hero.hero--heading-on-text .hero__image {
  position: relative;
}
.hero.hero--heading-on-text .hero__image:before {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 10000;
}
.hero.hero--heading-on-text .hero__image .hero__heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100vw - 50px);
  padding: 0 25px;
  text-align: center;
  z-index: 10001;
}
.hero.hero--heading-on-text .hero__image .hero__heading h1, .hero.hero--heading-on-text .hero__image .hero__heading h2, .hero.hero--heading-on-text .hero__image .hero__heading h3, .hero.hero--heading-on-text .hero__image .hero__heading h4, .hero.hero--heading-on-text .hero__image .hero__heading h5, .hero.hero--heading-on-text .hero__image .hero__heading h6 {
  color: #ffffff;
}
.hero.hero--heading-on-text .hero__content {
  display: none;
}
.hero .hero__image {
  position: relative;
}
.hero .hero__image .hero__button {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  border: none;
  border-radius: 10px;
  z-index: 10001;
}
.hero .hero__image .hero__button.hero__button--hidden {
  display: none;
}
.hero .hero__image .hero__button i {
  color: #ffffff;
  font-size: 30px;
  line-height: 50px;
}
.hero .hero__image .hero__image-items {
  position: relative;
  z-index: 1;
}
.hero .hero__image .hero__image-items .image-properties {
  margin: 0;
}
.hero .hero__image .hero__image-items .slick-list {
  width: 100%;
  margin: 0;
}
.hero .hero__image .hero__image-items .slick-list .slick-track {
  -moz-column-gap: 0;
  column-gap: 0;
}
.hero .hero__image .hero__image-items .slick-list .slick-track:before, .hero .hero__image .hero__image-items .slick-list .slick-track:after {
  display: none;
}
.hero .hero__image img {
  border-radius: 0;
  -o-object-fit: cover;
  object-fit: cover;
}
.hero .hero__content {
  padding: 80px 0;
}
@media only screen and (max-width: 768px) {
  .hero .hero__content {
    padding: 50px 0;
  }
}
.hero .hero__content .hero__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 32px;
  column-gap: 32px;
  row-gap: 32px;
  grid-template-rows: auto;
}
@media only screen and (max-width: 992px) {
  .hero .hero__content .hero__grid {
    grid-template-columns: repeat(6, 1fr);
    -moz-column-gap: 16px;
    column-gap: 16px;
    row-gap: 16px;
  }
}
.hero .hero__content .hero__grid.hero__grid--with-logo .hero__text {
  grid-column: 1/10;
}
@media only screen and (max-width: 992px) {
  .hero .hero__content .hero__grid.hero__grid--with-logo .hero__text {
    grid-column: span 6;
  }
}
.hero .hero__content .hero__grid.hero__grid--with-logo .hero__text .hero__heading h1 {
  margin-top: 0;
}
.hero .hero__content .hero__grid.hero__grid--with-logo .hero__logo {
  text-align: right;
  grid-column: 11/13;
}
@media only screen and (max-width: 992px) {
  .hero .hero__content .hero__grid.hero__grid--with-logo .hero__logo {
    text-align: center;
    grid-column: span 6;
  }
}
.hero .hero__content .hero__grid.hero__grid--with-logo .hero__logo img {
  width: 100%;
  max-width: 150px;
  z-index: 1;
  height: auto;
}
@media only screen and (max-width: 576px) {
  .hero .hero__content .hero__grid.hero__grid--with-logo .hero__logo img {
    max-width: 100px;
  }
}
.hero .hero__content .hero__grid .hero__text {
  grid-column: span 12;
}
.hero .hero__content .hero__grid .hero__text .hero__heading h1 {
  margin-top: 0;
}
.hero .hero__content .hero__grid .hero__text .hero__teaser p:last-of-type {
  margin-bottom: 0;
}