.bg-4 {
  width: 100%;
  height: 842px;

  display: flex;
  justify-content: space-around;
  align-items: center;
}

.content-image-2 {
  width: 407px;
  height: 582px;

  background: url("../images/content-image-2.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.content-block {
  width: 407px;
  height: 184px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.content-block span {
  font-weight: 500;
}

.content-block h2 {
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 1px;
  text-transform: uppercase;

  color: #373737;
}

.content-block p {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 150%;

  color: #4E4E4E;
}


@media (max-width: 899px) {

  .bg-4 {
    height: 520px;
  }

  .content-image-2 {
    width: 250px;
    height: 357px;
  }

  .content-block {
    width: 280px;
  }

  .content-block h2 {
    font-size: 20px;
  }
}

@media (max-width: 599px) {
  .bg-4 {
    height: 780px;
    flex-direction: column-reverse;
  }

  .content-block {
    height: 150px;
  }

  .content-image-2 {
    width: 380px;
    height: 545px;
  }
}