/* terms */
#terms .title {
  margin-bottom: 80px;
}

#terms h4 {
  font-size: 23px;
  margin: 25px 0 12px 0;
}

#terms p {
  color: var(--color-text);
  font-size: 17px;
  line-height: 1.8;
}

#terms ul {
  padding-left: 15px;
  margin: 5px 0;
}

#terms ul li {
  font-size: 16px;
  color: var(--color-mute);
  line-height: 1.8;
  font-weight: 400;
}

#terms ul li ul li {
  font-size: 15px;
  font-weight: 500;
}

/* Desktop ( 1024px ~)*/
@media all and (min-width: 1024px) {
}

/* Laptop ( 1024px ~ 1360px)*/
@media all and (min-width: 1024px) and (max-width: 1360px) {
}

/* Tablet ( 768px ~ 1023px)*/
@media all and (min-width: 768px) and (max-width: 1023px) {
}

/* Mobile ( ~ 767px)*/
@media all and (max-width: 767px) {
  #terms h4 {
    font-size: 19px;
  }
  #terms p {
    font-size: 15px;
  }
  #terms ul li {
    font-size: 14px;
  }

  #terms ul li ul li {
    font-size: 13px;
  }
}
