.slider_section {
  position: relative;
  width: 100%;
}

.slider {
  width: 100%;
  padding: 2rem var(--pad-side);
}
.slider > div{
  margin: 1rem 0;
}
.slider__none {
  display: none;
}

.slider:nth-child(odd) {
  background-color: #fff;
}

.slider:nth-child(even) {
  background-color: #fff;
}

.slider__name {
  /* display: -webkit-inline-box; */
  display: -ms-inline-flexbox;
  display: flex;
  /* -webkit-box-align: center; */
  -ms-flex-align: center;
  align-items: center;
  /* -webkit-box-pack: center; */
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  font-weight: bold;
  /* font-size: 28px; */
  margin: 2rem auto;
  font-family: gilroy;
  background-color: #fff;
  /* text-align: center; */
}

.slider__name__button {
  padding: 1rem;
  border: 2px solid #b31919;
  cursor: pointer;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
}

.slider__name__button:hover {
  background-color: #eee;
}

.slider__name .products {
  padding: 1rem 8rem;
}

.slider__name .products ul {
  list-style-type: none;
  padding: 0;
}

.slider__name .products ul li {
  display: none;
  font-family: gilroy;
  /* font-size: 24px; */
}

.slider__name .products ul li.active {
  display: block;
}

.slider__name *::-moz-selection {
  background-color: transparent;
  color: currentColor;
}

.slider__name *::selection {
  background-color: transparent;
  color: currentColor;
}