.solution {
  display: flex;
  overflow: hidden;

  margin-bottom: 3rem;
  padding: 3rem;

  color: #818181;
  border-radius: 5px;
  background: #fff;
}
.solution:hover {
  color: #fff;
  background: linear-gradient(90deg, rgb(32, 156, 255) 0%, rgb(0, 83, 233) 100%);
  box-shadow: 0px 0px 20px 0px rgba(31, 153, 254, 0.5);
}
.solution:hover .solution__title {
  color: #fff;
}

.solution__head {
  width: 530px;
  margin: 0 6rem 0 0;
}

.solution__image {
  position: relative;

  overflow: hidden;

  width: 100%;
  height: 0;
  padding-top: 46.79%;

  border-radius: 5px;
}

.solution__title {
  overflow: hidden;

  margin: 2rem 0;

  text-overflow: ellipsis;

  color: #000;

  font-size: 2.2rem;
}

.solution__content {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;

  height: 9rem;
  margin-bottom: 2rem;

  text-overflow: ellipsis;

  font-size: 1.5rem;
  line-height: 3rem;

  -webkit-line-clamp: 3;
}

.solution__next {
  font-size: 3.4rem;
}

@media screen and (max-width: 767px) {
  .solution {
    flex-direction: column !important;
  }
  .solution__head {
    width: 100%;
    margin: 0 0 1rem 0 !important;
  }
  .solution__next {
    float: right;
  }
}