.what-is {
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

.what-is__background-line {
  height: 213px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.what-is__content {
  display: flex;
  flex-direction: column;
  max-width: 1001px;
  width: 100%;
  background: #ffffff;
  box-shadow: 0px 12.97px 12.97px 0px rgba(0, 0, 0, 0.1019607843);
  padding: 10px 20px 38px;
  margin: 0 auto;
}

.what-is__info h2 {
  font-size: 22px;
  line-height: 28.6px;
  padding: 0;
  margin: 0;
}

.what-is__text {
  font-size: 15px;
  line-height: 18px;
  margin-top: 10px;
}

.what-is__text p {
  padding: 0;
}

.what-is__text a {
  color: inherit;
  text-decoration: underline;
}

.what-is__text a:hover {
  color: #ED7233;
}

.what-is__image {
  height: 232px;
}

.what-is__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (min-width: 575px) {
  .what-is__image {
    height: 320px;
  }
}

@media screen and (min-width: 991px) {
  .what-is__background-line {
    height: 150px;
  }

  .what-is__content {
    flex-direction: row;
    align-items: center;
    padding: 32px 54px 40px;
  }

  .what-is__info {
    max-width: 442px;
    margin-right: 10px;
  }

  .what-is__text {
    margin-top: 16px;
  }

  .what-is__image {
    width: 442px;
    aspect-ratio: 1.38/1;
  }
}