.banner-block {
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center;
  background-color: var(--greyE9);
}
.banner-block .container {
  display: flex;
}
.banner-block__content {
  max-width: 51%;
  min-height: 600px;
  padding: 100px 0;
}
.banner-block__title {
  margin-bottom: 25px;
}
.banner-block__title span {
  font-weight: 600;
  font-size: 44px;
  line-height: 120%;
  color: var(--dark1F);
  color: var(--green49);
}
@media (max-width: 1200px) {
  .banner-block__title span {
    font-size: calc(25px + 19 * ((100vw - 320px) / 880));
  }
}
.banner-block__text {
  margin-bottom: 40px;
}
.banner-block__sign {
  background-color: var(--green49);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 130px;
  position: relative;
  margin-top: 16.3vh;
  margin-left: 8%;
}
.banner-block__sign-word {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-block__sign-word svg {
  width: 120px;
  height: 120px;
  fill: #fff;
  animation-name: rotate;
  animation-duration: 8s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.banner-block__sign-word svg textPath {
  font-weight: 500;
  font-size: 13px;
  line-height: 130%;
}
.banner-block__sign-icon {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-block__sign-icon svg {
  height: 41px;
  width: 41px;
}

@keyframes rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 575px) {
  .banner-block {
    background-position: center right 30%;
    position: relative;
  }
  .banner-block__content {
    max-width: 100%;
    padding: 50px 0;
    min-height: auto;
    position: relative;
    z-index: 1;
  }
  .banner-block:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(253, 253, 253, 0.85);
  }
  .banner-block__sign {
    width: 70px;
    height: 70px;
    position: absolute;
    bottom: 10px;
    right: 15px;
    margin-left: 0;
  }
  .banner-block__sign-word svg {
    width: 62px;
    height: 62px;
  }
  .banner-block__sign-icon {
    width: 40px;
    height: 40px;
  }
  .banner-block__sign-icon svg {
    height: 27px;
    width: 27px;
  }
  .banner-block__btn {
    padding: 15px 25px;
    max-width: 80%;
  }
}/*# sourceMappingURL=block.css.map */