@import 'reset.css';
@import 'fonts.css';
@import 'global.css';
@import 'header.css';
@import 'footer.css';

ul {
  list-style: circle
}

.main__inner {
  padding: clamp(4rem, 6vw, 8rem) 0;
}

.main__subtitle {
  font-size: clamp(2rem, 2.5vw, 3rem);
  text-align: center;
}

.main__title {
  font-size: clamp(2.5rem, 3vw, 4rem);
  text-align: center;
}

.main__content {
  color: #727272;
  max-width: 1310px;
  font-size: clamp(1.5rem, 2vw, 2rem);
  padding: clamp(3rem, 4vw, 5rem) 0;
  font-weight: 300;

  display: flex;
  width: 100%;
  flex-direction: column;
}

.main__content ul>li {
  line-height: 1.6 !important;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.text {
  line-height: 1.6;
  font-weight: 300;
  color: #727272;
}

.bold {
  font-weight: 600;
  color: #0D0D0D;
}

.margin-text-header {
  margin: 1rem 0;
}

.paragraph-margin {
  margin-left: 3rem;
}

.paragraph-padding-2 {
  padding-left: 1rem;
}

.list-numbers {
  counter-reset: item;
  list-style: none;
}

.list-numbers li {
  counter-increment: item;
  display: table;
  margin: 0.5rem 0;
}

.list-numbers li::before {
  content: counters(item, ".") ". ";
  font-weight: 500;
  display: table-cell;
  padding-right: 1rem;
}

.list-dots {
  counter-reset: dot;
  list-style: none;
}

.list-dots li {
  counter-increment: dot;
  display: table;
  margin: 0.5rem 0;
}

.list-dots li::before {
  content: "•";
  display: table-cell;
  padding-right: 1rem;
  font-size: 2rem;
  line-height: 1;
}