.brand__banner {
  position: relative;
}

.brand__banner::before {
  content: "";
  position: absolute;
  top: 15px;
  right: calc(50% - 330px);
  max-width: 660px;
  width: 100%;
  height: 156px;
  background: url(/static/img/main__bg.webp) no-repeat center;
  background-size: contain;
  z-index: -1;
  pointer-events: none;
}

.brand__container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0;
}

.brand__container-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  margin-right: 28px;
}

h1 {
  font-weight: 900;
  font-size: 48px;
  line-height: 48px;
  background: transparent;
  max-width: 700px;
  width: 100%;
  padding-top: 10px;
}

h1:after {
  content: attr(data-text);
  position: absolute;
  color: #B3CD05;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}

.brand__container-left p {
  position: relative;
  font-weight: 600;
  font-size: 18px;
  line-height: 20px;
  border-radius: 40px;
  border: 1px solid #AEC356;
  background: rgba(213, 236, 93, 0.05);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  padding: 16px 20px;
  padding-left: 80px;
  max-width: 465px;
  width: 100%;
  height: auto;
  margin-left: auto;
}

.brand__container-left p::before {
  content: "";
  position: absolute;
  top: calc(50% - 29px);
  left: 12px;
  width: 58px;
  height: 58px;
  background: url(/static/svg/brand-top.svg) no-repeat center;
  background-size: contain;
  z-index: -1;
  pointer-events: none;
}

.filter__col {
  background: rgba(213, 236, 93, 0.05);
  border: 1px solid rgba(18, 31, 58, 0.05);
  border-left: none;
  border-right: none;
  padding-bottom: 20px;
}

.filter__col h2 {
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  margin: 30px 0 12px;
}

.label__row {
  max-width: 23%;
}

/* ---------------------- @media -------------------- */

@media screen and (max-width: 1024px) {
  h1 {
    max-width: 560px;
    font-size: 40px;
    line-height: 44px;
    padding-top: 0;
  }
}

@media screen and (max-width: 1023px) {
  .brand__container-left {
    gap: 20px;
    margin-right: 0;
  }

  .brand__banner::before {
    top: 0;
  }
}

@media screen and (max-width: 890px) {
  .filter {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

@media screen and (max-width: 768px) {
  .brand__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
  }
}

@media screen and (max-width: 768px) {
  .filter {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .label__row {
    max-width: 100%;
  }
}

@media screen and (max-width: 670px) {
  .brand__banner::before {
    top: -30px;
    right: 0;
    background: url(/static/img/main__bg.webp) no-repeat center;
    background-size: cover;
  }

  .filter {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .label__row,
  .form__btn {
    max-width: 100%;
  }

}

@media screen and (max-width: 575px) {
  .brand__container-left {
    gap: 8px;
  }

  h1 {
    font-size: 26px;
    line-height: 30px;
    text-align: center;
  }
}

@media screen and (max-width: 425px) {
  h1 {
    font-size: 20px;
    line-height: 24px;
  }

  .brand__container-left p {
    font-size: 14px;
    line-height: 16px;
    padding: 16px 10px;
    padding-left: 78px;
  }

  .inputs__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}