.how-to-build {
  padding: 5rem 0;
}

.how-to-build .section-title {
  margin-bottom: 3rem;
}

.how-to-build__list {
  list-style: none;
}

.how-to-build__item {
  font-family: 'Roboto', sans-serif;
  color: #000;
  text-align: center;
  margin: 0 2.5rem 4rem;
}

.how-to-build__icon {
  margin-bottom: 2rem;
}

.how-to-build__title {
  color: #a4c600;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.39;
  font-size: 1.8rem;
}

.how-to-build__text {
  line-height: 1.56;
  font-size: 1.6rem;
}

.how-to-build__link {
  font-size: 1.4rem;
  color: #6d7278;
  text-decoration: none;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  position: relative;
  padding-right: 2rem;
}

.how-to-build__link::before {
  position: absolute;
  content: "";
  width: 1rem;
  background: #6d7278;
  right: 0;
  top: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  height: .2rem;
  z-index: 1;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.how-to-build__link::after {
  position: absolute;
  content: "";
  width: .6rem;
  height: .6rem;
  top: 50%;
  background: transparent;
  border-right: .2rem solid #6d7278;
  border-top: .2rem solid #6d7278;
  right: .3rem;
  -webkit-transform: rotate(45deg) translateX(-50%);
  -ms-transform: rotate(45deg) translateX(-50%);
  transform: rotate(45deg) translateX(-50%);
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.how-to-build__link:hover,
.how-to-build__link:focus {
  color: #a4c600;
}

.how-to-build__link:hover::before,
.how-to-build__link:focus::before {
  background-color: #a4c600;
}

.how-to-build__link:hover::after,
.how-to-build__link:focus::after {
  border-right: 0.2rem solid #a4c600;
  border-top: 0.2rem solid #a4c600;
}

.how-to-build__img {
  display: none;
}

@media only screen and (min-width: 480px) {
  .how-to-build__info {
    width: 60%;
    margin: 0 auto;
  }
}

@media only screen and (min-width: 768px) {
  .how-to-build__info {
    width: 50%;
  }
}

@media only screen and (min-width: 1024px) {
  .how-to-build__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .how-to-build__list {
    width: 50%;
    margin-right: 4rem;
    position: relative;
    -ms-flex-item-align: baseline;
    align-self: baseline;
    margin-right: 7rem;
  }

  .how-to-build__list::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: .2rem;
    top: 0;
    bottom: 8rem;
    left: 3.8rem;
    background-color: #a4c600;
  }

  .how-to-build__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: left;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 0 3rem;
  }

  .how-to-build__icon {
    margin-right: 1.5rem;
  }

  .how-to-build__info {
    width: auto;
    margin: 0;
  }

  .how-to-build__img-wrapper {
    width: 50%;
  }

  .how-to-build__img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

@media only screen and (min-width: 1280px) {
  .how-to-build .section-title {
    margin-bottom: 7rem;
  }

  .how-to-build__item {
    margin-bottom: 3rem;
  }

  .how-to-build__item:last-of-type {
    margin-bottom: 0;
  }

  .how-to-build__title {
    margin-bottom: 0.5rem;
  }

  .how-to-build__icon {
    margin-bottom: 0;
    width: 8rem;
    height: auto;
    background-color: #fff;
    border-radius: 100%;
  }

  .how-to-build__link {
    margin-top: 1.2rem;
  }
}