#section4 {
  position: relative;
  overflow: hidden;
  background-image: url("../img/images/bg-section4.svg");
  background-repeat: no-repeat;
  background-position: left top -80px;
  background-size: 500px auto;
}

#section4::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 800px;
  height: 500px;
  background-image: url("../img/images/section4-bg.png");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: contain;
  z-index: 3;
}

@media (max-width: 767px) {
  #section4 {
    background-position: left top;
    background-size: 180px auto;
  }

  #section4::after {
    display: none;
  }
}

@media (min-width: 1024px) {
  #section4 {
    background-position: left top 0;
    background-size: 500px auto;
  }

  #section4::after {
    width: 800px;
    height: 500px;
  }
}
