/* === ACCORDION === */
.pol-list {
  max-width: 700px;
  margin: 0 auto
}

.pol {
  border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.pol:first-child {
  border-top: 1px solid rgba(255, 255, 255, .1)
}

.pol-btn {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  text-align: left;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 17px;
  padding: 18px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.pol-ico {
  color: var(--green-lt);
  font-size: 22px;
  transition: transform .25s;
  flex-shrink: 0;
  font-style: normal
}

.pol-btn.open .pol-ico {
  transform: rotate(45deg)
}

.pol-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s ease
}

.pol-body p {
  padding: 0 0 18px;
  font-size: 15px;
  color: rgba(237, 237, 237, .68);
  line-height: 1.75
}