.banner__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  padding: 2.5rem 2.5rem 3.75rem;
  border-radius: 2rem;
  -webkit-box-shadow: inset 0 0 67px 20px rgba(255, 128, 23, 0.83);
  box-shadow: inset 0 0 67px 20px rgba(255, 128, 23, 0.83);
  background-color: #0A0A0B;
}
.banner__ico {
  width: 2.5rem;
  height: 3.125rem;
  margin-bottom: 0.75rem;
}
.banner__ico > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.banner__title {
  font-size: max(2.25rem, 12px);
  line-height: 120%;
  font-weight: 700;
  margin-bottom: 2.5rem;
}
.banner__title span {
  background: linear-gradient(-165deg, #FF7300 0%, #FEA550 80%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  .banner__container {
    padding: 40px 20px 60px;
    border-radius: 20px;
  }
  .banner__ico {
    margin-bottom: 20px;
  }
  .banner__title {
    font-size: 26px;
  }
}
/*# sourceMappingURL=banner.css.map */