.section-3-wrapper {
  /* layout */
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: 120px;

  /* typography */
  text-align: center;

  /* responsive */
  @media screen and (max-width: 860px) {
    margin-top: 60px;
  }
}

.section-3-content-wrapper {
  /* layout */
  display: flex;
  flex-direction: column;
}

.section-3-title {
  /* typography */
  color: var(--Black-Text, #343434);
  font-size: 48px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;

  /* responsive */
  @media screen and (max-width: 860px) {
    font-size: 20px;
    line-height: 28px;
  }
}

.section-3-content {
  /* layout */
  padding-top: 60px;
  padding-bottom: 80px;

  /* responsive */
  @media screen and (max-width: 1400px) {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}

.section-3-img {
  /* layout */
  width: 1440px;

  /* responsive */
  @media screen and (max-width: 1400px) {
    display: none;
  }
}

.section-3-img-mobile {
  /* layout */
  width: 100%;

  /* responsive */
  @media screen and (min-width: 1400px) {
    display: none;
  }
}
