
.formsteps-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 10px;
  z-index: 200;
  display: -ms-flexbox;
  display: flex;
  vertical-align: middle;
  background-color: rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
  overflow: auto;
}

.formsteps {
  align-self: center;
  background-color: #fff;
  border-radius: 6px;
  overflow-x: hidden;
  width: 100%;
  max-width: 807px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Open Sans", sans-serif;
  position: relative;
  max-height: 100vh;
  overflow-y: auto;
}

.formsteps__required {
  position: relative;
}

.formsteps__required:before {
  content: '*';
  top: 22px;
  right: 15px;
  position: absolute;
  font-size: 15px;
  line-height: 15px;
  transform: translateY(-50%);
  color: #d0021b;
}

.formsteps__progress {
  flex: 0 0 126px;
  background-color: #d81b16;
  min-height: 347px;
}

.formsteps__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 1 100%;
}

.formsteps__controls {
  text-align: right;
  padding: 10px 68px 36px 0;
  position: relative;
  z-index: 5;
}

.formsteps__btn {
  text-decoration: none;
  height: 42px;
  background-color: #d81b16;
  border-radius: 4px;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  text-decoration: none;
  outline: none;
  box-sizing: border-box;
  padding: 0 26px 0 26px;
  position: relative;
  border: none;
  -webkit-tap-highlight-color: transparent;
  color: white;
  font-size: 16px;
  font-weight: 700;
  line-height: 40px;
  cursor: pointer;
  transition: background .3s ease-out;
}

.formsteps__btn:hover {
  background-color: #df0031;
}

.formsteps__btn:active {
  background-color: #df0031;
}

.formsteps__btn--submit {
  display: none;
  padding: 0 26px;
  -webkit-appearance: none;
  -webkit-border-radius: 4px;
}

.formsteps__btn:before {
  content: '';
  background: url(../img/btn-arrow.svg) 0 0 no-repeat;
  background-size: contain;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  right: -35px;
  transform-origin: 0;
  transform: rotate(180deg) translateY(50%);
}

.formsteps__btn--whole {
  padding: 0 26px 0 26px;
  background-color: #fff;
  color: #212121;
  margin-right: 10px;
}

.formsteps__btn--whole:before {
  transform: translateY(-50%);
  left: 0px;
  right: auto;
  background: url(../img/btn-arrow--dark.svg) 0 0 no-repeat;
  background-size: contain;
}

.formsteps__btn--whole:hover {
  background-color: #e8e8e8;
}

.formsteps__btn--whole:hover:before {
  background: url(../img/btn-arrow--dark.svg) 0 0 no-repeat;
  background-size: contain;
}

.formsteps__btn--whole:active {
  background-color: #d4d4d4;
}

.formsteps__btn--whole:active:before {
  background: url(../img/btn-arrow--dark.svg) 0 0 no-repeat;
  background-size: contain;
}

.formsteps__btn--disabled {
  background-color: #e8e8e8;
  color: #d4d4d4;
  cursor: default;
  opacity: 0;
}

.formsteps__btn--disabled:before {
  background: url(../img/btn-arrow--grey.svg) 0 0 no-repeat;
  background-size: contain;
}

.formsteps__btn--disabled:hover {
  background-color: #e8e8e8;
  color: #d4d4d4;
}

.formsteps__btn--disabled:hover:before {
  background: url(../img/btn-arrow--grey.svg) 0 0 no-repeat;
}

.formsteps__btn--disabled:active {
  background-color: #e8e8e8;
  color: #d4d4d4;
}

.formsteps__btn--disabled:active:before {
  background: url(../img/btn-arrow--grey.svg) 0 0 no-repeat;
  background-size: contain;
}

.formsteps__steps {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  margin: 0;
  padding: 0;
}

.formsteps__inputs {
  padding-right: 68px;
}

.formsteps__step {
  padding: 37px 0 0 68px;
  flex-direction: column;
  position: relative;
  display: none;
  z-index: 1;
  top: 0;
  width: 100%;
  height: 100%;
}

.formsteps__step--current {
  display: block;
  position: relative;
  box-sizing: border-box;
  z-index: 2;
  background-color: #fff;
}

.formsteps__head {
  color: #212121;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  max-width: 100%;
  min-height: 80px;
  margin: 0 0 14px 0;
}

.formsteps__text {
  width: 100%;
  height: 50px;
  background-color: #fff;
  border-radius: 4px;
  border: 2px solid #9b9b9b;
  outline: none;
  transition: 0.3s ease-out;
  box-sizing: border-box;
  padding-left: 15px;
  display: inline-block;
  font-size: 16px;
  box-shadow: none;
  -webkit-appearance: none;
}

.formsteps__text::-webkit-input-placeholder {
  color: #9b9b9b;
}

.formsteps__text::-moz-placeholder {
  color: #9b9b9b;
}

.formsteps__text:-ms-input-placeholder {
  color: #9b9b9b;
}

.formsteps__text:hover {
  border: 2px solid #d81b16;
}

.formsteps__text:focus {
  border: 2px solid #d81b16;
}

.formsteps__text:focus::-webkit-input-placeholder {
  color: transparent;
}

.formsteps__text:focus::-moz-placeholder {
  color: transparent;
}

.formsteps__text:focus:-ms-input-placeholder {
  color: transparent;
}

.formsteps__text[disabled] {
  background-color: #e8e8e8;
  border: 2px solid #d7d7d7;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.formsteps__text[disabled]::-webkit-input-placeholder {
  color: #d4d4d4;
}

.formsteps__text[disabled]::-moz-placeholder {
  color: #d4d4d4;
}

.formsteps__text[disabled]:-ms-input-placeholder {
  color: #d4d4d4;
}

.formsteps__text--error {
  border: 2px solid #d0021b;
  color: #d0021b;
}

.formsteps__text--error::-webkit-input-placeholder {
  color: #d0021b;
}

.formsteps__text--error::-moz-placeholder {
  color: #d0021b;
}

.formsteps__text--error:-ms-input-placeholder {
  color: #d0021b;
}

.formsteps__radio-title {
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
  color: #212121;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  transition: .3s ease-out;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.formsteps__hint {
  color: #6e6e6e;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  padding-top: 5px;
  margin: 0;
}

.formsteps label {
  vertical-align: top;
  margin-bottom: 10px;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.formsteps label input[type="radio"] {
  display: none;
}

.formsteps label input[type="radio"]:checked+.formsteps__radio {
  border: 2px solid #d81b16;
}

.formsteps label input[type="radio"]:checked+.formsteps__radio:before {
  width: 10px;
  height: 10px;
}

.formsteps label input[type="radio"]:checked~.formsteps__radio-title {
  color: #df0031;
}

.formsteps label input[type="radio"]:disabled+.formsteps__radio {
  border: 2px solid #e8e8e8;
  box-shadow: inset 0 0 0 15px #e8e8e8;
}

.formsteps label input[type="radio"]:disabled+.formsteps__radio:before {
  background: #e8e8e8;
}

.formsteps label:hover .formsteps__radio {
  border: 2px solid #d81b16;
}

.formsteps label:hover .formsteps__radio-title {
  color: #df0031;
}

.formsteps label:hover input:disabled~.formsteps__radio-title {
  color: #212121;
}

.formsteps__radio {
  display: inline-block;
  vertical-align: middle;
  background: #d81b16;
  width: 20px;
  height: 20px;
  -ms-flex: 0 0 20px;
  flex: 0 0 20px;
  border-radius: 50%;
  border: 2px solid #9b9b9b;
  transition: .3s ease-out;
  position: relative;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  box-sizing: content-box;
  -webkit-tap-highlight-color: transparent;
}

.formsteps__radio:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: .3s ease-out;
}

.formsteps__progress {
  padding: 35px 0;
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  align-items: center;
}

.formsteps__progress-line {
  min-height: 230px;
  width: 2px;
  padding: 0;
  flex: 1 1 auto;
  background: #ffffff;
  background: linear-gradient(to bottom, #ffffff 0%, #ffffff 50%, #fff 50%, #fff 100%);
  background-size: 200%;
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  align-items: center;
  transition: .3s ease-in-out;
  margin: 0;
  list-style: none;
}

.formsteps__progress-item {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: relative;
  background-color: #fff;
}

.formsteps__progress-item:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  box-sizing: border-box;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: .3s ease-out;
  background: #fff;
  opacity: 1;
  z-index: 1;
}

.formsteps__progress-item:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  box-sizing: border-box;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: .3s ease-out;
  background: transparent;
  z-index: 2;
}

.formsteps__progress-item--current {
  background-color: transparent;
}

