.hero-homepage {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
}
.hero-homepage picture {
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  padding: 0px 20px;
  position: relative;
  width: 100%;
}
@media (max-width: 768px) {
  .hero-homepage picture {
    padding: 10px 20px;
  }
}
.hero-homepage picture img {
  border-radius: 0px;
  display: block;
  width: 100%;
  height: auto;
  -o-object-position: left top;
     object-position: left top;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.hero-homepage .video-wrapper {
  display: none;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}
.hero-homepage .video-wrapper video {
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  width: 100%;
  height: 100%;
}
.hero-homepage.video picture {
  display: none;
}
.hero-homepage.video .video-wrapper {
  display: block;
}
.hero-homepage .hero-content {
  position: relative;
  box-sizing: content-box;
  z-index: 1;
  width: 335px;
  padding: 10px 20px 25px;
  display: flex;
  flex-flow: column;
  align-items: center;
}
.hero-homepage .hero-content * {
  text-align: center;
}
.hero-homepage .hero-content .reviews {
  height: 60px;
  margin-bottom: 10px;
}
.hero-homepage .hero-content .buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.hero-homepage .hero-content .buttons .btn {
  padding: 22px 38px;
}
.hero-homepage .hero-content .buttons .btn.cta {
  background-color: var(--primaryColor);
}
@media (min-width: 768px) {
  .hero-homepage {
    padding-top: 0;
  }
  .hero-homepage .picture-wrapper picture {
    bottom: 0;
  }
  .hero-homepage .hero-content {
    align-items: center;
    padding: 50px 50px 100px 0;
    width: 380px;
  }
  .hero-homepage .hero-content .reviews {
    height: 85px;
    margin-bottom: 10px;
  }
  .hero-homepage .hero-content .buttons {
    flex-direction: row;
    gap: 40px;
  }
  .hero-homepage .hero-content .buttons .btn {
    padding: 25px 38px;
  }
}
@media (min-width: 1280px) {
  .hero-homepage .hero-content {
    padding: 30px 0px 50px 0;
    width: 75%;
  }
}

.hero-title {
  font-family: "Manrope", sans-serif;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 50px;
  line-height: 3.125rem;
  display: block;
  color: var(--text);
  margin-bottom: 10px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .hero-title {
    font-size: 60px;
    font-size: 3.75rem;
    line-height: 70px;
    line-height: 4.375rem;
  }
}
@media (min-width: 1280px) {
  .hero-title {
    font-size: 75px;
    font-size: 4.6875rem;
    line-height: 95px;
    line-height: 5.9375rem;
    margin-bottom: 30px;
  }
}

.hero-byline {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 24px;
  line-height: 1.5rem;
  display: block;
  margin-bottom: 20px;
  color: var(--text);
}
@media (min-width: 768px) {
  .hero-byline {
    font-size: 23px;
    font-size: 1.4375rem;
    line-height: 32px;
    line-height: 2rem;
    font-weight: 600;
  }
}
@media (min-width: 1280px) {
  .hero-byline {
    margin-bottom: 60px;
  }
}/*# sourceMappingURL=template-homepage.css.map */