.wrapper {
  min-height: 100%;
  min-width: 320px;
  max-width: 1920px;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: center top;
}

.wrapper:after {
  content: " ";
  display: block;
  width: 100%;
  height: 20px;
  overflow: hidden;
}

.wrapper_okPage {
  background-image: url("../img/bg/ok.jpg");
  background-color: #fff;
}

.wrapper_okPage:after {
  height: 104px;
}

.input-error {
  box-shadow: 0 0 4px #e74c3c !important;
  color: #e74c3c !important;
}


input,
textarea,
button {
  font-weight: 400;
  outline: none;
  border-radius: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type='number'] {
  -moz-appearance: textfield;
}

.btn {
  border-radius: 5px;
}

.btn-warning {
box-shadow: 0 5px 0 #146347, 0 35px 18px -16px rgba(0, 0, 0, 0.3);
    border: 0;
    background: #0B553B;
    background: -webkit-linear-gradient(top left, #0B553B, #0E7C56);
    background: -moz-linear-gradient(top left, #0B553B, #0E7C56);
    background: linear-gradient(top left, #0B553B, #0E7C56);
    color: #fff;
}

.btn-warning:focus {
  color: #283d52;
  background-color: #ffc600;
  background-image: linear-gradient(to top, #ffc600 0%, #ffea00 100%);
  box-shadow: 0 5px 0 #e69800, 0 35px 18px -16px rgba(0, 0, 0, 0.3);
}

.btn-warning:active, .btn-warning:active:hover, .btn-warning:active:focus {
  color: #283d52;
  background-color: #ffb900;
  background-image: linear-gradient(to top, #ffb900 0%, #ff8000 100%);
  box-shadow: 0 5px 0 #c06c00, 0 35px 18px -16px rgba(0, 0, 0, 0.3);
}

.btn-warning:hover {
  color: #283d52;
  background-color: #ff8000;
  background-image: linear-gradient(to top, #ff8000 0%, #ffb900 100%);
  box-shadow: 0 5px 0 #c06c00, 0 35px 18px -16px rgba(0, 0, 0, 0.3);
}

.btn-lg {
  font-weight: 700;
  text-transform: uppercase;
  padding: 9px 40px;
}

.btn span {
  display: inline-block;
  vertical-align: middle;
}

.btn span + span {
  margin-left: 14px;
  margin-right: 0;
}

.radio label,
.checkbox label {
  padding: 0;
  min-height: auto;
  display: block;
}

.radio__text {
  display: block;
  overflow: hidden;
  position: relative;
  margin-bottom: 7px;
}

.radio__text > span {
  position: absolute;
  display: block;
  top: -100%;
  height: 100%;
  left: 0;
  right: 0;
  transition: top .3s;
  background-color: #f0e6e4;
  overflow: hidden;
  text-align: left;
  padding: 12px 15px;
}

.radio__text > span:before {
  content: " ";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  width: 0px;
}

.radio__text > span > span {
  display: inline-block;
  vertical-align: middle;
  color: #6a6463;
  font-size: 14px;
  font-weight: 400;
  line-height: 15px;
  overflow: hidden;
}

.radio:hover .radio__text span {
  top: 0;
}

.radio .elem {
  position: relative;
  display: inline-block;
  vertical-align: top;
  min-height: 29px;
}

.radio .elem:before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 29px;
  height: 29px;
  border: 1px solid #bec3c5;
  border-radius: 100%;
}

.radio .elem span {
  display: block;
  font-size: 20px;
  margin-left: 46px;
  padding-top: 3px;
}

.radio input:checked + .elem:after {
  content: " ";
  position: absolute;
  left: 3px;
  top: -1px;
  width: 30px;
  height: 22px;
  display: block;
  background-image: url("../img/elem/radio.png");
  background-repeat: no-repeat;
  background-position: 0 0;
}

.radio_mini .elem {
  min-height: 24px;
}

.radio_mini .elem:before {
  width: 24px;
  height: 24px;
}

.radio_mini .elem span {
  font-size: 16px;
  margin-left: 32px;
  padding-top: 4px;
}

.radio_mini input:checked + .elem:after {
  left: 0px;
  top: -5px;
}

.checkbox .elem {
  position: relative;
  display: inline-block;
  vertical-align: top;
  min-height: 20px;
}

.checkbox .elem:before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #d8d6d4;
  border-radius: 5px;
}

.checkbox .elem span {
  display: block;
  font-size: 13px;
  margin-left: 36px;
  padding-top: 2px;
}

.checkbox input:checked + .elem:after {
  content: " ";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 12px;
  height: 9px;
  display: block;
  background-image: url("../img/elem/checkbox.png");
  background-repeat: no-repeat;
  background-position: 0 0;
}

.checkbox a {
  color: #262626;
  text-decoration: underline;
}

.checkbox a:hover {
  text-decoration: none;
}

.form-group {
  margin-bottom: 18px;
  position: relative;
}

.form-group label {
  font-size: 19px;
  font-weight: 400;
  color: #000;
  margin-bottom: 8px;
}

.form-control {
  background-color: #fff;
  border-radius: 3px;
  border: 0;
  font-size: 19px;
  font-weight: 400;
  color: #000;
  padding: 15px 22px 12px;
  height: 54px;
  box-shadow: none;
}

.form-control:focus {
  border: 0;
  box-shadow: 0 0 4px #6ad8d0;
}

.form-control-gray {
  background-color: #f6f6f6;
}

.input-info {
  cursor: default;
  position: absolute;
  right: 14px;
  bottom: 16px;
  width: 21px;
  height: 21px;
  background-image: url("../img/elem/what.png");
  background-repeat: no-repeat;
  background-position: 0 0;
}

.input-info + .tooltip {
  top: -30px !important;
  left: 200px !important;
}

.input-info + .tooltip .tooltip-arrow {
  bottom: -5px;
  left: 87% !important;
  margin-left: -10px;
  border-width: 10px 10px 0;
  border-top-color: #fff;
}

.input-info + .tooltip .tooltip-inner {
  box-shadow: 0 6px 7px rgba(0, 1, 0, 0.25);
  border-radius: 10px;
  background-color: #fff;
  color: #555;
  font-size: 13px;
  line-height: 16px;
  padding: 14px;
}

.link {
  text-decoration: none;
  color: #272727;
  display: inline-block;
  min-height: 1.36em;
}

.link:hover, .link:active, .link:focus {
  color: #272727;
  text-decoration: none;
}

.link_dotted {
  background-image: url("../img/elem/dotted.png");
  background-repeat: repeat-x;
  background-position: -3px 100%;
}

.link_dotted:hover {
  background-image: none;
}

.icon {
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: 0 0;
}

.icon-phone {
  background-image: url("../img/elem/phone.png");
  width: 14px;
  height: 14px;
  margin-right: 8px;
}

.icon-arrow-next {
  background-image: url("../img/elem/btn-arrow-next.png");
  width: 40px;
  height: 40px;
}

.icon-pdf {
  background-image: url("../img/elem/pdf.png");
  width: 33px;
  height: 40px;
}

.fancybox-wrap > * {
  margin: 44px;
}

.fancybox-close-small {
  top: 8px;
  right: 3px;
}

.fancybox-close-small::after {
  content: " ";
  top: 8px;
  right: 8px;
  width: 27px;
  height: 27px;
  background-color: #41cfc5;
  background-image: url("../img/elem/close.png");
  background-repeat: no-repeat;
  background-position: center center;
}

.fancybox-close-small:hover:after {
  background-color: #41cfc5;
  background-image: url("../img/elem/close.png");
  background-repeat: no-repeat;
  background-position: center center;
  opacity: .8;
}

.fancybox-close-small:focus:after {
  outline: none;
}

.header__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo a {
  display: inline-block;
}

.header__logo span {
  font-size: 16px;
  margin-left: 11px;
  display: inline-block;
  vertical-align: middle;
}

.header__contact__top {
  font-size: 16px;
}

.header__contact__middle {
  font-size: 24px;
  color: #142638;
  font-weight: 700;
  margin: 6px 0 2px;
}

.header__contact__bottom .link {
  font-size: 13px;
}

.header_ok .header__logo span {
  margin-left: 0;
}

.footer {
  background-color: #2f3338;
  padding: 24px 0;
}

.footer a {
  color: #fff;
  text-decoration: underline;
}

.footer a:hover {
  text-decoration: none;
}

.footer-ok {
  padding: 16px 0;
}

.footer-ok__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer-ok__logo a {
  display: inline-block;
}

.footer-ok__logo span {
  margin-left: 8px;
  color: #fff;
  font-size: 16px;
  display: inline-block;
  vertical-align: middle;
}

.footer-ok__contact__top {
  color: #fff;
  font-size: 16px;
}

.footer-ok__contact__middle {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin: 6px 0 2px;
}

.topHeaders {
  padding: 9px 0 0px;
}

.topHeaders h1 {
  font-size: 27px;
  font-weight: 700;
  line-height: 32px;
  color: #142638;
  margin: 0;
}

.topHeaders h2 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: #000;
  margin: 27px 0 0;
}

.topHeaders h2 span {
  font-weight: 500;
}

/* .topHeaders h3 {
  font-size: 20px;
  font-weight: 400;
  color: #000;
  line-height: 45px;
  margin: -4px 0 0;
}

.topHeaders h4 {
  font-size: 30px;
  font-weight: 400;
  color: #000;
  line-height: 1.5;
  margin: 25px 0 0;
}
*/
.topHeaders_step1 {
  padding: 0 0 25px;
}

.topHeaders_step1 h1 {
  line-height: 27px;
}

.topHeaders_step1 h2 {
  margin: 9px 0 0;
}

.topHeaders_step2, .topHeaders_step3, .topHeaders_step4, .topHeaders_step5, .topHeaders_step6 {
  padding: 0 0 5px;
}

.topHeaders_step7 {
  padding: 7px 0 28px;
}

.topHeaders_step7 h1 {
  font-size: 26px;
  line-height: 27px;
}

.headers {
  padding: 63px 0 46px;
}

.headers h1 {
  font-size: 42px;
  font-weight: 700;
  color: #142638;
  margin: 0;
  font-weight: 500;
}

.headers h1 span {
  color: #27c2b7;
}

.headers h2 {
  font-size: 30px;
  font-weight: 500;
  color: #000;
  line-height: 1.5;
  margin: -2px 0 0;
}

.slider-handle {
  background-color: transparent;
  border-radius: 0 !important;
  width: 38px;
  top: 7px;
  height: 39px;
  background-image: url("../img/elem/label.png");
  background-repeat: no-repeat;
  background-position: 0 0;
  margin-left: -19px !important;
  box-shadow: none;
  outline: none !important;
}

.slider-handle:hover {
  background-position: 0 bottom;
}

.slider.slider-horizontal {
  width: 248px;
  height: 42px;
  margin-top: -5px;
}

.slider.slider-horizontal .slider-track {
  height: 8px;
  box-shadow: inset 0 1px 1px rgba(197, 197, 197, 0.75);
  border-radius: 3px;
  background: #f5f2f1;
}

.slider.slider-horizontal .slider-selection {
  background: #27c2b7;
}

.step {
  -moz-user-select: none;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.step__wrap {
  background-color: rgba(255, 255, 255, 0.7);
  border: 4px solid #fff;
  border-radius: 5px;
  padding: 29px 15px 39px;
}

.step__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 40px;
  text-align: center;
}

.step__title span {
  display: inline-block;
  vertical-align: top;
  position: relative;
}

.step__title span:before {
  content: " ";
  position: absolute;
  left: -20px;
  top: 50%;
  width: 5px;
  height: 23px;
  background-color: #27c2b7;
  margin-top: -16px;
}

.step__desc {
  font-size: 22px;
  text-align: center;
  margin-top: -7px;
  line-height: 40px;
}

.step__progressBar {
  height: 49px;
  background-color: #ebeaea;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  margin: 0;
}

.step__progressBar .line {
  height: inherit;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  background-color: #6ad8d0;
  background-image: url("../img/elem/progress-bar.png");
  background-repeat: repeat-x;
  background-position: 0 0;
  z-index: 2;
}

.step__progressBar span {
  display: block;
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  position: relative;
  z-index: 10;
  line-height: 49px;
}

.step__row {
  padding: 0px 6px 14px;
}

.step__img {
  display: block;
  margin: 0 auto 22px;
  width: 100%;
}

.step3__input__data__input input {width: 100%;padding: 10px 0px;border: 1px solid #eee3d3;border-radius: 8px;text-align: center;margin-bottom: 10px;margin-top: 20px;}
.step7__input__data__input input {width: 100%;padding: 10px 0px;border: 1px solid #eee3d3;border-radius: 8px;text-align: center;margin-bottom: 10px;    margin-top: 20px;}
.step4__input__data__input input {width: 100%;padding: 10px 0px;border: 1px solid #eee3d3;border-radius: 8px;text-align: center;margin-bottom: 10px;    margin-top: 20px;}
.myimg .item {width: 25%;}
.row_step {width: 100%;display: inline-block;position: relative;margin: 20px 0px;}
.left_step input {width: 100%;padding: 10px 0px;border: 1px solid #eee3d3;border-radius: 8px;text-align: center;}

.step__img_shadow {
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.step__radio:before {
  content: " ";
}

.stepindex label {
  border-radius: 5px;
  border: 8px solid transparent;
  padding: 0px 0 5px;
  width: 100%;
}

.stepindex label.active {
  border-color: #fff;
}

.stepindex .step__img {
  margin-bottom: -6px;
}

.step1__data {
  position: relative;
  padding: 35px 0 11px;
}

.step1__input {
  position: absolute;
}

.step1__input input {
  width: 82px;
  height: 40px;
  background-color: #f5f2f1;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(197, 197, 197, 0.75) inset;
  border: 0;
  text-align: center;
  color: #000;
  font-size: 23px;
  font-weight: 400;
  padding: 8px 4px 4px;
}

.step1__input_top {
  top: -4px;
  left: 0;
  right: 0;
  text-align: center;
}

.step1__input_left {
  top: 45%;
  left: 46px;
  text-align: center;
}

.step1__input_right {
  top: 45%;
  right: 46px;
  text-align: center;
}

.step1__input__title {
  font-size: 17px;
  font-weight: 300;
  line-height: 24px;
  text-align: center;
  margin-bottom: 3px;
}

.step1__input__data {
  display: table;
  margin: 0 auto;
}

.step1__input__data > * {
  display: table-cell;
  vertical-align: middle;
}

.step1__input__data__minus {
  width: 18px;
  text-align: left;
  color: #2786c2;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

.step1__input__data__input input {
  width: 40px;
  height: 30px;
  border-radius: 3px 0 0 3px;
  float: left;
  border: 1px solid #efeae8;
  background-color: #ffffff;
  font-size: 15px;
  box-shadow: none;
  padding: 2px 0 0;
  line-height: 40px;
}

.step1__input__data__input__sm {
  height: 30px;
  line-height: 30px;
  float: left;
  width: 32px;
  font-size: 15px;
  border: 1px solid #efeae8;
  background-color: #ffffff;
  border-left: 0;
}

.step1__input__data__input.error input {
  box-shadow: inset 0 1px 7px rgba(255, 0, 0, 0.75);
  border-color: #f22222;
}

.step1__input__data__input.error .step1__input__data__input__sm {
  border-color: #f22222;
}

.step1__input__data__plus {
  width: 18px;
  text-align: right;
  color: #2786c2;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

.step1__img {
  display: block;
  margin: 40px auto 0px;
  width:100%;
}

.step1 .step__wrap {
  padding: 9px 15px 39px;
}

.step1 .radio {
  margin-top: -25px;
  margin-bottom: 0;
}

.step2 .radio,
.step3 .radio,
.step4 .radio,
.step5 .radio,
.step6 .radio,
.step7 .radio {
  margin: 0;
}

.step2__data,
.step3__data,
.step4__data,
.step5__data,
.step6__data,
.step7__data {
  margin-top: 29px;
  margin-bottom: 11px;
}

.step2__data__left,
.step3__data__left,
.step4__data__left,
.step5__data__left,
.step6__data__left,
.step7__data__left {
  width: 240px;
  float: left;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.368;
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.06);
  padding: 47px 16px 48px 27px;
}

.step2__data__left .proc,
.step3__data__left .proc,
.step4__data__left .proc,
.step5__data__left .proc,
.step6__data__left .proc,
.step7__data__left .proc {
  margin-top: 24px;
  font-weight: 500;
  font-size: 90px;
  color: #18c9bd;
  line-height: 1;
  text-align: center;
  background: linear-gradient(0deg, #d8f6f4 30%, #18c9bd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.step2__data__left .proc span,
.step3__data__left .proc span,
.step4__data__left .proc span,
.step5__data__left .proc span,
.step6__data__left .proc span,
.step7__data__left .proc span {
  font-size: 80px;
}

.step2__data__right,
.step3__data__right,
.step4__data__right,
.step5__data__right,
.step6__data__right,
.step7__data__right {
  /* margin-left: 260px; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.step2__data__right .item,
.step3__data__right .item,
.step4__data__right .item,
.step5__data__right .item,
.step6__data__right .item,
.step7__data__right .item {
  padding: 0 0 10px;
  /* border-top: 1px solid  #e2e1de; */
  /* border-right: 1px solid  #e2e1de; */
}

.step2__data__right__col2 .item,
.step3__data__right__col2 .item,
.step4__data__right__col2 .item,
.step5__data__right__col2 .item,
.step6__data__right__col2 .item,
.step7__data__right__col2 .item {
  width: 32.3%;
}

.step2__data__right__col2 .item:nth-child(2n+2),
.step3__data__right__col2 .item:nth-child(2n+2),
.step4__data__right__col2 .item:nth-child(2n+2),
.step5__data__right__col2 .item:nth-child(2n+2),
.step6__data__right__col2 .item:nth-child(2n+2),
.step7__data__right__col2 .item:nth-child(2n+2) {
  border-right: 0;
}

.step2__data__right__col2 .item:nth-child(1), .step2__data__right__col2 .item:nth-child(2),
.step3__data__right__col2 .item:nth-child(1),
.step3__data__right__col2 .item:nth-child(2),
.step4__data__right__col2 .item:nth-child(1),
.step4__data__right__col2 .item:nth-child(2),
.step5__data__right__col2 .item:nth-child(1),
.step5__data__right__col2 .item:nth-child(2),
.step6__data__right__col2 .item:nth-child(1),
.step6__data__right__col2 .item:nth-child(2),
.step7__data__right__col2 .item:nth-child(1),
.step7__data__right__col2 .item:nth-child(2) {
  border-top: 0;
  padding-top: 0;
}

.step2__data__right__col2 .item:nth-child(1) .step__img, .step2__data__right__col2 .item:nth-child(2) .step__img,
.step3__data__right__col2 .item:nth-child(1) .step__img,
.step3__data__right__col2 .item:nth-child(2) .step__img,
.step4__data__right__col2 .item:nth-child(1) .step__img,
.step4__data__right__col2 .item:nth-child(2) .step__img,
.step5__data__right__col2 .item:nth-child(1) .step__img,
.step5__data__right__col2 .item:nth-child(2) .step__img,
.step6__data__right__col2 .item:nth-child(1) .step__img,
.step6__data__right__col2 .item:nth-child(2) .step__img,
.step7__data__right__col2 .item:nth-child(1) .step__img,
.step7__data__right__col2 .item:nth-child(2) .step__img {
  margin-top: 0;
}

.step2__data__right__col2 .item:nth-last-of-type(1), .step2__data__right__col2 .item:nth-last-of-type(2),
.step3__data__right__col2 .item:nth-last-of-type(1),
.step3__data__right__col2 .item:nth-last-of-type(2),
.step4__data__right__col2 .item:nth-last-of-type(1),
.step4__data__right__col2 .item:nth-last-of-type(2),
.step5__data__right__col2 .item:nth-last-of-type(1),
.step5__data__right__col2 .item:nth-last-of-type(2),
.step6__data__right__col2 .item:nth-last-of-type(1),
.step6__data__right__col2 .item:nth-last-of-type(2),
.step7__data__right__col2 .item:nth-last-of-type(1),
.step7__data__right__col2 .item:nth-last-of-type(2) {
  padding-bottom: 8px;
}

.step2__data__right__col3 .item,
.step3__data__right__col3 .item,
.step4__data__right__col3 .item,
.step5__data__right__col3 .item,
.step6__data__right__col3 .item,
.step7__data__right__col3 .item {
  width: 33.3333%;
}

.step2__data__right__col3 .item:nth-child(3n+3),
.step3__data__right__col3 .item:nth-child(3n+3),
.step4__data__right__col3 .item:nth-child(3n+3),
.step5__data__right__col3 .item:nth-child(3n+3),
.step6__data__right__col3 .item:nth-child(3n+3),
.step7__data__right__col3 .item:nth-child(3n+3) {
  border-right: 0;
}

.step2__data__right__col3 .item:nth-child(1), .step2__data__right__col3 .item:nth-child(2), .step2__data__right__col3 .item:nth-child(3),
.step3__data__right__col3 .item:nth-child(1),
.step3__data__right__col3 .item:nth-child(2),
.step3__data__right__col3 .item:nth-child(3),
.step4__data__right__col3 .item:nth-child(1),
.step4__data__right__col3 .item:nth-child(2),
.step4__data__right__col3 .item:nth-child(3),
.step5__data__right__col3 .item:nth-child(1),
.step5__data__right__col3 .item:nth-child(2),
.step5__data__right__col3 .item:nth-child(3),
.step6__data__right__col3 .item:nth-child(1),
.step6__data__right__col3 .item:nth-child(2),
.step6__data__right__col3 .item:nth-child(3),
.step7__data__right__col3 .item:nth-child(1),
.step7__data__right__col3 .item:nth-child(2),
.step7__data__right__col3 .item:nth-child(3) {
  border-top: 0;
}

.step2__data__right__col3 .item:nth-child(1) .step__img, .step2__data__right__col3 .item:nth-child(2) .step__img, .step2__data__right__col3 .item:nth-child(3) .step__img,
.step3__data__right__col3 .item:nth-child(1) .step__img,
.step3__data__right__col3 .item:nth-child(2) .step__img,
.step3__data__right__col3 .item:nth-child(3) .step__img,
.step4__data__right__col3 .item:nth-child(1) .step__img,
.step4__data__right__col3 .item:nth-child(2) .step__img,
.step4__data__right__col3 .item:nth-child(3) .step__img,
.step5__data__right__col3 .item:nth-child(1) .step__img,
.step5__data__right__col3 .item:nth-child(2) .step__img,
.step5__data__right__col3 .item:nth-child(3) .step__img,
.step6__data__right__col3 .item:nth-child(1) .step__img,
.step6__data__right__col3 .item:nth-child(2) .step__img,
.step6__data__right__col3 .item:nth-child(3) .step__img,
.step7__data__right__col3 .item:nth-child(1) .step__img,
.step7__data__right__col3 .item:nth-child(2) .step__img,
.step7__data__right__col3 .item:nth-child(3) .step__img {
  margin-top: 9px;
}

.step2__data__right__col3 .item:nth-last-of-type(1), .step2__data__right__col3 .item:nth-last-of-type(2), .step2__data__right__col3 .item:nth-last-of-type(3),
.step3__data__right__col3 .item:nth-last-of-type(1),
.step3__data__right__col3 .item:nth-last-of-type(2),
.step3__data__right__col3 .item:nth-last-of-type(3),
.step4__data__right__col3 .item:nth-last-of-type(1),
.step4__data__right__col3 .item:nth-last-of-type(2),
.step4__data__right__col3 .item:nth-last-of-type(3),
.step5__data__right__col3 .item:nth-last-of-type(1),
.step5__data__right__col3 .item:nth-last-of-type(2),
.step5__data__right__col3 .item:nth-last-of-type(3),
.step6__data__right__col3 .item:nth-last-of-type(1),
.step6__data__right__col3 .item:nth-last-of-type(2),
.step6__data__right__col3 .item:nth-last-of-type(3),
.step7__data__right__col3 .item:nth-last-of-type(1),
.step7__data__right__col3 .item:nth-last-of-type(2),
.step7__data__right__col3 .item:nth-last-of-type(3) {
  padding-bottom: 8px;
}

.step2__data__right__col3_top .item:nth-child(1), .step2__data__right__col3_top .item:nth-child(2), .step2__data__right__col3_top .item:nth-child(3),
.step3__data__right__col3_top .item:nth-child(1),
.step3__data__right__col3_top .item:nth-child(2),
.step3__data__right__col3_top .item:nth-child(3),
.step4__data__right__col3_top .item:nth-child(1),
.step4__data__right__col3_top .item:nth-child(2),
.step4__data__right__col3_top .item:nth-child(3),
.step5__data__right__col3_top .item:nth-child(1),
.step5__data__right__col3_top .item:nth-child(2),
.step5__data__right__col3_top .item:nth-child(3),
.step6__data__right__col3_top .item:nth-child(1),
.step6__data__right__col3_top .item:nth-child(2),
.step6__data__right__col3_top .item:nth-child(3),
.step7__data__right__col3_top .item:nth-child(1),
.step7__data__right__col3_top .item:nth-child(2),
.step7__data__right__col3_top .item:nth-child(3) {
  border-top: 0;
}

.step2__data__right__col3_top .item:nth-child(1) .step__img, .step2__data__right__col3_top .item:nth-child(2) .step__img, .step2__data__right__col3_top .item:nth-child(3) .step__img,
.step3__data__right__col3_top .item:nth-child(1) .step__img,
.step3__data__right__col3_top .item:nth-child(2) .step__img,
.step3__data__right__col3_top .item:nth-child(3) .step__img,
.step4__data__right__col3_top .item:nth-child(1) .step__img,
.step4__data__right__col3_top .item:nth-child(2) .step__img,
.step4__data__right__col3_top .item:nth-child(3) .step__img,
.step5__data__right__col3_top .item:nth-child(1) .step__img,
.step5__data__right__col3_top .item:nth-child(2) .step__img,
.step5__data__right__col3_top .item:nth-child(3) .step__img,
.step6__data__right__col3_top .item:nth-child(1) .step__img,
.step6__data__right__col3_top .item:nth-child(2) .step__img,
.step6__data__right__col3_top .item:nth-child(3) .step__img,
.step7__data__right__col3_top .item:nth-child(1) .step__img,
.step7__data__right__col3_top .item:nth-child(2) .step__img,
.step7__data__right__col3_top .item:nth-child(3) .step__img {
  margin-top: 0;
}

.step2 .step__wrap,
.step3 .step__wrap,
.step4 .step__wrap,
.step5 .step__wrap,
.step6 .step__wrap,
.step7 .step__wrap {
  padding: 23px 56px 39px;
}

.step2 .step__img,
.step3 .step__img,
.step4 .step__img,
.step5 .step__img,
.step6 .step__img,
.step7 .step__img {
  margin: 16px auto 10px;
}

.step6 .radio .elem {
  margin-left: 9px;
  margin-right: 9px;
}

.step6 .radio .elem span {
  font-size: 14px;
  margin-left: 42px;
  line-height: 1.3;
}

.step6 .radio .elem span strong {
  font-size: 15px;
  line-height: 18px;
  display: block;
  margin-bottom: 5px;
  letter-spacing: -0.024em;
}

.step6 .radio .elem span i {
  color: #41cfc5;
  font-weight: 500;
  font-style: normal;
}

.step6__desc {
  font-weight: 500;
  margin-top: 14px;
  margin-bottom: -20px;
}

.step6__img {
  margin-bottom: 12px;
}

.step7 .step__wrap {
  padding: 31px 56px 46px;
}

.step7__form {
  margin-top: 30px;
  margin-bottom: -30px;
}

.step7__form__left {
  width: 354px;
  float: left;
  font-size: 19px;
  font-weight: 300;
  line-height: 26px;
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.06);
  padding: 12px 16px 16px 27px;
}

.step7__form__left .text {
  text-align: center;
}

.step7__form__left .proc {
  position: relative;
  top: 8px;
  font-weight: 500;
  font-size: 46px;
  color: #18c9bd;
  line-height: 1;
  text-align: center;
  background: linear-gradient(0deg, #d8f6f4 30%, #18c9bd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.step7__form__left .proc span {
  font-size: 40px;
}

.step7__form__left .plus {
  line-height: .8;
  color: #ffc900;
  font-size: 48px;
  font-weight: 700;
}

.step7__form__left .podarok {
  margin-top: 17px;
}

.step7__form__left .podarok__title {
  color: #010101;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.step7__form__left .podarok__price {
  font-size: 16px;
  color: #010101;
  margin-top: 2px;
}

.step7__form__left .podarok__price span {
  color: #41cfc5;
  font-weight: 500;
}

.step7__form__left .podarok__img {
  margin: 18px auto 0;
  position: relative;
}

.step7__form__left .podarok__img img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

.step7__form__left .podarok__img:after {
  content: " ";
  position: absolute;
  display: block;
  left: 80%;
  top: 0;
  background-image: url("../img/elem/decor-arrow.png");
  background-repeat: no-repeat;
  background-position: 0 0;
  width: 120px;
  height: 70px;
}

.step7__form__left .podarok__count {
  line-height: 1;
  font-size: 16px;
  margin-top: 18px;
}

.step7__form__right {
  margin-left: 412px;
}

.step7__form__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 25px;
  padding-top: 3px;
  margin-bottom: 25px;
}

.step7__form__btn {
  padding: 20px 40px 18px;
  margin-top: 20px;
  line-height: 1.1;
}

.step7__form__checkbox {
  margin-top: 36px;
  margin-bottom: 30px;
}

/* .video iframe {
  margin: 18px auto;
  display: block;
} */

.reviews {
  padding: 0 0 92px;
}

.reviews__item {
  margin: 12px 0 66px;
}

.reviews__item__invert .reviews__imgs {
  float: right;
}

.reviews__item__invert .reviews__content {
  margin-right: 400px;
  margin-left: 0;
}

.reviews__num {
  color: #000000;
  font-size: 25px;
  line-height: 36px;
  overflow: hidden;
  text-align: center;
  margin-bottom: 42px;
}

.reviews__num:before, .reviews__num:after {
  content: " ";
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  height: 14px;
  position: relative;
  background-image: url("../img/elem/title-line.png");
  background-repeat: repeat-x;
}

.reviews__num:before {
  margin-left: -100%;
  left: -41px;
  background-position: right center;
}

.reviews__num:after {
  margin-right: -100%;
  right: -41px;
  background-position: -10px center;
}

.reviews__imgs {
  width: 348px;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 4px;
}

.reviews__imgs img {
  margin-bottom: 24px;
}

.reviews__content {
  margin-left: 400px;
}

.reviews__title {
  position: relative;
}

.reviews__title:before, .reviews__title:after {
  content: " ";
  position: absolute;
  display: block;
  width: 93px;
  height: 67px;
  background-repeat: no-repeat;
  background-position: 0 0;
}

.reviews__title:before {
  width: 92px;
  background-image: url("../img/elem/quote-left.png");
  left: 0;
  top: 6px;
}

.reviews__title:after {
  background-image: url("../img/elem/quote-right.png");
  right: 0;
  bottom: 20px;
}

.reviews__title__text {
  color: #000000;
  font-size: 30px;
  line-height: 36px;
  padding-left: 121px;
}

.reviews__title__info {
  line-height: 21px;
  display: table;
  font-size: 0;
  padding-left: 121px;
  padding-right: 110px;
  width: 100%;
  margin-top: 14px;
}

.reviews__title__info .avatar {
  width: 108px;
  height: 108px;
  border-radius: 100%;
  display: inline-block;
  vertical-align: middle;
}

.reviews__title__info > div {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  margin-left: 21px;
}

.reviews__title__info .name {
  color: #27c2b7;
  font-size: 18px;
  margin-bottom: 4px;
}

.reviews__title__info .date {
  color: #bcbbbb;
  font-size: 16px;
}

.reviews__title__info .link {
  color: #000000;
  font-size: 16px;
  text-decoration: underline;
}

.reviews__title__info .link:hover {
  color: #000;
  text-decoration: none;
}

.reviews__text {
  margin-top: 26px;
  color: #2c2f31;
  font-family: Arial;
  font-size: 17px;
  font-style: italic;
  line-height: 24px;
}

.director {
  background-color: #f9f9fb;
  padding: 93px 0 100px;
}

.director__img {
  float: left;
  width: 348px;
}

.director__content {
  margin-left: 398px;
  color: #262626;
  font-size: 18px;
  line-height: 25px;
  padding-top: 25px;
}

.director__content .text-italic {
  font-family: Arial;
  font-size: 19px;
  font-style: italic;
  line-height: 28px;
  margin-bottom: 30px;
}

.director__signature {
  display: block;
  margin-top: 21px;
}

.vkBlock {
  background-image: url("../img/bg/vk.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  padding: 77px 0 70px;
}

.vkBlock__title {
  text-align: center;
  color: #000000;
  font-size: 30px;
  line-height: 46px;
  font-weight: 500;
}

.vkBlock__desc {
  text-align: center;
  color: #000000;
  font-size: 30px;
  line-height: 46px;
  font-weight: 300;
}

.vkBlock__link {
  overflow: hidden;
  text-align: center;
  margin-top: 35px;
}

.vkBlock__link:before, .vkBlock__link:after {
  content: " ";
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  height: 14px;
  position: relative;
  background-image: url("../img/elem/title-line.png");
  background-repeat: repeat-x;
}

.vkBlock__link:before {
  margin-left: -100%;
  left: -41px;
  background-position: right center;
}

.vkBlock__link:after {
  margin-right: -100%;
  right: -41px;
  background-position: -10px center;
}

.vkBlock__link a {
  display: inline-block;
  vertical-align: middle;
  width: 114px;
  height: 114px;
  background-color: #27c2b7;
  border-radius: 100%;
  background-image: url("../img/elem/vk.png");
  background-repeat: no-repeat;
  background-position: center center;
}

.vkBlock__link a:hover {
  opacity: .8;
}

.popapCall {
  border-radius: 20px;
  padding: 0 0 16px;
  max-width: 538px;
  background-color: #eceae8;
}

.popapCall__top {
  background-color: #dcd6d6;
}

.popapCall__top span {
  font-size: 25px;
  font-weight: 500;
  color: #262626;
  display: inline-block;
  vertical-align: top;
  background-color: #6ad8d0;
  background-image: url("../img/elem/progress-bar.png");
  background-repeat: repeat-x;
  background-position: 0 0;
  padding: 20px 62px 16px;
  line-height: 1;
}

.popapCall__title {
  font-size: 25px;
  font-weight: 500;
  text-align: center;
  margin-top: 40px;
}

.popapCall__form {
  margin: 30px 0;
  padding: 0 69px;
}

.popapCall__timeTab {
  margin-top: -2px;
}

.popapCall__timeTab span {
  float: left;
  width: 48%;
  background-color: #fff;
  border-radius: 3px;
  font-size: 19px;
  color: #262626;
  font-weight: 400;
  padding: 0 10px;
  text-align: center;
  height: 54px;
  line-height: 58px;
  cursor: pointer;
}

.popapCall__timeTab span:hover {
  opacity: .8;
}

.popapCall__timeTab span + span {
  margin-left: 4%;
}

.popapCall__timeTab span.active {
  background-color: #ffe169;
}

.popapCall__timeContent {
  margin-top: 12px;
}

.popapCall__timeContent > * {
  display: none;
}

.popapCall__timeContent > *.active {
  display: block;
}

.popapCall__btn {
  margin-top: 12px;
  padding: 18px 40px;
}

.popapCall__checkbox {
  margin-top: 36px;
  margin-bottom: 30px;
  margin-left: 4px;
}

.popapTop {
  border-radius: 20px;
  padding: 88px 40px 12px;
  width: 940px;
  background-color: #fff;
  overflow: visible;
}

.popapTop__title {
  color: #000;
  font-size: 38px;
  line-height: 45px;
  text-align: center;
}

.popapTop__title span {
  font-weight: 700;
}

.popapTop__info {
  color: #000;
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
  padding: 0px 20px 0 30px;
  width: 360px;
  float: left;
  position: relative;
  margin: 546px 0 46px 20px;
}

.popapTop__info:before {
  content: " ";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 8px;
  width: 5px;
  background-color: #ffd800;
}

.popapTop__info span {
  font-weight: 700;
  line-height: 30px;
  text-transform: uppercase;
}

.popapTop__content {
  color: #000000;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  float: left;
  margin: 568px 0 46px 20px;
  width: 360px;
}

.popapTop__content__title {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 9px;
}

.popapTop__content__priziv {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 8px;
  display: inline-block;
  position: relative;
}

.popapTop__content__priziv:after {
  content: " ";
  position: absolute;
  display: block;
  right: -130px;
  bottom: 12px;
  background-image: url("../img/elem/decor-arrow.png");
  background-repeat: no-repeat;
  background-position: 0 0;
  width: 120px;
  height: 70px;
}

.popapTop__form {
  margin: 51px 0;
  padding: 49px 36px 10px 45px;
  width: 470px;
  float: right;
  position: relative;
  border-radius: 20px;
  border: 4px solid #27c2b7;
}

.popapTop__form:before {
  content: " ";
  position: absolute;
  right: 70%;
  top: -76px;
  background-image: url("../img/elem/catalog.png");
  background-repeat: no-repeat;
  background-position: 0 0;
  width: 784px;
  height: 627px;
}

.popapTop__form__title {
  color: #262626;
  font-size: 25px;
  line-height: 30px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 23px;
}

.popapTop__form__title span {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
}

.popapTop__btn {
  margin-top: 12px;
  padding: 22px 20px 20px;
  line-height: 1.1;
}

.popapTop__checkbox {
  margin-top: 36px;
  margin-bottom: 30px;
  margin-left: 4px;
}

.contentMessage {
  font-size: 14px;
  margin: 44px;
  min-width: 800px;
}

.contentMessage .title {
  font-size: 28px;
  margin-bottom: 14px;
  font-weight: 500;
}

.message {
  min-width: 300px;
  margin: 44px;
  padding-right: 54px;
}

.fancybox-slide {
  overflow-y: scroll;
}

#dialog {
  font-size: 18px;
  padding: 20px;
  position: fixed;
  z-index: 999;
  font-weight: bold;
  border: 2px solid red;
  color: red;
}

#shadow {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 998;
  background-color: lightgrey;
  opacity: 0.8;
  top: 0px;
  left: 0px;
}

.video-responsive { 
  position: relative; 
  padding-bottom: 56.25%; 
  height: 0; 
  overflow:hidden;
  max-width: 780px;
  margin: 0 auto;
} 
.video-responsive iframe, 
.video-responsive object, 
.video-responsive embed {
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%;
  height: 100%; 
}