* {
  padding: 0;
  margin: 0;
  bottom: 0;
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  line-height: 1;
  font-size: 16px;
  background-color: #fff;
  color: #000;
  scroll-behavior: smooth;
}

input, button, textarea {
  font-family: inherit;
}

button {
  cursor: pointer;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

._container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

._content {
  padding: 120px 0;
}
@media (max-width: 550px) {
  ._content {
    padding: 60px 0;
  }
}

._title {
  font-family: "Alex Brush", cursive;
  position: relative;
  font-size: 56px;
  margin-bottom: 50px;
  padding-bottom: 20px;
  text-align: center;
}
@media (max-width: 550px) {
  ._title {
    font-size: 35px;
    margin-bottom: 30px;
    padding-bottom: 15px;
  }
}
._title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 2px;
  width: 100px;
  background-color: #fff;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

._text {
  margin: 0 auto;
  max-width: 520px;
  font-size: 18px;
  line-height: 32px;
  text-align: center;
}

._title-footer {
  margin-bottom: 50px;
}
@media (max-width: 962px) {
  ._title-footer {
    margin-bottom: 25px;
  }
}

.wrapper {
  min-height: 100%;
  font-family: "Padauk", sans-serif;
}
.wrapper .banner {
  background: url(../img/bg_banner.jpg) center no-repeat;
  background-size: cover;
  height: 100vh;
  min-height: 640px;
  top: 0;
  left: 0;
  color: #fff;
}
.wrapper .banner .header {
  padding: 60px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.wrapper .banner .header__logo {
  font-size: 30px;
  color: #fff;
}
.wrapper .banner .header__menu .menu-icon {
  display: none;
  position: relative;
  cursor: pointer;
  z-index: 5;
  width: 30px;
  height: 18px;
}
@media (max-width: 767px) {
  .wrapper .banner .header__menu .menu-icon {
    display: block;
  }
}
.wrapper .banner .header__menu .menu-icon span, .wrapper .banner .header__menu .menu-icon::before, .wrapper .banner .header__menu .menu-icon::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 10%;
  background-color: #fff;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.wrapper .banner .header__menu .menu-icon::before, .wrapper .banner .header__menu .menu-icon::after {
  content: "";
}
.wrapper .banner .header__menu .menu-icon span {
  top: 50%;
  -webkit-transform: scale(1) translate(0, -50%);
          transform: scale(1) translate(0, -50%);
}
.wrapper .banner .header__menu .menu-icon::before {
  top: 0;
}
.wrapper .banner .header__menu .menu-icon::after {
  bottom: 0;
}
.wrapper .banner .header__menu .menu-icon._active {
  position: fixed;
  top: 65px;
  right: 10px;
  z-index: 7;
}
.wrapper .banner .header__menu .menu-icon._active span {
  -webkit-transform: scale(0) translate(0, -50%);
          transform: scale(0) translate(0, -50%);
}
.wrapper .banner .header__menu .menu-icon._active::before {
  top: 50%;
  -webkit-transform: rotate(-45deg) translate(0, -50%);
          transform: rotate(-45deg) translate(0, -50%);
}
.wrapper .banner .header__menu .menu-icon._active::after {
  bottom: 50%;
  -webkit-transform: rotate(45deg) translate(0, 50%);
          transform: rotate(45deg) translate(0, 50%);
}
@media (max-width: 767px) {
  .wrapper .banner .header .menu-body {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 100px 30px 30px;
    -webkit-transition: left 0.3s ease 0s;
    transition: left 0.3s ease 0s;
    overflow: auto;
    z-index: 5;
  }
  .wrapper .banner .header .menu-body._active {
    left: 0px;
  }
}
.wrapper .banner .header .menu-body .body__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .wrapper .banner .header .menu-body .body__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 767px) {
  .wrapper .banner .header .menu-body .body__list li {
    margin-bottom: 30px;
    font-size: 25px;
  }
}
.wrapper .banner .header .menu-body .body__list-link {
  color: #fff;
  margin-left: 50px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border-bottom: 1px solid transparent;
}
.wrapper .banner .header .menu-body .body__list-link:hover {
  border-color: #fff;
}
.wrapper .banner .banner-title {
  margin: 23% auto 0;
  max-width: 715px;
  text-align: center;
}
.wrapper .banner .banner-title h1 {
  font-size: 65px;
  text-transform: uppercase;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .wrapper .banner .banner-title h1 {
    font-size: 45px;
  }
}
@media (max-width: 550px) {
  .wrapper .banner .banner-title h1 {
    font-size: 28px;
  }
}
.wrapper .banner .banner-title p {
  font-size: 18px;
  line-height: 32px;
  font-weight: 400;
}
.wrapper .about {
  background-color: #962323;
  -webkit-transition: all 0.7s ease 0s;
  transition: all 0.7s ease 0s;
}
.wrapper .about:hover {
  background-color: #c8235d;
}
.wrapper .about__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 999px) {
  .wrapper .about__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 999px) {
  .wrapper .about__content-img {
    margin-bottom: 50px;
  }
}
@media (max-width: 550px) {
  .wrapper .about__content-img img {
    max-width: 300px;
    height: auto;
  }
}
.wrapper .about__content-title {
  color: #fff;
  text-align: center;
}
.wrapper .singatures {
  background: url(../img/bg_singatures.jpg) center no-repeat;
  background-size: cover;
  color: #fff;
}
.wrapper .singatures__title::after {
  background-color: #c8235d;
}
.wrapper .menu {
  -webkit-transition: all 0.7s ease 0s;
  transition: all 0.7s ease 0s;
  background-color: #fff;
}
.wrapper .menu:hover {
  background-color: #f3f4f7;
}
.wrapper .menu__title::after {
  background-color: #c8235d;
}
.wrapper .menu .menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 999px) {
  .wrapper .menu .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.wrapper .menu .menu__list-column {
  max-width: 460px;
}
@media (max-width: 999px) {
  .wrapper .menu .menu__list-column {
    max-width: 600px;
    margin-bottom: 60px;
  }
  .wrapper .menu .menu__list-column:last-child {
    margin-bottom: 0px;
  }
}
.wrapper .menu .menu__list-column .menu__list-item {
  margin-bottom: 60px;
}
.wrapper .menu .menu__list-column .menu__list-item:last-child {
  margin-bottom: 0px;
}
.wrapper .menu .menu__list-column .menu__list-item .menu__item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
}
.wrapper .menu .menu__list-column .menu__list-item .menu__item-title h3 {
  font-weight: 600;
}
.wrapper .menu .menu__list-column .menu__list-item .menu__item-title .title-price {
  color: #c8235d;
  margin-left: 15px;
  font-weight: 600;
}
.wrapper .menu .menu__list-column .menu__list-item .menu__text {
  line-height: 1.2;
}
.wrapper .portfolio {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 550px) {
  .wrapper .portfolio-img {
    width: 100%;
  }
}
.wrapper .portfolio-img img {
  width: 100%;
  height: auto;
}
@media (max-width: 550px) {
  .wrapper .portfolio-img__off {
    display: none;
  }
}
.wrapper .contact .footer__top {
  padding: 80px 0;
  background-color: #25262a;
  -webkit-transition: all 0.7s ease 0s;
  transition: all 0.7s ease 0s;
  color: #fff;
}
.wrapper .contact .footer__top:hover {
  background-color: #2f2f2f;
}
@media (max-width: 962px) {
  .wrapper .contact .footer__top {
    padding: 50px 0;
  }
}
.wrapper .contact .footer__top .contact-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 962px) {
  .wrapper .contact .footer__top .contact-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.wrapper .contact .footer__top .contact-footer__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 962px) {
  .wrapper .contact .footer__top .contact-footer__column {
    text-align: center;
    margin-bottom: 60px;
    width: 90%;
  }
  .wrapper .contact .footer__top .contact-footer__column:last-child {
    margin-bottom: 0;
  }
}
.wrapper .contact .footer__top .contact-footer__column:first-child {
  font-size: 24px;
  max-width: 245px;
}
@media (max-width: 962px) {
  .wrapper .contact .footer__top .contact-footer__column:first-child {
    max-width: 100%;
  }
}
.wrapper .contact .footer__top .contact-footer__column._row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 380px;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media (max-width: 962px) {
  .wrapper .contact .footer__top .contact-footer__column._row {
    width: 100%;
  }
}
@media (max-width: 962px) {
  .wrapper .contact .footer__top .contact-footer__column .contact-footer__link .footer__link {
    margin-bottom: 0;
  }
}
@media (max-width: 700px) {
  .wrapper .contact .footer__top .contact-footer__column .contact-footer__link .footer__link {
    margin-bottom: 15px;
  }
}
@media (max-width: 962px) {
  .wrapper .contact .footer__top .contact-footer__column .contact-footer__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 700px) {
  .wrapper .contact .footer__top .contact-footer__column .contact-footer__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.wrapper .contact .footer__top .contact-footer__column p {
  font-size: 14px;
  line-height: 24px;
}
.wrapper .contact .footer-bottom {
  padding: 60px 0 40px;
  background-color: #16171b;
  -webkit-transition: all 0.7s ease 0s;
  transition: all 0.7s ease 0s;
}
.wrapper .contact .footer-bottom:hover {
  background-color: #242323;
}
.wrapper .contact .footer-bottom .footer-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 962px) {
  .wrapper .contact .footer-bottom .footer-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.wrapper .contact .footer-bottom .footer-container .footer-bottom__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 962px) {
  .wrapper .contact .footer-bottom .footer-container .footer-bottom__column {
    margin-bottom: 20px;
  }
  .wrapper .contact .footer-bottom .footer-container .footer-bottom__column:last-child {
    margin-bottom: 0;
  }
}
.wrapper .contact .footer-bottom .footer-container .footer-bottom__column a {
  margin-right: 20px;
  color: #fff;
  opacity: 0.5;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.wrapper .contact .footer-bottom .footer-container .footer-bottom__column a:last-child {
  margin-right: 0;
}
.wrapper .contact .footer-bottom .footer-container .footer-bottom__column a:hover {
  opacity: 1;
}
@media (max-width: 400px) {
  .wrapper .contact .footer-bottom .footer-container .footer-bottom__column .footer-bottom__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 400px) {
  .wrapper .contact .footer-bottom .footer-container .footer-bottom__column .footer-bottom__link a {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .wrapper .contact .footer-bottom .footer-container .footer-bottom__column .footer-bottom__link a:last-child {
    margin-bottom: 0;
  }
}
.wrapper .footer__link {
  color: #fff;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  transition: all 0.3s ease 0s;
}
.wrapper .footer__link:last-child {
  margin-bottom: 0;
}
.wrapper .footer__link:hover {
  color: #c8235d;
}
.wrapper .footer__link img {
  margin-right: 15px;
}
