body {
  font-family: Roboto, Arial, sans-serif;
  color: var(--main-color-text);
  background: var(--bg-color);
  min-width: 320px;
}

body.activeBurger {
  overflow: hidden;
}

body,
h1,
h2,
h3,
h4,
p,
ul {
  margin: 0;
  padding: 0;
}

.containerMain {
  display: flex;
}

.boxLayout {
  padding-right: 25px;
  padding-bottom: 25px;
  padding-left: 0;
  max-width: 1490px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  gap: 34px;
  display: flex;
  flex-direction: column;
  scrollbar-width: none;
  -ms-overflow-style: none;
  transition: margin-left 0.3s ease;
}

.boxLayout::-webkit-scrollbar {
  display: none;
}

h2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: var(--title);
}

ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 10px 0 20px 0;
}

ol {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 10px 0 20px 20px;
}

ul li {
  position: relative;
  padding-left: 20px;
}

ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--marker-list);
  border-radius: 50%;
}

@media (max-width: 768px) {
  .boxLayout {
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 95px;
    gap: 12px;
  }
}
