@charset "UTF-8";

*,
button {
  padding: 0;
  margin: 0;
  font-family: "Roboto", serif;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

button {
  background: 0 0;
  cursor: pointer;
}

button,
input {
  border: 0;
}

body {
  overflow-x: hidden;
}

.container {
  max-width: 1170px;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width:1140px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.wrapper {
  padding: 0;
}

@media screen and (max-width:1140px) {
  .wrapper {
    padding: 0;
  }
}











.form {
  border-radius: 10px 10px 10px 10px;
  background-color: #f9c7d5;
  padding-top: 20px;
  max-width: 420px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column nowrap;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%
}

@media screen and (max-width:1140px) {
  .form {
    max-width: 320px;
    min-width: 0;
    padding-left: 10px;
    margin: 0 auto;
    padding-right: 10px;
  }
}

.form__title {
  font-weight: 600;
  color: #3e3e3e;
  font-size: 28px;
  text-align: center;
}

@media screen and (max-width:1140px) {
  .form__title {
    font-size: 22px;
  }
}

.form__text {
  font-weight: 400;
  color: #525252;
  text-align: center;
  font-size: 16px;
}

.form__text span {
  color: #e71a1a;
  font-weight: 600;
}

@media screen and (max-width:1140px) {
  .form__text {
    font-size: 14px;
  }

  .form__text br {
    display: none;
  }
}

.form__input__wrapper {
  position: relative;
  width: 100%;
  max-width: 300px;
}

.form__input__wrapper svg {
  width: 19px;
  height: 22px;
  position: absolute;
  right: 34px;
  top: 50%;
  margin-top: -24px;
}

@media screen and (max-width:1140px) {
  .form__input__wrapper {
    max-width: 240px;
  }
}

.form__input {
  height: 70px;
  width: 100%;
  -webkit-box-shadow: inset -2px 2px 16px rgba(0, 0, 0, .06);
  box-shadow: inset -2px 2px 16px rgba(0, 0, 0, .06);
  border-radius: 10px;
  background-color: #f8f8f8;
  padding-left: 29px;
  max-width: 300px;
  color: #545454;
  font-size: 22px;
  font-weight: 400;
}

@media screen and (max-width:1140px) {
  .form__input {
    max-width: 240px;
    height: 55px;
    font-size: 14px;
  }
}

.form .common-button {
  width: 174px;
}

.form .common-button span {
  text-transform: uppercase;
}

.form .common-button span:nth-child(1) {
  font-weight: 600;
  font-size: 17px;
  color: #313131;
  letter-spacing: .87px;
  word-wrap: break-word;
  margin-bottom: 5px;
}

.form .common-button span:nth-child(2) {
  font-size: 14px;
  letter-spacing: .72px;
  font-weight: 400;
  color: #565656;
}

.common-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #ffd800;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#fdc234), to(#fcd982));
  background-image: -o-linear-gradient(bottom, #fdc234 0, #fcd982 100%);
  background-image: linear-gradient(to top, #fdc234 0, #fcd982 100%);
  -webkit-box-shadow: 0 4px 2px #e3ae2e;
  box-shadow: 0 4px 2px #e3ae2e;
  border-radius: 8px/25px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column nowrap;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  text-decoration: none;
}

.common-button span {
  font-weight: 600;
  text-transform: uppercase;
  color: #313131;
  font-size: 20px;
}

.form__text__agreement {
  font-size: 14px !important;
  color: #6c6c6c;
}

.html_class {
  font-size: 10px;
}

@media screen and (max-width:1081px) {
  .html_class {
    font-size: calc(100vw/130);
  }
}

@media screen and (max-width:551px) {
  .html_class {
    font-size: calc(100vw/50);
  }
}

.body__modalSale {
  height: 100%;
  z-index: 10;
  display: none;
}

.body__modalSale._active {
  display: block;
}

@media screen and (max-width:551px) {
  .body__modalSale._active {
    display: none;
  }
}

.body__modal,
.body__modalSale,
.body__topBar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

.body__modal {
  height: 100%;
  display: none;
  z-index: 8;
}

.body__modal._active {
  display: block;
}

.body__modal._policy {
  z-index: 9;
}

.body__topBar {
  z-index: 7;
}

.body__menu,
.body__thanks {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
}

.body__menu {
  -webkit-transition: .2s ease;
  -o-transition: .2s ease;
  transition: .2s ease;
  z-index: 10;
  top: -100%
}

.body__menu._active {
  top: 0;
}

.body__thanks {
  top: 0;
  z-index: 9;
  display: none;
}

.body__thanks._active {
  display: block;
}

.coupon_modal {
  font-weight: 500;
}

@media screen and (max-width:551px) {
  .topBar__col {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.topBar__menu {
  width: 3rem;
  display: none;
}

@media screen and (max-width:551px) {
  .topBar__menu {
    display: block;
  }
}

.topBar__link {
  font-size: 2.4rem;
  color: #fff;
  -webkit-transition: .2s ease;
  -o-transition: .2s ease;
  transition: .2s ease;
}

.topBar__link._scrolled {
  font-size: 1.8rem;
  color: #333;
}

@media screen and (max-width:551px) {
  .topBar__link._scrolled {
    font-size: 2.4rem;
  }
}

.topBar__link._menu {
  color: #333;
}

.topBar__reqCall {
  font-size: 2rem;
  color: #ffbc3d;
  cursor: pointer;
  border-bottom: .1rem dashed #ffbc3d;
}

@media screen and (max-width:551px) {
  .topBar__reqCall {
    font-size: 2.4rem;
  }
}

.topBar__navigation {
  width: 100%
}

.logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.logo._scrolled .logo__icon {
  width: 4rem;
}

.logo._dark .logo__text,
.logo._scrolled .logo__text,
.navigation__link._scrolled {
  color: #333;
}

.logo__icon {
  width: 6.5rem;
  margin-right: 3rem;
  -webkit-transition: .2s ease;
  -o-transition: .2s ease;
  transition: .2s ease;
}

@media screen and (max-width:551px) {
  .logo__icon {
    width: 5rem;
    margin-right: 0;
  }
}

.logo__text {
  font-size: 1.6rem;
  line-height: 1.4;
  color: #fff;
  -webkit-transition: .2s ease;
  -o-transition: .2s ease;
  transition: .2s ease;
}

@media screen and (max-width:551px) {
  .logo__text {
    display: none;
  }
}

.navigation {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

@media screen and (max-width:551px) {
  .navigation {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .navigation__items {
    margin: 1rem 0;
  }
}

.navigation__link,
.navigation__link::after {
  -webkit-transition: .2s ease;
  -o-transition: .2s ease;
  transition: .2s ease;
}

.navigation__link {
  font-size: 1.7rem;
  color: #e9e9e9;
  position: relative;
}

.navigation__link._scrolled::after {
  bottom: -.5rem;
}

.navigation__link::after {
  content: "";
  position: absolute;
  width: 0;
  height: .1rem;
  background: #ffbc3d;
  left: 50%;
  bottom: -1.7rem;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.navigation__link:hover {
  color: #ffbc3d;
}

.navigation__link:hover::after {
  width: 100%
}

@media screen and (max-width:551px) {
  .navigation__link {
    color: #333;
    font-size: 2.4rem;
  }
}

.button {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 2.5rem 4rem;
  background: #ffbc3d;
  font-size: 2rem;
  text-transform: uppercase;
  -webkit-box-shadow: 0 .5rem 3rem -.5rem rgba(255, 188, 61, .5), inset 0 -.5rem 0 0 #cc8500;
  box-shadow: 0 .5rem 3rem -.5rem rgba(255, 188, 61, .5), inset 0 -.5rem 0 0 #cc8500;
  border-radius: 1rem;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.button__icon {
  width: 2rem;
}

.button:hover {
  background: #ffaa0a;
  -webkit-box-shadow: 0 .5rem 3rem -.5rem rgba(255, 188, 61, .5), inset 0 -.5rem 0 0 #ac7000;
  box-shadow: 0 .5rem 3rem -.5rem rgba(255, 188, 61, .5), inset 0 -.5rem 0 0 #ac7000;
}

.button:active {
  -webkit-transform: translateY(.2rem);
  -ms-transform: translateY(.2rem);
  transform: translateY(.2rem);
  -webkit-box-shadow: 0 .5rem 3rem -.5rem rgba(255, 188, 61, .5), inset 0 0 0 0 #ac7000;
  box-shadow: 0 .5rem 3rem -.5rem rgba(255, 188, 61, .5), inset 0 0 0 0 #ac7000;
}

.button._bigger {
  padding: 2.5rem 6.5rem;
}

.button._prev {
  background: #fff;
  -webkit-box-shadow: 0 .5rem 5rem -2rem rgba(0, 0, 0, .3);
  box-shadow: 0 .5rem 5rem -2rem rgba(0, 0, 0, .3);
}

.button._prev .button__icon {
  margin-right: 1.5rem;
}

.button._next {
  -webkit-box-shadow: 0 .5rem 5rem -2rem rgba(0, 0, 0, .3), inset 0 -.5rem 0 0 #cc8500;
  box-shadow: 0 .5rem 5rem -2rem rgba(0, 0, 0, .3), inset 0 -.5rem 0 0 #cc8500;
}

.button._next._inactive {
  cursor: not-allowed;
  background: #f8f4f4;
  -webkit-box-shadow: 0 .5rem 5rem -2rem rgba(0, 0, 0, .3), inset 0 0 0 0 #cc8500;
  box-shadow: 0 .5rem 5rem -2rem rgba(0, 0, 0, .3), inset 0 0 0 0 #cc8500;
}

.button._next .button__icon {
  margin-left: 1.5rem;
}

.sectionQuiz {
  padding: 6rem 0 9rem;
}

@media screen and (max-width:551px) {
  .sectionQuiz {
    padding: 6rem 0;
  }
}

.sectionQuiz__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.sectionQuiz__title {
  margin-bottom: 3rem;
}

.sectionQuiz__quiz,
.title {
  width: 100%
}

.title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 3.6rem;
  color: #3e3e3e;
  text-align: center;
}

.title::after {
  content: '';
  width: 16rem;
  height: .3rem;
  background: #ffbc3d;
  margin-top: 1rem;
}

.title._left {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.title._white {
  color: #e9e9e9;
}

.title._smaller {
  font-size: 3.3rem;
}

.sectionSales {
  background: url(../img/sectionsales-back-min.png) no-repeat center;
  background-size: cover;
  position: relative;
}

.sectionSales::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .8);
  position: absolute;
  top: 0;
  left: 0;
}

.sectionSales__box,
.sectionSales__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.sectionSales__wrapper {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  padding: 3rem 0;
}

.sectionSales__box {
  width: 85rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (max-width:551px) {
  .sectionSales__box {
    width: 100%
  }
}

.sectionSales__title {
  margin-bottom: 3rem;
}

.sectionSales__items {
  font-size: 2.7rem;
  color: #e9e9e9;
  margin-bottom: 2rem;
}

.sectionSales__items .accent {
  font-family: inherit;
  font-size: inherit;
  color: #ffbc3d;
}

.sectionSales__items:last-child {
  margin-bottom: 4rem;
}

@media screen and (max-width:551px) {
  .sectionSales__items {
    font-size: 2.4rem;
  }
}

.sectionSales__info {
  font-size: 1.8rem;
  color: #e9e9e9;
}

.sectionSales__worker {
  width: 44rem;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  bottom: 0;
  right: 0;
}

@media screen and (max-width:551px) {
  .sectionSales__worker {
    display: none;
  }
}

.sectionPrice {
  padding: 6rem 0;
}

.sectionPrice__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.sectionPrice__subtitle,
.sectionPrice__title {
  margin-bottom: 2rem;
}

.sectionPrice__list {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.sectionPrice__list._jcc {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.sectionPrice__items {
  width: 35rem;
  margin-bottom: 3rem;
  margin-left: 2rem;
  margin-right: 2rem;
}

@media screen and (max-width:551px) {
  .sectionPrice__items {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}

.subtitle {
  width: 100%;
  font-size: 2.8rem;
  color: #333;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.subtitle .accent {
  font-size: 1.8rem;
  color: inherit;
}

.sectionPortfolio {
  padding: 3rem 0 6rem;
}

.sectionPortfolio__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.sectionPortfolio__title {
  margin-bottom: 3rem;
}

.sectionPortfolio__line {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width:551px) {
  .sectionPortfolio__line {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.sectionPortfolio__box {
  width: 48%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width:551px) {
  .sectionPortfolio__box {
    width: 100%
  }
}

.sectionPortfolio__subtitle {
  font-size: 2.8rem;
  color: #333;
  margin-bottom: 2rem;
}

.sectionPortfolio__list {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width:551px) {
  .sectionPortfolio__list {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
}

.sectionPortfolio__items {
  width: 18rem;
  height: 13rem;
  border-radius: .5rem;
  overflow: hidden;
}

.sectionPortfolio__items:not(:nth-child(3n)) {
  margin-right: 1rem;
  margin-bottom: 1rem;
}

@media screen and (max-width:551px) {
  .sectionPortfolio__items:not(:nth-child(3n)) {
    margin-right: 0;
    margin-bottom: 2rem;
  }

  .sectionPortfolio__items {
    margin-bottom: 2rem;
  }
}

.sectionPortfolio__image,
.work__video img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.contacts {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  background: #fff;
  padding: 4rem;
  -webkit-box-shadow: 0 .5rem 5rem -2rem rgba(0, 0, 0, .3);
  box-shadow: 0 .5rem 5rem -2rem rgba(0, 0, 0, .3);
  border-radius: .5rem;
}

.contacts__title {
  margin-bottom: 3rem;
}

.contacts__line {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.contacts__line:not(:last-child) {
  margin-bottom: 2rem;
}

.contacts__icon {
  width: 2rem;
  margin-right: 1.5rem;
}

.contacts__text {
  font-size: 2rem;
  line-height: 1.4;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.contacts__text._link:hover {
  color: #ffbc3d;
}

@media screen and (max-width:551px) {
  .footer__logo {
    display: none;
  }
}

.footer__policy {
  font-size: 1.7rem;
  color: #333;
  position: relative;
  margin-left: -10rem;
  cursor: pointer;
}

.footer__policy::after {
  content: '';
  width: 100%;
  height: .1rem;
  background: #333;
  position: absolute;
  bottom: -.5rem;
  left: 0;
}

@media screen and (max-width:551px) {
  .footer__policy {
    margin-left: 0;
  }
}

.footer__develop,
.quiz {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.footer__develop {
  font-size: 1.7rem;
  color: #333;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  line-height: 1.4;
}

.footer__develop .accent {
  font-size: inherit;
  font-family: inherit;
  color: #008ea9;
  text-decoration: underline;
}

.quiz {
  width: 100%;
  position: relative;
}

.quiz__items {
  min-height: 65rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  background: #fff;
  -webkit-box-shadow: 0 .5rem 5rem -2rem rgba(0, 0, 0, .3);
  box-shadow: 0 .5rem 5rem -2rem rgba(0, 0, 0, .3);
  border-radius: .5rem;
  padding: 3rem;
  display: none;
}

.quiz__items._active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.quiz__text {
  color: #333;
  font-size: 2.8rem;
  margin-bottom: 2rem;
  text-align: center;
}

.quiz__text .accent {
  font-size: inherit;
  font-family: inherit;
  color: #ffbc3d;
}

.quiz__line {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.quiz__line._mta {
  margin-top: 9rem;
}

@media screen and (max-width:551px) {
  .quiz__line._mta {
    margin-top: 0;
  }
}

.quiz__line._mt {
  margin-top: 3rem;
}

@media screen and (max-width:551px) {
  .quiz__line {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.quiz__choice {
  width: 35rem;
}

@media screen and (max-width:551px) {
  .quiz__choice {
    width: 100%;
    margin-bottom: 2rem;
  }
}

.quiz__buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: auto;
  margin-bottom: 3rem;
}

.quiz__button {
  margin: 0 3rem;
}

.quiz__button._form {
  margin: 0;
  width: 35rem;
  -webkit-box-shadow: 0 .5rem 5rem -2rem rgba(0, 0, 0, .3);
  box-shadow: 0 .5rem 5rem -2rem rgba(0, 0, 0, .3);
}

@media screen and (max-width:551px) {
  .quiz__button._form {
    width: 100%
  }

  .quiz__button {
    margin: 0 1rem;
  }
}

.quiz__input {
  width: 35rem;
}

@media screen and (max-width:551px) {
  .quiz__input {
    width: 100%;
    margin-bottom: 2rem;
  }
}

.choice {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.choice._dn {
  display: none;
  width: 0;
  height: 0;
}

.choice._active .choice__top,
.choice:hover .choice__top {
  border: .1rem solid #ffbc3d;
}

.choice._active .choice__top::after,
.choice._active .choice__top::before,
.choice:active .choice__top::after,
.choice:hover .choice__top::before {
  visibility: visible;
  opacity: 1;
}

.choice__top,
.choice__top::before {
  width: 100%;
  -webkit-transition: .2s ease;
  -o-transition: .2s ease;
  transition: .2s ease;
}

.choice__top {
  height: 25rem;
  border-radius: .5rem;
  margin-bottom: 1rem;
  -webkit-box-shadow: 0 .5rem 5rem -2rem rgba(0, 0, 0, .3);
  box-shadow: 0 .5rem 5rem -2rem rgba(0, 0, 0, .3);
  overflow: hidden;
  position: relative;
}

.choice__top::before {
  content: "";
  height: 100%;
  background: rgba(0, 0, 0, .8);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
}

.choice__top::after,
.modal__policy::before {
  content: "";
  background-size: contain;
  position: absolute;
}

.choice__image,
.choice__top::after {
  -webkit-transition: .2s ease;
  -o-transition: .2s ease;
  transition: .2s ease;
}

.choice__top::after {
  background: url(../img/tick-quiz-min.png) no-repeat center;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  width: 6rem;
  height: 6rem;
}

.choice__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.choice__text {
  color: #333;
  font-size: 2.1rem;
  text-align: center;
  line-height: 1.4;
}

.input {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}

.input__input {
  width: 100%;
  font-size: 2rem;
  color: #333;
  padding: 2.5rem 5rem 2.5rem 3rem;
  background: #f8f8f8;
  border-radius: 1rem;
  border: .1rem solid transparent;
}

.input__input._warning {
  border: .1rem solid #ff000065;
}

.input__icon {
  width: 2.5rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 2rem;
}

.modal,
.modal__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.modal {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .8);
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.modal__wrapper {
  width: 44rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #fff;
  border-radius: 1rem;
  padding: 3rem;
  position: relative;
}

@media screen and (max-width:551px) {
  .modal__wrapper {
    width: 90vw;
  }
}

.modal__bigWrap {
  height: 60rem;
  width: 117rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  border-radius: .5rem;
  padding: 3rem 2rem;
  overflow-y: scroll;
  position: relative;
}

@media screen and (max-width:551px) {
  .modal__bigWrap {
    width: 90vw;
    height: 70rem;
  }
}

.modal__text {
  font-size: 1.8rem;
}

.modal__close {
  position: absolute;
  width: 1.7rem;
  top: 1.2rem;
  right: 1.2rem;
  cursor: pointer;
}

.modal__title {
  margin-bottom: 1rem;
}

.modal__subtitle {
  font-size: 2rem;
  color: #333;
  margin-bottom: 2rem;
  text-align: center;
  line-height: 1.4;
}

.modal__button,
.modal__input {
  width: 100%;
  margin-bottom: 2rem;
}

.modal__policy {
  text-align: center;
  font-size: 1.4rem;
  color: #333;
  position: relative;
}

.modal__policy .accent {
  display: inline;
  font-size: inherit;
  color: #ffbc3d;
  text-decoration: underline;
  cursor: pointer;
}

.modal__policy::before {
  width: 2rem;
  height: 2rem;
  background: url(../img/checked-min.png) no-repeat center;
  top: -.2rem;
  left: -3rem;
}

.menu,
.menu__topLine,
.menu__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.menu {
  width: 100%;
  height: 100%;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  background: rgba(0, 0, 0, .7);
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.menu__topLine,
.menu__wrapper {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.menu__wrapper {
  width: 100%;
  background: #fff;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.menu__topLine {
  width: 95vw;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem 0;
}

.menu__close {
  width: 2.5rem;
}

.menu__navigation {
  padding: 3rem 0;
}

.thanks,
.thanks__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.thanks {
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.thanks__wrapper {
  width: 60rem;
  background: #fff;
  padding: 3rem 6rem;
  border-radius: .5rem;
  -webkit-box-shadow: 0 .5rem 1.5rem -.5rem rgba(0, 0, 0, .5);
  box-shadow: 0 .5rem 1.5rem -.5rem rgba(0, 0, 0, .5);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}

@media screen and (max-width:551px) {
  .thanks__wrapper {
    width: 90vw;
  }
}

.thanks__title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

@media screen and (max-width:551px) {
  .thanks__title {
    font-size: 2.6rem;
  }
}

.thanks__text {
  font-size: 2.4rem;
  text-align: center;
}

@media screen and (max-width:551px) {
  .thanks__text {
    font-size: 1.9rem;
  }
}

.modalSale {
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.modalSale::before,
.thanks::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  position: absolute;
  top: 0;
  left: 0;
}

.modalSale,
.modalSale__bottom,
.modalSale__top,
.modalSale__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.modalSale__wrapper {
  width: 110rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.modalSale__bottom,
.modalSale__top {
  width: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.modalSale__top {
  font-size: 3.6rem;
  color: #333;
  background: #ffbc3d;
  padding: 1rem 2rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.modalSale__bottom {
  padding: 3rem 2rem;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: #f0f1f3;
}

.modalSale__img {
  width: 55rem;
  margin-left: -12.4rem;
  margin-right: 2rem;
}

.modalSale__form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.modalSale__text {
  font-size: 2.4rem;
  color: #333;
  line-height: 1.4;
  margin-bottom: 3rem;
}

.modalSale__text .accent {
  font-size: inherit;
  color: inherit;
}

.modalSale__input {
  width: 90%;
  margin-bottom: 3rem;
}

.modalSale__line {
  width: 90%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.modalSale__button {
  margin-right: 1rem;
}

.modalSale__cancel {
  font-size: 1.8rem;
  text-decoration: underline;
  color: #333;
  cursor: pointer;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999999;
  background-color: #fff;
  width: 100%
}

.header__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width:1140px) {
  .header__container {
    padding: 10px 30px 10px 0;
  }
}

.header__menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 768px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 18px;
}

@media screen and (max-width:1140px) {
  .header__menu {
    display: none;
  }
}

.header__menu a,
.header__mobile a {
  font-weight: 400;
  padding-bottom: 15px;
  color: #6d6d6d;
  font-size: 17px;
  border-bottom: 2px solid #fff;
  text-decoration: underline;
}

.header__menu a:hover,
.header__mobile a:hover {
  border-bottom: 2px solid #fdc43d;
  color: #fdc43d;
}

.header__phone,
.header__phone a {
  font-weight: 600;
  font-size: 24px;
  color: #676767;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__phone a svg,
.header__phone svg {
  margin-right: 16px;
  margin-top: 2px;
  fill: #fdc849;
}

@media screen and (max-width:1140px) {

  .header__phone,
  .header__phone a {
    font-size: 22px;
  }
}

.header__mobile__menu {
  display: none;
}

@media screen and (max-width:1140px) {
  .header__mobile__menu {
    display: block;
  }
}

.header__mobile,
.header__mobile--active {
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.header__mobile {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #fff;
  -webkit-transform: translateX(-100vw);
  -ms-transform: translateX(-100vw);
  transform: translateX(-100vw);
}

.header__mobile--active {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.header__mobile__menu {
  height: 30px;
}

.header__mobile .header__mobile__menu {
  position: absolute;
  left: 15px;
  top: 12px;
}

.top {
  background-color: #707070;
  padding: 16px 0;
  margin-top: 55px;
}

@media screen and (max-width:1140px) {
  .top {
    margin-top: 50px;
  }
}

.container__top {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width:1140px) {
  .container__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.top__addres,
.top__left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.top__left {
  width: calc(41.66667% - 30px);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.top__addres {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 14px;
}

.top__addres svg {
  margin-right: 14px;
}

.top__addres span,
.top__company h2 {
  font-weight: 500;
  color: #fff;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: .45px;
}

@media screen and (max-width:1140px) {
  .top__addres {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.top__company {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 11px;
}

.top__company svg {
  margin-right: 22px;
}

.top__company h2 {
  color: #e9e9e9;
  font-size: 19px;
  line-height: 26px;
  letter-spacing: -.5px;
}

@media screen and (max-width:1140px) {
  .top__company {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .top__company svg {
    width: 50px;
    margin-right: 10px;
  }

  .top__company h2 {
    font-size: 14px;
    word-wrap: break-word;
  }
}

.top__left__text,
.top__right span {
  font-weight: 400;
  font-size: 15px;
  color: #fff;
}

.top__center {
  width: calc(34.16667% - 30px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.top__center h1 {
  font-weight: 600;
  color: #fdc53f;
  font-size: 22px;
  line-height: 45px;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: -1px;
}

.top__right {
  width: calc(31.66667% - 30px);
}

.top__right span {
  font-size: 16px;
  margin-bottom: 5px;
  display: block;
}

.top__right span:nth-child(3) {
  margin-bottom: 8px;
  line-height: 20px;
}

.top__right .header__phone,
.top__right button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.top__right .header__phone {
  margin-bottom: 5px;
}

.top__right .header__phone svg {
  margin-top: 0;
}

.top__right .header__phone span {
  font-weight: 600;
  margin-bottom: 0;
  font-size: 24px;
}

.top__right button {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 266px;
  height: 41px;
  border-radius: 5px;
  background-color: #f9c7d5;
}

.top__right button span {
  font-weight: 400;
  margin: 0;
  color: #333;
  font-size: 16px;
  letter-spacing: .36px;
}

@media screen and (max-width:1140px) {

  .top__center,
  .top__left,
  .top__right,
  .top__right .header__phone {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .top__right button {
    margin: 0 auto;
  }

  .top__center,
  .top__left,
  .top__right {
    width: 100%;
    max-width: 414px;
    text-align: center;
    margin-bottom: 40px;
  }

  .top__right {
    margin-bottom: 0;
  }
}

.main {
  background: url(../img/main/bg-min.jpg) no-repeat center center/cover;
  padding-top: 30px;
}

.main__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.main__top {
  text-align: center;
  margin-bottom: 40px;
}

.main__top div {
  color: #fb2e2e;
}

.main__top div:nth-child(1),
.main__top div:nth-child(2) {
  font-weight: 900;
  font-size: 45px;
}

.main__top div:nth-child(3),
.main__top div:nth-child(4) {
  font-weight: 500;
  font-size: 40px;
}

.main__top div:nth-child(2) {
  margin-bottom: 10px;
}

.main__top div:nth-child(3) {
  margin-bottom: 17px;
}

.main__top div:nth-child(4) {
  margin-bottom: 25px;
}

.main__top .main__top__list,
.main__top .main__top__list div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.main__top .main__top__list {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  padding-left: 30px;
}

.main__top .main__top__list div {
  font-weight: 400;
  color: #e0e0e0;
  font-size: 23px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0;
}

.main__top .main__top__list div span {
  background-color: #fdc746;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  margin-right: 13px;
  display: block;
}

.main__top .main__top__list div:nth-child(1),
.main__top .main__top__list div:nth-child(2),
.main__top .main__top__list div:nth-child(3) {
  margin-bottom: 30px;
}

.main__top .main__top__list div:nth-child(5) {
  padding-left: 160px;
}

.main__top .main__top__list div:nth-child(6) {
  padding-right: 190px;
}

@media screen and (max-width:1140px) {
  .main__top div {
    padding: 0;
  }

  .main__top div:nth-child(1),
  .main__top div:nth-child(2) {
    font-size: 30px;
  }

  .main__top div:nth-child(3),
  .main__top div:nth-child(4) {
    font-size: 25px;
  }

  .main__top .main__top__list {
    padding-left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
  }

  .main__top .main__top__list br {
    display: none;
  }

  .main__top .main__top__list div {
    margin-bottom: 15px !important;
    font-size: 15px;
    padding: 0 !important;
  }
}

.main__bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media screen and (max-width:1140px) {
  .main__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.main__form {
  width: 420px;
  padding-bottom: 20px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.main__form .form__title {
  margin-bottom: 16px;
}

.main__form .common-button {
  width: 306px;
  height: 69px;
  margin-bottom: 23px;
}

.main__form .form__text {
  margin-bottom: 18px;
}

.main__form .form__input__wrapper {
  margin-bottom: 12px;
}

.main__form .main__form__text {
  margin-bottom: 20px;
  margin-top: 5px;
}

@media screen and (max-width:1140px) {
  .main__form .common-button {
    width: 100%;
    max-width: 240px;
  }
}

.main__bottom__table {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: calc(58.33333% - 30px);
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width:1140px) {
  .main__bottom__table {
    width: 100%
  }
}

.main__table {
  background-color: #e71a1a;
  border-radius: 10px;
  padding: 12px 34px 12px 42px;
  max-width: 434px;
  color: #dadada;
  font-size: 45px;
  line-height: 65px;
  font-weight: 500;
  margin-right: 20px;
}

.main__table span {
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
}

@media screen and (max-width:1140px) {
  .main__table {
    font-size: 30px;
    line-height: 40px;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
    text-align: center;
    margin: 0 auto 30px;
  }
}

.company {
  background-color: #e5e5e5;
}

.company__title,
.container__company {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.container__company {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column nowrap;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  padding-top: 51px;
  padding-bottom: 84px;
}

.company__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 120px;
}

.company__title svg {
  margin-right: 26px;
}

@media screen and (max-width:1140px) {
  .company__title {
    margin-right: 0;
  }

  .company__title svg {
    display: none;
  }

  .company__title span {
    text-align: center;
  }
}

.company__block div span,
.company__podtitle,
.company__title span {
  font-weight: 900;
  color: #353535;
  font-size: 38px;
}

@media screen and (max-width:1140px) {

  .company__podtitle,
  .company__title span {
    font-size: 20px;
  }
}

.company__podtitle {
  text-align: center;
  margin-bottom: 55px;
  margin-right: 60px;
}

@media screen and (max-width:1140px) {
  .company__podtitle {
    margin-right: 0;
    margin-top: 10px;
  }
}

.company__blocks {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

@media screen and (max-width:1140px) {
  .company__blocks {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.company__block__wrapper {
  max-width: 216px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
}

@media screen and (max-width:1140px) {
  .company__block__wrapper {
    margin: 0 auto 40px;
  }
}

.company__block {
  width: 216px;
  height: 216px;
  -webkit-box-shadow: 0 13px 28px rgba(79, 79, 79, .05);
  box-shadow: 0 13px 28px rgba(79, 79, 79, .05);
  background-color: #fff;
  padding: 10px;
  border-radius: 50%;
  margin-bottom: 30px;
}

.company__block div {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #f2f2f2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.company__block div span {
  color: #fdc53d;
  font-size: 45px;
  line-height: 50px;
  text-align: center;
}

@media screen and (max-width:1140px) {
  .company__block {
    margin-bottom: 10px;
  }
}

.company__blocks__text {
  font-weight: 400;
  text-align: center;
  color: #525252;
  font-size: 19px;
}

.container__work {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 85px;
  padding-bottom: 75px;
}

.container__work .common-button {
  width: 345px;
  height: 79px;
}

@media screen and (max-width:1140px) {
  .container__work .common-button {
    width: 100%
  }
}

@media screen and (max-width:1140px) {
  .work__title {
    text-align: center;
  }
}

@media screen and (max-width:1140px) {
  .work__podtitle {
    text-align: center;
  }
}

.work__blocks {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 55px;
  width: 100%
}

@media screen and (max-width:1140px) {
  .work__blocks {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.work__block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.work__block svg {
  fill: #e61638;
  margin-bottom: 25px;
}

.work__block span {
  font-weight: 400;
  color: #525252;
  text-align: center;
  min-height: 40px;
}

@media screen and (max-width:1140px) {
  .work__block {
    width: 100%;
    max-width: 160px;
    margin-bottom: 30px;
  }

  .work__block svg {
    margin-bottom: 10px;
  }
}

.price {
  background-color: #e5e5e5;
}

.container__price {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  padding-top: 60px;
  padding-bottom: 74px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.price__title {
  font-weight: 900;
  color: #3c3c3c;
  font-size: 38px;
  margin-bottom: 35px;
}

.price__block,
.price__blocks {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%
}

.price__block {
  -webkit-box-orient: vertical;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  max-width: 350px;
  border-top-left-radius: 5px;
  border-top-Right-radius: 5px;
  font-size: 26px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
  border-radius: 10px;
  background-color: #fff;
  padding-bottom: 22px;
  margin-bottom: 35px;
}

.price__block .product__block__img {
  height: 294px;
  width: 100%;
  margin-bottom: 14px;
}

.price__block .product__block__img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.price__block .price__block__name {
  color: #555;
  font-weight: 500;
  margin-bottom: 2px;
}

.price__block .price__block__price {
  color: #626262;
  font-weight: 900;
  margin-bottom: 8px;
}

.coupon__list__price .price__block__price span,
.price__block .price__block__price span {
  position: relative;
}

.coupon__list__price .price__block__price span::after,
.price__block .price__block__price span::after {
  width: 100%;
  content: '';
  height: 4px;
  background-color: #e71a1a;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2px;
}

.price__block .price__block__price__actual {
  color: #363636;
  font-weight: 900;
  margin-bottom: 13px;
}

.price__block .common-button {
  max-width: 322px;
  width: 100%;
  height: 73px;
  margin: 0 auto;
}

@media screen and (max-width:1140px) {
  .price__block {
    margin: 0 auto 35px;
    max-width: 320px;
  }

  .price__block .common-button {
    max-width: 240px;
    height: 60px;
  }
}

.price__bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  padding-right: 155px;
}

@media screen and (max-width:1140px) {
  .price__bottom {
    padding-right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
  }
}

.price__form .form .form__title {
  margin-bottom: 13px;
}

.price__form .form .form__text {
  margin-bottom: 12px;
  padding: 0 10px;
}

.price__form .form .form__input__wrapper {
  margin-bottom: 20px;
}

.price__form .form .common-button {
  width: 100%;
  max-width: 306px;
  height: 69px;
  margin-bottom: 20px;
}

@media screen and (max-width:1140px) {
  .price__form {
    margin: 0 auto 50px;
  }
}

.container__coupon .common-button,
.price__open__button {
  height: 79px;
  width: 100%;
  max-width: 345px;
}

.coupon {
  overflow: hidden;
  background: url(../img/coupon/bg-min.jpg) no-repeat center center/cover;
}

.container__coupon {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  padding: 58px 0 58px 30px;
  position: relative;
}

@media screen and (max-width:1140px) {
  .container__coupon {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    padding: 58px 15px;
  }
}

.coupon__worker {
  position: absolute;
  right: -200px;
  bottom: 0;
}

@media screen and (max-width:1140px) {
  .coupon__worker {
    display: none;
  }
}

.coupon__title {
  color: #e71a1a;
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 22px;
}

@media screen and (max-width:1140px) {
  .coupon__title {
    font-size: 27px;
  }
}

.coupon__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  margin-bottom: 26px;
}

.coupon__list div {
  color: #fff;
  font-size: 27px;
  font-weight: 500;
  line-height: 50px;
}

.coupon__list div span {
  color: #fdca4e;
}

@media screen and (max-width:1140px) {
  .coupon__list {
    text-align: left;
    margin-bottom: 20px;
  }

  .coupon__list div {
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 20px;
  }
}

.coupon__list__margin {
  margin-top: 28px;
}

.coupon__list2,
.coupon__list__price {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
}

.coupon__list__price div {
  font-size: 22px;
  margin-top: -10px;
}

.coupon__list__price .price__block__price {
  margin-right: 15px;
}

.coupon__list__price .price__block__price span::after {
  margin-top: -1.5px;
  height: 3px;
  background-color: red;
}

@media screen and (max-width:1140px) {
  .coupon__list__price div {
    font-size: 16px;
  }

  .coupon__list__price .price__block__price span:after {
    height: 2px;
    margin-top: -1px;
  }
}

.coupon__list2 {
  -webkit-box-orient: vertical;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  margin-bottom: 34px;
}

.coupon__list2 span {
  font-weight: 400;
  color: #fff;
  font-size: 18px;
  line-height: 35px;
}

@media screen and (max-width:1140px) {
  .coupon__list2 {
    text-align: left;
  }

  .coupon__list2 span {
    margin-bottom: 20px;
    line-height: 20px;
    font-size: 14px;
  }
}

.services {
  background-color: #fff;
}

.services .container__price {
  padding-top: 80px;
  padding-bottom: 65px;
}

.services .price__title {
  color: #e71a1a;
  text-align: center;
  margin-bottom: 40px;
}

@media screen and (max-width:1140px) {
  .services .price__title {
    font-size: 20px;
  }
}

.services .services__block__free {
  color: #e71a1a;
  font-size: 26px;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 24px;
}

.how {
  background: url(../img/how/bg-min.jpg) no-repeat center center/cover;
}

.how__container {
  padding: 53px 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width:1140px) {
  .how__container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.how__title {
  color: #fff;
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 50px;
}

@media screen and (max-width:1140px) {
  .how__title {
    flex-size: 30px;
    text-align: center;
  }
}

.how__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row;
  -ms-flex-flow: row;
  flex-flow: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  max-width: 1071px;
  margin-bottom: 70px;
}

@media screen and (max-width:1140px) {
  .how__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column wrap;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 70px;
  }
}

.how__block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 502px;
  width: 100%
}

.how__block .common-button {
  width: 100%;
  max-width: 302px;
  height: 69px;
}

@media screen and (max-width:1140px) {
  .how__block {
    margin: 0 auto 70px;
  }
}

.how__block__top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 20px;
  width: 100%
}

@media screen and (max-width:1140px) {
  .how__block__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.how__block__top__block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  max-width: 230px;
}

.how__block__top__block div:nth-child(1) {
  width: 216px;
  height: 216px;
  overflow: hidden;
  margin-bottom: 30px;
}

.how__block__top__block div:nth-child(1) img {
  border-radius: 50%;
  width: 100%;
  height: 100%
}

.how__block__top__block div:nth-child(2) {
  color: #fff;
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  text-align: center;
}

.how__block__top__block div:nth-child(2) span {
  font-weight: 400;
  color: #fccd58;
  font-size: 17px;
}

.how__block__top__block div:nth-child(2) a {
  font-size: 22px;
  color: #fccd58;
  font-weight: 900;
}

@media screen and (max-width:1140px) {
  .how__block__top__block {
    margin: 0 auto 40px;
  }

  .how__block__top__block div:nth-child(1) {
    margin-bottom: 10px;
  }
}

.how__row2,
.work__info .work__span__bottom {
  margin-bottom: 0;
}

.how__row2 .how__block__top__block div:nth-child(2) {
  min-height: 140px;
}

@media screen and (max-width:1140px) {

  .how__row2 .how__block__top__block div:nth-child(2),
  .how__row2 .how__block__top__block:nth-child(1) {
    min-height: 0;
  }

  .how__row .how__block:nth-child(2) {
    margin-bottom: 0;
  }
}

.container__wors {
  padding-top: 85px;
  padding-bottom: 70px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
}

.work__title {
  color: #3c3c3c;
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 20px;
}

.work__info div,
.work__podtitle {
  color: #5d5d5d;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 25px;
}

.work {
  width: calc(102.5% - 30px);
  -webkit-box-shadow: 0 17px 28px rgba(153, 153, 153, .2);
  box-shadow: 0 17px 28px rgba(153, 153, 153, .2);
  border-radius: 10px;
  background-color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width:1140px) {
  .work {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
    max-width: 414px;
    margin: 0 auto;
  }
}

.work__info {
  width: calc(32.08333% - 30px);
  padding-left: 32px;
  padding-top: 15px;
  padding-bottom: 10px;
}

.work__info div {
  color: #565656;
  font-size: 26px;
  margin-bottom: 5px;
}

.work__info span {
  font-size: 23px;
  color: #6c6c6c;
  font-weight: 500;
  margin-bottom: 15px;
  display: block;
}

.work__info .work__price-line {
  margin-bottom: 6px;
}

.work__info .work__price-line p {
  display: inline-block;
  position: relative;
}

.work__info .work__price-line p::before {
  position: absolute;
  content: '';
  background-color: #e71a1a;
  height: 4px;
  width: 100%;
  left: 0;
  top: 50%;
  margin-top: -2px;
}

.work__info .work__price {
  margin-bottom: 23px;
}

@media screen and (max-width:1140px) {
  .work__info {
    width: 100%
  }

  .work__info div {
    font-size: 19px;
  }

  .work__info span {
    font-size: 16px;
  }
}

.work__photos {
  width: calc(43.33333% - 30px);
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  -ms-grid-columns: 148px 148px 148px;
  grid-template-columns: 148px 148px 148px;
  grid-column-gap: 16px;
  grid-row-gap: 20px;
}

.work__photos div {
  overflow: hidden;
}

.work__photos div img {
  height: 132px;
  width: 148px;
}

@media screen and (max-width:1140px) {
  .work__photos {
    width: 100%;
    -ms-grid-rows: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    -ms-grid-columns: 148px 148px;
    grid-template-columns: 148px 148px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.work__video {
  width: calc(23.33333% - 30px);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  max-height: 100%;
  overflow: hidden;
  display: block;
  position: relative;
}

.work__video .work__video__layer {
  position: absolute;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, .6);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.work__video .work__video__layer img {
  width: 75px;
  height: 75px;
}

@media screen and (max-width:1140px) {
  .work__video {
    width: 100%;
    border-radius: 0;
    height: 150px;
    -o-object-fit: contain;
    object-fit: contain;
    margin-top: 30px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
  }
}

.work__mini {
  width: 100%;
  max-width: 692px;
  border-radius: 10px;
  overflow: hidden;
}

.work__mini .work__info {
  width: 55%
}

.work__mini .work__photos {
  width: 45%;
  -ms-grid-columns: 148px 148px;
  grid-template-columns: 148px 148px;
}

@media screen and (max-width:1140px) {
  .work__mini .work__info {
    width: 100%
  }

  .work__mini .work__photos {
    width: 100%;
    -ms-grid-rows: 127px 127px 127px;
    grid-template-rows: 127px 127px 127px;
    padding-bottom: 20px;
  }
}

.work__mini_4photo {
  margin-bottom: 0;
}

.work__mini_4photo .work__photos div:nth-child(3) {
  border-bottom-left-radius: 10px;
  overflow: hidden;
}

@media screen and (max-width:1140px) {
  .work__mini_4photo .work__photos {
    -ms-grid-rows: 127px 127px;
    grid-template-rows: 127px 127px;
  }
}

.work__block__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  margin-top: 40px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.work__block__row h2 {
  color: #5d5d5d;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}

.work__block__row div {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 20px;
  grid-template-row: 139px;
  border-radius: 10px;
  overflow: hidden;
}

@media screen and (max-width:1140px) {
  .work__block__row div {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    grid-template-row: 139px 139px;
    max-width: 300px;
  }

  .work__block__row div img {
    width: 100%
  }

  .work__block__row div img:nth-child(1) {
    margin-bottom: 20px;
  }
}

.reviews {
  background-color: #e5e5e5;
}

.container__reviews {
  padding-top: 57px;
  padding-bottom: 80px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
}

.reviews__title {
  margin-bottom: 126px;
  color: #3c3c3c;
  font-size: 38px;
  font-weight: 900;
}

.reviews__blocks {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width:1140px) {
  .reviews__blocks {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column nowrap;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .reviews__blocks .reviews__block {
    margin-bottom: 130px;
  }

  .reviews__blocks .reviews__block:last-child {
    margin-bottom: 0;
  }
}

.reviews__block {
  width: 100%;
  max-width: 350px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column nowrap;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-shadow: 0 17px 28px rgba(153, 153, 153, .2);
  box-shadow: 0 17px 28px rgba(153, 153, 153, .2);
  border-radius: 10px;
  background-color: #fff;
}

.reviews__block__data {
  padding-top: 100px;
  padding-bottom: 19px;
  position: relative;
  text-align: center;
  -webkit-box-shadow: 0 2px 18px rgba(153, 153, 153, .2);
  box-shadow: 0 2px 18px rgba(153, 153, 153, .2);
}

.reviews__block__data img {
  position: absolute;
  top: -85px;
  left: 50%;
  margin-left: -85px;
}

.reviews__block__data span {
  color: #484848;
  font-size: 22px;
  font-weight: 600;
}

.reviews__text {
  color: #5b5b5b;
  font-size: 17px;
  line-height: 25px;
  font-weight: 400;
  font-style: italic;
  text-align: center;
  padding: 20px 25px 25px;
}

.map {
  height: 580px;
}

@media screen and (max-width:1140px) {
  .map {
    padding-bottom: 280px;
  }
}

.map__container {
  width: 100%;
  position: absolute;
  z-index: 9999;
  left: 50%;
  margin-left: -585px;
  height: 100%;
  pointer-events: none;
}

@media screen and (max-width:1140px) {
  .map__container {
    height: 580px;
    left: 0;
    margin-left: 0;
  }
}

.map__table,
.map__table div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.map__table {
  padding: 30px 120px 30px 37px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  background-color: #fff;
  border-radius: 10px;
  height: 280px;
  position: absolute;
  bottom: 50%;
  left: 0;
}

.map__table div {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

.map__table div svg {
  margin-right: 15px;
  width: 20px;
}

.map__table div a,
.map__table div span {
  color: #3e3e3e;
  font-weight: 500;
}

.map__table div a {
  text-decoration: none;
  font-size: 22px;
}

.map__table div span {
  font-size: 20px;
}

@media screen and (max-width:1140px) {
  .map__table {
    bottom: 0;
    margin-bottom: 0;
    padding-right: 20px;
    width: 100%;
    max-width: 375px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
}

.map__title {
  color: #3c3c3c;
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 15px;
}

.container__quest {
  padding-top: 117px;
  padding-bottom: 100px;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column nowrap;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width:1140px) {
  .container__quest {
    padding: 50px 0;
  }
}

.quest__title {
  margin-bottom: 30px;
  color: #3c3c3c;
  font-size: 38px;
  font-weight: 900;
}

@media screen and (max-width:1140px) {
  .quest__title {
    text-align: center;
  }
}

.quest__form .form__title {
  margin-bottom: 10px;
}

.quest__form .form__text {
  margin-bottom: 26px;
}

.quest__form .common-button {
  width: 100%;
  height: 81px;
  max-width: 355px;
  margin-bottom: 10px;
}

.quest__form .form__input__wrapper,
.quest__form textarea {
  max-width: 355px;
  margin-bottom: 15px;
}

.quest__form .form__input__wrapper input {
  max-width: 355px;
}

.quest__form textarea {
  border: 0;
  resize: none;
  -webkit-box-shadow: inset -2px 2px 16px rgba(0, 0, 0, .06);
  box-shadow: inset -2px 2px 16px rgba(0, 0, 0, .06);
  background-color: #f8f8f8;
  border-radius: 10px;
  height: 151px;
  max-height: 151px;
  min-height: 151px;
  min-width: 355px;
  padding-left: 30px;
  padding-top: 25px;
  color: #545454;
  line-height: 20px;
  font-size: 22px;
  font-weight: 400;
}

.quest__form textarea::-webkit-input-placeholder {
  color: #545454;
  line-height: 20px;
  font-size: 22px;
  font-weight: 400;
}

.quest__form textarea::-moz-placeholder {
  color: #545454;
  line-height: 20px;
  font-size: 22px;
  font-weight: 400;
}

.quest__form textarea:-ms-input-placeholder,
.quest__form textarea::-ms-input-placeholder {
  color: #545454;
  line-height: 20px;
  font-size: 22px;
  font-weight: 400;
}

.quest__form textarea::placeholder {
  color: #545454;
  line-height: 20px;
  font-size: 22px;
  font-weight: 400;
}

@media screen and (max-width:1140px) {
  .quest__form textarea {
    min-width: 0;
    width: 100%
  }

  .quest__form .common-button {
    height: 55px;
  }
}

.quest__img {
  position: absolute;
  z-index: -1;
  bottom: 130px;
  width: 1270px;
  left: -100px;
}

@media screen and (max-width:1140px) {
  .quest__img {
    display: none;
  }
}

.footer .top__center,
.popup__thanks {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column nowrap;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
}

.footer .top__center .footer__button-top {
  margin-bottom: 17px;
  width: 283px;
  height: 64px;
  border: 2px solid #f9c7d5;
  background: 0 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.footer .top__center .footer__button-top span {
  color: #f9c7d5;
  font-weight: 500;
}

.footer .top__center .footer__button-top:hover {
  background-color: #f9c7d5;
  -webkit-transform: all .5;
  -ms-transform: all .5;
  transform: all .5;
}

.footer .top__center .footer__button-top:hover span {
  color: #313131;
}

.footer .top__center .footer__text {
  font-weight: 500;
  text-align: center;
  color: #c1c1c1;
  font-size: 16px;
  line-height: 26px;
}

.popup__thanks {
  position: fixed;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  height: 200px;
  width: 320px;
  top: 50%;
  margin-top: -100px;
  left: 50%;
  margin-left: -160px;
  padding: 15px;
  text-align: center;
  border-radius: 10px;
  background-color: #fff;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.popup__thanks span {
  color: #000;
}

.popup__thanks span:nth-child(1) {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 15px;
}

.popup__thanks span:nth-child(2) {
  font-size: 14px;
  font-weight: 400;
}

.popup-video-wrapper button,
.popup__thanks button {
  position: absolute;
  top: 5px;
  right: 15px;
  font-size: 20px;
}

.popup-video-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, .6);
  z-index: 99999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.popup-video-wrapper video {
  width: 800px;
}

@media screen and (max-width:1140px) {
  .popup-video-wrapper video {
    width: 100%;
    max-width: 414px;
  }
}

.popup-video-wrapper button {
  top: -10px;
  color: #fff;
}

@media screen and (max-width:1140px) {
  .popup-video-wrapper button {
    top: -20px;
    right: 5%
  }
}

.popup-video-container {
  position: relative;
  padding: 25px 0;
}

.popup__file,
.popup__form__call {
  position: fixed;
  top: 50%;
  height: 322px;
  margin-top: -161px;
  left: 50%;
  width: 100%;
  max-width: 414px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 999999;
}

.popup__file .form,
.popup__form__call .form {
  padding: 20px;
}

.popup__file .form .form__text,
.popup__file .form .form__title,
.popup__form__call .form .form__text,
.popup__form__call .form .form__title {
  margin-bottom: 15px;
}

.popup__file .form .form__input__wrapper,
.popup__form__call .form .form__input__wrapper {
  margin-bottom: 10px;
  width: 100%
}

.popup__file .form .form__input__wrapper .form__input,
.popup__form__call .form .form__input__wrapper .form__input {
  margin-bottom: 5px;
}

.popup__file .form .common-button,
.popup__form__call .form .common-button {
  width: 100%;
  height: 55px;
  margin-bottom: 15px;
  max-width: 300px;
}

.popup__file .close,
.popup__form__call .close {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 17px;
}

.popup__bg {
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, .6);
  position: fixed;
  top: 0;
  left: 0;
}

.container__wors .work {
  margin-bottom: 30px !important;
}

.hidden {
  display: none !important;
}