.hero-container {
  gap: var(--dl-space-space-threeunits);
  width: 100%;
  height: auto;
  display: flex;
  overflow: hidden;
  position: relative;
  align-items: center;
  flex-shrink: 0;
  flex-direction: column;
}

.hero-column {
  gap: var(--dl-space-space-oneandhalfunits);
  display: flex;
  align-items: center;
  flex-direction: column;
  max-width: none;
}

.hero-content1 {
  gap: var(--dl-space-space-oneandhalfunits);
  display: flex;
  align-self: stretch;
  align-items: center;
  max-width: var(--dl-size-size-maxwidth);
  width: 65%;
}

.hero-title-container {
  flex: 1; /* First column: Equal flexibility */
  color: var(--dl-text-color-static);
}

.hero-right-container {
  flex: .35; /* First column: Equal flexibility */

}

.hero-text1 {
  text-align: left;
  font-size: 4.5rem;
  font-family: "Noto Sans";
}

.hero-text1 span p:first-child {
  color: var(--dl-color-theme-primary1);
}

.hero-text2 {
  text-align: left;
  padding-bottom: var(--dl-space-space-twentyfourunits);
  padding-top: var(--dl-space-space-unit);

}

.hero-actions {
  gap: var(--dl-space-space-unit);
  display: flex;
  align-items: flex-start;
}

.hero-content2 {
  gap: var(--dl-space-space-oneandhalfunits);
  width: 100%;
  display: flex;
  position: relative;
  align-items: flex-start;
  flex-direction: column;
}

.hero-row-container1 {
  width: 100%;
}

.hero-placeholder-image {
  width: 400px;
  height: 400px;
}

.hero-row-container2 {
  width: 100%;
}

@media(max-width: 767px) {
  .hero-content2 {
    width: 100%;
  }
  .hero-text1 {
    font-size: 2.5rem;
  }
  .hero-column {
    width: 100%;
  }
  .hero-right-container {
    flex: 0;
    width: 0;
  }
  .hero-text2 {
    text-align: left;
  }
  .hero-container {
    gap: 0;
  }
}

@media(max-width: 479px) {
  .hero-actions {
    width: 100%;
    flex-direction: column;
  }
  .hero-button1 {
    width: 100%;
  }
  .hero-button2 {
    width: 100%;
  }
  .hero-column {
    width: 100%;
  }
  .hero-container {
    gap: 0;
  }
}

.hero-background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  position: absolute;
  overflow: auto;
  top: 0;

  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0));
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0));
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: var(--dl-background-color);
}
