.global-hero {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  height: 500px;
}
.global-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(237, 28, 36, 0) 0%,
    rgba(237, 28, 36, 0.5) 87.88%
  );
}
.global-hero::after {
  content: "";
  position: absolute;
  bottom: 65px;
  right: 40px;
  width: 470px;
  height: 330px;
  background-image: url(../../../assets/icons/hero-before.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.global__content {
  position: absolute;
  bottom: 65px;
  left: 15px;
  z-index: 5;
}

@media only screen and (max-width: 1440px) {
  .global__content {
    /* left: 0; */
  }
  .global-hero::after {
    width: 350px;
    height: 247px;
  }
}
@media only screen and (max-width: 767px) {
  .global__content {
    left: 15px;
  }
  .global-hero::after {
    width: 205px;
    height: 145px;
  }
}
@media only screen and (max-width: 567px) {
  .global-hero::after {
    width: 118px;
    height: 81px;
  }
  .global-hero::after {
    display: none;
  }
}
