.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;
}
.title-main-page {
  margin-top: 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 10px;
  color: #242424;
  position: relative;
  z-index: 1;
}
.title-main-page::after {
  content: "";
  width: 60px;
  border: 0;
  background: #ec1751;
  height: 1px;
  margin: 12px 0;
  display: flex;
}
@media screen and (max-width: 425px) {
  .title-main-page {
    font-size: 26px;
  }
}
.banner-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 425px) {
  .banner-box {
    background-size: cover;
    background-position: top;
  }
}
.banner-box:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0px;
  margin: auto;
  width: 100%;
  height: 600px;
  background: url("/img/bg-png.jpg") no-repeat;
  background-position: center;
}
@media screen and (max-width: 425px) {
  .banner-box:after {
    height: 454px;
    top: 0px;
  }
}
.banner-box__text {
  text-align: center;
  padding: 0 10px;
  font-size: 20px;
  max-width: 636px;
  color: #242424;
  position: relative;
  z-index: 1;
}
.banner-box__text:last-child {
  padding: 0 10px 39px 10px;
}
@media screen and (max-width: 425px) {
  .banner-box__text {
    font-size: 16px;
  }
}
