.policy {
  padding: 0 218px;
  background-color: var(--black);
  margin-top: 40px;
}

.select-btn,
li {
  display: block;
}

.policy h1 {
  padding-top: 118px;
  color: #fff;
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  padding-bottom: 60px;
}

.policy > p {
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  max-width: 80%;
  margin: 0 auto;
  color: var(--white);
  line-height: 25px;
}

.policy ul {
  padding-top: 80px;
  padding-bottom: 100px;
}

.policy ul li {
  padding-bottom: 47px;
}

.policy ul li h2 {
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--yellow);
}

.policy ul li p {
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  line-height: 25px;
  color: var(--white);
}

@media (max-width: 480px) {
  .policy h1 {
    font-size: 28px !important;
  }

  .policy {
    padding: 0 !important;
    margin-top: -3px !important;
    border-top: 3px solid var(--yellow);
    width: 100%;
  }
  .policy p {
    margin-bottom: 60px;
    padding: 0 48px !important;
    max-width: 100% !important;
  }
  .policy ul {
    padding-top: 61px !important;
    padding-bottom: 0px !important;
    background-color: var(--black);
  }

  .policy ul li {
    padding-bottom: 0px !important;
  }

  .policy ul li p {
    text-align: justify !important;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .accordion .link {
    color: var(--yellow);
    cursor: pointer;
    display: block;
    padding: 15px 15px 15px 42px;
    font-size: 14px;
    font-weight: 700;
    border-top: 1px solid var(--yellow);
    border-bottom: 1px solid var(--yellow);
    position: relative;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }

  .accordion li:last-child .link {
    border-bottom: 0;
  }

  .accordion li i {
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 18px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }

  .accordion li i.fa-caret-up {
    right: 24px;
    left: auto;
    font-size: 16px;
  }

  .accordion li.open .link {
    color: var(--yellow);
  }

  .accordion li.open i {
    color: var(--yellow);
  }

  .accordion li.open i.fa-caret-up {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .px-app {
    width: 100%;
    max-width: 480px;
  }

  .px-acc-item {
    border-top: 1px solid #ffcb05;
    border-bottom: 1px solid #ffcb05;
  }
  .px-acc-head {
    padding: 10px 30px;
    background-color: #000;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .px-acc-title {
    color: #ffcb05;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
  }
  .px-acc-title > i {
    font-size: 16px;
    color: #ffcb05;
    margin-right: 5px;
  }
  .px-acc-icon {
    color: #ffcb05;
    font-size: 16px;
    line-height: 1;
    transition: transform 300ms ease;
  }
  .px-acc-item.active .px-acc-icon {
    transform: rotateZ(180deg);
  }
  .px-acc-body {
    height: 0;
    background-color: #000;
    overflow: hidden;
    transition: height 300ms ease;
  }
  .px-acc-content {
    color: #fff;
    padding: 40px;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    text-align: justify;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .policy {
    padding: 0 47px !important;
    margin-top: 0 !important;
  }
}