.sitemap__title {
  position: relative;
  margin-top: 0;
  margin-bottom: 60px;
  padding-top: 20px;
  font-size: 26px;
  font-weight: 400;
  font-style: italic;
  text-align: center;
}
.sitemap__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 70px;
  height: 3px;
  background-color: #9d0034;
  transform: translateX(-50%);
}
.sitemap__list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0;
  margin-bottom: 60px;
  padding: 0;
  list-style: none;
}
.sitemap__list:last-child {
  margin-bottom: 0;
}
.sitemap__item {
  margin-right: 30px;
  margin-bottom: 30px;
}
.sitemap__item:nth-child(4n+4) {
  margin-right: 0;
}
.sitemap__title-catalog {
  width: 100%;
  margin-top: 0;
  margin-bottom: 16px;
  padding-bottom: 16px;
  font-size: 16px;
  font-weight: 400;
  color: #231f20;
  text-transform: uppercase;
  border-bottom: 1px solid #9d0034;
}
.item-sitemap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 270px;
  width: 100%;
}
.item-sitemap__wrapper-title {
  margin-top: 0;
  margin-bottom: 16px;
}
.item-sitemap__title {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 400;
  color: #231f20;
}
.item-sitemap__title--inner-page {
  width: 100%;
  margin-bottom: 16px;
  padding-bottom: 16px;
  text-transform: uppercase;
  border-bottom: 1px solid #212121;
}
.item-sitemap__title--catalog {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.item-sitemap__title--catalog:hover {
   border-bottom: 1px solid #231f20;
}
.item-sitemap__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 0;
  list-style: none;
}
.item-sitemap__list--catalog {
  padding-left: 15px;
}
.item-sitemap__item {
  margin-bottom: 7px;
}
.item-sitemap__item:last-child {
  margin-bottom: 0;
}
.item-sitemap__link {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  color: #231f20;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.item-sitemap__link:hover {
   border-bottom: 1px solid #231f20;
}
@media (max-width: 576px) {
  .sitemap {
    padding-top: 54px;
    padding-right: 16px;
    padding-left: 16px;
  }
  .sitemap__title-catalog {
    max-width: 270px;
    border-bottom: 1px solid #212121;
  }
  .sitemap__item:last-child {
    margin-bottom: 0;
  }
}