.text-grey {
  color: grey;
}

.text-white {
  color: white;
}

.text-theme-color {
  color: var(--theme-color);
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.weight-500 {
  font-weight: 500;
}

.weight-600 {
  font-weight: 600;
}

.weight-700 {
  font-weight: 700;
}

.weight-normal {
  font-weight: normal;
}

.bold {
  font-weight: bold;
}


.font-20 {
  font-size: 2rem;
}

.font-25 {
  font-size: 2.5rem;
}

.font-28 {
  font-size: 2.8rem;
}

.mb-10 {
  margin-bottom: 1rem;
}

.mb-20 {
  margin-bottom: 2rem;
}

.mb-30 {
  margin-bottom: 3rem;
}

.mb-50 {
  margin-bottom: 5rem;
}

.mb-120 {
  margin-bottom: 12rem;
}


.mt-10 {
  margin-top: 1rem;
}

.mt-20 {
  margin-top: 2rem;
}

.mt-30 {
  margin-top: 3rem;
}

.mt-50 {
  margin-top: 5rem;
}

.mt-120 {
  margin-top: 12rem;
}

.mr-5 {
  margin-right: .5rem;
}

.mr-10 {
  margin-right: 1rem;
}

.ml-10 {
  margin-left: 1rem;
}

.ml-20 {
  margin-left: 2rem;
}

.mtmb-10 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.mtmb-15 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.mtmb-120 {
  margin-top: 12rem;
  margin-bottom: 12rem;
}

.ul-circle {
  list-style-type: circle;
}

.ul-no-style {
  list-style-type: none;
  padding: 0;
}

.center-align {
  display: flex;
  justify-content: center;
}

.hide {
  display: none;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.block-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
