body {
  margin: 0;
  padding: 0;
  font-family: "Gilroy";
  overflow-x: hidden;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
  color: #565656;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

.input {
  padding: 16px;
  border: 1px solid #0619ff;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  color: #565656;
  outline: none;
}

.button {
 background: -webkit-gradient(linear, left top, left bottom, from(#FFEB8F), to(#FFD100));
    background: linear-gradient(180deg, #8fbcff 0%, #0008ff 100%);
    -webkit-box-shadow: 0px 3px 0px #e2b100;
    box-shadow: 0px 3px 0px #132b7e;
    border: none;
    outline: none;
    padding: 16px 32px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    cursor: pointer;
}

.section__title {
  font-size: 36px;
  font-weight: 500;
}

.section__subtitle {
  font-size: 22px;
  font-weight: 300;
}
.section__subtitle span {
  font-weight: 600;
  color: #0647ff;
}

.section {
  padding: 70px 0px;
}

.container {
  margin: 0 auto;
  max-width: 1140px;
  width: 95%;
}

.container-fluid {
  width: 100%;
  max-width: 100%;
}

.label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.label__checkbox {
  display: none;
}
.label__text {
  font-size: 14px;
  font-weight: 500;
  color: #BFBFBF;
  cursor: pointer;
}
.label__fake {
  width: 14px;
  height: 14px;
  border: 1px solid #FFD206;
  border-radius: 2px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.label__fake::after {
  content: "";
  position: absolute;
  background: url("../img/main/check.svg") center center no-repeat;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 11px;
  height: 6px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}

.label__checkbox:checked + .label__fake::after {
  opacity: 1;
}

@media (min-width: 320px) and (max-width: 576px) {
  .section__title {
    font-size: 28px;
  }

  .section__subtitle {
    font-size: 16px;
  }

  .section {
    padding: 45px 0px;
  }
}
.nav {
  padding: 10px 0px;
  border-bottom: 2px solid #EEEEEE;
  position: relative;
}
.nav__btn {
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.nav__btn span {
  width: 35px;
  height: 2px;
  background-color: #FFD206;
  border-radius: 1px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  transition: all 0.3s;
  transition: all 0.3s;
}
.nav__btn span::after {
  content: "";
  display: block;
  width: 35px;
  height: 2px;
  background-color: #FFD206;
  border-radius: 1px;
  -webkit-transform: translateY(-12px);
          transform: translateY(-12px);
}
.nav__btn span::before {
  content: "";
  display: block;
  width: 35px;
  height: 2px;
  background-color: #FFD206;
  border-radius: 1px;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}
.nav__logo {
  margin-right: 16px;
}
.nav-block {
  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;
}
.nav-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: auto;
}
.nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.nav-list__item {
  margin-right: 20px;
}
.nav-list__item a {
  color: #565656;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  line-height: 24px;
}
.nav-list__item a:hover {
  border-bottom: 1px solid #FFD206;
}
.nav-wrap {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.nav-place {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 50px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.nav-place img {
  margin-right: 8px;
}
.nav-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.nav-mob-phone {
  color: #565656;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  display: none;
}
.nav-connect {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}



.whatsapp-button {
    position: fixed;
    right: 180px;
    bottom: 20px;
    transform: translate(-50%, -50%);
    background: #25D366;
    border-radius: 20%;
    width: 120px;
    height: 45px;
    color: #fff;
    text-align: center;
    line-height: 53px;
    font-size: 35px;
    z-index: 9999;
}

.whatsapp-button:before, .whatsapp-button:after {
    content: " ";
    display: block;
    position: absolute;
    border: 50%;
    border: 1px solid #25D366;
    left: -20px;
    right: -20px;
    top: -20px;
    bottom: -20px;
    border-radius: 50%;
    animation: animate 1.5s linear infinite;
    opacity: 0;
    backface-visibility: hidden;
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.whatsapp-button:after {
    animation-delay: .5s;
}














.nav-connect-list__item a {
  color: #565656;
  line-height: 24px;
}
.nav-connect-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.nav-connect-info a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav-connect-info a img {
  margin-right: 4px;
}
.nav-connect-info a span {
  font-weight: 700;
  font-size: 18px;
  color: #565656;
}
.nav__button {
  margin-left: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.nav-icons {
  margin-right: 14px;
  margin-top: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav-icons a {
  width: 24px;
  height: 24px;
  margin-left: 4px;
}
.nav__small {
  color: #BFBFBF;
  font-size: 14px;
}
.nav-mob-menu {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate(-100%);
          transform: translate(-100%);
  position: absolute;
  top: 100%;
  background-color: #ffffff;
  width: 100%;
  z-index: 100;
  padding: 24px 12px;
  max-width: 100%;
  border-bottom: 2px solid #EEEEEE;
  border-top: 2px solid #EEEEEE;
}
.nav-mob-menu .nav-mob-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.nav-mob-menu .nav-connect {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 0;
}
.nav-mob-menu .nav-connect-info {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav-mob-menu .nav__button {
  margin-left: 0;
  margin-top: 16px;
}
.nav-mob-menu .nav-icons {
  margin-bottom: 16px;
}
.nav-mob-menu .nav-icons a img {
  width: 32px;
  height: 32px;
}

.nav-btn__active span {
  height: 0px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.nav-btn__active span::after {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: rotate(45deg) translateY(-1px);
          transform: rotate(45deg) translateY(-1px);
}
.nav-btn__active span::before {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: rotate(-45deg) translateY(1px);
          transform: rotate(-45deg) translateY(1px);
}

.menu__active {
  -webkit-transform: translate(0%);
          transform: translate(0%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media (min-width: 320px) and (max-width: 1040px) {
  .nav-place {
    margin-right: 12px;
  }
  .nav-list_item {
    margin-right: 10px;
  }
  .nav-mob-phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 320px) and (max-width: 1000px) {
  .nav {
    background-color: #fff;
    position: fixed;
    z-index: 999;
    width: 100%;
  }
  .nav-list {
    display: none;
  }
  .nav-contact {
    display: none;
  }
  .nav__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.main {
  padding-top: 20px;
  padding-bottom: 120px;
  background: url("../img/main/main-bg-4.jpg") center center no-repeat;
  background-size: cover;
  position: relative;
}
.main__title {
  font-weight: 400;
  font-size: 38px;
  line-height: 101%;
  margin-bottom: 16px;
  max-width: 600px;
  margin-right: 0;
}
.main__title span {
  font-weight: 700;
}
.main__subtitle {
  font-size: 27px;
  font-weight: 400;
  margin-bottom: 32px;
  padding: 10px;
  background-color: #ffffff;
  max-width: 450px;
  border-radius: 8px;
}
.main__subtitle span {
  font-weight: 600;
  color: #FFD206;
}
.main-contact {
  background: #ffffff;
  padding: 10px;
  border-radius: 8px;
  max-width: 358px;
  -webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
}
.main-block {
  padding: 24px 16px;
  border: 1px solid #EEEEEE;
  border-radius: 6px;
}
.main__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.main__form input {
  width: 100%;
  margin-bottom: 12px;
}
.main__button {
  width: 100%;
  margin-bottom: 20px;
}
.main-man {
  position: absolute;
  bottom: 0;
  right: 350px;
}

@media (min-width: 320px) and (max-width: 576px) {
  .main {
    background: url("../img/main/main-bg-4.jpg") left center no-repeat;
  }
  .main__title {
    font-size: 30px;
  }
}
@media (min-width: 320px) and (max-width: 992px) {
  .main {
    padding-top: 200px;
  }
  .main-man {
    display: none;
  }
}
@media (min-width: 320px) and (max-width: 1366px) {
  .main .container {
    padding: 0;
  }
}
@media (min-width: 992px) and (max-width: 1366px) {
  .main-man {
    right: 70px;
  }
}
.features {
  background: #F8F8F8;
}
.features-block {
  padding: 10px;
  background-color: #ffffff;
  border-radius: 12px;
  -webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
  -webkit-transform: translateY(-63px);
          transform: translateY(-63px);
}
.features-content {
  padding: 24px;
  border: 1px solid #EEEEEE;
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.features-item {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.features-item img {
  margin-bottom: 16px;
}
.features__descr {
  text-align: center;
  font-size: 18px;
}
.features__descr span {
  color: #FFD206;
  font-weight: 700;
}

@media (min-width: 320px) and (max-width: 768px) {
  .features-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .features-item {
    margin-bottom: 32px;
  }
}
.calc {
  background: #F8F8F8;
}

.variant-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.variant-item {
  -ms-flex-preferred-size: 32%;
      flex-basis: 32%;
  padding: 200px 24px 24px 24px;
  margin-bottom: 24px;
  cursor: pointer;
  position: relative;
}
.variant-item:hover .variant__button {
  opacity: 1;
  visibility: visible;
}
.variant-item__title {
  color: #ffffff;
  font-weight: 500;
}
.variant__button {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media (min-width: 576px) and (max-width: 992px) {
  .variant-item {
    -ms-flex-preferred-size: 49%;
        flex-basis: 49%;
  }
  .variant-item:last-child {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
@media (min-width: 320px) and (max-width: 576px) {
  .variant-block {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .variant-item {
    -ms-flex-preferred-size: 90%;
        flex-basis: 90%;
  }
}
.stage-block {
  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;
}
.stage-block .stage-item {
  width: 32%;
}
.stage-block-second {
  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;
}
.stage-block-second .stage-item:first-child {
  width: 32%;
  margin: 15px;
}
.stage-block-second .stage-item:last-child {
  width: 68%;
  margin: 15px;
}
.stage-item {
  padding: 8px 24px;
  border-radius: 4px;
  background: #dbe1f9;
  height: 307px;
  position: relative;
  margin: 15px;
}
.stage-item__title {
  font-size: 95px;
  font-weight: 900;
  color: #ffffff;
}
.stage-item__subtitle {
  font-size: 36px;
  font-weight: 600;
  -webkit-transform: translateY(-40px);
          transform: translateY(-40px);
}
.stage-item img {
  position: absolute;
}
.stage-img-1 {
  bottom: 0;
  right: 20px;
}
.stage-img-2 {
  bottom: 0;
  right: 0px;
  border-radius: 4px;
}
.stage-img-3 {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}
.stage-img-4 {
  bottom: 0;
  right: 0;
  border-radius: 4px;
}
.stage-img-5 {
  bottom: 0;
  right: 0;
  border-radius: 4px;
}
.stage-wrap {
  margin-top: 120px;
}
.stage__button {
  max-width: 240px;
  display: block;
  margin: 35px auto 0px auto;
}

@media (min-width: 320px) and (max-width: 768px) {
  .stage-item__title {
    font-size: 85;
  }
  .stage-item__subtitle {
    font-size: 24px;
    font-weight: 600;
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
}
@media (min-width: 320px) and (max-width: 992px) {
  .stage-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .stage-block .stage-item {
    width: 80%;
  }
  .stage-block-second {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .stage-block-second .stage-item:first-child {
    width: 80%;
  }
  .stage-block-second .stage-item:last-child {
    width: 80%;
  }
  .stage-img-4 {
    width: 150px;
  }
}
.desicion {
  background-color: #FFFAF7;
}
.desicion-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.desicion-item {
  background-color: #ffffff;
  -ms-flex-preferred-size: 23%;
      flex-basis: 23%;
  border-radius: 4px;
  -webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
}
.desicion-item img {
  width: 100%;
  max-height: 197px;
}
.desicion-item-text {
  padding: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.desicion-item__title {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 500;
  min-height: 40px;
}
.desicion-item__price {
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 700;
  color: #565656;
}
.desicion__button {
  text-align: center;
}

@media (min-width: 320px) and (max-width: 576px) {
  .desicion-block {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .desicion-item {
    -ms-flex-preferred-size: 70%;
        flex-basis: 70%;
    margin-bottom: 20px;
  }
}
@media (min-width: 576px) and (max-width: 992px) {
  .desicion-block {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .desicion-item {
    margin-bottom: 24px;
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
  }
}
.contact {
  position: relative;
  background: #F8F8F8;
}
.contact-img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
.contact-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 280px;
}
.contact__form input {
  width: 314px;
  margin-bottom: 12px;
}
.contact__button {
  width: 314px;
}
.contact__subtitle {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 320px) and (max-width: 576px) {
  .contact__form input {
    width: 100%;
  }
  .contact__button {
    width: 100%;
  }
}
@media (min-width: 320px) and (max-width: 1225px) {
  .contact-img {
    display: none;
  }
}
.about {
  background: #F8F8F8;
}
.about-block {
  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;
}
.about-text {
  margin-left: 30px;
}
.about__title {
  margin-bottom: 24px;
}
.about__descr {
  margin-bottom: 48px;
}

@media (min-width: 320px) and (max-width: 992px) {
  .about-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .about-block img {
    display: none;
  }
}
.feedback-block {
  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;
}
.feedback-wrap {
  -ms-flex-preferred-size: 32%;
      flex-basis: 32%;
  position: relative;
  height: 200px;
}
.feedback-wrap iframe {
  width: 100%;
  height: 100%;
}
.feedback__button {
  display: block;
  text-align: center;
  margin: 32px auto 0px auto;
  max-width: 280px;
}

.feedback__active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url("../img/feedback/video-bg.png") center center no-repeat;
  background-size: cover;
  z-index: 100;
  cursor: pointer;
}

@media (min-width: 320px) and (max-width: 768px) {
  .feedback-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .feedback-wrap {
    margin-bottom: 24px;
  }
}
@media (min-width: 320px) and (max-width: 576px) {
  .feedback-wrap {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.footer {
  background: url("../img/footer/footer-bg2.png") center center no-repeat;
  background-size: cover;
  position: relative;
}
.footer iframe {
  position: absolute;
}
.footer-block {
  position: relative;
}
.footer-item {
  position: absolute;
  top: 100px;
  left: 0;
  z-index: 100;
  padding: 32px;
  border-radius: 8px;
  background: #ffffff;
  max-width: 330px;
  -webkit-box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.15);
}
.footer-place {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-bottom: 24px;
}
.footer-place img {
  margin-right: 8px;
}
.footer-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer-text span {
  font-size: 18px;
  color: #565656;
}
.footer-text span:nth-child(1) {
  font-weight: 600;
  margin-bottom: 4px;
}
.footer-phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-bottom: 24px;
}
.footer-phone img {
  margin-right: 8px;
}
.footer__button {
  margin-top: 16px;
}
.footer-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.footer-social .footer-text {
  margin-left: 8px;
}
.footer-icons {
  margin-top: 16px;
}
.footer-icons img {
  margin-right: 8px;
}

@media (min-width: 320px) and (max-width: 768px) {
  .footer {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.question-blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.question-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.question-header {
  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;
  width: 100%;
}
.question-header__title {
  font-size: 18px;
  font-weight: 500;
}
.question-icon {
  width: 24px;
  height: 2px;
  border-radius: 1px;
  background: #565656;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.question-icon::after {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  border-radius: 1px;
  background: #565656;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.question-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #E1E1E1;
  margin-bottom: 24px;
}
.question-body {
  margin-top: 24px;
  display: none;
}
.question-body__descr {
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
}

.icon__active .question-icon::after {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: none;
}
.icon__active .question-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.question-body__active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 320px) and (max-width: 992px) {
  .question-blocks {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .question-block {
    -ms-flex-preferred-size: 80%;
        flex-basis: 80%;
  }
}
.work-tabs {
  margin-bottom: 32px;
  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;
  padding: 11px 14px;
  border: 1px solid #FFDB3A;
  border-radius: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.work-tabs__item {
  padding: 12px 36px;
  border: 1px solid #FFDB3A;
  border-radius: 25px;
  color: #565656;
  font-weight: 500;
  font-size: 18px;
  margin-left: 3px;
  margin-right: 3px;
}
.work-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.work-content {
  display: none;
}
.work-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
  margin: 15px;
  outline: none;
}
.work-item img {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  width: 100%;
  max-height: 195px;
}
.work-item-text {
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.work-item__title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}
.work-item__subtitle {
  font-size: 18px;
  font-weight: 300;
}
.work-item__subtitle span {
  font-weight: 600;
}
.work__button {
  margin-top: 24px;
  width: 100%;
  text-align: center;
  display: block;
}

.prev {
  position: absolute;
  width: 54px;
  height: 54px;
  border: none;
  outline: none;
  cursor: pointer;
  background: url("../img/work/prev.svg") center center no-repeat;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -27px;
  z-index: 10;
}

.next {
  position: absolute;
  width: 54px;
  height: 54px;
  border: none;
  outline: none;
  cursor: pointer;
  background: url("../img/work/next.svg") center center no-repeat;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -27px;
  z-index: 10;
}

.work-tab__active {
  background-color: #FFD206;
  color: #ffffff;
}

.work-content__active {
  display: block;
}

@media (min-width: 320px) and (max-width: 768px) {
  .work-tabs {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .work-tabs__item {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
    padding: 0;
    text-align: center;
    padding: 12px 0px;
  }
  .work-tabs__item:nth-child(1) {
    margin-bottom: 12px;
  }
  .work-tabs__item:nth-child(2) {
    margin-bottom: 12px;
  }
  .work-slider {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .work-item {
    -ms-flex-preferred-size: 70%;
        flex-basis: 70%;
  }
}
@media (min-width: 320px) and (max-width: 576px) {
  .work-item {
    -ms-flex-preferred-size: 80%;
        flex-basis: 80%;
  }
  .work-item-text {
    padding: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .work-item__title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
  }
  .work-item__subtitle {
    font-size: 18px;
    font-weight: 300;
  }
  .work-item__subtitle span {
    font-weight: 600;
  }
  .work__button {
    width: 100%;
  }
  .work-tabs__item {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .work-item {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
  }
}
.page-slider {
  width: 60%;
  margin: 0 auto;
}

.modal {
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.modal-body {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 32px;
  background-color: #ffffff;
  border-radius: 12px;
  width: 400px;
}
.modal__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.modal__input {
  width: 100%;
  margin-bottom: 16px;
}
.modal__button {
  width: 100%;
}
.modal__title {
  text-align: center;
  margin-bottom: 20px;
}
.modal__close {
  position: absolute;
  bottom: 100%;
  right: -22px;
  color: #ffffff;
  font-size: 40px;
  cursor: pointer;
}

@media (min-width: 320px) and (max-width: 576px) {
  .modal-body {
    width: 300px;
  }
}
.modal__active {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
