.brand-selector .container {
  width: 100%;
  max-width: 1440px;
  padding: 0 120px;
  margin: 0 auto;
}
@media only screen and (max-width: 992px) {
  .brand-selector .container {
    padding: 0 40px;
  }
}
.brand-selector__container {
  padding-top: 60px !important;
  padding-bottom: 80px !important;
}
@media only screen and (max-width: 767px) {
  .brand-selector__container {
    padding-top: 40px !important;
    padding-bottom: 60px !important;
  }
}
.brand-selector__title-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.brand-selector__title-container span {
  display: block;
}
.brand-selector__title-container-border {
  height: 3px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .brand-selector__title-container-border {
    display: none !important;
  }
}
.brand-selector__title-container-border-left {
  background: -webkit-gradient(linear, right top, left top, from(rgb(246, 0, 163)), color-stop(50%, rgb(130, 44, 191)));
  background: linear-gradient(270deg, rgb(246, 0, 163) 0%, rgb(130, 44, 191) 50%);
  margin-left: 80px;
}
.brand-selector__title-container-border-right {
  background: -webkit-gradient(linear, left top, right top, from(rgb(246, 0, 163)), color-stop(50%, rgb(130, 44, 191)));
  background: linear-gradient(90deg, rgb(246, 0, 163) 0%, rgb(130, 44, 191) 50%);
  margin-right: 80px;
}
.brand-selector__title {
  font-size: 54px !important;
  line-height: 1.15em !important;
  letter-spacing: 0 !important;
  font-weight: normal !important;
  font-family: "Iron Sans", "Montserrat", sans-serif !important;
  color: #000000 !important;
  text-align: center;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  margin: 0 2rem;
}
@media only screen and (max-width: 767px) {
  .brand-selector__title {
    font-size: 42px !important;
    min-width: initial;
    margin: 0 auto;
  }
}
.brand-selector__subtitle {
  font-size: 24px !important;
  text-align: center;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .brand-selector__subtitle {
    font-size: 20px !important;
  }
}
.brand-selector__brands {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  place-items: center;
  gap: 20px;
  max-width: 680px;
  margin: 40px auto 0;
}
@media only screen and (max-width: 767px) {
  .brand-selector__brands {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.brand-selector__brand {
  max-width: 180px;
}
.brand-selector__brand a:hover img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.brand-selector__brand a img {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}