.banner-container {
  padding-left: calc( 0.5 * 100vw + -585px );
  max-width: 1920px;
  display: flex;
  height: 100%;
  background-color: #F6F7F7;
  position: relative;
  overflow-x: clip;
  flex: 100%;
}
@media (min-width: 1920px) {
  .banner-container {
    padding-left: 375px;
  }
}
@media (max-width: 1200px) {
  .banner-container {
    padding-left: 15px;
  }
}
.banner-container:before {
  content: "";
  background-image: url("./images/block-bg.png");
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-position: right;
  background-size: contain;
}
.banner-image {
  height: 100%;
  min-height: 798px;
  flex: 1 auto;
  display: flex;
  flex-direction: column;
  position: relative;
}
.banner-image__wrap {
  height: 100%;
  width: 100%;
  /* -webkit-mask-image: url("../../../assets/images/mask.svg");
          mask-image: url("../../../assets/images/mask.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;  */
  background-repeat: no-repeat;
  background-size: cover;
  flex: 100%;
  background-position: center;
}
.banner-content {
  flex: 0 37.5%;
  /* margin-top: 13%;
  position: relative; */
  z-index: 1;
  position: absolute;
  position: absolute;
  top: 62%;
  left: 50%;
  transform: translateX(-50%);
}
.banner-title {
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--main);
}
.banner-title:hover {
  color: var(--mainHover);
}
.banner-subtitle {
  --color: var(--colorText);
}
.banner-btn {
  --paddingHorizontal: 78px;
  margin-top: 30px;
}

.main-block {
  min-height: 798px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

@media (max-width: 1280px) {
  .banner-container {
    align-items: center;
  }
}
@media (max-width: 1120px) {
  .banner-image {
    /* position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1;
    min-height: auto; */
    margin: 0 -15px;
    width: calc(100% + 30px);
  }
  /* .banner-image__wrap {
    background-position: 39%;
    -webkit-mask-position: center;
    background-size: cover;
  } */
  /* .banner-image:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.67);
  } */
  .banner-content {
    /* flex: 0 60%;
    z-index: 2;
    margin-top: 0; */
    top: 63%;
  }
}
@media (max-width: 767px) {
  .main-block,
  .banner-image {
    min-height: 500px;
    height: 500px;
  }
}
@media (max-width: 575px) {
  .main-block,
  .banner-image {
    min-height: 260px;
    height: 260px;
  }

  .banner-content {
    top: auto;
    bottom: 37px;
  }

  .banner-title {
    font-size: 14px;
  }
}

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