#about-wrapper {
  margin: 80px 0px;
}
#about-wrapper .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#about-wrapper .row h1, #about-wrapper .row h2 {
  margin-top: 0;
}
#about-wrapper .row .image {
  width: 400px;
  height: 300px;
  background: #8a9cff;
  border-radius: 16px;
}
#about-wrapper .row .text {
  width: calc(100% - 456px);
}
#about-wrapper .row:nth-child(2) {
  margin-top: 80px;
  padding: 40px 56px;
  box-sizing: border-box;
  flex-direction: row-reverse;
  color: #fff;
  border-radius: 16px;
}
#about-wrapper .row:nth-child(2) .subtitle {
  color: #ffffff9f;
}
#about-wrapper .row:nth-child(2) h2 {
  margin-bottom: 0px;
}
#about-wrapper .row:nth-child(2) .image {
  height: 220px;
  width: 220px;
  border-radius: 50%;
  background-color: #fff;
}
#about-wrapper .row:nth-child(2) .text {
  width: calc(100% - 300px);
}

@media (max-width: 1024px) {
  #about-wrapper .row {
    flex-direction: column;
  }
  #about-wrapper .row .image {
    display: none;
    width: 100%;
    height: 300px;
  }
  #about-wrapper .row .text {
    width: 100%;
  }
  #about-wrapper .row:nth-child(2) {
    margin-top: 24px !important;
    flex-direction: column;
    padding: 28px;
    text-align: center;
  }
  #about-wrapper .row:nth-child(2) .image {
    width: 100%;
    height: 220px;
  }
  #about-wrapper .row:nth-child(2) .text {
    width: 100%;
    font-size: 16px;
  }
}