

.brandPage {
  padding: .65rem 0 1.1rem;
  background: url('../images/brand_bg.svg') center top no-repeat;
  background-size: cover;
}
.brandBreadcrumb {
  color: #fff;
}

.brandTitle {
  margin-top: .34rem;
}

.brandTitle h1 {
  color: #fff;
  font-size: clamp(24px, .58rem, 58px);
  font-weight: 700;
  line-height: 1.08;
  text-align: center;
}

.brandTitle p {
  margin: .08rem auto 0;
  color: rgba(255, 255, 255, .68);
  font-size: clamp(14px, .2rem, 20px);
  line-height: 1.5;
  text-align: center;
}

.brandGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .48rem .5rem;
  margin-top: .9rem;
}

.brandCard {
  display: grid;
  grid-template-columns: 1.64rem 1fr;
  gap: .28rem;
  min-height: 2.68rem;
  padding: .38rem .35rem .33rem;
  border: .01rem solid rgba(255, 255, 255, .1);
  border-radius: .08rem;
  background: rgba(0, 0, 0, .72);
  transition: border-color .25s ease, transform .25s ease, background .25s ease;
}
.brandCardLogo {
  display: flex;
  flex-direction: column;
  width: 1.5rem;
  justify-content: center;
}
.brandCardLogo .brand_img{
  width: 1.5rem;
  height: 1.5rem;
  place-items: center;
  align-self: start;
}
.brandCardLogo .brand_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brandCardCody img {
  width: 1.55rem;
  height: auto;
}

.brandCard h2 {
  color: #fff;
  font-size: clamp(16px, .28rem, 28px);
  font-weight: 700;
  line-height: 1.22;
}

.brandCard p {
  margin-top: .15rem;
  color: rgba(255, 255, 255, .68);
  font-size: clamp(13px, .16rem, 16px);
  line-height: 1.62;
}

.brandProducts {
  display: inline-flex;
  align-items: center;
  gap: .1rem;
  color: #ffffff;
  font-size: clamp(13px, .16rem, 16px);
  font-weight: 700;
  width: fit-content;
  margin: 0.16rem auto 0;
}

.brandProducts img {
  width: .2rem;
  height: .2rem;
  filter: brightness(0) invert(1);
  transition: transform .25s ease;
}
.brandCard:hover {
  border-color: rgba(255, 241, 0, .55);
  background: rgba(0, 0, 0, .82);
  transform: translateY(-.04rem);
}
.brandCard:hover .brandProducts,
.brandCard:hover h2{
  color: #FFF100;
}
.brandCard:hover .brandProducts img{
  filter: brightness(0) saturate(100%) invert(83%) sepia(96%) saturate(601%) hue-rotate(356deg) brightness(106%) contrast(105%);
}
.brandProducts:hover img {
  transform: translateX(.05rem);
}




@media (max-width: 768px) {
  .brandBanner {
    height: 4.7rem;
  }

  .brandBannerLogo {
    top: 1.1rem;
    width: 2.45rem;
  }

  .brandBannerMarks {
    inset: .5rem 0 .2rem;
  }

  .brandBannerMark {
    width: .7rem;
    height: .7rem;
  }

  .markOne {
    left: .28rem;
    top: 1.1rem;
  }

  .markTwo {
    left: 1.2rem;
    top: 2.28rem;
  }

  .markThree {
    right: 1rem;
    top: .98rem;
  }

  .markFour {
    right: .2rem;
    top: 2.1rem;
  }

  .markFive {
    left: 2.35rem;
    top: 1.55rem;
    width: .62rem;
    height: .62rem;
  }

  .markSix {
    right: 1.95rem;
    top: 2.5rem;
    width: 1.35rem;
    height: .52rem;
  }

  .brandPage {
    padding: .44rem 0 .7rem;
  }

  .brandTitle {
    margin-top: .28rem;
  }

  .brandGrid {
    grid-template-columns: 1fr;
    gap: .18rem;
    margin-top: .38rem;
  }

  .brandCard {
    padding: 0.3rem;
    display: flex;
    flex-wrap: wrap;
  }

  .brandCardLogo {
    width: 100%;
    height: auto;
    align-items: center;
  }
  .brandCardLogo .brand_img,
  .brandCardLogo>img{
    width: auto;
    height: 1.2rem;
    margin: 0 auto;
  }


  .brandCardCody img {
    width: 1rem;
  }
}
