/* fonts */
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/rubik/v31/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-WYi1UA.ttf) format('truetype');
}
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/rubik/v31/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-B4i1UA.ttf) format('truetype');
}
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/rubik/v31/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-NYi1UA.ttf) format('truetype');
}
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/rubik/v31/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-4I-1UA.ttf) format('truetype');
}
/* animation */
@-webkit-keyframes shine {
  100% {
    left: 150%;
  }
}
@keyframes shine {
  100% {
    left: 150%;
  }
}
@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0);
  }
  25% {
    transform: translate(-50%, -50%) scale(0.25);
  }
  50% {
    transform: translate(-50%, -50%) scale(0.5);
  }
  75% {
    transform: translate(-50%, -50%) scale(0.75);
    opacity: 0.4;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}
/* common */
body {
  font-family: 'Rubik', sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #000;
  font-size: 18px;
  line-height: 1.6;
  background-color: #fff;
  scroll-behavior: smooth;
}
section {
  padding: 90px 0;
}
p {
  margin-bottom: 0;
}
a,
a:visited {
  color: #000;
  text-decoration: none;
}
a:hover,
a:focus {
  text-decoration: none;
  color: #000;
}
button:focus,
input:focus,
.slick-slide:focus {
  outline: none;
}
::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #aaa;
  opacity: 1;
  /* Firefox */
}
:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #aaa;
}
::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #aaa;
}
input[type="text"],
input[type="tel"],
input[type="email"] {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 360px;
  height: 60px;
  font-size: 18px;
  background: #F8F9FA;
  border: 1px solid #CED4DA;
  border-radius: 4px;
  margin: 10px auto 25px;
  padding: 13px;
}
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="text"]:active,
input[type="tel"]:active,
input[type="email"]:active {
  outline: none;
}
input[type="submit"],
.button,
a.button {
  width: 100%;
  max-width: 360px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: none;
  background: linear-gradient(180deg, #007dc4 0%, #005788 100%);
  border-radius: 7px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  margin: 10px auto 0;
  padding: 10px;
  transition: all 0.2s;
}
input[type="submit"]:hover,
.button:hover,
a.button:hover {
  background: linear-gradient(180deg, #007dc4 0%, #005788 100%);
  box-shadow: inset 0px 6px 3px rgba(0, 0, 0, 0.25), 0px 6px 10px rgba(0, 87, 136, 0.5);
}
input[type="submit"]:hover:before,
.button:hover:before,
a.button:hover:before {
  transform: translateY(-50%) translateX(5px);
}
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;
  transform: translateY(4px);
}
input[type=checkbox]:checked + span::before {
  background: #c8c8c8 url('../img/checkbox.png') center center no-repeat;
  background-size: 8px 8px;
}
.medium {
  font-weight: 500;
}
.bold {
  font-weight: 700;
}
.blue {
  color: #00468b;
}
.red {
  color: #f00;
}
/* typografy */
.h1 {
  max-width: 800px;
  font-size: 70px;
  margin-bottom: 20px;
  color: #00468b;
}
.h2 {
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  color: #00468b;
  margin-bottom: 60px;
  text-transform: uppercase;
}
.h3 {
  font-size: 30px;
}
/* header */
.header {
  padding: 10px 0;
  background-color: #fff;
  position: fixed;
  width: 100%;
  z-index: 2;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-address {
  position: relative;
  font-size: 14px;
  color: #414141;
  display: flex;
  align-items: center;
}
.header-address:before {
  content: '';
  width: 13px;
  height: 19px;
  position: absolute;
  top: 0px;
  left: -20px;
  background: url(../img/placeholder.svg) center no-repeat;
  background-size: 13px 19px;
}
.header-contact {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.header-phone {
  color: #000;
  font-weight: 500;
  position: relative;
}
.header-phone:before {
  content: '';
  width: 19px;
  height: 18px;
  background: url(../img/call.svg) center no-repeat;
  background-size: 19px 18px;
  position: absolute;
  left: -30px;
  top: 3px;
}
.header-recall {
  display: inline-block;
  width: 120px;
  margin-top: 5px;
  font-size: 14px;
  color: #aaa !important;
  position: relative;
}
.header-recall:hover {
  text-decoration: underline;
}
.header-recall:before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 6px;
  background-color: #FE6A16;
  box-shadow: 0px 0px 6px #FE6A16;
  position: absolute;
  left: -8px;
  top: 7px;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  max-width: 220px;
  margin-right: 12px;
}
.logo-text .bold {
  font-size: 20px;
}
.logo-text .small {
  font-size: 12px;
}
.logo-text p {
  color: #6C6C6C;
  font-size: 14px;
  margin-top: 2px;
}
/* etrn */
.etrn {
  padding: 120px 0 60px 0;
  background: url(../img/bg-main.jpg) right bottom no-repeat;
  background-size: contain;
}
.etrn-top {
  font-size: 23px;
}
.etrn-h1 {
  font-size: 22px;
}
.etrn-text {
  margin-top: 20px;
  display: inline-block;
  padding: 5px;
  background-color: #ffe68c;
}
.etrn-vidget {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.etrn-vidget_item {
  padding-left: 30px;
  margin-right: 20px;
  text-transform: uppercase;
  position: relative;
  font-size: 20px;
}
.etrn-vidget_item:before {
  content: '';
  width: 24px;
  height: 24px;
  background: url(../img/icon-ok.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  top: 3px;
  left: 0;
}
/* form */
.form {
  padding: 60px 0;
  background: url(../img/bg-form.jpg) center bottom no-repeat;
  background-size: cover;
}
.form h2 {
  text-transform: uppercase;
}
.form-body {
  border: 1px solid #00468b;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 30px 15px;
  margin: 0px auto;
  position: relative;
}
.form-header {
  text-align: center;
  font-size: 28px;
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 15px;
}
.form-action {
  margin-top: 25px;
}
.form-action h4 {
  font-size: 26px;
  text-align: center;
  font-weight: 700;
  color: #f00;
  margin-bottom: 25px;
}
.form-action-day {
  color: #000;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
}
.form-action-list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.form-action-list p {
  width: 33%;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
  font-size: 17px;
}
.form-action-list p:before {
  content: '';
  width: 18px;
  height: 18px;
  background: url(../img/gift.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  top: 5px;
  left: 0;
}
.podknopka {
  margin: 30px auto 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
}
.podknopka-item {
  display: inline-block;
  padding-left: 30px;
  position: relative;
  margin-left: 15px;
  margin-right: 15px;
  text-transform: uppercase;
}
.podknopka-item:before {
  content: '';
  width: 24px;
  height: 24px;
  background: url(../img/icon-ok.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  top: 0px;
  left: 0;
}
/* route */
.route .h2 {
  margin-top: 60px;
  position: relative;
}
.route-arrow {
  position: absolute;
  right: 0;
  bottom: -130px;
}
.route-video {
  display: block;
  position: relative;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  width: 100%;
  max-width: 576px;
  height: 316px;
}
.route-video .img-fluid {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 60px;
  transition: all 0.4s;
}
.route-video:hover .img-fluid {
  transform: translate(-50%, -50%) scale(1.1);
}
/* video */
.video {
  background-color: #f1f6ff;
}
.video-slider {
  margin: 60px auto;
}
.video-slide {
  padding: 15px;
}
.video-block {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.video-block:before {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  border: 1px solid #fff;
  border-radius: 100%;
  bottom: -20px;
  right: -100px;
  z-index: 0;
  animation: pulse 6s infinite linear;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.6);
}
.video-block:after {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  border: 1px solid #fff;
  border-radius: 100%;
  bottom: -20px;
  right: -100px;
  z-index: 0;
  animation: pulse 6s infinite linear;
  animation-delay: 2s;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.6);
}
.video-text {
  padding: 15px;
  font-size: 15px;
}
.video-text .medium {
  font-size: 20px;
}
.play-btn {
  position: absolute;
  bottom: 110px;
  right: 30px;
  z-index: 2;
  width: 60px;
  height: 60px;
}
.slick-prev {
  width: 60px;
  height: 60px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.06);
  border-radius: 30px;
  background-color: #fff;
  z-index: 1;
}
.slick-prev:before {
  content: '';
  width: 50px;
  height: 50px;
  background: url(../img/next.svg) center no-repeat;
  background-size: 30px 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
}
.slick-next {
  width: 60px;
  height: 60px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.06);
  border-radius: 30px;
  background-color: #fff;
  z-index: 1;
}
.slick-next:before {
  content: '';
  width: 50px;
  height: 50px;
  background: url(../img/next.svg) center no-repeat;
  background-size: 30px 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.slick-dots {
  bottom: -40px;
}
.slick-dots li {
  width: 15px;
  height: 15px;
}
.slick-dots li button {
  width: 15px;
  height: 15px;
  border-color: #00468b;
}
.slick-dots li.slick-active button {
  background-color: #00468b;
}
/* sent */
.sent {
  background-color: #f1f6ff;
}
.sent .h2 {
  margin-bottom: 0;
}
.sent-block {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  flex-wrap: wrap;
}
.sent-item {
  width: 30%;
  text-align: center;
  margin-top: 50px;
}
.sent-item img {
  margin-bottom: 20px;
}
/* sreda */
.sreda-block {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.12);
  padding: 30px 30px 0 50px;
  border-radius: 24px;
}
.sreda-item {
  margin-bottom: 20px;
}
.sreda-item h4 {
  font-size: 20px;
  text-decoration: underline;
}
.sreda .img-fluid {
  transform: translateY(35px);
}
/* izmen */
.izmen-block {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.izmen-item {
  width: 30%;
  min-height: 225px;
  margin-right: 30px;
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s;
}
.izmen-item h4 {
  font-size: 22px;
  font-weight: 500;
}
.izmen-item img {
  min-width: 60px;
}
.izmen-item-last {
  padding: 0;
  padding-top: 20px;
  padding-left: 20px;
  position: relative;
}
.izmen-item-last img {
  position: absolute;
  right: 0;
  bottom: 0;
}
.izmen-item:hover {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
  cursor: default;
}
/* quiz */
h2 {
  font-size: 36px;
  font-weight: 900;
}
.opros {
  padding: 80px 0;
  min-height: 100vh;
}
.opros .podheader {
  color: #656768;
  margin-top: 20px;
}
.quiz {
  background-color: #fff;
  padding: 10px;
  box-shadow: 0px 0px 50px rgba(76, 98, 104, 0.2);
  border-radius: 12px;
  max-width: 1270px;
  margin: 50px auto 0 auto;
  position: relative;
  z-index: 1;
}
.quiz .action {
  padding: 15px;
  font-size: 17px;
}
.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-form .h3 {
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: bold;
}
.quiz-right {
  background-color: #00468b;
  color: #fff;
  padding: 20px;
  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;
  color: #f00;
}
.quiz-right .gift {
  width: 100%;
}
.quiz-phone {
  display: block;
  color: #828899;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 20px;
}
.quiz-steps {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.quiz-steps .h4 {
  font-size: 18px;
  color: #d9d9d9;
  width: 100px;
  margin-bottom: 0;
}
.quiz-buttons {
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: -70px;
}
.quiz .button {
  max-width: 250px;
  height: 70px;
  border-radius: 10px;
  font-size: 15px;
  color: #fff;
  margin: 0;
}
.quiz .button.sendbtn {
  margin: 15px auto 0;
  max-width: 360px;
}
.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: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.tab-body-left {
  width: 60%;
}
.tab-body-right {
  width: 33%;
}
.tab-body .action-list p {
  font-size: 16px;
}
.tab-body h6 {
  font-size: 22px;
}
.tab-body .gifts {
  margin-top: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 15px 15px 5px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  display: block;
}
.tab-body .gift {
  color: #000;
  width: 100%;
  margin: 0 0 10px;
  font-weight: normal;
  position: relative;
  padding-left: 24px;
}
.tab-body .gift:before {
  content: '';
  width: 18px;
  height: 18px;
  background: url(../img/icon-ok.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  top: 5px;
  left: 0;
}
.tab-final .tab-body-left {
  width: 100%;
  text-align: center;
}
.tab-final .tab-body-left .form-action-list {
  text-align: left;
}
.tab-final .tab-body-right {
  margin: 30px auto;
}
.tab-final .gifts {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 0;
  box-shadow: none;
}
.tab-final .gift {
  width: 33%;
  text-align: left;
  font-size: 15px;
}
.tab-final .gift:last-child {
  width: 50%;
}
.quiz-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  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;
  line-height: 1.2;
  padding-left: 75px;
  height: 50px;
  display: flex;
  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 {
  padding: 30px 0;
  background-color: #00468b;
}
.footer p,
.footer a {
  color: #fff;
}
.footer-right {
  text-align: right;
}
/* modal */
.modal-content {
  border: none;
  border-radius: 24px;
}
.modal-body {
  padding: 30px;
  position: relative;
}
.modal .close {
  position: absolute;
  right: 25px;
  top: 10px;
  font-weight: 400;
  font-size: 40px;
}
.modal input[type="text"],
.modal input[type="tel"],
.modal input[type="email"] {
  max-width: 360px;
  margin: 15px auto;
}
.modal .button {
  max-width: 360px;
  margin: 15px auto;
}
/* up */
#up {
  display: block;
  background-color: transparent;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 20px;
  left: 20px;
  opacity: 0;
  transition: all .3s;
  z-index: 1000;
  cursor: pointer;
}
#up.show {
  opacity: 0.5;
}
#up:hover {
  opacity: 1;
}
#up:before {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  background: url(../img/up.svg) center no-repeat;
  background-size: 40px 40px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
/* cookie */
#cookie_notification {
  display: none;
  justify-content: space-between;
  align-items: flex-end;
  position: fixed;
  bottom: 15px;
  left: 50%;
  width: 1000px;
  max-width: 90%;
  transform: translateX(-50%);
  padding: 25px;
  background-color: white;
  border-radius: 4px;
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
}
#cookie_notification p {
  margin: 0;
  font-size: 0.9rem;
  text-align: left;
  color: #000;
}
#cookie_notification a {
  color: #284e92;
}
#cookie_notification .btn {
  font-size: 0.8rem;
}
@media (min-width: 576px) {
  #cookie_notification.show {
    display: flex;
  }
  .cookie_accept {
    margin: 0 0 0 25px;
  }
}
@media (max-width: 575px) {
  #cookie_notification.show {
    display: block;
    text-align: left;
  }
  .cookie_accept {
    margin: 10px 0 0 0;
  }
}
/* media */
@media (min-width: 1360px) {
  .container {
    max-width: 1300px;
  }
}
@media (max-width: 1359px) {
  body {
    font-size: 17px;
  }
  .main-ask {
    font-size: 22px;
  }
  .main-list {
    max-width: 550px;
  }
  .main-list p {
    font-size: 16px;
  }
  .h1 {
    font-size: 54px;
  }
  .form-header {
    font-size: 26px;
  }
  .quiz-label {
    width: 300px;
  }
  .tab-body .gift {
    font-size: 16px;
  }
  .form-action-list p {
    font-size: 15px;
  }
}
@media (max-width: 1199px) {
  body {
    font-size: 16px;
  }
  .logo-text {
    display: none;
  }
  .etrn-text {
    font-size: 18px;
    max-width: 600px;
  }
  .etrn-vidget_item {
    font-size: 16px;
  }
  .etrn-vidget_item:before {
    top: 0;
  }
  .form-action-list p {
    font-size: 16px;
  }
  section {
    padding: 60px 0;
  }
  .h2 {
    font-size: 36px;
  }
  input[type="text"],
  input[type="tel"],
  input[type="email"] {
    margin: 10px auto;
  }
  input[type="submit"],
  .button {
    margin: 10px auto;
  }
  .sreda-item h4 {
    font-size: 18px;
  }
  .sreda-img {
    position: relative;
  }
  .sreda-img .img-fluid {
    position: absolute;
    right: 0;
    bottom: 0;
    transform: translateY(0);
  }
  .izmen-item {
    width: 47%;
    margin: 0 auto 30px;
  }
  .form-action-list p {
    width: 50%;
  }
  .quiz-right h3 {
    font-size: 20px;
  }
  .tab-body {
    flex-wrap: wrap;
  }
  .tab-body-left {
    width: 100%;
  }
  .tab-body-right {
    display: none;
  }
  .tab-final .tab-body-right {
    display: block;
  }
  .quiz-buttons {
    width: 100%;
    transform: translateY(0px);
    margin: 0;
  }
  .quiz-label {
    width: 340px;
  }
  .tab-final .gift {
    width: 49%;
  }
  .tab-final .gift:last-child {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .etrn {
    padding: 100px 0 40px;
  }
  .etrn-top {
    font-size: 18px;
  }
  .header-address {
    display: none;
  }
  h1,
  .h1 {
    font-size: 35px;
  }
  .etrn-h1 {
    font-size: 20px;
  }
  .etrn-vidget {
    display: block;
  }
  .etrn-vidget_item {
    width: 100%;
    margin-bottom: 15px;
  }
  h2,
  .h2 {
    font-size: 30px;
  }
  .review {
    background: none;
  }
  .slide-body {
    max-width: 100%;
    padding: 30px 15px;
    box-shadow: none;
    border: 1px solid #E9EEF5EE;
  }
  .footer {
    font-size: 15px;
  }
  .main .tab-pane .main-tab p {
    font-size: 14px;
  }
  .h4,
  h4 {
    font-size: 19px;
  }
  .form-action-list {
    max-width: 400px;
    margin: 0 auto 30px;
  }
  .form-action-list p {
    width: 100%;
  }
  .form-action-list p:last-child {
    width: 100%;
  }
  .podknopka {
    max-width: 360px;
    flex-direction: column;
    align-items: flex-start;
  }
  .podknopka-item {
    margin-bottom: 15px;
  }
  .route .h2 {
    margin-top: 0;
    margin-bottom: 30px;
  }
  .route-arrow {
    display: none;
  }
  .sreda-img .img-fluid {
    position: relative;
    max-width: 360px;
  }
  .quiz-body.w100 {
    font-size: 17px;
  }
  .tab-two .quiz-label {
    width: 45%;
  }
}
@media (max-width: 767px) {
  .logo img {
    max-width: 150px;
    margin-right: 12px;
  }
  .etrn-top {
    font-size: 17px;
    margin-bottom: 20px;
  }
  .h1 {
    font-size: 36px;
  }
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 1.6rem;
  }
  .h3,
  h3 {
    font-size: 21px;
  }
  .h4,
  h4 {
    font-size: 1.2rem;
  }
  .form {
    padding: 0;
  }
  .form-body {
    padding: 20px 15px;
  }
  .form-header {
    font-size: 22px;
  }
  .form-action h4 {
    font-size: 20px;
  }
  .form-action-day {
    font-size: 16px;
  }
  .h2 {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .sreda {
    padding-bottom: 0;
  }
  .sreda-block {
    padding: 0;
    box-shadow: none;
  }
  .sreda-img .img-fluid {
    max-width: 100%;
  }
  .route-video {
    height: 220px;
  }
  .sent-item {
    width: 50%;
  }
  .sent-item p {
    font-size: 15px;
    line-height: 1.2;
  }
  .sent-item img {
    max-width: 60px;
  }
  .izmen-item {
    width: 100%;
  }
  .izmen-item-last {
    display: none;
  }
  .slick-next,
  .slick-prev {
    display: none;
  }
  .footer {
    text-align: center;
  }
  .footer-right {
    text-align: center;
    margin-top: 15px;
  }
  .opros {
    padding: 50px 0;
  }
  .opros .podheader {
    font-size: 14px;
  }
  .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-block {
    padding: 20px 10px;
  }
  .quiz-body.w100 {
    font-size: 16px;
  }
  .quiz-item {
    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 {
    flex-direction: column-reverse;
    margin-top: 0;
  }
  .quiz .button {
    margin-bottom: 20px;
  }
  .quiz-form .h3 {
    font-size: 18px;
  }
  .quiz-body.w100 .h3 {
    font-size: 24px;
  }
  .quiz .form-action {
    margin-top: 0;
  }
  .tab-final .gift {
    width: 100%;
  }
  .podknopka-item {
    margin-left: 0;
    margin-right: 0;
  }
}