.formsteps__progress-item--current:before {
  width: 16px;
  height: 16px;
  opacity: 1;
  transition: .3s ease-out .2s;
}

.formsteps__progress-item--current:after {
  background: #d81b16;
  width: 8px;
  height: 8px;
  transition: .3s ease-out .2s;
}

.formsteps__progress-item--current~li {
  background-color: #ffffff;
}

.formsteps__progress-item--current~li:before {
  width: 0;
  height: 0;
  opacity: 0;
}

.formsteps__progress-item--current~li:after {
  background: #ffffff;
}

.formsteps__number {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  margin: 0 0 22px 0;
}

.formsteps__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #d81b16;
  z-index: 3;
  padding: 35px 25px;
  display: none;
  min-width: 126px;
  box-sizing: border-box;
  transition: .5s ease-in-out;
}

.formsteps__overlay svg circle {
  stroke-dasharray: 170;
  stroke-dashoffset: 170;
}

.formsteps__overlay svg circle.top {
  stroke: #fff;
  stroke-dashoffset: 0;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  transition: stroke-dashoffset 3s ease-out .5s, opacity .3s ease-out .5s;
}

.formsteps__overlay svg circle.bottom {
  stroke-dashoffset: 0;
  stroke: #df0031;
}

.formsteps__overlay svg path {
  stroke-dasharray: 77;
  stroke-dashoffset: 77;
  stroke: #fff;
  transition: .4s ease-out 1s;
}

.formsteps__overlay--rotate svg circle.bottom {
  transform-origin: 50% 50%;
  transition: stroke-dashoffset .4s ease-out 1s;
  transform: rotate(-25deg);
  stroke-dashoffset: 10;
}

.formsteps__overlay--rotate svg circle.top {
  opacity: 0;
}

.formsteps__overlay--rotate svg path {
  stroke-dashoffset: 0;
}

.formsteps__overlay--aside {
  right: 100%;
  justify-content: center;
}

.formsteps__overlay--aside .formsteps__number {
  margin-bottom: 80px;
}

.formsteps__overlay--aside .formsteps__overlay-title {
  display: none;
}

.formsteps__overlay--hidden svg circle.top {
  stroke-dashoffset: 170;
}

.formsteps__overlay--hidden svg path {
  stroke-dashoffset: 77;
}

.formsteps__overlay-title {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  margin-bottom: 54px;
}

.formsteps__overlay-progress {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.formsteps__overlay-percent {
  color: #fff;
  font-size: 48px;
  font-weight: 300;
  line-height: 65px;
  position: absolute;
  bottom: -55px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}

.formsteps__overlay-percent span {
  position: relative;
}

.formsteps__overlay-percent span:after {
  content: '%';
  opacity: 0.5;
  font-size: 36px;
  font-weight: 300;
  line-height: 57px;
  position: absolute;
  bottom: 0;
  right: -32px;
}

.formsteps__overlay-percent--ready {
  font-size: 18px;
  line-height: 24px;
  bottom: -20px;
}

.formsteps__overlay-percent--ready span:after {
  display: none;
}

.formsteps .label-wrap {
  flex: 1 1 0;
  max-width: 100%;
  margin-bottom: 10px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.formsteps .label-wrap--big {
  display: block;
  width: 100%;
  max-width: 100%;
}

.formsteps .label-wrap--medium {
  display: block;
  width: 100%;
  max-width: 75%;
}

.formsteps__final {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  padding: 35px 70px;
}

.formsteps__final--hidden {
  display: none;
}

.formsteps__final .formsteps__head {
  font-size: 24px;
}

.formsteps__thanks {
  color: #212121;
  font-size: 17px;
  font-weight: 400;
  line-height: 23px;
  margin: 0;
}

.formsteps__popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: url(../img/ic-cross.svg) center no-repeat;
  cursor: pointer;
  z-index: 5;
}

.formsteps-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 10px;
  z-index: 200;
  display: -ms-flexbox;
  display: flex;
  vertical-align: middle;
  background-color: rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
  overflow: auto;
}

.formsteps__error {
  color: #d0021b;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  padding-top: 5px;
  margin: 0;
  min-width: 100%;
}

.site-wrapper {
  position: relative;
  z-index: 1
}

.formsteps-popup--hidden {
  display: none;
}

.formsteps {
  margin: 0 auto;
}

.code-input {
  display: none;
}

.formsteps input[type="radio"],
.formsteps input[type="checkbox"] {
  display: none;
}

.formsteps-popup input[type="checkbox"] {
  display: none
}

.formsteps__checkbox {
  display: inline-block;
  vertical-align: middle;
  -ms-flex: 0 0 20px;
  flex: 0 0 20px;
  background: #fff;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 2px solid #9b9b9b;
  transition: .3s ease-out;
  position: relative;
}

label:hover .formsteps__checkbox {
  display: inline-block;
  vertical-align: middle;
  background: #fff;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 2px solid #d81b16;
  transition: .3s ease-out;
  position: relative;
}

input:checked+.formsteps__checkbox {
  display: inline-block;
  vertical-align: middle;
  background: #d81b16 url('../img/check.svg') center no-repeat;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 2px solid #d81b16;
  transition: .3s ease-out;
  position: relative;
}

.formsteps-popup input[type="checkbox"] {
  display: none;
}

.formsteps__title {
  margin: 0;
  padding: 35px 0 0 68px;
  font-size: 14px;
  font-weight: bold;
}

@media screen and (max-width: 960px) {
  .formsteps__title {
    padding: 0;
    margin-bottom: 20px;
  }
  .formsteps {
    flex-direction: column;
    min-height: 425px;
    max-width: 580px;
  }
  .formsteps__head {
    max-width: 100%;
    min-height: 6px;
  }
  .formsteps__radio-title {
    margin-left: 10px;
    font-size: 17px;
    max-width: calc(100% - 34px);
  }
  .formsteps__radio {
    width: 26px;
    height: 26px;
    -ms-flex: 0 0 26px;
    flex: 0 0 26px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
  }
  .formsteps__radio:before {
    width: 26px;
    height: 26px;
  }
  .formsteps .label-wrap {
    max-width: 100%;
  }
  .formsteps__progress {
    display: block;
    min-height: 0;
    height: 84px;
    padding: 34px 50px 24px;
    box-sizing: border-box;
    background-color: transparent;
    flex: 0 0 auto;
  }
  .formsteps__number {
    color: #df0031;
  }
  .formsteps__progress-line {
    display: none;
  }
  .formsteps__content {
    padding: 0 88px 46px;
    flex: 1 0 100%;
  }
  .formsteps__step {
    padding-left: 0;
  }
  .formsteps__step--current {
    padding-top: 0;
  }
  .formsteps__inputs {
    flex-direction: column;
    padding-right: 0;
  }
  .formsteps__text {
    max-width: 100%;
    width: 100%;
    margin-bottom: 0;
    height: 44px;
    line-height: 42px;
    font-size: 17px;
  }
  .formsteps label {
    margin-bottom: 0;
    width: auto;
  }
  .formsteps label.formsteps__text-container {
    width: 100%;
    display: block;
    font-size: 0;
  }
  .formsteps label input[type="radio"]:checked+.formsteps__radio:before {
    width: 10px;
    height: 10px;
  }
  .formsteps label input[type="radio"]:disabled~.formsteps__radio-title {
    color: #d4d4d4;
  }
  .formsteps .label-wrap {
    margin-bottom: 26px;
  }
  .formsteps__controls {
    padding: 0;
    display: flex;
    justify-content: space-between;
  }
  .formsteps__btn {
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    outline: none;
  }
  .formsteps__btn:hover {
    background: #d81b16;
  }
  .formsteps__btn:active {
    background: #4f902a;
  }
  .formsteps__btn--whole:hover {
    background: #fff;
  }
  .formsteps__btn--whole:active {
    background: #d4d4d4;
  }
  .formsteps__overlay {
    padding: 24px 24px;
  }
  .formsteps__overlay .formsteps__number {
    margin-bottom: 36px;
    color: #fff;
  }
  .formsteps__overlay--aside {
    min-width: 152px;
    text-align: center;
    display: flex !important;
    flex-wrap: wrap;
  }
  .formsteps__overlay--aside .formsteps__number {
    margin-bottom: 0;
    display: block;
    text-align: center;
    width: 100%;
  }
  .formsteps__overlay--aside~* {
    padding-left: 240px;
    box-sizing: border-box;
  }
  .formsteps__overlay--aside+.formsteps__progress {
    opacity: 0;
    cursor: default;
  }
  .formsteps-popup {
    display: block !important;
  }
  .formsteps-popup--hidden {
    display: none !important;
  }
}

