.about-wrap_left {
  width: 40%;
  position: absolute;
  left: 0;
  top: 60%;
  transform: translateY(-50%);
  display: flex;
}
.about-wrap_left img{
    width: 100%;
}
.about-wrap_right {
  width: 58%;
  margin: 0 0 0 auto;
}

.about-flex {
  position: relative;
}

.about-wrap_right.solo {
  width: 100%;
  margin: 0;
}

.about-wrap_right__text {
  font-weight: 300;
  font-size: 24px;
  line-height: 1.4;
  margin: 0 0 35px;
}

.about-wrap_right__sub_title {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.4;
  margin: 0 0 25px;
}

.about-wrap_right__scroll {
  box-shadow: 2px 3px 20px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  margin: 0 0 13px;
  align-items: center;
  background: linear-gradient(90.13deg, #3ca0d2 0.12%, #48dca6 99.91%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  padding: 10px 20px;
  position: relative;
  cursor: pointer;
  font-size: 24px;
  font-weight: 500;
  flex-wrap: nowrap;
}

.about-wrap_right__scroll:last-child {
  margin: 0;
}

.about-wrap_right__scroll span {
  display: flex;
  margin: 0 0 0 20px;
}

.about-wrap_right__scroll:before,
.about-wrap_right__scroll:after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  content: "";
  transition: 0.5s;
}

.about-wrap_right__scroll:before {
  background: linear-gradient(90.13deg, #3ca0d2 0.12%, #48dca6 99.91%);
  border-radius: 10px;
  z-index: -1;
  opacity: 0;
  transition: 0.5s;
}

.about-wrap_right__scroll:after {
  background: #fff;
  z-index: -1;
  opacity: 1;
  transition: 0.5s;
}

.about-wrap_right__scroll:hover:before {
  opacity: 1;
  transition: 0.5s;
}

.about-wrap_right__scroll:hover:after {
  opacity: 0;
  transition: 0.5s;
}

.about-wrap_right__scroll:hover {
  color: #fff;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #fff;
  background-clip: unset;
  text-fill-color: #fff;
}

.about-wrap_right__scroll:hover span path {
  stroke: #fff;
}

section.about {
  padding: 0 0 60px;
}

@media (max-width: 1280px) {
  .about-wrap_right__text {
    font-size: 18px;
  }
}
@media (max-width: 992px) {
.about-wrap_right {
  width: 100%;
}

.about-wrap_left {
  position: unset;
  transform: unset;
  width: 100%;
  justify-content: center;
  margin: 0 0 40px;
}
}