.termsTitleSection {
  margin-top: 30px;
}
.termsTitle {
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
  color: var(--clr1C);
}
.termsTitle span {
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
  color: var(--colorPrimiary2);
}
.termsBody {
  font-weight: 400;
  font-size: 14px;
  line-height: 180%;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
  text-transform: capitalize;
  margin: 10px auto 0;
  color: var(--clr31);
  width: 70%;
}
/* termsSection */
.termsSection {
  margin-top: 120px;
  position: relative;
}
.termsBg {
  height: 403px;
  width: 50%;
  position: absolute;
  right: 0;
  top: -50px;
  background-color: var(--neutral);
  z-index: 1;
  border-radius: 32px 0 0 32px;
}
.termsContentDiv {
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  width: 94%;
}
.termsContentTitle {
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0px;
  text-align: right;
  vertical-align: middle;
  color: var(--clr1C);
  margin: 10px 0 10px;
}
.termsItemDiv {
  background-color: var(--white);
  border-radius: 24px;
  padding: 30px 20px;
  margin-top: 20px;
}
.termsItemQuestion {
  font-weight: 600;
  font-size: 18px;
  line-height: 180%;
  letter-spacing: 0px;
  text-align: right;
  vertical-align: middle;
  color: var(--clr31);
}
.seperatorDiv {
  margin: 15px 0;
  background-color: var(--clrCE);
  height: 1px;
  width: 100%;
}
.termsItemAnswer {
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 0px;
  text-align: right;
  text-transform: lowercase;
  color: var(--clr5A);
}
.termsItemAnswerItem {
  padding-right: 28px;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 0px;
  text-align: right;
  text-transform: lowercase;
  color: var(--clr5A);
  position: relative;
  margin-top: 5px;
}
.termsItemAnswerItem:first-of-type {
  margin-top: 0;
}
.termsItemAnswerItem::before {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  right: 8px;
  top: 12px;
  background-color: var(--clr5A);
  border-radius: 50%;
}
@media screen and (min-width: 968px) {
  .termsTitle,
  .termsTitle span {
    font-weight: 700;
    font-size: 32px;
    line-height: 140%;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;
  }
  .termsBody {
    font-weight: 400;
    font-size: 18px;
    line-height: 180%;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;
    max-width: 1000px;
    width: 100%;
  }
  .termsBg {
    width: 40%;
    height: 402px;
  }
  .termsContentTitle {
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: right;
    vertical-align: middle;
  }
  .termsItemDiv {
    padding: 35px;
  }
  .termsItemAnswer {
    font-weight: 400;
    font-size: 16px;
    line-height: 180%;
    letter-spacing: 0px;
    text-align: right;
    text-transform: lowercase;
  }
  .termsItemQuestion {
    font-weight: 600;
    font-size: 18px;
    line-height: 180%;
    letter-spacing: 0px;
    text-align: right;
    vertical-align: middle;
  }
}
@media screen and (min-width: 1350px) {
  .termsBg {
    width: calc((100% - 1350px) / 2 + 1350px / 3 * 1.2);
  }
}
/* tipSection */
.tipSection {
  margin: 60px auto 160px;
  width: 94%;
  max-width: 1000px;
}
.tipTitle {
  grid-template-columns: 25px 1fr;
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0px;
  text-align: right;
  vertical-align: middle;
  color: var(--clr31);
  gap: 7px;
}
.tipDesc {
  margin-top: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 0px;
  text-align: right;
  vertical-align: middle;
  text-transform: lowercase;
  color: var(--clr5A);
}
