.main {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 200px 20px;
}

.privacy-policy-content {
  display: block;
  width: 75%;
  margin: 0 auto;
}
.privacy-policy-content__button {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 40px;
  margin: 0 auto;
  padding: 15px 50px;
  background: #79ac78;
  color: #ffffff;
  font-size: 16px;
  z-index: 100;
  overflow: hidden;
}
.privacy-policy-content__button a {
  text-decoration: none;
  color: white;
}
.privacy-policy-content__button p {
  display: flex;
  margin: 0;
}
.privacy-policy-content__button p span {
  transition: 0.3s;
}
.privacy-policy-content__button p::before {
  content: "";
  display: block;
  border-radius: 20px;
  width: 7px;
  height: 7px;
  background: #ffffff;
  border: none;
  position: relative;
  left: 142px;
  top: 8px;
  z-index: 1000;
}
.privacy-policy-content__button p::after {
  content: "";
  display: block;
  border-radius: 20px;
  width: 20px;
  height: 20px;
  background: #d0e7d2;
  position: relative;
  top: 2px;
  left: 33px;
  z-index: 100;
  transition: 0.5s;
  animation: scaleAnimation 0.65s infinite alternate;
}
.privacy-policy-content__button:hover {
  cursor: pointer;
}
.privacy-policy-content__button:hover p span {
  color: #79ac78;
  z-index: 500;
  transition: 0.8s;
}
.privacy-policy-content__button:hover p::after {
  transition: 0.8s;
  scale: 40;
  z-index: 0;
}
@keyframes scaleAnimation {
  0% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1.1);
  }
}
.privacy-policy-content__item {
  margin: 0 0 50px 0;
}
.privacy-policy-content__item h2 {
  font-size: 20px;
  width: 60vw;
}
.privacy-policy-content__item h2::before {
  content: "";
  display: block;
  width: 500px;
  height: 2px;
  background: #dedede;
  position: relative;
  top: 17px;
  right: 518px;
}
.privacy-policy-content__item h2::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: #79ac78;
  position: relative;
  top: -17px;
  right: 18px;
  animation: slideBar 2s infinite;
}
@keyframes slideBar {
  0% {
    transform: translateX(-500px);
  }
  100% {
    transform: translateX(-24px);
  }
}/*# sourceMappingURL=privacy-policy.css.map */