.BannerMain {
  display: flex;
  width: 100%;
  justify-content: center;
  flex-flow: row nowrap;
  align-items: stretch;
  align-content: stretch;
  overflow: hidden;
  margin-bottom: 25px;
  border: 1px solid var(--mainColor--black);
}
@media only screen and (max-width: 768px) {
  .BannerMain {
    flex-flow: column;
    margin-top: 15px;
  }
}
.BannerMain_banner {
  display: block;
  position: relative;
}
.BannerMain_banner-picture {
  display: block;
}
.BannerMain_banner-picture--img {
  display: block;
}
.BannerMain_banner-headers {
  font-family: 'neue-haas-grotesk-display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  color: #fff;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.BannerMain_banner-headers--title {
  font-size: clamp(32px, 4vw, 76px);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  display: inline-block;
  width: 100%;
}
.BannerMain_banner-headers--subTitle {
  font-size: clamp(25px, 2vw, 38px);
  position: absolute;
  left: 0;
  top: calc(50% + 5.5vw);
  transform: translate(0, -50%);
  display: inline-block;
  width: 100%;
}
.BannerMain_banner-headers--button {
  position: absolute;
  left: 50%;
  top: calc(50% + 8.5vw);
  transform: translate(-50%, -50%);
  display: inline-block;
  font-size: 17px;
  line-height: 1.176em;
  color: #fff;
  border: 1px solid #fff !important;
  padding: 0.882em 2.353em 1em;
  background-color: transparent;
  font-weight: inherit;
}
.BannerMain_banner-headers--button:hover,
.BannerMain_banner-headers--button:active,
.BannerMain_banner-headers--button:focus,
.BannerMain_banner-headers--button:visited {
  color: inherit;
  background-color: inherit;
}
@media only screen and (max-width: 768px) {
  .BannerMain_banner-headers--button {
    font-size: inherit;
    padding: var(--widgetButtons_paddings--mobile);
  }
}
