.icon-text-box {
  display: flex;
  align-items: center;
  padding-left: 40px;
  padding-right: 40px;
  color: white;
  gap: 1rem;
}

.icon-text-box img {
  width: 72px;
}

.icon-text-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  width: 50px;
  background: linear-gradient(80deg, white 32%, transparent 35%);
}

.icon-text-box:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  height: 100%;
  width: 50px;
  background: linear-gradient(80deg, transparent 32%, white 35%);
}

@media screen and (max-width: 1024px) {
  .icon-text-box {
    padding-left: 20px;
    padding-right: 20px;
  }

  .icon-text-box img {
    width: 48px;
  }
}
