.products-list {
  margin-top: 150px;
}

section {
  padding-bottom: 120px;
}

.btn-list {
  width: 1000px;
  margin: 80px auto 0;
}
.btn-list ul li + li {
  margin-top: 21px;
}
.btn-list ul li a {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  display: block;
  background-color: #f9f9f9;
  padding: 59px 70px 57px 148px;
}
.btn-list ul li a > span {
  position: relative;
}
.btn-list ul li a > span:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #000;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}
.btn-list ul li a > span span {
  font-size: 2.4rem;
}
.btn-list ul li a:hover > span:after {
  width: 100%;
}
.btn-list ul li a:hover:after {
  right: 25px;
}
.btn-list ul li a.screen_reader:before {
  background: url("/assets/img/common/icon_screen_reader.svg") no-repeat;
  background-size: contain;
}
.btn-list ul li a:before {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  background: url(/assets/img/common/icon_purchase.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 50px;
  left: 40px;
}
.btn-list ul li a:after {
  content: "";
  display: inline-block;
  width: 36px;
  height: 22px;
  background: url(/assets/img/common/arrow_blue.svg) left top no-repeat;
  background-size: contain;
  position: absolute;
  right: 29px;
  top: calc(50% - 11px);
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 765px) {
  .products-list {
    margin-top: 40px;
  }
  section {
    padding-bottom: 99px;
  }
  .btn-list {
    width: 312px;
    margin: 40px auto 0;
  }
  .btn-list ul li + li {
    margin-top: 21px;
  }
  .btn-list ul li a {
    font-size: 2rem;
    line-height: 1;
    padding: 24px 40px 24px 76px;
  }
  .btn-list ul li a span {
    font-size: 2rem;
  }
  .btn-list ul li a span span {
    font-size: 1.6rem;
  }
  .btn-list ul li a:before {
    width: 40px;
    height: 40px;
    top: calc(50% - 20px);
    left: 16px;
  }
  .btn-list ul li a:after {
    content: "";
    display: inline-block;
    width: 31px;
    height: 17px;
    background: url(/assets/img/common/arrow_blue.svg) left top no-repeat;
    background-size: contain;
    position: absolute;
    right: 6px;
    top: calc(50% - 11px);
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
}