@media screen and (max-width: 600px) {
  .formsteps {
    max-width: 100%;
  }
  
  .formsteps__progress {
    padding: 34px 90px 46px;
  }
  .formsteps__content {
    padding: 0 34px 48px;
  }
  .formsteps__btn--submit {
    width: 100%;
  }
  .formsteps__hint {
    padding-left: 10px;
  }
  .formsteps__overlay--aside {
    right: 0;
    bottom: 100%;
    min-height: 169px;
  }
  .formsteps__overlay--aside .formsteps__number {
    text-align: left;
    color: #fff;
  }
  .formsteps__overlay--aside+.formsteps__progress {
    min-height: 193px;
  }
}

@media screen and (max-width: 400px) {
  .formsteps__overlay {
    padding: 0px;
  }
  .formsteps__progress {
    padding: 24px 95px 36px;
  }
  .formsteps__content {
    padding: 0 24px 38px;
  }
  .formsteps__btn {
    margin: 0;
  }

/*@import url(http://fonts.googleapis.com/css?family=Open+Sans:600italic,400,600,700,300&subset=latin,cyrillic);*/


/*! normalize.css v3.0.1 | MIT License | git.io/normalize */

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  src: url('g/fonts/open_sans/open_sans-l.eot');
  src: local('☺'), url('/g/fonts/open_sans/open_sans-l.eot?#iefix') format('embedded-opentype'), url('/g/fonts/open_sans/open_sans-l.woff2') format('woff2'), url('/g/fonts/open_sans/open_sans-l.woff') format('woff'), url('/g/fonts/open_sans/open_sans-l.ttf') format('truetype'), url('/g/fonts/open_sans/open_sans-l.svg#OpenSans') format('svg');
}

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('g/fonts/open_sans/open_sans-r.eot');
  src: local('☺'), url('/g/fonts/open_sans/open_sans-r.eot?#iefix') format('embedded-opentype'), url('/g/fonts/open_sans/open_sans-r.woff2') format('woff2'), url('/g/fonts/open_sans/open_sans-r.woff') format('woff'), url('/g/fonts/open_sans/open_sans-r.ttf') format('truetype'), url('/g/fonts/open_sans/open_sans-r.svg#OpenSans') format('svg');
}

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  src: url('g/fonts/open_sans/open_sans-s-b.eot');
  src: local('☺'), url('/g/fonts/open_sans/open_sans-s-b.eot?#iefix') format('embedded-opentype'), url('/g/fonts/open_sans/open_sans-s-b.woff2') format('woff2'), url('/g/fonts/open_sans/open_sans-s-b.woff') format('woff'), url('/g/fonts/open_sans/open_sans-s-b.ttf') format('truetype'), url('/g/fonts/open_sans/open_sans-s-b.svg#OpenSans') format('svg');
}

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url('g/fonts/open_sans/open_sans-b.eot');
  src: local('☺'), url('/g/fonts/open_sans/open_sans-b.eot?#iefix') format('embedded-opentype'), url('/g/fonts/open_sans/open_sans-b.woff2') format('woff2'), url('/g/fonts/open_sans/open_sans-b.woff') format('woff'), url('/g/fonts/open_sans/open_sans-b.ttf') format('truetype'), url('/g/fonts/open_sans/open_sans-b.svg#OpenSans') format('svg');
}

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}



mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

.wedo__icon {
  width: 133px;
  height: 133px;
  font-size: 0;
  background-repeat: no-repeat;
  background-image: url('../../img/page/promoPage/wedo-sprite.png');
}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min--moz-device-pixel-ratio: 1.5),
(min-resolution: 1.5dppx) {
  .wedo__icon {
    background-image: url("../../img/page/promoPage/wedo-sprite@2x.png");
    background-size: 830px 130px;
  }
}

.wedo__icon--s3 {
  background-position: 0 0;
}

.wedo__icon--rekmala {
  background-position: -140px 0;
}

.wedo__icon--onicon {
  background-position: -280px 0;
}

.wedo__icon--moffer {
  background-position: -420px 0;
}

.wedo__icon--maliver {
  background-position: -560px 0;
}

.wedo__icon--apps {
  background-position: -700px 0;
}

.tariff__icon {
  width: 63px;
  height: 63px;
  position: absolute;
  left: 50%;
  margin-left: -32px;
  top: -32px;
  z-index: 1;
  font-size: 0;
  background-repeat: no-repeat;
  background-image: url('../../img/page/promoPage/tariff-sprite.png');
}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min--moz-device-pixel-ratio: 1.5),
(min-resolution: 1.5dppx) {
  .tariff__icon {
    background-image: url("../../img/page/promoPage/tariff-sprite@2x.png");
    background-size: 209px 63px;
  }
}

.tariff__icon--econom {
  background-position: 0 0;
}

.tariff__icon--bis {
  background-position: -73px 0;
}

.tariff__icon--shop {
  background-position: -146px 0;
}

.order-btn {
  display: inline-block;
  box-sizing: border-box;
  width: 230px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 600;
  background-color: #14CC6A;
  border-radius: 30px;
  border: none;
  padding: 7px 30px;
}

.order-btn:hover {
  background-color: #1BD572;
}

.order-btn:active {
  background-color: #0EB85E;
}

.order-btn--arr {
  padding: 7px 30px 7px 20px;
}

.btn__arr {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 13px;
  vertical-align: middle;
  background: url(../../img/page/promoPage/svg/order-butt-arr.svg) 0 0 no-repeat;
}

