.privacy_links {
  display: flex;
  flex-direction: column;
}

.privacy_links a {
  position: relative;
  padding-left: 20px;
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 30px;
  font-family: Barlow, sans-serif;
  color: #4D5154;
  text-decoration: none;
  font-size: 18px;
}

.privacy_links a:last-child {
  margin-bottom: 0;
}

.privacy_links a:hover, .privacy_links a:focus {
  color: #e620a0;
}

.privacy_links a:before {
  position: absolute;
  margin: 0;
  padding: 0;
  left: 0;
  top: 4px;
  content: '';
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  height: 16px;
  width: 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url('../img/icon/link_arrow-d.svg');
}

.privacy_links a:hover:before {
  background-image: url('../img/icon/link_arrow-p.svg');
}

@media screen and (max-width: 720px) {
  .privacy_links a {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .privacy_links a:before {
    top: 4px;
    height: 14px;
    width: 14px;
  }
}
