.image-text {
  margin-bottom: 8rem;
}

.image-text__wrap {
  display: flex;
  gap: 6rem;
  align-items: center;
}

.image-text__wrap .image-side {
  width: 60%;
  padding-right: 3rem;
  position: relative;
}

.image-text__wrap .image-side:before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 80%;
  width: 20%;
  background: #D4B785;
  background: linear-gradient(180deg,rgba(212, 183, 133, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(23, 47, 71, 1) 100%);
  z-index: -1;
  border-radius: .5rem;
}

.image-text__wrap .image-side img {
  border-radius: .5rem;
  overflow: hidden;
  width: 100%;
}

.image-text__wrap .text-side {
  width: 40%;
}

.image-text .brand-title {
  margin-bottom: 2.3rem;
} 

@media screen and (max-width: 991px) {
  .image-text {
    margin-bottom: 3rem;
  }

  .image-text__wrap {
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
  }

  .image-text__wrap .image-side,
  .image-text__wrap .text-side {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .image-text__wrap .image-side {
    padding-right: 2rem;
  }
}

@media screen and (max-width: 575px) {
  .image-text__wrap .image-side {
    padding-right: 1rem;
  }
}