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

html,
body {
  height: 100%;
}

body {
  font-size: 16px;
  line-height: 1.4;
  font-family: "Istok Web", sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.container {
  position: relative;
  overflow: hidden;
  opacity: 1;
}

.limit {
  position: relative;
  max-width: 320px;
  width: 100%;
  padding: 0 15px;
  display: block;
  margin: 0 auto;
}

.only-desktop {
  display: block;
}

.only-mobile {
  display: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border: none;
}

.s-title {
  font-family: "Istok Web", sans-serif;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.25;
  text-align: center;
}
.s-title .blue-line {
  position: relative;
}
.s-title .blue-line span {
  position: relative;
  z-index: 2;
}
.s-title .blue-line:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  border-bottom: 10px solid #2771ff;
  z-index: 1;
}

ul li {
  list-style-type: none;
}

a {
  text-decoration: none;
  outline: none;
}

select::-ms-expand {
  display: none;
}

select.inp {
  height: 36px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent url(../img/select.png) no-repeat 98% 40%;
  color: #696969;
  -moz-text-align-last: center;
  text-align-last: center;
}

.inp::-webkit-input-placeholder {
  color: #696969;
}

.inp::-moz-placeholder {
  color: #696969;
}

.inp:-ms-input-placeholder {
  color: #696969;
}

.inp:-moz-placeholder {
  color: #696969;
}

label {
  font-size: 12px;
  color: #696969;
}

.inp {
  display: block;
  padding: 2px 15px 10px;
  border: none;
  border-bottom: 1px solid #696969;
  font-family: "Istok Web", sans-serif;
  font-size: 16px;
  font-weight: normal;
  text-align: center;
  background-color: transparent;
  width: 100%;
  color: #696969;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 30px;
  outline: none;
}

.form-field.input--filled .inp,
.form-field.input--filled .inp::-webkit-input-placeholder,
.form-field.input--filled > label {
  color: #2771ff;
  border-color: #2771ff;
}

.form-field.input--filled .inp,
.form-field.input--filled .inp::-moz-placeholder,
.form-field.input--filled > label {
  color: #2771ff;
  border-color: #2771ff;
}

.form-field.input--filled .inp,
.form-field.input--filled .inp::-ms-input-placeholder,
.form-field.input--filled > label {
  color: #2771ff;
  border-color: #2771ff;
}

.form-field.input--filled .inp,
.form-field.input--filled .inp::placeholder,
.form-field.input--filled > label {
  color: #2771ff;
  border-color: #2771ff;
}

.form-field.input--error .inp,
.form-field.input--error .inp::-webkit-input-placeholder,
.form-field.input--error > label {
  color: red;
  border-color: red;
}

.form-field.input--error .inp,
.form-field.input--error .inp::-moz-placeholder,
.form-field.input--error > label {
  color: red;
  border-color: red;
}

.form-field.input--error .inp,
.form-field.input--error .inp::-ms-input-placeholder,
.form-field.input--error > label {
  color: red;
  border-color: red;
}

.form-field.input--error .inp,
.form-field.input--error .inp::placeholder,
.form-field.input--error > label {
  color: red;
  border-color: red;
}

@-webkit-keyframes pop {
  0% {
    -webkit-transform: scale(1) translate(-50%, -50%);
    transform: scale(1) translate(-50%, -50%);
  }
  100% {
    -webkit-transform: scale(1.3) translate(-50%, -50%);
    transform: scale(1.3) translate(-50%, -50%);
  }
}

@keyframes pop {
  0% {
    -webkit-transform: scale(1) translate(-50%, -50%);
    transform: scale(1) translate(-50%, -50%);
  }
  100% {
    -webkit-transform: scale(1.3) translate(-50%, -50%);
    transform: scale(1.3) translate(-50%, -50%);
  }
}

