.style-wrap {
  border-radius: 4px;
  margin-bottom: 12px;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.302);
  background: #fff;
  padding: 30px;
}
.style-wrap:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 425px) {
  .style-wrap {
    padding: 30px 10px;
  }
}
.link[href] {
  color: #242424;
  text-decoration: none;
}
.link[href]:hover {
  color: #ec1751;
  text-decoration: underline;
}
.link {
  color: #ec1751;
  text-decoration: underline;
}
.link:hover {
  text-decoration: underline;
}
.link-btn {
  background: #ec1751;
  border-radius: 4px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-sizing: border-box;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  font-size: 16px;
}
.link-btn:hover {
  color: #242424;
  cursor: pointer;
}
.logo {
  display: flex;
  align-items: center;
  padding: 10px 0;
  text-decoration: none;
  color: #ec1751;
  font-weight: 800;
  font-size: 29px;
  line-height: 39px;
}
@media screen and (max-width: 375px) {
  .logo {
    font-size: 24px;
  }
}
.logo .dark-part {
  color: #242424;
}
.catalog__item {
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  background: #fbfbfb;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.302);
  padding: 30px 10px 18px;
  margin-bottom: 12px;
}
.catalog__item:last-child {
  margin-bottom: 0;
}
.catalog__title {
  text-align: center;
  margin-bottom: 24px;
}
.catalog__list {
  display: flex;
  flex-wrap: wrap;
}
.catalog__link-box {
  display: flex;
  border-right: 1px solid #b4b4b4;
  width: 33.3%;
  box-sizing: border-box;
  justify-content: center;
  padding: 0 20px 12px;
}
.catalog__link-box._padding {
  padding: 11px 20px;
}
.catalog__link-box:nth-child(3n) {
  border-right: none;
}
@media screen and (max-width: 839px) {
  .catalog__link-box {
    width: 50%;
  }
  .catalog__link-box:nth-child(3n) {
    border-right: 1px solid #b4b4b4;
  }
  .catalog__link-box:nth-child(even) {
    border-right: none;
  }
}
@media screen and (max-width: 559px) {
  .catalog__link-box {
    width: 100%;
    border-right: 0;
  }
  .catalog__link-box:nth-child(3n) {
    border-right: 0;
  }
}
.catalog__link {
  display: flex;
  text-align: center;
}
