.btn-list {
  margin: 0 0 50px;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 40px;
}

@media (max-width: 768px) {
  .btn-list {
    margin: 0 0 30px;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .btn-list > li {
    width: calc(50% - 15px);
  }
}

.btn-list > li a {
  background: linear-gradient(-90deg, #f6dfef, #f7eaf2);
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.05);
  color: #a20073;
  font-size: 16px;
  font-weight: 500;
  padding: 20px 50px;
  border-radius: 28px;
  min-width: 344px;
  display: block;
  text-align: center;
  position: relative;
}

@media (max-width: 768px) {
  .btn-list > li a {
    padding: 10px 20px;
    font-size: 14px;
    min-width: 0;
  }
}

.btn-list__icon {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #a20073;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .btn-list__icon {
    width: 12px;
    height: 12px;
    right: 8px;
  }
}

.btn-list__icon::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid white;
}

@media (max-width: 768px) {
  .btn-list__icon::after {
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 4px solid white;
  }
}
