@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuOKfMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.ttf) format('truetype');
}
/* animation */
@-webkit-keyframes shine {
  100% {
    left: 150%;
  }
}
@keyframes shine {
  100% {
    left: 150%;
  }
}
@-webkit-keyframes radial-pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0px rgba(245, 124, 23, 0.5);
            box-shadow: 0 0 0 0px rgba(245, 124, 23, 0.5);
  }
  100% {
    -webkit-box-shadow: 0 0 0 40px rgba(245, 124, 23, 0);
            box-shadow: 0 0 0 40px rgba(245, 124, 23, 0);
  }
}
@keyframes radial-pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0px rgba(245, 124, 23, 0.5);
            box-shadow: 0 0 0 0px rgba(245, 124, 23, 0.5);
  }
  100% {
    -webkit-box-shadow: 0 0 0 40px rgba(245, 124, 23, 0);
            box-shadow: 0 0 0 40px rgba(245, 124, 23, 0);
  }
}
/* common */
body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
}
section {
  padding: 80px 0;
}
a {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  color: #000;
}
a:visited {
  color: #000;
}
a:hover {
  text-decoration: none;
  color: #000;
}
a:focus,
input:focus,
button:focus,
video:focus,
.slick-slide:focus {
  outline: none;
}
p {
  margin-bottom: 0;
}
label {
  margin-bottom: 0;
}
ul {
  margin: 0;
  padding: 0;
}
::-webkit-input-placeholder {
  color: #323642;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #323642;
  opacity: 1;
}
::-ms-input-placeholder {
  color: #323642;
  opacity: 1;
}
::placeholder {
  color: #323642;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #323642;
}
::-ms-input-placeholder {
  color: #323642;
}
input[type=checkbox] {
  display: none;
  width: 0;
}
input[type=checkbox] + span {
  text-align: left;
  font-size: 12px;
  color: #9eb9d7;
}
input[type=checkbox] + span a {
  font-size: 12px;
  color: #62b5e5;
  text-decoration: underline;
}
input[type=checkbox] + span::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 1px solid #c8c8c8;
  border-radius: 2px;
  position: static;
  margin-right: 8px;
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
}
input[type=checkbox]:checked + span::before {
  background: #c8c8c8 url('../img/checkbox.png') center center no-repeat;
  background-size: 8px 8px;
}
input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  display: inline-block;
  margin: 10px auto;
  width: 100%;
  max-width: 400px;
  padding: 22px;
  background-color: #fef6f6;
  border-radius: 6px;
  font-size: 18px;
  text-align: center;
  border: none;
}
input[type="text"]:hover,
input[type="tel"]:hover,
input[type="email"]:hover,
textarea:hover,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
textarea:focus,
input[type="text"]:active,
input[type="tel"]:active,
input[type="email"]:active,
textarea:active,
input[type="text"].active,
input[type="tel"].active,
input[type="email"].active,
textarea.active {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
.button,
a.button,
input[type=submit].button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 320px;
  height: 80px;
  margin: 0 auto;
  padding: 10px;
  background: #ffda48;
  border: none;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  -webkit-box-shadow: 0 5px 10px 3px rgba(0, 0, 0, 0.06), 0 5px 0 #d1a602;
          box-shadow: 0 5px 10px 3px rgba(0, 0, 0, 0.06), 0 5px 0 #d1a602;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #000;
}
.button:hover,
a.button:hover,
input[type=submit].button:hover,
.button:focus,
a.button:focus,
input[type=submit].button:focus,
.button:active,
a.button:active,
input[type=submit].button:active {
  outline: none;
  text-decoration: none;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  -webkit-box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.1), 0 0 0 #d1a602;
          box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.1), 0 0 0 #d1a602;
}
.button::before,
a.button::before,
input[type=submit].button::before {
  position: absolute;
  top: 0;
  left: -3000%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.7)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-transform: skewX(-25deg);
          transform: skewX(-25deg);
  -webkit-animation: shine 5s infinite;
          animation: shine 5s infinite;
}
strong,
.bold {
  font-weight: bold;
}
.extrabold {
  font-weight: 800;
}
.small {
  font-size: 13px;
}
.center {
  text-align: center;
}
.right {
  text-align: right;
}
.upper {
  text-transform: uppercase;
}
.blue {
  color: #888;
}
.red {
  color: #d23e30;
}
.gold {
  color: #f7c507;
}
.bold {
  font-weight: 700 !important;
}
.bg-image {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.pulse {
  display: block;
  max-width: 90px;
  position: absolute;
  right: 25px;
  bottom: 25px;
  border-radius: 50%;
  -webkit-animation: radial-pulse 2s infinite;
          animation: radial-pulse 2s infinite;
}
/* header */
.header {
  padding: 15px 0;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.logo {
  display: block;
  max-width: 260px;
}
.contact-item-text {
  font-weight: 400;
}
.contact-item-grafik {
  padding-left: 25px;
  position: relative;
}
.contact-item-grafik:before {
  content: '';
  width: 18px;
  height: 18px;
  background: url(../img/alarm_icon.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.contact-item-grafik-text {
  font-weight: 900;
  font-size: 18px;
}
.contact-item-city {
  padding-left: 25px;
  position: relative;
}
.contact-item-city:before {
  content: '';
  width: 18px;
  height: 18px;
  background: url(../img/phone_icon.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.contact-item-phone {
  font-weight: 900;
  font-size: 18px;
}
/* typo */
.h1 {
  font-size: 35px;
  text-transform: uppercase;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}
.h1:after {
  content: '';
  display: inline-block;
  width: 100%;
  max-width: 815px;
  height: 56px;
  background-color: #a8dbff;
  -webkit-transform: skew(-15deg);
          transform: skew(-15deg);
  position: absolute;
  left: -10px;
  top: 0;
}
.h1-medium {
  font-size: 31px;
}
.h1-medium img {
  max-width: 44px;
  margin-right: 10px;
}
.h1-red {
  display: inline-block;
  padding: 5px;
  margin: 0px 0 5px;
  position: relative;
  z-index: 1;
}
h2,
.h2 {
  text-align: center;
  font-size: 34px;
  font-weight: bold;
  text-transform: uppercase;
  color: #0042a9;
  margin-bottom: 40px;
}
/* main */
.main {
  background-color: #f9f9f9;
  background: url(../img/bg-main1.jpg) right center no-repeat;
  background-size: cover;
  padding: 100px 0;
}
.main-problem {
  max-width: 650px;
}
.main-problem h4 {
  margin: 25px 0 15px;
  font-weight: 400;
}
.main-problem-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.main-problem-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 30%;
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 1;
}
.main-problem-item img {
  margin-right: 10px;
  width: 26px;
}
.analize {
  margin-top: 30px;
}
.analize h3 {
  font-size: 22px;
  font-weight: bold;
}
.analize p {
  padding-left: 30px;
  margin-top: 10px;
  font-size: 18px;
  position: relative;
}
.analize p:before {
  content: '';
  display: block;
  width: 26px;
  height: 26px;
  background: url(../img/yes_icon.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0;
}
.podheader {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #284e92;
}
.podheader-2 {
  margin-bottom: 20px;
  color: #284e92;
  font-weight: 400;
}
/* want */
.want {
  background: url(../img/bg-water1.jpg) center no-repeat;
  background-size: cover;
}
.action {
  padding: 40px;
  margin: 30px auto;
  background-color: #ffffff;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  text-align: center;
}
.action .h2 {
  margin-bottom: 20px;
}
.action-header {
  font-weight: 400;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 30px;
  color: #464547;
}
.action-list {
  margin-top: 40px;
  list-style: none;
}
.action-list h3 {
  color: #d23e30;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 700;
}
.action-list h5 {
  font-size: 22px;
  margin-top: 20px;
}
.action-list p {
  font-size: 19px;
}
.gifts {
  margin-top: 20px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.gift {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 23%;
  min-height: 80px;
  margin: 4px;
  padding: 6px;
  font-size: 16px;
  text-align: center;
  border: 2px solid #a8dbff;
  background-color: #a8dbff;
  cursor: default;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.gift:hover,
.gift:focus {
  background-color: #0255d5;
  border: 2px solid #0255d5;
  color: #fff;
}
/* why */
.why-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.why-item {
  display: block;
  width: 23%;
  min-height: 180px;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  padding: 30px;
  margin: 0 1% 30px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.why h5 {
  font-size: 20px;
  font-weight: bold;
  color: #284e92;
  margin-bottom: 5px;
}
.why svg {
  fill: #a8dbff;
  opacity: 0.2;
  position: absolute;
  bottom: -20px;
  right: -20px;
  max-width: 120px;
}
/* vygoda */
.vygoda {
  background-color: #f8f8f8;
}
.vygoda .h2 {
  margin-bottom: 20px;
}
.vygoda-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.vygoda-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  min-height: 300px;
  padding: 20px 10px;
  background-color: rgba(0, 55, 157, 0.8);
  color: #fff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: translateY(210px);
          transform: translateY(210px);
}
.vygoda-item {
  width: 30%;
  min-height: 300px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  margin: 30px 1% 0;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.vygoda-item:hover .vygoda-text {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.vygoda-item:nth-child(4) h5 {
  margin-top: 15px;
}
.vygoda-item:nth-child(5) h5 {
  font-size: 18px;
}
/* reviews */
.reviews .slide {
  padding: 30px;
}
.reviews .slide-body {
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  overflow: hidden;
}
.reviews-text {
  min-height: 330px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.reviews h3 {
  color: #002340;
  font-size: 20px;
  margin-bottom: 20px;
}
.slick-prev {
  width: 40px;
  height: 40px;
  background: url(../img/next.svg) center no-repeat;
  background-size: contain;
  z-index: 1;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.slick-next {
  width: 40px;
  height: 40px;
  background: url(../img/next.svg) center no-repeat;
  background-size: contain;
}
.slick-dots li {
  width: 10px;
  height: 10px;
}
.slick-dots li button {
  width: 10px;
  height: 10px;
  border-color: #0255d5;
}
.slick-dots li.slick-active button {
  background-color: #0255d5;
}
/* quiz */
.opros {
  background-color: #f6fbff;
  padding: 100px 0;
  min-height: 100vh;
}
.opros .h2 {
  margin-bottom: 20px;
}
.opros .podheader {
  color: #000;
  font-size: 22px;
}
.quiz {
  background-color: #fff;
  padding: 10px;
  -webkit-box-shadow: 0px 0px 50px rgba(76, 98, 104, 0.2);
          box-shadow: 0px 0px 50px rgba(76, 98, 104, 0.2);
  border-radius: 12px;
  max-width: 1270px;
  margin: 80px auto 0 auto;
  position: relative;
  z-index: 1;
}
.quiz-block {
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #f5debe;
  min-height: 630px;
}
.quiz-body.w100 {
  font-size: 20px;
}
.quiz-body.w100 .quiz-form {
  width: 100%;
}
.quiz-body.w100 .quiz-director {
  display: none;
}
.quiz-body.w100 .h3 {
  font-size: 36px;
}
.quiz-body.w100 label {
  font-size: 16px;
  margin-top: 20px;
  color: #b6b8bc;
}
.quiz-body.w100 input[type="text"],
.quiz-body.w100 input[type="tel"],
.quiz-body.w100 input[type="email"],
.quiz-body.w100 textarea {
  max-width: 420px;
}
.quiz-form .h3 {
  margin-bottom: 25px;
  font-size: 24px;
  font-weight: bold;
}
.quiz-right {
  background-color: #284e92;
  color: #fff;
  padding: 30px 10px;
  text-align: center;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.quiz-right h3 {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 6px;
}
.quiz-phone {
  display: block;
  color: #828899;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 20px;
}
.quiz-steps {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.quiz-steps .h4 {
  font-size: 18px;
  color: #d9d9d9;
  width: 100px;
  margin-bottom: 0;
}
.quiz-buttons {
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: -80px;
}
.quiz .button {
  max-width: 300px;
  height: 80px;
  border-radius: 10px;
  font-size: 15px;
  margin: 0;
}
.quiz .button.sendbtn {
  font-size: 14px;
  padding: 10px;
  margin: 10px auto;
  border-radius: 6px;
  max-width: 400px;
}
.quiz .prevbtn {
  color: #dadada;
  font-size: 18px;
  font-weight: 400;
  text-decoration: underline;
  border: none;
  background-color: transparent;
}
.quiz-final {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}
.main-list {
  margin-top: 0;
  padding: 20px 15px;
  background-color: #fff1f1;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.main-list li {
  color: #000;
  font-size: 15px;
}
.progress {
  width: 80%;
  border-radius: 10px;
}
.tab {
  display: none;
}
.tab-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.tab-body-left {
  width: 60%;
}
.tab-body-right {
  width: 33%;
}
.tab-body .action-list p {
  font-size: 16px;
}
.tab-body h4 {
  font-size: 19px;
}
.tab-body .gifts {
  margin-top: 0;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0 5px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  display: block;
}
.tab-body .gift {
  width: 100%;
  margin: 0 0 10px;
  font-size: 18px;
}
.tab-body .action-list {
  text-align: center;
  margin-bottom: 20px;
  margin-top: 20px;
}
.tab.tab-final .tab-body-left {
  width: 100%;
}
.tab.tab-final .gifts {
  max-width: 400px;
  margin: 20px auto;
  padding: 0;
}
.quiz-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.quiz-label {
  display: block;
  background-color: #f2f2f2;
  width: 330px;
  height: 80px;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 25px;
  cursor: pointer;
}
.quiz-label input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.quiz-label input:checked + p:before {
  background: url(../img/checked-red.png) center no-repeat;
  background-size: contain;
}
.quiz-label p {
  position: relative;
  font-size: 16px;
  padding-left: 75px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.quiz-label p:before {
  content: '';
  width: 52px;
  height: 52px;
  background: url(../img/checked-gray.png) center no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.quiz-label p:hover:before {
  background: url(../img/checked-red.png) center no-repeat;
  background-size: contain;
}
.quiz-label.invalid {
  border: 1px solid #f00;
  background-color: #ffdddd;
}
/* Make circles that indicate the steps of the form: */
.step {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbbbbb;
  border: none;
  border-radius: 50%;
  display: inline-block;
  opacity: 0.5;
}
.step.active {
  opacity: 1;
}
/* Mark the steps that are finished and valid: */
.step.finish {
  background-color: #4CAF50;
}
/* footer */
.footer {
  background-color: #1066b3;
  padding: 40px 0 30px;
  color: #fff;
}
.footer-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer-block {
  width: 32%;
}
.footer-block:nth-child(2) {
  text-align: right;
  margin-top: 10px;
}
.footer-block:nth-child(3) {
  text-align: right;
  margin-top: 10px;
}
.footer-logo {
  max-width: 270px;
}
.footer-text {
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
}
.footer p {
  color: #fff;
  margin-bottom: 6px;
}
.footer a {
  color: #fff;
}
.modal .button {
  margin-top: 15px;
  margin-bottom: 15px;
}
/* thanks */
.thanks {
  padding: 150px 0;
}
/* up button */
#up {
  display: block;
  background-color: transparent;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #a8dbff;
  text-align: center;
  position: fixed;
  bottom: 20px;
  left: 20px;
  opacity: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
  z-index: 9999;
  cursor: pointer;
}
#up:before {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  background: url(../img/up.svg) center no-repeat;
  background-size: contain;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#up.show {
  opacity: 0.5;
}
#up.show:hover {
  opacity: 1;
}
/* media */
@media (min-width: 1500px) {
  .container {
    max-width: 1340px;
  }
}
@media (max-width: 1499px) {
  .h1 {
    font-size: 32px;
  }
  .h1-medium {
    font-size: 28px;
  }
  .h1:after {
    max-width: 750px;
    height: 48px;
  }
  h2,
  .h2 {
    font-size: 28px;
  }
  .podheader {
    font-size: 16px;
  }
  .action-header {
    font-size: 20px;
  }
  section {
    padding: 60px 0;
  }
  .main {
    padding: 55px 0;
  }
  .main-problem {
    max-width: 580px;
  }
  .main-problem h4 {
    font-size: 20px;
  }
  .main-problem-item {
    font-size: 16px;
  }
  .analize h3 {
    font-size: 20px;
  }
  .analize p {
    font-size: 16px;
  }
  .action {
    margin: 0 auto;
  }
  .why h5 {
    font-size: 18px;
  }
  .reviews-text {
    padding: 20px 10px;
  }
  .quiz-label {
    width: 300px;
  }
  .quiz .action {
    padding: 15px 8px;
    font-size: 15px;
  }
  .quiz .action .action-header {
    font-size: 15px;
  }
  .quiz .main-right h3 span.red {
    font-size: 20px;
  }
  .opros .podheader {
    font-size: 22px;
  }
  .tab-body .action-list p {
    font-size: 16px;
  }
  .tab .gift {
    font-size: 17px;
  }
  .footer {
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  body {
    font-size: 15px;
  }
  .logo {
    max-width: 250px;
  }
  .contact-item-text {
    display: none;
  }
  .h1 {
    font-size: 25px;
  }
  .h1:after {
    max-width: 590px;
    height: 45px;
  }
  .h1-medium {
    font-size: 22px;
  }
  h2,
  .h2 {
    font-size: 25px;
  }
  .main .podheader {
    max-width: 500px;
  }
  .main-problem {
    max-width: 500px;
  }
  .main-problem h4 {
    font-size: 18px;
  }
  .analize h3 {
    max-width: 500px;
  }
  .gift {
    font-size: 15px;
  }
  .action {
    margin: 20px auto 0;
  }
  .opros {
    padding: 70px 0;
  }
  .opros .podheader {
    font-size: 18px;
  }
  .quiz-block {
    padding: 15px;
    font-size: 15px;
  }
  .h4,
  h4 {
    font-size: 1.2rem;
  }
  .quiz-label {
    width: 250px;
  }
  .quiz-label p {
    font-size: 15px;
  }
  .main-right {
    margin: 60px auto 0;
    max-width: 520px;
  }
  .main-right ul {
    text-align: left;
  }
  .tab-body-right {
    width: 35%;
  }
  .quiz-form .h3 {
    font-size: 20px;
  }
  .quiz .main-list li {
    font-size: 14px;
  }
  .tab-two .quiz-label p {
    font-size: 13px;
  }
  .quiz-body.w100 {
    font-size: 16px;
  }
  .action-header {
    font-size: 20px;
  }
  .main .quiz-right h3 {
    font-size: 15px;
  }
  .main .main-list li {
    text-align: left;
  }
  .footer {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .h1 {
    font-size: 25px;
  }
  .main {
    background: url(../img/bg-main-mob.jpg) right center no-repeat;
    background-size: cover;
  }
  .podheader {
    font-size: 16px;
  }
  .opros .podheader {
    font-size: 16px;
  }
  .contact-item-text {
    display: none;
  }
  .gift {
    width: 48%;
  }
  .action-list h5 {
    font-size: 18px;
  }
  .why-item {
    width: 48%;
    min-height: 160px;
  }
  .vygoda-item {
    width: 46%;
  }
  .reviews .slide-body {
    max-width: 480px;
    margin: 0 auto;
  }
  .reviews-text {
    min-height: 250px;
    padding: 30px;
  }
  .quiz-label {
    width: 290px;
  }
  .foto .slide .button-small {
    right: 130px;
  }
  .tab-body {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .tab-body-left {
    width: 100%;
  }
  .tab-body-right {
    width: 100%;
    margin-top: 50px;
    display: none;
  }
  .main .tab-body-right {
    display: block;
  }
  .main .main-list {
    text-align: left;
  }
  .tab-body .action-list p {
    font-size: 15px;
  }
  .quiz-buttons {
    width: 100%;
    margin-top: 0;
  }
  .footer-container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer-logo {
    margin: 0 auto 20px;
  }
  .footer-block {
    width: 100%;
    text-align: center;
  }
  .footer-block:nth-child(2) {
    text-align: center;
  }
}
@media (max-width: 767px) {
  section {
    padding: 50px 0;
  }
  .header {
    padding: 5px 0;
  }
  .header-container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .header .logo {
    display: block;
    width: 100%;
    min-width: auto;
    margin: 0 auto 8px;
    max-width: 200px;
  }
  .contact-item-grafik-text {
    font-size: 14px;
  }
  .contact-item-phone {
    font-size: 15px;
  }
  .h1 {
    font-size: 21px;
  }
  .h1-medium {
    font-size: 14px;
    line-height: 1.2;
    display: block;
    margin-top: 7px;
  }
  .h1:after {
    max-width: 300px;
    height: 60px;
    left: -5px;
  }
  h2,
  .h2 {
    font-size: 20px;
  }
  .h4,
  h4 {
    font-size: 1rem;
  }
  .h3,
  h3 {
    font-size: 1.5rem;
  }
  .h5,
  h5 {
    font-size: 1rem;
  }
  .main {
    padding: 30px 0;
  }
  .main-problem h4 {
    font-size: 16px;
    max-width: 280px;
  }
  .main-problem-item {
    width: 32%;
    font-size: 12px;
  }
  .main-problem-item img {
    max-width: 16px;
    margin-right: 6px;
  }
  .analize h3 {
    font-size: 17px;
  }
  .analize p {
    font-size: 14px;
  }
  .action {
    padding: 30px 15px;
  }
  .action-list h3 {
    font-size: 20px;
  }
  .action-list h5 {
    font-size: 16px;
  }
  .lastday {
    display: inline-block;
  }
  .podheader {
    font-size: 13px;
  }
  .gift {
    margin-right: 0;
    width: 100%;
    font-size: 15px;
    min-height: 60px;
  }
  .tab .gift {
    font-size: 14px;
  }
  .action-header {
    font-size: 17px;
  }
  .button,
  a.button,
  input[type=submit].button {
    margin: 0 auto;
    font-size: 13px;
  }
  .why-item {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 20px;
  }
  .vygoda-item {
    width: 100%;
    max-width: 330px;
    margin: 30px auto 0;
  }
  .reviews .slide {
    padding: 10px;
  }
  .reviews .slide-body {
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  }
  .opros {
    padding: 50px 0;
  }
  .opros .podheader {
    margin-top: 10px;
    font-size: 13px;
  }
  .timer {
    font-size: 13px;
    text-align: center;
  }
  .main-right {
    margin-top: 20px;
  }
  .main-right ul {
    text-align: left;
  }
  h2 {
    font-size: 22px;
  }
  .quiz-steps {
    display: block;
    margin-bottom: 20px;
    text-align: center;
  }
  .progress {
    width: 100%;
    margin-top: 15px;
  }
  .quiz-form .h3 {
    font-size: 18px;
  }
  .footer-container {
    display: block;
    text-align: center;
  }
  .footer h4 {
    margin-top: 40px;
  }
  .quiz-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-top: 0;
  }
  .quiz .prevbtn {
    font-size: 16px;
  }
  .quiz .button {
    margin-top: 20px;
  }
  .quiz {
    margin-bottom: 0;
    margin-top: 30px;
  }
  .quiz-block {
    min-height: 540px;
    padding: 15px;
  }
  .progress {
    width: 100%;
  }
  .quiz-form .h3 {
    text-align: center;
  }
  .quiz-item {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .quiz-label {
    width: 100%;
    height: 70px;
    padding: 8px 8px;
    margin-bottom: 15px;
  }
  .quiz-label p {
    padding-left: 45px;
    font-size: 14px;
  }
  .quiz-label p:before {
    width: 35px;
    height: 35px;
    top: 10px;
  }
  .quiz-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-top: 0;
  }
  .quiz .button {
    max-width: 290px;
    height: 80px;
    border-radius: 10px;
    font-size: 14px;
  }
  .prevbtn {
    margin-top: 20px;
  }
  .quiz .prevbtn {
    font-size: 16px;
  }
  .quiz-form .h3 {
    font-size: 16px;
  }
  .quiz .button.sendbtn {
    font-size: 15px;
    padding: 10px;
  }
  input[type=checkbox] + span {
    font-size: 10px;
  }
  input[type=checkbox] + span a {
    font-size: 10px;
  }
  input[type="text"],
  input[type="tel"],
  input[type="email"],
  textarea {
    font-size: 16px;
  }
  .quiz-right h3 {
    font-size: 20px;
  }
  .tab-body h6 {
    font-size: 18px;
  }
  .footer {
    font-size: 14px;
  }
  .footer-text {
    font-size: 11px;
  }
}
@media (max-width: 359px) {
  .contact-item-grafik-text {
    font-size: 11px;
  }
  .contact-item-phone {
    font-size: 12px;
  }
  .h1 {
    font-size: 18px;
  }
  .h1:after {
    max-width: 260px;
    height: 54px;
  }
  .h1-medium {
    font-size: 14px;
  }
  .podheader {
    font-size: 12px;
  }
  .main-problem h4 {
    font-size: 15px;
  }
  .main-problem-item {
    font-size: 10px;
  }
  .analize h3 {
    font-size: 14px;
  }
  .analize p {
    font-size: 12px;
    padding-left: 20px;
  }
  .analize p:before {
    width: 16px;
    height: 16px;
  }
  body {
    font-size: 14px;
  }
  section {
    padding: 40px 0;
  }
  h2,
  .h2 {
    font-size: 16px;
  }
  .action-list h3 {
    font-size: 16px;
  }
  .reviews-text {
    padding: 20px;
  }
  .reviews h3 {
    font-size: 16px;
  }
  .opros .podheader {
    font-size: 14px;
    margin-top: 10px;
  }
  .quiz-right {
    padding: 10px;
  }
  .action-header {
    font-size: 15px;
  }
  .action-list p {
    font-size: 15px;
  }
  .main .button {
    font-size: 12px;
  }
  .main .quiz-right h3 {
    font-size: 13px;
  }
  .quiz-body.w100 {
    font-size: 14px;
  }
  .quiz .button.sendbtn {
    font-size: 13px;
  }
  input[type=checkbox] + span {
    font-size: 9px;
  }
  input[type=checkbox] + span a {
    font-size: 9px;
  }
}