@-webkit-keyframes colors {
  0% {
    background: #6a9cff;
    color: #fff;
  }
  100% {
    color: #000;
    background: #edde5d;
    background: -webkit-gradient(
      linear,
      left bottom,
      left top,
      from(#edaa5d),
      to(#edde5d)
    );
    background: -webkit-linear-gradient(bottom, #edaa5d 0%, #edde5d 100%);
    background: linear-gradient(0deg, #edaa5d 0%, #edde5d 100%);
  }
}

@keyframes colors {
  0% {
    background: #6a9cff;
    color: #fff;
  }
  100% {
    color: #000;
    background: #edde5d;
    background: -webkit-gradient(
      linear,
      left bottom,
      left top,
      from(#edaa5d),
      to(#edde5d)
    );
    background: -webkit-linear-gradient(bottom, #edaa5d 0%, #edde5d 100%);
    background: -o-linear-gradient(bottom, #edaa5d 0%, #edde5d 100%);
    background: linear-gradient(0deg, #edaa5d 0%, #edde5d 100%);
  }
}

@-webkit-keyframes colors2 {
  0% {
    background: #6a9cff;
    color: #fff;
  }
  100% {
    color: #2771ff;
    background: #e0ebff;
  }
}

@keyframes colors2 {
  0% {
    background: #6a9cff;
    color: #fff;
  }
  100% {
    color: #2771ff;
    background: #e0ebff;
  }
}

.btn {
  position: relative;
  display: block;
  margin: 10px auto;
  outline: none;
  width: 100%;
  max-width: 220px;
  background: transparent;
  border: 3px solid transparent;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  color: #000;
  font-family: "Istok Web", sans-serif;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
}
.btn span {
  display: block;
  padding: 11px 20px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  width: 100%;
  height: 100%;
  background: #edde5d;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(#edaa5d),
    to(#edde5d)
  );
  background: -webkit-linear-gradient(bottom, #edaa5d 0%, #edde5d 100%);
  background: -o-linear-gradient(bottom, #edaa5d 0%, #edde5d 100%);
  background: linear-gradient(0deg, #edaa5d 0%, #edde5d 100%);
  position: relative;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.34);
  -webkit-box-shadow: 0px 8px 24px rgba(237, 171, 93, 0.4);
  box-shadow: 0px 8px 24px rgba(237, 171, 93, 0.4);
  -webkit-transition: 0.5s ease all;
  -o-transition: 0.5s ease all;
  transition: 0.5s ease all;
  z-index: 7;
}
.btn figure {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #6a9cff;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: 3px solid #2771ff;
  z-index: 0;
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
  opacity: 0;
}
.btn figure:nth-of-type(2) {
  -webkit-transition-delay: 1.2s;
  -o-transition-delay: 1.2s;
  transition-delay: 1.2s;
}
.btn figure:nth-of-type(3) {
  -webkit-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.btn figure:nth-of-type(4) {
  -webkit-transition-delay: 0.7s;
  -o-transition-delay: 0.7s;
  transition-delay: 0.7s;
}
.btn:not(:hover) span {
  -webkit-animation: colors 5s;
  animation: colors 5s;
}
.btn:not(:hover) figure {
  -webkit-animation: pop 2s;
  animation: pop 2s;
}
.btn:hover {
  background-color: #6a9cff;
  border: 3px solid #2771ff;
}
.btn:hover figure {
  opacity: 1;
}
.btn:hover figure:nth-of-type(1) {
  top: 5px;
  left: 0px;
  width: 50px;
  height: 50px;
  -webkit-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
.btn:hover figure:nth-of-type(2) {
  top: 65px;
  left: 100%;
  width: 20px;
  height: 20px;
  -webkit-transition: 1.2s ease-out;
  -o-transition: 1.2s ease-out;
  transition: 1.2s ease-out;
}
.btn:hover figure:nth-of-type(3) {
  top: 10px;
  left: 85%;
  width: 80px;
  height: 80px;
  -webkit-transition: 0.8s ease-out;
  -o-transition: 0.8s ease-out;
  transition: 0.8s ease-out;
}
.btn:hover figure:nth-of-type(4) {
  top: -10px;
  left: 35px;
  width: 10px;
  height: 10px;
  -webkit-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.btn:hover span {
  background: #6a9cff;
  color: #fff;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.54);
}

.decor__element {
  position: absolute;
}
.decor__element span {
  display: block;
}

.header {
  position: relative;
  padding: 30px 0 50px;
  background: #1e68ff;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#1e68ff),
    to(#6a9dff)
  );
  background: -webkit-linear-gradient(top, #1e68ff 0%, #6a9dff 100%);
  background: -o-linear-gradient(top, #1e68ff 0%, #6a9dff 100%);
  background: linear-gradient(to bottom, #1e68ff 0%, #6a9dff 100%);
}
.header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  height: 779px;
  background-image: url(../img/wave.png);
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  background-size: cover;
  opacity: 0.36;
}
.header .title-wrapper {
  max-width: 280px;
  margin: 0 auto;
  color: #fff;
  text-align: center;
}
.header .main-title {
  font-family: "Istok Web", sans-serif;
  font-size: 48px;
  font-weight: bold;
}
.header .subtitle span {
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
}

.header__product {
  position: relative;
  min-height: 265px;
}
.header__product span {
  position: absolute;
  bottom: -15px;
  right: -15px;
  display: block;
  width: 320px;
  height: 307px;
  background-image: url(../img/complex-product2.png?v2);
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  background-size: contain;
}

.dialog__cloud {
  display: none;
}

.form-wrapper {
  position: relative;
  z-index: 5;
}
.form-wrapper:before {
  content: "";
  position: absolute;
  bottom: -75%;
  left: 50%;
  width: 2560px;
  height: 150%;
  background-color: #fff;
  -webkit-transform: translate(-50%, 0) skewY(-5deg);
  -ms-transform: translate(-50%, 0) skewY(-5deg);
  transform: translate(-50%, 0) skewY(-5deg);
}

.form {
  position: relative;
  background-color: #fff;
  -webkit-border-radius: 16px;
  border-radius: 16px;
  padding: 65px 16px 50px;
  -webkit-box-shadow: 0px 8px 24px rgba(39, 113, 255, 0.25);
  box-shadow: 0px 8px 24px rgba(39, 113, 255, 0.25);
  z-index: 7;
}

.form__title {
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 20px;
}
.form__title span {
  font-weight: bold;
  color: #2771ff;
}

.price-wrapper {
  position: relative;
  font-size: 0;
  text-align: center;
  margin: 0 auto;
  padding: 5px 0;
}
.price-wrapper .new-price,
.price-wrapper .old-price {
  display: block;
  padding: 0 5px;
  font-family: "Istok Web", sans-serif;
  line-height: 1;
}
.price-wrapper .new-price {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  color: #2771ff;
  z-index: 3;
}
.price-wrapper .old-price {
  font-size: 16px;
  font-weight: bold;
  text-decoration: line-through;
  color: #696969;
  z-index: 2;
}

.statistic {
  position: relative;
  padding: 30px 0 0;
  z-index: 5;
}

.statistic__list {
  padding: 40px 0 0;
}

.graph__description {
  max-width: 220px;
  margin: 20px auto;
  font-size: 16px;
  color: #000;
  text-align: center;
}

.circle-inner {
  position: relative;
  margin: 0 auto;
}
.circle-inner img {
  margin: 0 auto;
  -webkit-box-shadow: 0px 8px 24px rgba(237, 171, 93, 0.4);
  box-shadow: 0px 8px 24px rgba(237, 171, 93, 0.4);
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.percentage {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  font-size: 32px;
  font-weight: bold;
  line-height: 100px;
  text-align: center;
  color: #2771ff;
  background-color: #fff;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.effect {
  position: relative;
  padding: 30px 0 0;
  z-index: 3;
}
.effect:after {
  content: "";
  position: absolute;
  top: 70%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 1268px;
  background-image: url(../img/wave2.png);
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  background-size: cover;
  z-index: 2;
}
.effect:before {
  content: "";
  position: absolute;
  bottom: -55px;
  left: 50%;
  width: 2560px;
  height: 300px;
  background-color: #fff;
  -webkit-transform: translate(-50%, 0) skewY(-5deg);
  -ms-transform: translate(-50%, 0) skewY(-5deg);
  transform: translate(-50%, 0) skewY(-5deg);
  z-index: 1;
}
.effect .s-title {
  max-width: 240px;
  margin: 0 auto 15px;
}
.effect p {
  text-align: center;
}

.effect__content {
  position: relative;
  -webkit-border-radius: 16px;
  border-radius: 16px;
  -webkit-box-shadow: 0px 8px 24px rgba(39, 113, 255, 0.25);
  box-shadow: 0px 8px 24px rgba(39, 113, 255, 0.25);
  background-color: #fff;
  padding: 40px 15px 80px;
  z-index: 3;
}
.effect__content .btn {
  position: absolute;
  bottom: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.effect__list .effect__list-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}
.effect__list .effect__list-item p {
  width: -webkit-calc(100% - 80px);
  width: calc(100% - 80px);
  padding: 0 10px;
  text-align: left;
}
.effect__list .effect__list-item img {
  width: 80px;
  height: 80px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.effect__list-back {
  position: relative;
  width: 100%;
  height: 290px;
  background-image: url(../img/effect-back-mob.jpg);
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  background-size: cover;
  margin: 10px auto;
}
.effect__list-back span {
  position: absolute;
  top: 52%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 200px;
  height: 265px;
  background-image: url(../img/complex-product2.png?v2);
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: contain;
  background-size: contain;
}

.banner {
  position: relative;
  padding: 95px 0 0;
  background: #1e68ff;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#1e68ff),
    to(#6a9dff)
  );
  background: -webkit-linear-gradient(top, #1e68ff 0%, #6a9dff 100%);
  background: -o-linear-gradient(top, #1e68ff 0%, #6a9dff 100%);
  background: linear-gradient(to bottom, #1e68ff 0%, #6a9dff 100%);
}
.banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  height: 779px;
  background-image: url(../img/wave.png);
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  background-size: cover;
  opacity: 0.36;
}
.banner .banner__title {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 15px;
}
.banner p {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
}

.banner__slider .slick-list {
  overflow: visible;
}

.banner__slider .banner__slider-item {
  min-height: 275px;
  outline: none;
}
.banner__slider .banner__slider-item .banner__img span {
  position: absolute;
  bottom: -240px;
  right: -120px;
  width: 420px;
  height: 472px;
  background-repeat: no-repeat;
  background-position: center bottom;
  -webkit-background-size: contain;
  background-size: contain;
}
.banner__slider .banner__slider-item.item--first .banner__img span {
  background-image: url(../img/slider-img1-mob.png);
}
.banner__slider .banner__slider-item.item--second .banner__img span {
  background-image: url(../img/slider-img2-mob.png);
}
.banner__slider .banner__slider-item.item--third .banner__img span {
  background-image: url(../img/slider-img3-mob.png);
}

.banner__slider .slick-dots {
  bottom: auto;
  top: 10px;
  left: -5px;
  max-width: 50px;
}

.banner__slider .slick-dots li {
  margin: 0;
  width: 16px;
}

.banner__slider .slick-dots li button {
  padding: 0;
}

.banner__slider .slick-dots li button:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #fff;
  opacity: 1;
  width: 16px;
  max-width: 4px;
  height: 4px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: 0.5s ease all;
  -o-transition: 0.5s ease all;
  transition: 0.5s ease all;
}

.banner__slider .slick-dots li.slick-active button:before {
  max-width: 16px;
}

.complex {
  position: relative;
  padding: 35px 0;
  z-index: 6;
}
.complex .s-title {
  margin-bottom: 10px;
}

.complex__block {
  margin-bottom: 40px;
}
.complex__block .complex__caption {
  position: relative;
  font-size: 56px;
  font-weight: bold;
  color: #2771ff;
  text-align: center;
  padding: 24px 10px;
  -webkit-box-shadow: 0px 12px 12px rgba(39, 113, 255, 0.25);
  box-shadow: 0px 12px 12px rgba(39, 113, 255, 0.25);
}
.complex__block .complex__caption span {
  position: relative;
  z-index: 3;
}
.complex__block .complex__caption:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 150%;
  height: 100%;
  background-color: #fff;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2;
}

.complex--first .complex__img span {
  background-image: url(../img/complex-product2.png?v2);
  width: 171px;
  height: 439px;
}

.complex--second .complex__img span {
  background-image: url(../img/complex-product2.png?v2);
  width: 290px;
  height: 276px;
}

.complex__img span {
  display: block;
  margin: 25px auto 0;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: contain;
  background-size: contain;
}

.complex__list .list-title {
  margin-bottom: 10px;
}

.complex__list .complex__list-item {
  position: relative;
  font-size: 16px;
  padding-left: 15px;
  padding-right: 10px;
  margin-bottom: 5px;
}
.complex__list .complex__list-item:before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  background-color: #000;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  width: 8px;
  height: 8px;
}

.list-title {
  font-size: 16px;
  font-weight: bold;
  color: #2771ff;
}

.complex__composition {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 15px 0;
  max-width: 250px;
  margin: 0 auto;
}
.complex__composition li {
  width: 50%;
  margin-bottom: 15px;
}
.complex__composition li img {
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin: 0px auto 10px;
}
.complex__composition li p {
  font-size: 16px;
  text-align: center;
}

.review {
  position: relative;
  padding: 35px 0 0;
  z-index: 3;
}
.review:after {
  content: "";
  position: absolute;
  bottom: -75px;
  left: 50%;
  width: 2560px;
  height: 300px;
  background-color: #fff;
  -webkit-transform: translate(-50%, 0) skewY(-5deg);
  -ms-transform: translate(-50%, 0) skewY(-5deg);
  transform: translate(-50%, 0) skewY(-5deg);
  z-index: 1;
}

.review__list {
  position: relative;
  padding: 45px 0 0;
  z-index: 5;
}
.review__list li {
  margin-bottom: 20px;
}
.review__list li:last-child {
  margin-bottom: 0;
}
.review__list li:last-child .review__message {
  margin-bottom: 0;
  padding-bottom: 0;
}
.review__list .review__message {
  padding: 10px 0;
  text-align: center;
  margin-bottom: 10px;
}
.review__list .review__message p {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.5;
}
.review__list .review__message p span {
  color: #2771ff;
  font-weight: bold;
}
.review__list .review__message .review__author {
  font-size: 16px;
  font-weight: normal;
  color: #6a9cff;
}

.choice {
  position: relative;
  padding: 130px 0 0;
  background: #1e68ff;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#1e68ff),
    to(#6a9dff)
  );
  background: -webkit-linear-gradient(top, #1e68ff 0%, #6a9dff 100%);
  background: -o-linear-gradient(top, #1e68ff 0%, #6a9dff 100%);
  background: linear-gradient(to bottom, #1e68ff 0%, #6a9dff 100%);
}
.choice .s-title {
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}

.choice__list .choice__item {
  background-color: #fff;
  -webkit-border-radius: 16px;
  border-radius: 16px;
  padding: 40px 28px 30px;
  text-align: center;
  margin-bottom: 30px;
}
.choice__list .choice__item img {
  margin: 0 auto;
}
.choice__list .choice__item .btn--default:hover span {
  background: #6a9cff;
}
.choice__list .choice__item .btn:not(.btn--default) {
  margin-top: -8px;
  max-width: 100%;
  color: #2771ff;
}
.choice__list .choice__item .btn:not(.btn--default):not(:hover) span {
  -webkit-animation: colors2 2s;
  animation: colors2 2s;
}
.choice__list .choice__item .btn:not(.btn--default):hover span {
  background: #6a9cff;
}
.choice__list .choice__item .btn:not(.btn--default) span {
  background: #e0ebff;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.choice__list .choice__item-title {
  font-size: 24px;
  font-weight: bold;
  color: #2771ff;
}

.choice__list .choice__item-subtitle {
  font-size: 16px;
  font-weight: normal;
  color: #6a9cff;
}

.choice__footnote {
  position: relative;
}
.choice__footnote .footnote__inner {
  position: relative;
  background-color: #fff;
  -webkit-border-radius: 16px;
  border-radius: 16px;
  padding: 24px 16px;
  -webkit-box-shadow: 0px 8px 24px rgba(39, 113, 255, 0.25);
  box-shadow: 0px 8px 24px rgba(39, 113, 255, 0.25);
  z-index: 3;
}
.choice__footnote:before {
  content: "";
  position: absolute;
  bottom: -120px;
  left: 50%;
  width: 2560px;
  height: 300px;
  background-color: #fff;
  -webkit-transform: translate(-50%, 0) skewY(-5deg);
  -ms-transform: translate(-50%, 0) skewY(-5deg);
  transform: translate(-50%, 0) skewY(-5deg);
  z-index: 1;
}
.choice__footnote:after {
  content: "";
  position: absolute;
  bottom: -1150px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 1920px;
  height: 1268px;
  background-image: url(../img/wave2.png);
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  background-size: cover;
  z-index: 2;
}
.choice__footnote p {
  font-size: 16px;
  text-align: center;
}
.choice__footnote p.footnote__attention {
  font-weight: bold;
  color: #ff6565;
  margin-bottom: 20px;
}

.footer {
  position: relative;
  padding: 90px 0;
  z-index: 5;
}
.footer .form-wrapper:before {
  display: none;
}
.footer .footer__product span {
  display: block;
  margin: 0 auto 40px;
  width: 290px;
  height: 325px;
  background-image: url(../img/complex-product2.png?v2);
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: contain;
  background-size: contain;
}

.taxes {
  display: block;
  width: 100%;
  max-width: 700px;
  margin: 10px auto 0;
  font-size: 10px;
  text-align: center;
}

/*==========  Mobile First  ==========*/
/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) {
  /**/
}

/* Extra Small Devices, Phones */
@media only screen and (min-width: 480px) {
  /**/
}

/* Small Devices, Tablets */
@media only screen and (min-width: 768px) {
  /**/
}

/* Medium Devices, Desktops */
@media only screen and (min-width: 992px) {
  .limit {
    max-width: 1140px;
    padding: 0 10px;
  }
  .form:not(.footer__form) {
    max-width: 930px;
    margin: 0 auto;
    padding: 32px 32px 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .form:not(.footer__form) .btn-wrapper {
    width: 30%;
  }
  .form:not(.footer__form) .form-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 70%;
  }
  .form:not(.footer__form) .form-inner .form-field {
    width: 40%;
    padding: 0 10px;
  }
  .form:not(.footer__form) .form-inner .form__title {
    width: 100%;
    text-align: left;
  }
  .inp {
    margin-bottom: 15px;
  }
  .s-title {
    font-size: 32px;
  }
  .s-title .blue-line:after {
    bottom: 0;
  }
  .header {
    padding-top: 55px;
    padding-bottom: 90px;
  }
  .header .form-wrapper:before {
    bottom: -235px;
    height: 490px;
  }
  .header .form {
    margin-top: 35px;
  }
  .header .title-wrapper {
    max-width: 420px;
  }
  .header .main-title {
    font-size: 64px;
    line-height: 1;
  }
  .header .subtitle span {
    font-size: 24px;
  }
  .header__product {
    position: absolute;
    bottom: -93px;
    left: 80%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    min-height: 0;
    z-index: 7;
  }
  .header__product span {
    width: 508px;
    height: 386px;
    background-image: url(../img/complex-product2.png?v2);
    bottom: 0;
    right: 0;
  }
  .header__dialog {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding-top: 160px;
  }
  .header__dialog:before,
  .header__dialog:after {
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    background-position: center bottom;
    -webkit-background-size: contain;
    background-size: contain;
    z-index: 0;
  }
  .header__dialog:before {
    bottom: -68px;
    left: 0;
    width: 444px;
    height: 518px;
    background-image: url(../img/header-man.png);
  }
  .header__dialog:after {
    bottom: -10px;
    right: -50px;
    width: 403px;
    height: 444px;
    background-image: url(../img/header-man2.png);
  }
  .header__dialog .dialog__cloud {
    position: relative;
    display: block;
    width: 100%;
    max-width: 256px;
    position: relative;
    background-color: #fff;
    -webkit-border-radius: 16px;
    border-radius: 16px;
    padding: 24px;
    -webkit-box-shadow: 0px 8px 24px rgba(39, 113, 255, 0.25);
    box-shadow: 0px 8px 24px rgba(39, 113, 255, 0.25);
    z-index: 6;
  }
  .header__dialog .dialog__cloud:before {
    content: "";
    position: absolute;
    top: -31px;
    left: 25px;
    width: 0;
    height: 0;
    border-bottom: 32px solid #fff;
    border-right: 32px solid transparent;
  }
  .header__dialog .dialog__cloud:first-child {
    margin-top: -20px;
    margin-left: 95px;
    margin-right: 400px;
  }
  .header__dialog .dialog__user {
    font-size: 24px;
    font-weight: bold;
    color: #2771ff;
    line-height: 1;
  }
  .header__dialog .dialog__age {
    font-size: 16px;
    font-weight: normal;
    color: #6a9cff;
  }
  .header__dialog .dialog__text {
    font-size: 16px;
    font-weight: normal;
    color: #000;
    margin: 5px 0;
  }
  .header__dialog .dialog__rating span {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url(../img/star.svg) no-repeat center;
    -webkit-background-size: contain;
    background-size: contain;
  }
  .statistic {
    padding-bottom: 30px;
  }
  .statistic__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .graph__description {
    max-width: 350px;
  }
  .effect:before {
    bottom: -185px;
  }
  .effect .s-title {
    position: relative;
    max-width: 700px;
    z-index: 3;
  }
  .effect p {
    position: relative;
    max-width: 700px;
    margin: 20px auto;
    z-index: 3;
  }
  .effect__content {
    padding: 80px 15px 50px;
  }
  .effect__list {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 30px 0;
  }
  .effect__list .effect__list-item {
    position: relative;
    width: 50%;
    z-index: 3;
    margin-bottom: 20px;
  }
  .effect__list .effect__list-item:nth-child(even) {
    padding-left: 50px;
    padding-right: 110px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .effect__list .effect__list-item:nth-child(even) p {
    text-align: right;
  }
  .effect__list .effect__list-item:nth-child(even) img {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
  .effect__list .effect__list-item:nth-child(odd) {
    padding-left: 110px;
    padding-right: 50px;
  }
  .effect__list .effect__list-item img {
    width: 96px;
    height: 96px;
  }
  .effect__list-back {
    position: absolute;
    top: 47%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 477px;
    height: 489px;
    background-image: url(../img/effect-back.jpg);
    z-index: 0;
  }
  .effect__list-back span {
    width: 330px;
    height: 409px;
    background-image: url(../img/complex-product2.png?v2);
  }
  .effect__content .btn {
    bottom: -90px;
  }
  .banner {
    padding: 400px 0 0;
  }
  .banner p {
    position: relative;
    z-index: 5;
  }
  .banner .form-wrapper {
    margin-top: -30px;
  }
  .banner .form-wrapper:before {
    bottom: -85%;
  }
  .banner:before {
    height: 929px;
  }
  .banner .banner__title {
    position: relative;
    font-size: 56px;
    line-height: 1;
    max-width: 400px;
    z-index: 5;
  }
  .banner__slider .banner__slider-item {
    min-height: 245px;
  }
  .banner__slider .banner__slider-item .banner__img span {
    width: 640px;
    height: 719px;
    bottom: -150px;
    right: -50px;
  }
  .banner__slider .banner__slider-item.item--first .banner__img span {
    background-image: url(../img/slider-img1.png);
  }
  .banner__slider .banner__slider-item.item--second .banner__img span {
    background-image: url(../img/slider-img2.png);
  }
  .banner__slider .banner__slider-item.item--third .banner__img span {
    background-image: url(../img/slider-img3.png);
  }
  .complex {
    padding: 115px 0 70px;
  }
  .complex .s-title {
    max-width: 700px;
    margin: 0 auto 50px;
  }
  .complex__block .complex__caption {
    font-size: 80px;
    line-height: 1.1;
  }
  .complex__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .complex__img {
    width: 30%;
  }
  .complex--second .complex__img {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 130px;
  }
  .complex__description {
    width: 70%;
    padding: 80px 0 0;
  }
  .complex--first .complex__img span {
    background-image: url(../img/complex-product2.png?v2);
    width: 255px;
    height: 705px;
  }
  .complex--second .complex__img span {
    background-image: url(../img/complex-product2.png?v3);
    width: 399px;
    height: 361px;
  }
  .complex__block.complex--second {
    margin-bottom: 15px;
  }
  .complex__composition {
    max-width: 100%;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .complex__composition li {
    width: 16.5%;
  }
  .complex__composition li p {
    font-size: 14px;
    padding: 0 10px;
  }
  .complex__list {
    width: 49%;
    display: inline-block;
    vertical-align: top;
    padding-bottom: 45px;
  }
  .review:after {
    bottom: -115px;
  }
  .review:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 1268px;
    background-image: url(../img/wave2.png);
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
    z-index: 2;
  }
  .review__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .review__list li {
    width: 33%;
  }
  .review__list li img {
    margin: 0 auto;
  }
  .review__list .review__message p {
    padding: 0 10px;
  }
  .choice {
    padding: 195px 0 0;
  }
  .choice:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 779px;
    background-image: url(../img/wave.png);
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
    opacity: 0.36;
  }
  .choice__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;

    -webkit-justify-content: space-around;

    justify-content: space-around;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-bottom: 30px;
  }
  .choice__list .choice__item {
    width: 300px;
  }
  .choice__list .choice__item:nth-child(2) {
    width: 340px;
  }
  .choice__list .choice__item:nth-child(2) .choice__item-title {
    font-size: 32px;
    line-height: 1;
  }
  .choice__list .choice__item .choice__item-img {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 290px;
  }
  .choice__footnote:before {
    bottom: -150px;
  }
  .choice__footnote .footnote__inner {
    padding: 32px 32px 42px;
  }
  .choice__footnote p.footnote__attention {
    font-size: 24px;
  }
  .footer {
    padding: 120px 0 100px;
  }
  .footer .form-wrapper {
    max-width: 1025px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .footer__product {
    position: absolute;
    top: 60px;
    left: -40px;
    z-index: 10;
  }
  .footer .footer__product span {
    width: 650px;
    height: 638px;
    background-image: url(../img/complex-product2.png?v2);
  }
  .footer__form {
    width: 450px;
    margin-top: 40px;
  }
  .footer__form .inp {
    margin-bottom: 25px;
  }
  .footer__form .form-inner {
    max-width: 290px;
    margin: 0 auto;
  }
  .footer__form .btn-wrapper {
    max-width: 290px;
    margin: 0 auto;
  }
  .decor__element span {
    width: 98px;
    height: 98px;
    background-image: url(../img/decor1.png);
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: contain;
    background-size: contain;
  }
  .header .decor--1 {
    top: 30px;
    left: -40px;
  }
  .statistic .decor--1 {
    top: -315px;
    right: -60px;
  }
  .effect .decor--1 {
    top: -165px;
    left: -20px;
    z-index: 5;
  }
  .effect .decor--2 {
    bottom: -195px;
    right: 240px;
    z-index: 5;
  }
  .banner .decor--1 {
    bottom: 470px;
    left: 170px;
    z-index: 5;
  }
  .complex .decor--1 {
    top: 255px;
    left: -20px;
  }
  .complex .decor--2 {
    top: 920px;
    right: -120px;
  }
  .complex .decor--3 {
    bottom: 500px;
    left: 750px;
  }
  .complex .decor--4 {
    bottom: 850px;
    right: -40px;
  }
  .complex .decor--5 {
    bottom: -140px;
    left: -120px;
  }
  .complex .decor--5 span {
    width: 60px;
    height: 60px;
  }
  .complex .decor--6 {
    bottom: -430px;
    right: 400px;
  }
  .review .decor--1 {
    top: 100px;
    left: -20px;
    z-index: 3;
  }
  .review .decor--1 span {
    width: 54px;
    height: 54px;
  }
  .review .decor--2 {
    bottom: -250px;
    right: -105px;
    z-index: 3;
  }
}

/* Large Devices, Wide Screens */
@media only screen and (min-width: 1199px) {
  .header .title-wrapper {
    max-width: 540px;
  }
  .header__product {
    left: 78%;
  }
  .header__product span {
    width: 557px;
    height: 444px;
  }
  .complex__composition li p {
    font-size: 16px;
  }
}
.note {
  text-align: center;
  font-size: 16px !important;
  color: #2771ff !important;
  font-weight: bold;
}

@media only screen and (min-width: 992px) {
  .phone-r-side-name {
    position: relative;
    top: -18px;
    left: 301px;
  }

  .my-style-select {
    position: relative;
    top: -24px;
  }

  .name-under-select {
    position: relative;
    top: 50px;
    left: -364px;
  }
}
