.intro {
  height: 750px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.intro__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.intro__image {
  margin-right: 35px;
  width: 50%;
}

.intro__block {
  width: 50%;
}
.intro__block .intro__title {
  line-height: 60px;
  color: #fff;
  font-size: 48px;
  font-weight: 800;
}
.intro__block .intro__subtitle {
  margin-top: 20px;
  line-height: 1.75;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}
.intro__block .intro__link {
  color: #fff;
  margin-top: 50px;
  text-decoration: none;
}
.intro__block .border-fill {
  margin-right: 10px;
  padding: 15px 25px;
  opacity: 1;
  font-weight: 700;
  display: inline-block;
  border-radius: 15px;
}
.intro__block .border-fill-purple {
  background: #362447;
  -webkit-transition: background 0.2s linear;
  transition: background 0.2s linear;
}
.intro__block .border-fill-purple:hover {
  background: #801AE5;
  scale: 1;
}