.xili-brand-story-section {
  padding: var(--length-100) 0 var(--length-120) 0;
  background: #333;
}

.brand-wrapper {
  padding: 0 calc(110 / 1920 * 100%);
}

.xili-brand-story-section-title {
  color: #FFF;
  padding-left: calc(50 / 1700 * 100%);
}

.xili-brand-story-section-title b {
  color: #fff;
}

.brand-list {
  margin-top: 83px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.brand-item {
  display: flex;
  gap: 50px;
}

.brand-item:nth-child(odd) {
  padding-left: calc(50 / 1700 * 100%);
}

.brand-item:nth-child(even) {
  flex-direction: row-reverse;
  padding-right: calc(50 / 1700 * 100%);
}

.brand-item-pic {
  width: calc(1016 / 1650 * 100%);
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
}

.brand-item-pic video,
.brand-item-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  padding: 80px 50px;
  gap: 16px;
  background: #444;
  border-radius: 20px;
}

.brand-item-title {
  color: #FFF;
  font-size: var(--font-40);
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-item-desc {
  color: rgba(255, 255, 255, 0.80);
  text-align: justify;
  font-size: var(--font-24);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.48px;
}

.brand-decoraror {
  position: absolute;
  top: 8px;
  right: 10%;
  color: rgba(255, 255, 255, 0.03);
  font-size: 132.5px;
  font-weight: 800;
}

@media screen and (max-width: 1650px) {
  .brand-item-pic {
    width: 55%;
  }

  .brand-list {
    margin-top: 50px;
    gap: 30px;
  }

  .brand-item {
    gap: 40px;
  }

  .brand-item-content {
    padding: 50px 30px;
  }
}

@media screen and (max-width: 1280px) {

  .brand-item {
    gap: 30px;
  }

  .brand-item-content {
    padding: 40px 20px;
  }

  .brand-decoraror {
    font-size: 100px;
  }
}

@media screen and (max-width: 992px) {
  .xili-brand-story-section-title {
    padding-left: 0;
  }

  .brand-list {
    margin-top: 40px;
  }

  .brand-item:nth-child(even),
  .brand-item:nth-child(odd) {
    flex-direction: column;
    gap: 16px;
    padding: 0;
  }

  .brand-item-pic {
    width: 100%;
  }

  .brand-item-content {
    width: 100%;
  }

  .brand-decoraror {
    font-size: 80px;
  }
}


@media screen and (max-width: 576px) {
  .brand-list {
    margin-top: 32px;
    gap: 24px;
  }


  .brand-item-content {
    padding: 24px 16px;
  }

  .brand-decoraror {
    font-size: 60px;
  }
}