.dark-theme .hero-text-image .text-wrapper .tagline {
  background: none;
}
.dark-theme .hero-text-image .text-wrapper .cta-wrapper .btn.main {
  background: var(--color-logo-green);
}

.hero-text-image {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  justify-content: space-between;
  margin: 0 auto;
  padding-bottom: 50px;
}
.hero-text-image.mode-reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 550px) {
  .hero-text-image {
    flex-direction: column;
    gap: 20px;
  }
  .hero-text-image.mode-reverse {
    flex-direction: column-reverse;
  }
  .hero-text-image .image-wrapper {
    display: flex;
    justify-content: center;
  }
}
.hero-text-image .text-wrapper {
  display: flex;
  grid-column: 2/5;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}
@media screen and (max-width: 550px) {
  .hero-text-image .text-wrapper {
    grid-column: 2/10;
    grid-row: 1/2;
  }
}
.hero-text-image .text-wrapper .tagline {
  color: black;
  background-color: #e5e5e2;
  align-self: flex-start;
  padding: 5px 10px;
  font-weight: 600;
}
.hero-text-image .text-wrapper .title {
  margin: 0;
}
.hero-text-image .text-wrapper .description {
  font-size: 18px;
}
.hero-text-image .image-wrapper {
  display: grid;
  grid-column: 5/10;
}
@media screen and (max-width: 550px) {
  .hero-text-image .image-wrapper {
    grid-column: 2/10;
    grid-row: 2/2;
  }
}
.hero-text-image .image-wrapper img {
  border-radius: 20px;
  float: right;
}

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