.wcl-hero-block {
  position: relative;
  background: var(--gradient1);
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0% 0% 50% 50%/0% 0% 4% 4%;
  margin-bottom: -50px;
}
.wcl-hero-block__container {
  position: relative;
  display: flex;
  gap: 30px;
  padding-top: 136px;
  padding-bottom: 88px;
}
.wcl-hero-block__content {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  max-width: 729px;
  display: flex;
  flex-direction: column;
  padding-top: 82px;
}
.wcl-hero-block__content::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -135px;
  left: -40%;
  width: 650px;
  height: 140px;
  border-radius: 180px;
  opacity: 0.2;
  background-color: rgb(219, 10, 10);
  filter: blur(134px);
}
.wcl-hero-block__title {
  margin-bottom: 24px;
}
.wcl-hero-block__title h1 {
  color: var(--color-white);
  line-height: 1.33;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.wcl-hero-block__accent {
  color: var(--color-orange3);
}
.wcl-hero-block__line {
  width: 100%;
  max-width: 630px;
  height: 3px;
  margin-bottom: 24px;
  background-color: var(--color-orange3);
}
.wcl-hero-block__text {
  color: var(--color-alto);
  margin-bottom: 24px;
}
.wcl-hero-block__image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  max-height: 636px;
  aspect-ratio: 720/636;
  margin-right: -200px;
}
.wcl-hero-block__image::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -330px;
  left: -100px;
  width: 1000px;
  height: 1300px;
  border-radius: 65%;
  background: rgb(65, 34, 115);
  filter: blur(300px);
}
.wcl-hero-block__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top;
     object-position: top;
}

@supports (color: color(display-p3 1 0 0)) {
  .wcl-hero-block__content::after {
    background-color: color(display-p3 0.86 0.04 0.04);
  }
}
@supports (color: color(display-p3 1 0 0)) {
  .wcl-hero-block__image::after {
    background: color(display-p3 0.255 0.133 0.45);
  }
}
@media (min-width: 22.8125em) and (max-width: 90em) {
  @supports (max-width: clamp( 27.75rem , 21.8930232558rem  +  25.6744186047vw , 45rem )) {
    .wcl-hero-block__image {
      max-width: clamp( 27.75rem , 21.8930232558rem  +  25.6744186047vw , 45rem );
    }
  }
  @supports not (max-width: clamp( 27.75rem , 21.8930232558rem  +  25.6744186047vw , 45rem )) {
    .wcl-hero-block__image {
      max-width: calc(27.75rem + 17.25 * (100vw - 22.8125rem) / 67.1875);
    }
  }
}
@media (min-width: 23.4375em) and (max-width: 90em) {
  @supports (font-size: clamp( 2.25rem , 1.5457746479rem  +  3.0046948357vw , 4.25rem )) {
    .wcl-hero-block__title h1 {
      font-size: clamp( 2.25rem , 1.5457746479rem  +  3.0046948357vw , 4.25rem );
    }
  }
  @supports not (font-size: clamp( 2.25rem , 1.5457746479rem  +  3.0046948357vw , 4.25rem )) {
    .wcl-hero-block__title h1 {
      font-size: calc(2.25rem + 2 * (100vw - 23.4375rem) / 66.5625);
    }
  }
}
@media (min-width: 48.0625em) and (max-width: 90em) {
  @supports (min-height: clamp( 31.25rem , 5.4638599106rem  +  53.651266766vw , 53.75rem )) {
    .wcl-hero-block {
      min-height: clamp( 31.25rem , 5.4638599106rem  +  53.651266766vw , 53.75rem );
    }
  }
  @supports not (min-height: clamp( 31.25rem , 5.4638599106rem  +  53.651266766vw , 53.75rem )) {
    .wcl-hero-block {
      min-height: calc(31.25rem + 22.5 * (100vw - 48.0625rem) / 41.9375);
    }
  }
}
@media (min-width: 90em) {
  .wcl-hero-block {
    min-height: 53.75rem;
  }
  .wcl-hero-block__title h1 {
    font-size: 4.25rem;
  }
  .wcl-hero-block__image {
    max-width: 45rem;
  }
}
@media only screen and (max-width: 1024px) {
  .wcl-hero-block__container {
    gap: 0;
  }
  .wcl-hero-block__content::after {
    display: none;
  }
  .wcl-hero-block__text {
    margin-right: 30px;
  }
}
@media (max-width: 48.0625em) {
  .wcl-hero-block {
    min-height: 31.25rem;
  }
}
@media only screen and (max-width: 768px) {
  .wcl-hero-block {
    border-radius: 0;
    margin-bottom: 0;
  }
  .wcl-hero-block__container {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: 92px;
    padding-bottom: 20px;
  }
  .wcl-hero-block__content {
    padding-top: 0;
    justify-content: flex-start;
    height: auto;
  }
  .wcl-hero-block__title {
    margin-bottom: 8px;
  }
  .wcl-hero-block__title h1 {
    font-weight: 500;
  }
  .wcl-hero-block__line {
    margin-bottom: 24px;
  }
  .wcl-hero-block__text {
    margin-right: 0;
    margin-bottom: 24px;
  }
  .wcl-hero-block__image::after {
    top: -100px;
    left: 0;
    width: 530px;
    height: 690px;
    transform: rotate(10deg);
  }
  .wcl-hero-block__image {
    align-self: flex-end;
    margin-right: -120px;
    min-width: 444px;
  }
}
@media only screen and (max-width: 576px) {
  .wcl-hero-block__line {
    width: 100%;
  }
}
@media (max-width: 23.4375em) {
  .wcl-hero-block__title h1 {
    font-size: 2.25rem;
  }
}
@media (max-width: 22.8125em) {
  .wcl-hero-block__image {
    max-width: 27.75rem;
  }
}