.submit-btn {
  background-color: #0bb65b;
  background-image: -webkit-linear-gradient(270deg, #14cc6a 0%, #0bb65b 100%);
  background-image: linear-gradient(-180deg, #14cc6a 0%, #0bb65b 100%);
  box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  width: 100%;
  font-size: 20px;
  font-size: 1.25rem;
  box-sizing: border-box;
  text-align: center;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
  color: #fff;
  border: none;
  outline: none;
  max-width: 380px;
  padding: 10px 12px;
  text-decoration: none;
  font-family: 'Open Sans', sans-serif;
}

.submit-btn:hover {
  background-image: -webkit-linear-gradient(#df0031);
  background-image: linear-gradient(#df0031);
}

.submit-btn:active {
  background: #14CC6A;
  box-shadow: inset 0 2px 0 0 rgba(0, 0, 0, 0.2);
}

.submit-btn .btn__arr {
  margin-right: 20px;
}

.tariff__btn {
  display: inline-block;
  vertical-align: middle;
  background: #14CC6A;
  border-radius: 3px;
  font-weight: 600;
  font-size: 16px;
  font-size: 1rem;
  color: #fff;
  text-align: center;
  text-decoration: none;
  padding: 7px 25px;
  margin: 10px 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.tariff__btn:hover {
  background: #09B85B;
}

.tariff__btn:active {
  background: #09B85B;
  box-shadow: inset 0 2px 0 0 rgba(0, 0, 0, 0.2);
}

.tariff__btn--ghost {
  background: #f8f8f6;
  border: 2px solid #14CC6A;
  color: #14CC6A;
  text-shadow: none !important;
  box-shadow: none !important;
}

.tarif-portfolio .tariff__btn {
  position: absolute;
  top: 38px;
  right: 13px;
}

.tarif-portfolio .tariff__btn:hover {
  background: #14CC6A;
  color: #fff;
}

html {
  font-size: 16px;
}

body {
  background-color: #f8f8f6;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  line-height: 1.4;
  font-style: normal;
  color: #333;
}

a {
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

.site-wrapper {
  min-height: 320px;
  margin: 0 auto;
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
}

.site-pusher {
  display: block;
  z-index: 99;
  position: fixed;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  opacity: 0;
  -webkit-perspective: 1000;
  perspective: 1000;
  background: rgba(0, 0, 0, 0.2);
  -webkit-transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
  transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
}

header {
  position: relative;
}

header .order-btn {
  position: absolute;
  top: 103px;
  right: 50px;
  opacity: 0;
  -webkit-transition: opacity 0.5s 0.8s ease-in-out, top 0.3s;
  transition: opacity 0.5s 0.8s ease-in-out, top 0.3s;
}

header .order-btn.showed {
  margin-top: 0;
  opacity: 1;
}



.nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav li {
  display: block;
  padding: 6px 0;
}

.nav li.cat-title {
  margin-left: -20px;
  margin-bottom: 5px;
  font-size: 13px;
  font-size: .8125rem;
  color: #14CC6A;
}

.nav li a {
  font-weight: 600;
  text-decoration: underline;
  font-size: 14px;
  color: #fff;
  line-height: 19px;
}

.nav li a:hover {
  text-decoration: none;
}

.nav li a:active {
  background: #14CC6A;
}

.close-btn {
  width: 20px;
  height: 20px;
  padding: 10px;
  top: 37px;
  right: 28px;
  cursor: pointer;
  position: absolute;
  -webkit-transition: -webkit-transform 0.9s;
  -ms-transition: transform 0.9s;
  transition: transform 0.9s;
  background: transparent url(../../img/page/promoPage/svg/mnu-close-icon.svg) 50% 50% no-repeat;
}

.opened .site-pusher {
  width: 100%;
  height: 100%;
  opacity: 1;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.opened nav {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

.opened .close-btn {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.header__substr {
  text-align: center;
  width: 100%;
  max-width: 710px;
  box-sizing: border-box;
  padding: 0 15px;
  font-weight: 400;
  font-size: 20px;
  font-size: 1.25rem;
  color: #E9E9E9;
  position: absolute;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.header__substr:before,
.header__substr:after {
  content: '';
  display: block;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
  position: absolute;
  top: 50%;
  width: 99999px;
}

.header__substr:before {
  left: 100%;
}

.header__substr:after {
  right: 100%;
}

.header__top {
  position: absolute;
  top: 38px;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header__left {
  float: left;
  padding-left: 20px;
}

.header__helper {
  overflow: hidden;
  padding-left: 15px;
}

.header__right {
  padding-right: 80px;
  box-sizing: border-box;
  position: relative;
  float: right;
}

.header__right:after {
  content: '';
  background: rgba(255, 255, 255, 0.22);
  position: absolute;
  right: 0;
  width: 80px;
  top: 17px;
  height: 1px;
}

.header__middle {
  position: relative;
  overflow: hidden;
}

.header__line {
  background: rgba(255, 255, 255, 0.22);
  height: 1px;
  margin-top: 17px;
  width: 100%;
}

.logo {
  font-size: 0;
  line-height: 0;
  display: inline-block;
  text-decoration: none;
  vertical-align: middle;
}

.menu-btn {
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 14px;
  padding: 10px 40px;
  font-size: 0;
  text-decoration: none;
}

.menu-btn span {
  height: 2px;
  display: block;
  background: #fff;
  margin-bottom: 4px;
}

.menu-btn span:last-child {
  margin-bottom: 0;
}

.phones {
  color: #fff;
  position: relative;
}

.phones-popup {
  display: none;
  position: absolute;
  padding: 40px 30px 30px;
  background: #fff;
  text-align: left;
  top: 0;
  right: 20px;
  left: 20px;
  box-sizing: border-box;
  z-index: 100;
}

.phones-popup.opened {
  display: block;
}

.phones-popup__title {
  font-size: 24px;
  font-size: 1.5rem;
  color: #1AA63E;
  margin-bottom: 25px;
}

.phones-popup__number {
  font-weight: 700;
  font-size: 24px;
  font-size: 1.5rem;
  color: #212121;
}

.phones-popup__text {
  font-size: 18px;
  font-size: 1.125rem;
  color: #212121;
}

.phones-btn {
  display: none;
  font-size: 14px;
  font-size: .9375rem;
  color: #fff;
  padding: 15px;
  text-decoration: none;
  margin-top: -10px;
}

.phones-btn span {
  border-bottom: 1px dotted #fff;
}

.phones__item {
  display: inline-block;
  vertical-align: top;
  font-size: 13px;
  font-size: .8125rem;
  padding: 0 15px;
  max-width: 200px;
  word-wrap: break-word;
}

.phones__item strong {
  display: block;
  font-weight: 700;
  font-size: 15px;
  font-size: .9375rem;
}

.slider-wrapper {
  position: relative;
  overflow: hidden;
  z-index: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.slider-wrapper.no-video .for-img.default-img {
  display: block;
}

.for-img {
  display: none;
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
}

.for-img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  min-width: 50%;
  min-height: 50%;
}

.slider {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  height: 700px;
  
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.slider li {
  width: 100%;
  height: 100%;
  position: absolute;
  text-align: center;
  left: 0;
  top: 0;
  z-index: 0;
  overflow: hidden;
}


/* .slider li:after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 100%;
} */

.slider li.active {
  position: relative;
  z-index: 1;
}

.slider li.in-slide {
  z-index: 2;
  opacity: 1 !important;
}


/* .slider li:before {
  content: '';
  display: block;
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 5;
  
} */

.slider__txt {
  display: none;
  color: #fff;
  font-size: 50px;
  font-size: 3.125rem;
  font-weight: 600;
  width: 1200px;
  padding: 80px 0 20px;
  vertical-align: middle;
  position: relative;
  z-index: 10;
}

.slider__txt p {
  margin: 0;
}

.active .slider__txt,
.in-slide .slider__txt {
  display: inline-block;
}

.slider__arr {
  display: none;
  width: 42px;
  height: 42px;
  position: absolute;
  top: 50%;
  z-index: 10;
  cursor: pointer;
  opacity: .7;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.slider__arr:hover {
  opacity: 1;
}

.slider__arr--left {
  background: url(../../img/page/promoPage/svg/slider-left-arr.svg) 0 0 no-repeat;
  left: 20px;
}

.slider__arr--right {
  background: url(../../img/page/promoPage/svg/slider-right-arr.svg) 0 0 no-repeat;
  right: 20px;
}

.tarif-portfolio .slider__arr--left {
  display: block;
  background: url(../img/slick-left.svg) 0 0 no-repeat;
}

.tarif-portfolio .slider__arr--right {
  display: block;
  background: url(../img/slick-right.svg) 0 0 no-repeat;
  transform: scale(-1, 1) translateY(-50%);
}

#video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0 !important;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  background: url(../../img/page/promoPage/9209596.mp4) no-repeat;
  background-size: cover;
  -webkit-transform-style: preserve-3d;
}

.site-inner {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 940px;
  width: 100%;
  position: relative;
}



.pluses {
  font-size: 0;
  text-align: center;
}

.pluses__item {
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
  color: #232323;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: top;
}

.pluses__item:nth-child(3n+3) .pluses__in {
  margin-right: 0;
}

.pluses__in {
  background-color: #fff;
  padding: 28px;
  width: 300px;
  margin-right: 20px;
  margin-bottom: 20px;
  box-sizing: border-box;
}

.pluses__icon {
  font-size: 0;
  height: 96px;
  margin: 0 auto;
}

.pluses__icon img {
  max-height: 100%;
}

.pluses__text {
  padding-top: 40px;
}

.pluses__text p {
  margin: 0;
}

.wedo-top-text {
  padding: 0 75px;
  font-size: 15px;
  font-size: .9375;
  color: #424242;
}

.wedo {
  font-size: 0;
  margin: 45px 0 0;
}

.wedo__item {
  display: inline-block;
  vertical-align: top;
  width: 50%;
  text-align: left;
  box-sizing: border-box;
  margin: 0 0 60px;
}

.wedo__item:nth-child(odd) {
  padding-right: 15px;
}

.wedo__item:nth-child(even) {
  padding-left: 15px;
}

.wedo__item:after {
  content: '';
  display: table;
  clear: both;
}

.wedo__icon {
  float: left;
}

.wedo__title {
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  color: #424242;
  margin-bottom: 10px;
}

.wedo__text {
  overflow: hidden;
  padding-left: 30px;
  padding-top: 13px;
  font-size: 13px;
  font-size: .8125rem;
  color: #424242;
}

.feedback {
  background: #fff;
  border-top: 1px solid #1AA63E;
  overflow: hidden;
  position: relative;
  padding-bottom: 40px;
  margin-top: 60px;
}

.counters {
  line-height: 0;
}

.feedback:before {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  height: 100%;
  width: 1968px;
  top: 0;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  background: url(../../img/page/promoPage/form-background.png) 0 0 repeat;
}

.block-title {
  font-size: 24px;
  font-size: 1.5rem;
  text-align: center;
  max-width: 450px;
  color: #000000;
  font-weight: 400;
  text-transform: uppercase;
  margin: 3em auto 1.5em;
}

.order-frm__field {
  display: inline-block;
  box-sizing: border-box;
  width: 50%;
  vertical-align: bottom;
  margin-bottom: 15px;
}

.order-frm__field:nth-child(even) label,
.order-frm__field:nth-child(even) button[type=submit] {
  float: right;
}

.order-frm {
  margin: 0 auto;
  font-size: 0;
  position: relative;
  max-width: 810px;
}

.order-frm__selected-tariff {
  font-size: 15px;
}

.order-frm__selected-tariff span {
  font-weight: 600;
}

.order-frm label:not(.cd-checkbox) {
  display: block;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 700;
  color: #484848;
  text-align: left;
  max-width: 380px;
  position: relative;
}

.order-frm label:not(.cd-checkbox) svg {
  position: absolute;
  bottom: 12px;
  left: 11px;
  width: 16px;
  height: 14px;
}

.order-frm .mail-field+svg {
  bottom: 14px;
}

.order-frm label.error input {
  border-color: #e04b4b;
}

.order-frm label.error svg #input-icons {
  fill: #e04b4b;
}


/* .order-frm label.error .name-field {
  background-image: url(../../img/page/promoPage/svg/name-icon-red.svg);
}
.order-frm label.error .mail-field {
  background-image: url(../../img/page/promoPage/svg/mail-icon-red.svg);
} */


/* .order-frm label.error .phone-field {
  background-image: url(../../img/page/promoPage/svg/phone-icon-red.svg);
} */

.order-frm input[type=text] {
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: 10px 50%;
  height: 44px;
  box-sizing: border-box;
  width: 100%;
  padding: 0 8px 0 45px;
  outline: none;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-size: .9375;
  font-weight: 400;
  margin-top: 5px;
  color: #484848;
  border-radius: 2px;
  border: 2px solid #c2c2c2;
}

.order-frm input[type=text]:focus {
  border-color: #617CDC;
}

.order-frm input[type=text]:focus~svg #input-icons {
  fill: #617CDC;
}


/* .name-field {
  background-image: url(../../img/page/promoPage/svg/name-icon-gray.svg);
}
.name-field:focus {
  background-image: url(../../img/page/promoPage/svg/name-icon-blue.svg);
}
.mail-field {
  background-image: url(../../img/page/promoPage/svg/mail-icon-gray.svg);
}
.mail-field:focus {
  background-image: url(../../img/page/promoPage/svg/mail-icon-blue.svg);
} */


/* .phone-field {
  background-image: url(../../img/page/promoPage/svg/phone-icon-gray.svg);
} */


/* .phone-field:focus {
  background-image: url(../../img/page/promoPage/svg/phone-icon-blue.svg);
} */

.tariff {
  padding: 0;
  position: relative;
  background: #fff;
  box-sizing: border-box;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  margin-top: 90px;
  font-size: 0;
}

.tariff__inner {
  overflow: hidden;
  padding: 50px 60px 60px;
}

.tariff__title {
  font-weight: 700;
  font-size: 24px;
  font-size: 1.5rem;
  color: #232323;
  text-align: center;
}

.tariff__substr {
  font-size: 14px;
  font-size: .875rem;
  color: #000;
  text-align: center;
}

.tariff__image {
  position: relative;
  display: inline-block;
  vertical-align: top;
  bottom: -60px;
  width: 50%;
  height: 260px;
  box-sizing: border-box;
}

.tariff__image img {
  max-width: 100%;
}

.tariff__text {
  box-sizing: border-box;
  padding-right: 45px;
  display: inline-block;
  vertical-align: top;
  font-size: 13px;
  font-size: .8125rem;
  text-align: left;
  color: #484848;
  width: 50%;
  margin-top: 45px;
}

.tariff__price {
  font-size: 400;
  font-size: 26px;
  font-size: 1.625rem;
  color: #232323;
  margin: 5px 0;
}

.tariff__promo-pic {
  max-width: 180px;
  display: block;
  position: absolute;
  top: -45px;
  right: -45px;
}

.tariff__price--old {
  font-size: 20px;
  margin: 0;
}

.tariff__price--old strong {
  color: red;
  text-decoration: line-through;
}

.tariff__price strong {
  font-weight: 600;
}

.tariff__link {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  font-size: .875rem;
  color: #15c;
}

.feedback-bottom {
  background: #ececec;
  padding: 5px 0 40px;
  box-sizing: border-box;
}

footer {
  background: #fff;
  padding: 34px 0;
  text-align: left;
}

.copy {
  display: inline-block;
  vertical-align: middle;
  padding: 0 0 0 40px;
  background: transparent url(../../img/page/promoPage/footer-mega.png) 0 0 no-repeat;
  font-size: 12px;
  font-size: .75rem;
  height: 34px;
  line-height: 34px;
  color: #424242;
}

.footer__nav {
  float: right;
  margin: 3px 0 0;
  padding: 0;
  min-height: 34px;
  list-style: none;
}

.footer__nav li {
  display: inline-block;
  vertical-align: middle;
  padding: 0 8px 0 11px;
  position: relative;
}

.footer__nav li:after {
  content: '\2022';
  color: #ccc;
  position: absolute;
  top: 0;
  left: 0;
}

.footer__nav li:first-child:after {
  display: none;
}

.footer__nav li,
.footer__nav a {
  font-size: 11px;
  font-size: .6875rem;
  color: #424242;
  text-decoration: none;
}

.footer__nav a {
  display: inline-block;
}

.footer__nav a:hover {
  text-decoration: underline;
}

.intgr-wrap {
  text-align: center;
  font-size: 0;
  margin: 0 -10px;
}

.intgr {
  width: 220px;
  background-color: #fff;
  border-radius: 4px;
  box-sizing: border-box;
  text-align: center;
  display: inline-block;
  vertical-align: top;
  margin: 0 10px;
  margin-bottom: 20px;
}

.intgr__title {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #484848;
  line-height: 20px;
  padding: 10px 16px 8px;
  border-bottom: 1px solid #ececec;
  box-sizing: border-box;
  min-height: 59px;
}

.intgr__in {
  padding: 20px 16px;
  font-size: 0;
}

.s3-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 98;
  text-align: center;
}

.s3-popup-overlay:after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 100%;
}

.s3-popup__container {
  overflow: auto;
  height: 100%;
}

.s3-popup__content {
  position: relative;
  padding: 45px 55px 55px;
}

.s3-popup-overlay--closed {
  display: none !important;
}

.s3-popup-overlay--opened {
  display: block !important;
}

.s3-popup__spinner {
  width: 30px;
  height: 30px;
  background-color: #6FBF44;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  outline: 1px solid transparent;
  z-index: 10;
  -webkit-animation: rotateplane 1.2s infinite ease-in-out;
  animation: rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes rotateplane {
  0% {
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -ms-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -ms-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
  100% {
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -ms-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}

@keyframes rotateplane {
  0% {
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -ms-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -ms-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
  100% {
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -ms-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}

.s3-popup__close {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../../img/page/promoPage/svg/popup-f-close-icon.svg);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-color: transparent;
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
  z-index: 10;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.s3-popup {
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
  position: relative;
  background: #fff;
  max-width: 630px;
  margin-top: -80px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
  -webkit-transition: margin-top 0.3s ease-out, opacity 0.5s ease-out;
  transition: margin-top 0.3s ease-out, opacity 0.5s ease-out;
  opacity: 0;
}

.s3-popup--framed {
  width: 630px;
}

.s3-popup.s3-popup--showed {
  margin-top: 0;
  opacity: 1;
}

.s3-popup form {
  text-align: center;
  display: block;
  box-sizing: border-box;
  min-width: 300px;
}

.s3-popup .order-frm__field {
  display: block;
  width: 100%;
}

.s3-popup .order-frm__field label,
.s3-popup .order-frm__field button[type=submit] {
  float: none;
}

.s3-popup .order-frm__field label {
  margin: 0 auto;
}

.s3-popup .order-frm__field button[type=submit] {
  margin-top: 10px;
}

.s3-popup .order-frm__field:last-child {
  margin-bottom: 0;
}

.s3-popup .block-title {
  margin: 0 auto 1em;
}

.sended-text {
  color: #212121;
  text-align: center;
  width: 100%;
  max-width: 230px;
  font-weight: 600;
  font-size: 15px;
  font-size: .9375rem;
  margin: 0 auto;
}

.order-frm--labeled {
  padding-right: 190px;
}

.frm-baner {
  position: absolute;
  top: 80px;
  right: 40px;
  z-index: 10;
}

.tarif-portfolio__arr {
  position: absolute;
  top: 50%;
  margin-top: -15px;
  width: 30px;
  height: 30px;
  background: #ccc;
}

.tarif-portfolio--left-arr {
  left: 0;
}

.tarif-portfolio--right-arr {
  right: 0;
}

.header-form {
  max-width: 940px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  padding: 24px 50px 14px 50px;
  box-sizing: border-box;
}

.header-form__title {
  color: #212121;
  font-size: 22px;
  font-weight: 700;
  line-height: 31px;
  text-align: center;
  margin: 0 0 26px 0;
}

.header-form__inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.header-form__input {
  width: 240px;
  height: 44px;
  border-radius: 4px;
  border: 2px solid #c2c2c2;
  background-color: #fff;
  padding-left: 41px;
  box-sizing: border-box;
}

.header-form__submit {
  flex: 0 1 300px;
  height: 44px;
  margin: 0 10px 10px 10px;
}

.header-form__label {
  position: relative;
  margin: 0 10px 10px 10px;
}

.header-form__label svg {
  position: absolute;
  top: 9px;
  left: 9px;
  width: 22px;
  height: 22px;
}

.header-form__privacy {
  font-size: 13px;
  line-height: 21px;
  color: #666;
  text-align: center;
  margin: 0;
}

.header-form__privacy a {
  color: #103cc0;
  text-decoration: underline;
}

@media (max-width: 1440px) {
  .slider__txt {
    font-size: 50px;
    font-size: 3.125rem;
    width: 1000px;
  }
  .slider {
    height: 600px;
  }
}

@media (max-width: 1024px) {
  header .order-btn {
    right: 50%;
    margin-right: -115px;
  }
  .header__top {
    top: 20px;
  }
  .header__right {
    padding-right: 0;
  }
  .header__right:after {
    display: none;
  }
  .header__substr {
    display: none;
  }
  .menu-btn {
    padding: 10px 20px;
  }
  .slider {
    height: 700px;
  }
  .slider__txt {
    font-size: 36px;
    font-size: 2.25rem;
    width: 80%;
    padding-top: 170px;
  }
  .pluses__icon {
    height: 72px;
  }
  .pluses__text {
    padding-top: 35px;
  }
}

@media (max-width: 1023px) {
  .tarif-portfolio .slider__arr {
    display: none;
  }
  .site-inner {
    padding: 0 20px;
  }
  .pluses {
    text-align: left;
  }
  .pluses__item {
    width: 50%;
  }
  .pluses__item:nth-child(3n+3) .pluses__in {
    margin-right: 20px;
  }
  .pluses__item:nth-child(2n+2) .pluses__in {
    margin-right: 0;
  }
  .pluses__in {
    width: auto;
  }
  .s3-popup form {
    width: auto;
  }
  .order-frm {
    width: 680px;
  }
  .order-frm label,
  .order-frm button[type=submit] {
    max-width: 320px;
  }
  .tariff__inner {
    padding: 50px 20px 20px;
  }
  .tariff__image {
    height: 230px;
    bottom: -20px;
    margin-top: 16px;
  }
  .tariff__text {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .tarif-portfolio {
    padding-right: 0 !important;
  }
  .tarif-portfolio .tarif-slider {
    max-width: 100%;
    float: none;
  }
  .header-form {
    bottom: 0;
  }
  .tarif-portfolio .tariff__btn {
    position: relative;
    top: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .intgr {
    margin: 0 5px;
    margin-bottom: 10px;
  }
  .slider__txt {
    font-size: 28px;
    font-size: 1.75rem;
    width: 80%;
  }
  .slider__arr {
    width: 31px;
    height: 32px;
  }
  .slider__arr--left {
    background: url(../../img/page/promoPage/svg/slider-left-arr768.svg) 0 0 no-repeat;
  }
  .slider__arr--right {
    background: url(../../img/page/promoPage/svg/slider-right-arr768.svg) 0 0 no-repeat;
  }
  .pluses__icon {
    height: 64px;
  }
  .pluses__text {
    padding-top: 22px;
  }
  .wedo-top-text {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .pswp__button {
    display: none;
  }
  .slider__txt {
    padding-top: 140px;
  }
  .wedo__item {
    width: 100%;
    padding: 0 !important;
  }
  .wedo__text {
    padding-left: 15px;
  }
  .order-frm {
    max-width: 320px;
    width: 100%;
    padding: 0 !important;
  }
  .frm-baner {
    display: none !important;
  }
  .order-frm__field {
    display: block;
    width: 100%;
  }
  .order-frm label,
  .order-frm button[type=submit] {
    max-width: 100%;
    float: none !important;
  }
  .order-frm button[type=submit] {
    margin-top: 5px;
  }
  .tariff__image {
    padding: 0 10px;
    display: block;
    height: 280px;
    bottom: -40px;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
  .tariff__text {
    display: block;
    width: 100%;
    padding-right: 0;
  }
  footer {
    text-align: center;
    padding: 20px 0 10px;
  }
  .footer__nav {
    float: none;
    max-width: 65%;
    margin: 0 auto 20px;
  }
  .phones-btn {
    display: inline-block;
  }
  .phones {
    display: none;
  }
  .for-img img {
    right: auto;
    bottom: auto;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .header-form {
    padding-left: 20px;
    padding-right: 20px;
  }
  .header-form__title {
    font-size: 20px;
    margin-bottom: 14px;
  }
  .header-form__label,
  .header-form__input {
    width: 100%;
    display: block;
  }
  .header-form__submit {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .site-inner {
    padding: 0 10px;
  }
  header+section .site-inner {
    padding: 0;
  }
  .slider {
    height: 700px;
  }
  .slider__arr {
    display: none !important;
  }
  .slider__txt {
    padding-top: 80px;
    font-size: 25px;
  }
  
  .pluses__item {
    font-size: 15px;
  }
  .pluses__icon {
    height: 48px;
  }
  .pluses__text {
    padding-top: 15px;
  }
  .wedo-top-text {
    padding: 0 10px;
  }
  .s3-popup {
    max-width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

@media (max-width: 479px) {
  .pluses__item {
    width: 100%;
  }
  .pluses__in {
    margin: 0 0 10px 0 !important;
  }
  .wedo__item {
    margin-bottom: 30px;
  }
  .wedo__icon {
    float: none;
    margin: 0 auto;
  }
  .wedo__text {
    padding-left: 10px;
  }
  .header__helper {
    display: none;
  }
  .s3-popup__content {
    padding: 45px 25px 55px;
  }
  header .order-btn {
    top: 100% !important;
    margin-top: 0 !important;
    /* - 18 px !important;*/
  }
}

@media (max-width: 320px) {
  .slider__txt {
    font-size: 22px;
    font-size: 1.375rem;
    width: 300px;
  }
  
  .pluses__item {
    font-size: 14px;
  }
}

.tarif-portfolio {
  margin: 30px 0;
  overflow: hidden;
  position: relative;
  max-height: 210px;
  width: 100%;
  /* padding-right: 178px; */
  box-sizing: border-box;
  background: none;
}

.tarif-portfolio .tarif-slider {
  /* float: left; */
  position: relative;
  max-width: 780px;
  width: 100%;
  padding: 14px 0;
  overflow: hidden;
  margin: 0 auto;
  float: none;
}

.tarif-portfolio .tarif-slider ul {
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tarif-portfolio .tarif-slider ul li {
  float: left;
  width: 240px;
  height: 180px;
  padding: 0 10px;
  text-align: center;
}

.tarif-portfolio .tarif-slider ul li img {
  border: none;
  / / width: 143 px;
  / / height: 104 px;
  width: 100%;
  height: auto;
  / / box-shadow: 0 2 px 4 px rgba(0, 0, 0, 0.37);
  box-shadow: none;
  cursor: zoom-in;
}

.tarif-portfolio .btn {
  float: right;
  width: 122px;
  margin: 46px 24px 0 0;
}

.promo-details {
  display: none;
  position: absolute;
  background: #fff;
  left: 0;
  right: 0;
  margin: auto;
  top: 40%;
  padding: 20px;
  z-index: 11;
  box-shadow: 5px 10px 20px rgba(0, 0, 0, .2);
}

.promo-details--showed {
  display: block;
}

.promo-details__content {
  position: relative;
  display: none;
  padding: 20px;
}

.promo-details__content--showed {
  display: block;
}

.promo-details-tabs {
  display: block;
  list-style: none;
  margin: -20px -20px 0;
  padding: 20px 20px 0;
  border-bottom: 1px solid #ccc;
  background: #14CC6A;
}

.promo-details-tabs__item {
  display: inline-block;
  vertical-align: bottom;
  margin-right: 5px;
}

.promo-details-tabs__item a {
  display: block;
  padding: 6px 10px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  text-align: center;
  border-radius: 4px 4px 0 0;
  position: relative;
  background: #f0f0f0;
}

.promo-details-tabs__item--active a {
  background: #fff;
}

.promo-details-tabs__item--active a:after {
  content: '';
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 6px;
  margin-top: -3px;
  background: #fff;
}

.promo-details__close {
  top: 5px;
  right: 5px;
}

@media (max-width: 520px) {
  .promo-details-tabs__item {
    display: block;
    max-width: 90%;
  }
  .promo-details-tabs__item a {
    border-radius: 0;
    border-bottom: 1px solid #ccc;
  }
  .promo-details__content .tarif-tab-list2>li ul {
    max-width: 380px;
    width: auto !important;
  }
}

.reviews {
  position: relative;
  overflow: hidden;
  text-align: center;
  width: 940px;
  margin: -20px auto 20px;
}

.reviews__slider {
  text-align: left;
}

.reviews__item {
  max-width: 300px;
  display: inline-block;
  vertical-align: top;
  background-color: #fff;
  box-sizing: border-box;
  padding: 30px 20px 20px;
  text-align: center;
  color: #424242;
  position: relative;
}

.reviews__item:after {
  content: '';
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+Cjxzdmcgd2lkdGg9IjEycHgiIGhlaWdodD0iMTBweCIgdmlld0JveD0iMCAwIDEyIDEwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHhtbG5zOnNrZXRjaD0iaHR0cDovL3d3dy5ib2hlbWlhbmNvZGluZy5jb20vc2tldGNoL25zIj4KICAgIDwhLS0gR2VuZXJhdG9yOiBTa2V0Y2ggMy4zLjMgKDEyMDgxKSAtIGh0dHA6Ly93d3cuYm9oZW1pYW5jb2RpbmcuY29tL3NrZXRjaCAtLT4KICAgIDx0aXRsZT5xdW90ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxkZWZzPjwvZGVmcz4KICAgIDxnIGlkPSJtYWluIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiBza2V0Y2g6dHlwZT0iTVNQYWdlIj4KICAgICAgICA8ZyBpZD0icmV2aWV3cyIgc2tldGNoOnR5cGU9Ik1TQXJ0Ym9hcmRHcm91cCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTk0Ni4wMDAwMDAsIC04NDQuMDAwMDAwKSIgZmlsbD0iIzk5OTk5OSI+CiAgICAgICAgICAgIDxnIGlkPSJpdGVtLWNvcHkiIHNrZXRjaDp0eXBlPSJNU0xheWVyR3JvdXAiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDgwMi4wMDAwMDAsIDgyNy4wMDAwMDApIj4KICAgICAgICAgICAgICAgIDxnIGlkPSJxdW90ZXMiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEyOC4wMDAwMDAsIDAuMDAwMDAwKSIgc2tldGNoOnR5cGU9Ik1TU2hhcGVHcm91cCI+CiAgICAgICAgICAgICAgICAgICAgPHBhdGggZD0iTTIxLDI2LjU5ODE3NDQgQzIxLDI2LjgyMDA5NjYgMjAuODIyMDQ3NCwyNyAyMC42MDc2NTg0LDI3IEwxNi4zOTIzNDE2LDI3IEMxNi4xNzU2NTczLDI3IDE2LDI2LjgxMjYyNDYgMTYsMjYuNTk3NTY4OCBMMTYsMjIuNjM5MjY0NSBDMTYsMjAuMjEyMTc2MyAxNy43MDc5MDU0LDE3LjkzNzY1ODIgMTkuNzk3MzAzNSwxNyBMMjAuNjQ4NDM3NSwxOC4xOTg1MTU1IEMxOS4zNDYzNDc3LDE5LjI2NTM2NzQgMTguNTc4MTI2MiwyMC40OTIyMjg4IDE4LjM0Mzc1LDIxLjg3OTEzNjMgTDIwLjYwODA2MTIsMjEuODc5MTM2MyBDMjAuODI0NTIzLDIxLjg3OTEzNjMgMjEsMjIuMDQ5NTE2NiAyMSwyMi4yODA5NjE5IEwyMSwyNi41OTgxNzQ0IFogTTI4LDI2LjU5ODE3NDQgQzI4LDI2LjgyMDA5NjYgMjcuODIyMDQ3NCwyNyAyNy42MDc2NTg0LDI3IEwyMy4zOTIzNDE2LDI3IEMyMy4xNzU2NTczLDI3IDIzLDI2LjgxMjYyNDYgMjMsMjYuNTk3NTY4OCBMMjMsMjIuNjM5MjY0NSBDMjMsMjAuMjEyMTc2MyAyNC43MDc5MDU0LDE3LjkzNzY1ODIgMjYuNzk3MzAzNSwxNyBMMjcuNjQ4NDM3NSwxOC4xOTg1MTU1IEMyNi4zNDYzNDc3LDE5LjI2NTM2NzQgMjUuNTc4MTI2MiwyMC40OTIyMjg4IDI1LjM0Mzc1LDIxLjg3OTEzNjMgTDI3LjYwODA2MTIsMjEuODc5MTM2MyBDMjcuODI0NTIzLDIxLjg3OTEzNjMgMjgsMjIuMDQ5NTE2NiAyOCwyMi4yODA5NjE5IEwyOCwyNi41OTgxNzQ0IFoiIGlkPSJxdW90ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjIuMDAwMDAwLCAyMi4wMDAwMDApIHNjYWxlKC0xLCAtMSkgdHJhbnNsYXRlKC0yMi4wMDAwMDAsIC0yMi4wMDAwMDApICI+PC9wYXRoPgogICAgICAgICAgICAgICAgPC9nPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=) 50% 50% no-repeat;
  border: 2px solid #f8f8f6;
  box-sizing: border-box;
  position: absolute;
  top: -22px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.reviews__text {
  font-size: 14px;
  line-height: 19px;
}

.reviews__text p {
  margin: 0;
}

.reviews__author {
  font-size: 13px;
  padding-top: 10px;
}

.reviews__slider {
  width: 99999px;
  position: relative;
}

.bx-controls {
  display: inline-block;
  padding: 0 0 30px;
}

.bx-pager-item {
  display: inline-block;
  margin-right: 10px;
  cursor: pointer;
}

.bx-pager-item a {
  display: block;
  font-size: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #d0d0ce;
}

.bx-pager-item a.active,
.bx-pager-item a:hover {
  background-color: #14cc6a;
}

.bx-viewport {
  padding: 40px 0;
}

@media (max-width: 939px) {
  .reviews {
    width: 620px;
  }
}

@media (max-width: 619px) {
  .reviews {
    width: 300px;
  }
}

.reviews-block {
  margin-top: -20px;
}

.s3-popup__content .roistat-promo-wrap {
  display: none !important;
}

.tariff__used {
  position: absolute;
  z-index: 1;
  background-position: 25px 55px;
  bottom: 27px;
  left: 250px;
}

.tariff__used:before {
  content: '';
  position: absolute;
  top: -8px;
  left: 48px;
  width: 100px;
  background: url(../../img/page/promoPage/svg/arrow3.svg) 22px 6px no-repeat;
  background-size: 67px;
  height: 113px;
}

.tariff__used-content {
  padding-top: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.tariff__used-title {
  font-size: 11px;
  line-height: 14px;
  margin: 0;
  color: #151515;
  text-align: right;
}

.tariff__used-value {
  font-size: 13px;
  line-height: 13px;
  margin: 0;
  color: #000;
  margin-left: 16px;
  font-weight: 600;
  font-family: 'Open Sans', serif;
}

.tariff__used-value span {
  font-size: 30px;
  line-height: 28px;
  font-weight: 700;
}

.pswp__close {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 39px;
  right: 58px;
  background: url(../img/ic-close.svg) 0 0 no-repeat;
  z-index: 3;
  cursor: pointer;
}

.pswp__top-bar,
.pswp__caption,
.pswp__share-modal {
  display: none;
}

.pswp__bg {
  opacity: 0.7 !important;
  background: #000;
}

.pswp__button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  padding: 0;
  border: none;
  outline: none;
  opacity: 0.7;
  border-radius: 50%;
  cursor: pointer;
}

.pswp__button--arrow--left {
  background: #000 url(../img/ic-left.svg) center no-repeat;
  left: 30px;
}

.pswp__button--arrow--right {
  background: #000 url(../img/ic-left.svg) center no-repeat;
  transform: translateY(-50%) scale(-1, 1);
  right: 30px;
}

.slick-slide {
  outline: none;
}

.slick-slide a {
  position: relative;
  display: block;
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.26);
}

.slick-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #4a4a4a url(../img/ic-zoom.svg) center no-repeat;
  opacity: 0;
  transition: 0.3s ease-out;
}

.slick-slide a:hover .slick-overlay {
  opacity: 0.6;
}

.slick-slide a:hover {
  box-shadow: none;
}

.center {
  text-align: center;
}

.btn.btn--orange {
  background-color: #ff9a1e;
  background-image: linear-gradient(180deg, #ff9a1e 0%, #f18c11 100%);
  border-radius: 4px;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.2);
  height: 48px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.23);
  color: white;
  font-size: 20px;
  font-weight: 700;
  line-height: 48px;
  border: none;
  padding: 0 74px 0 48px;
  position: relative;
}

.btn.btn--orange:hover {
  background-color: #ff9a1e;
  background-image: linear-gradient(180deg, #fca131 0%, #f99d2c 100%);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.12);
}

.btn.btn--orange:active {
  background-color: #ff9a1e;
  background-image: linear-gradient(to top, #e9870f 0%, #df8415 100%);
}

.btn.btn--orange:before {
  content: '';
  position: absolute;
  right: 33px;
  top: 17px;
  width: 16px;
  height: 16px;
  background: url(../../img/page/promoPage/icons/btn-arrow.svg);
  -webkit-transform: scale(-1, 1);
  -moz-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.big-btns {
  background: #fff;
  padding: 70px 0;
}

.big-btns .site-inner {
  padding: 0 40px;
  font-size: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.big-btns__btn {
  width: 380px;
  height: 120px;
  border-radius: 2px;
  border: 1px solid #f4f4f4;
  background-color: #fff;
  box-sizing: border-box;
  padding: 0 0 0 20px;
  display: inline-flex;
  vertical-align: middle;
  align-items: center;
  outline: none;
  margin: 0 20px 10px 20px;
}

.big-btns__circle {
  width: 80px;
  height: 80px;
  flex: 0 0 80px;
  box-shadow: 6px 4px 0 #1bce6f;
  border: 2px solid #000;
  background-color: #fff;
  box-sizing: border-box;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.big-btns__text {
  color: #000;
  font-family: "Open Sans", serif;
  font-size: 18px;
  margin-left: 19px;
  font-weight: 600;
}

.under-form {
  text-align: center;
  color: #555;
  font-family: "Open Sans", serif;
  font-size: 16px;
  font-weight: 400;
}

.under-form a {
  text-decoration: none;
  color: inherit;
}

.under-form__icon {
  display: inline-flex;
  width: 30px;
  height: 30px;
  border: 1px solid #777;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  margin-left: 19px;
}

.under-form__icon svg {
  width: 14px;
}

.under-form__icon svg path {
  fill: #777;
}

.feedback {
  border-top: none;
  box-shadow: inset 0 2px 0 #1aa63e;
}

.order-frm label {
  font-size: 0;
}

.block-title {
  color: #000000;
  font-family: 'Open Sans', serif;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 71px auto 42px;
}

.order-frm label svg {
  width: 14px;
}

.promo-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 8;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
}

.promo-popup--hidden {
  display: none;
}

.promo-popup__close {
  display: inline-block;
  width: 25px;
  height: 25px;
  background-image: url(../../img/page/promoPage/svg/popup-f-close-icon.svg);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-color: transparent;
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
  z-index: 10;
}

.promo-popup__content {
  position: relative;
  padding: 49px 70px 32px;
  background: #fff;
}

.promo-popup__title {
  color: #333;
  font-family: "Open Sans", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
  max-width: 333px;
  margin: 0 auto 26px;
}

.promo-popup__form {
  width: 100%;
}

.promo-popup__label-title {
  color: #333;
  font-family: "Open Sans", serif;
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 8px;
  display: inline-block;
}

.promo-popup__label {
  display: block;
  width: 100%;
  margin-bottom: 14px;
}

.promo-popup__input {
  width: 100%;
  height: 44px;
  background-color: #fff;
  border-radius: 2px;
  border: 2px solid #c2c2c2;
  outline: none;
  transition: 0.3s ease-out;
  box-sizing: border-box;
  padding-left: 15px;
  display: inline-block;
  font-size: 16px;
  box-shadow: none;
  -webkit-appearance: none;
}

.promo-popup__input:focus {
  border-color: #617CDC;
}

.promo-popup__input--error {
  border-color: #e04b4b;
}

.promo-popup__btn {
  background-color: #0bb65b;
  background-image: -webkit-linear-gradient(270deg, #14cc6a 0%, #0bb65b 100%);
  background-image: linear-gradient(-180deg, #14cc6a 0%, #0bb65b 100%);
  box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  width: 100%;
  font-size: 20px;
  font-size: 1.25rem;
  box-sizing: border-box;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  color: #fff;
  border: none;
  outline: none;
  max-width: 380px;
  padding: 10px 12px;
  text-decoration: none;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 15px;
}

.promo-popup__btn:hover {
  background-image: -webkit-linear-gradient(270deg, #20e17a 0%, #11bc61 100%);
  background-image: linear-gradient(-180deg, #20e17a 0%, #11bc61 100%);
}

.promo-popup__btn:active {
  background: #14CC6A;
  box-shadow: inset 0 2px 0 0 rgba(0, 0, 0, 0.2);
}

.promo-popup .under-form {
  margin: 33px 0 0;
}

.promo-popup__form--inline {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.promo-popup__form--inline .promo-popup__label {
  flex: 0 1 376px;
  margin: 0;
  position: relative;
  margin-bottom: 15px;
}

.feedback-bottom {
  background-color: #f8f8f6;
}

.feedback-bottom__title {
  margin: 71px 0 5px;
  color: #000;
  font-family: "Open Sans", serif;
  font-size: 24px;
  font-weight: 400;
  text-align: center;
}

.feedback-bottom__subtitle {
  text-align: center;
  color: #4a4a4a;
  font-family: "Open Sans", serif;
  font-size: 15px;
  font-weight: 400;
  margin: 0 0 46px;
}

.promo-popup__label svg {
  position: absolute;
  top: 16px;
  left: 14px;
  width: 16px;
}

.promo-popup__label path {
  fill: #c2c2c2;
}

.promo-popup__input--error~svg path {
  fill: #e04b4b;
}

.promo-popup__form--inline input {
  padding-left: 35px;
}

.promo-popup__form--inline input:focus~svg path {
  fill: #617CDC;
}

.lp-request__btn {
  max-width: 240px;
  width: 100%;
}

.lp-request__title {
  padding-left: 68px;
  margin: 25px 0 6px 0;
  color: #e7433a;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.2px;
  position: relative;
}

.lp-request__list {
  list-style: none;
  padding-left: 68px;
  margin: 0 0 60px 0;
}

.lp-request__text {
  color: #333;
  font-family: "Open Sans";
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 3px 0;
}

.lp-request__title-icon {
  position: absolute;
  left: 40px;
  top: -3px;
}

.cd-btn--secondary._hover {
  box-shadow: 0 2px 3px rgba(129, 165, 232, .27);
  border-color: #a4bfe9;
  background: #d9e4f5;
}

.feedback-video {
  box-shadow: inset 0 -2px 0 #19a433;
  background-color: #ffffff;
  padding: 34px 0 37px 0;
}

.feedback-video__title {
  text-align: center;
  color: #555;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.17px;
  margin: 31px 0 7px 0;
}

.feedback-video__link {
  color: #0d5bd0;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.17px;
  margin: 0;
  text-align: center;
}

.feedback-video__link a {
  outline: none;
}

@media (max-width: 1023px) {
  .tariff {
    padding: 0;
  }
  .tariff__used {
    position: absolute;
    z-index: 1;
    background-position: 25px 55px;
    bottom: 10px;
    left: 170px;
  }
  .tariff__used:before {
    background: url(../../img/page/promoPage/svg/arrow3.svg) 39px 35px no-repeat;
    background-size: 47px;
  }
}

@media (max-width: 767px) {
  .tariff__used {
    bottom: 285px;
  }
}

@media (max-width: 385px) {
  .tariff__used {
    bottom: 274px;
  }
}

.top-phones {
  display: none;
  color: white;
  font-family: 'Open Sans', sans-serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.06px;
  line-height: 38px;
  margin: 16px 0 34px;
  text-align: center;
  position: absolute;
  top: 35px;
  left: 0;
  right: 0;
  z-index: 999;
}

@media (max-width: 480px) {
  .header__left {
    float: none;
    padding: 0;
    text-align: center;
  }
  .top-phones {
    display: block;
  }
  .top-phones a,
  .top-phones a:hover {
    color: white;
    text-decoration: none;
  }
  .slider__txt {
    padding-top: 140px;
  }
}    
}


/*# sourceMappingURL=index.css.map */