.terms--wrapper {
  background-color: var(--color-layout);
  padding: 30px 35px 12px;
  border-radius: var(--common-radius);
}

@media (max-width: 575px) {
  .terms--wrapper {
    padding: 30px 20px 12px;
  }
}

.terms--section {
  margin-bottom: 50px;
}

@media (max-width: 991px) {
  .terms--section {
    margin-bottom: 40px;
  }
}

@media (max-width: 575px) {
  .terms--section {
    margin-bottom: 32px;
  }
}

/* main */

.terms--heading {
  font-size: 32px;
  font-weight: 600;
}

@media (max-width: 991px) {
  .terms--heading {
    font-size: 28px;
  }
}

@media (max-width: 575px) {
  .terms--heading {
    font-size: 21px;
  }
}

.terms--hr {
  border-color: var(--color-primary-transparent);
  opacity: 1;
  margin-bottom: 40px;
}

/* side-heading */

.terms--side-heading {
  font-size: 24px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--color-primary-transparent);
}

@media (max-width: 991px) {
  .terms--side-heading {
    font-size: 22px;
    margin-bottom: 15px;
  }
}

@media (max-width: 575px) {
  .terms--side-heading {
    font-size: 18px;
  }
}

.terms--subtitle {
  font-size: 16px;
  margin-bottom: 10px;
}

@media (max-width: 575px) {
  .terms--subtitle {
    font-size: 14px;
  }
}

/* with points */

.terms--subtitle.points {
  display: flex;
  align-items: start;
  margin-bottom: 10px;
}

.terms--subtitle.points span:first-of-type {
  color: var(--color-primary);
}

.terms--subtitle.points span:first-of-type:after {
  content: ".";
  margin-right: 10px;
  margin-left: 2px;
}

