@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2"), url("../fonts/Inter-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2"), url("../fonts/Inter-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
input,
select,
textarea,
button {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
div {
  display: block;
  /* width: 100%; */
  height: auto;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

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

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-value {
  background: none;
  color: #003159;
}

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

input::-webkit-input-placeholder {
  opacity: 1;
  color: inherit;
}

input::-moz-placeholder {
  opacity: 1;
  color: inherit;
}

input:-ms-input-placeholder {
  opacity: 1;
  color: inherit;
}

input::-ms-input-placeholder {
  opacity: 1;
  color: inherit;
}

input::placeholder {
  opacity: 1;
  color: inherit;
}

input:-ms-input-placeholder {
  color: #003159 !important;
}

textarea {
  overflow: auto;
}

input,
button,
textarea,
select,
a,
option {
  font: inherit;
  outline: none;
  margin: 0;
  padding: 0;
  text-decoration: none;
  color: inherit;
  background-color: transparent;
}

img {
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

*:focus-visible {
  outline: none;
}

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

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  width: 100%;
}

label.error {
  display: none !important;
}

body {
  width: 100%;
  height: auto;
  font-size: 15px;
  font-family: "Inter", sans-serif;
  line-height: 1.3;
  font-weight: 400;
  color: #111;
  background-color: #fff;
}

.visually-hidden {
  position: absolute;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
}

.site__wrapper {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  margin: auto;
}

@-webkit-keyframes show {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes show {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.container {
  width: 1000px;
  height: 100%;
  margin: 0 auto;
  position: relative;
}

.main {
  width: 100%;
  height: auto;
}

.footer__modal {
  width: 100%;
  max-width: 900px;
  display: none;
  color: #222;
}

.footer__modal h2 {
  font-size: 30px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.footer__modal h6 {
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.footer__modal p {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 20px;
}

@media (max-width: 540px) {
  .footer__modal h2 {
    font-size: 6vw;
  }

  .footer__modal h6 {
    font-size: 5vw;
  }

  .footer__modal p {
    font-size: 4vw;
  }
}

.modal__review {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.modal__review input:-ms-input-placeholder {
  color: #444 !important;
}

.modal__review.active {
  opacity: 1;
  visibility: visible;
  z-index: 10000;
}

.modal__review-wrapper {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 500px;
  height: auto;
  padding: 50px;
  background: #ffe;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
  border-radius: 6px;
}

.modal__review form {
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.modal__review form.active {
  opacity: 1;
  visibility: visible;
}

.name__input {
  background: rgba(255, 255, 255, 0.5);
  width: 100%;
  height: 50px;
  border: 1px solid #888888;
  box-sizing: border-box;
  border-radius: 4px;
  font-family: inherit;
  font-weight: normal;
  font-size: 18px;
  line-height: 50px;
  color: #444444;
  padding: 0 20px;
  background-color: transparent;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.name__input::-webkit-input-placeholder {
  font-family: inherit;
  font-weight: normal;
  font-size: 18px;
  line-height: 50px;
  color: #444;
}

.name__input::-moz-placeholder {
  font-family: inherit;
  font-weight: normal;
  font-size: 18px;
  line-height: 50px;
  color: #444;
}

.name__input:-ms-input-placeholder {
  font-family: inherit;
  font-weight: normal;
  font-size: 18px;
  line-height: 50px;
  color: #444;
}

.name__input::-ms-input-placeholder {
  font-family: inherit;
  font-weight: normal;
  font-size: 18px;
  line-height: 50px;
  color: #444;
}

.name__input::placeholder {
  font-family: inherit;
  font-weight: normal;
  font-size: 18px;
  line-height: 50px;
  color: #444;
}

.input__file {
  display: none;
}

.file {
  width: auto;
  height: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  cursor: pointer;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  margin: 20px 0;
}

.file span {
  font-size: 16px;
  line-height: 1.3;
  color: #222;
}

.file div {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background-color: transparent;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  margin-right: 15px;
  border: 1px solid #888888;
  position: relative;
  overflow: hidden;
}

.file div img {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 100;
}

.file div:before {
  content: "";
  position: absolute;
  width: 14px;
  height: 2px;
  background: #5B67C8;
  border-radius: 5px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.file div:after {
  content: "";
  position: absolute;
  width: 14px;
  height: 2px;
  background: #5B67C8;
  border-radius: 5px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  -ms-transform: translate(-50%, -50%) rotate(90deg);
  -o-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}

.modal__star-raiting {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  width: 100%;
  height: 50px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-family: inherit;
  font-weight: normal;
  font-size: 16px;
  line-height: 1.3;
  color: #222222;
  position: relative;
  z-index: 10000;
  margin: 10px 0;
}

.modal__raiting {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  min-width: 98px;
  height: 18px;
  font-size: 0px;
  margin-left: 23px;
}

.modal__raiting img {
  pointer-events: auto;
}

.modal__raiting img {
  width: 18px;
  height: 18px;
}

.modal__area {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  height: 98px;
  max-height: 118px;
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid #888888;
  box-sizing: border-box;
  border-radius: 4px;
  font-family: inherit;
  font-weight: normal;
  font-size: 18px;
  line-height: 1.3;
  color: #444444;
  padding: 13px 20px;
  background-color: transparent;
}

.modal__area::-webkit-input-placeholder {
  font-family: inherit;
  font-weight: normal;
  font-size: 18px;
  line-height: 130%;
  color: #444444;
}

.modal__area::-moz-placeholder {
  font-family: inherit;
  font-weight: normal;
  font-size: 18px;
  line-height: 130%;
  color: #444444;
}

.modal__area:-ms-input-placeholder {
  font-family: inherit;
  font-weight: normal;
  font-size: 18px;
  line-height: 130%;
  color: #444444;
}

.modal__area::-ms-input-placeholder {
  font-family: inherit;
  font-weight: normal;
  font-size: 18px;
  line-height: 130%;
  color: #444444;
}

.modal__area::placeholder {
  font-family: inherit;
  font-weight: normal;
  font-size: 18px;
  line-height: 130%;
  color: #444444;
}

.send {
  width: 100%;
  max-width: 250px;
  height: 50px;
  background: #5B67C8;
  border-radius: 4px;
  font-family: inherit;
  font-weight: normal;
  font-size: 18px;
  line-height: 1.3;
  text-align: center;
  color: #FFFFFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.send:hover {
  background: #4353cf;
}

.send__img img {
  margin: auto;
}

.send__window {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
}

.send__window.active {
  opacity: 1;
  visibility: visible;
}

.send__massage {
  width: 60%;
  font-weight: normal;
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  color: #222222;
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  z-index: 1000;
}

.modal__close img {
  width: 18px;
}

@media (max-width: 540px) {
  .modal__review-wrapper {
    max-width: calc(100% - 30px);
    padding: 50px 30px;
  }
}

.size-table-wrapper {
  position: relative;
  width: 100%;
  background-color: #1a2e80;
  padding: 25px;
  max-width: 690px;
  margin: 0 auto;
  color: #fff;
  display: none;
}

.size-table-wrapper h3 {
  text-align: center;
  margin: 0 0 20px;
  font-size: 24px;
}

.size-table-wrapper table {
  margin-bottom: 30px;
}

.size-table-wrapper table:last-child {
  margin-bottom: 0;
}

.size-table {
  border-collapse: collapse;
  width: 100%;
  font-size: 15px;
  text-align: center;
}

.size-table tbody tr:nth-of-type(even) td {
  background-color: #162a7c;
}

.size-table tbody td:first-child {
  width: 25.5%;
  padding-left: 0;
  /*border-right: 1px solid #fff;*/
  text-align: left;
}

.size-table thead th:nth-child(2) {
  border-left: 1px solid #fff;
}

.size-table tbody td {
  width: 15%;
  padding: 8px 8px 8px;
}

.size-table thead th {
  padding: 8px 10px;
  border-bottom: 1px solid #fff;
  /*color: #000;*/
}

.modal__result {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 100;
}

.modal__block {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 80px 30px 30px;
}

.modal__result-title {
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.3;
  text-align: center;
  color: #333;
}

.modal__result-text {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  text-align: center;
  color: #333;
  margin-bottom: 25px;
}

.discount__modal {
  position: absolute;
  top: -65px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.header__section {
  background-color: #191919;
}

.header__section-wrapper {
  padding-bottom: 112px;
}

.header__logo {
  width: 100%;
  height: auto;
  border-radius: 0 0 10px 10px;
  margin-bottom: 28px;
}

.header__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  border-bottom: 2px solid #444;
  padding-bottom: 20px;
  position: relative;
  margin-bottom: 39px;
}

.header__nav-link {
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  margin: 0 25px;
}

.header__nav-link:hover {
  text-decoration: underline;
}

.header__order {
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  color: #111;
  display: inline-block;
  padding: 8px 15px;
  border-radius: 6px;
  background: #fed356;
  position: absolute;
  top: -8px;
  right: 0;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.header__order:hover {
  background: #fff;
}

.header__title {
  font-weight: 400;
  font-size: 36px;
  line-height: 1.3;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 9px;
}

.header__subtitle {
  font-weight: 400;
  font-size: 36px;
  line-height: 1.3;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}

.bold {
  font-weight: 600;
}

.yellow {
  color: #fed356;
  font-weight: 600;
}

.header__date {
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  text-align: right;
  color: #fff;
  padding-right: 20px;
}

@media (max-width: 1080px) {
  .container {
    width: 700px;
  }
}

@media (max-width: 700px) {
  .container {
    width: 100%;
    padding: 0 15px;
  }

  .header__order {
    position: static;
  }

  .header__nav {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }

  .header__nav-link {
    margin: 0;
  }
}

@media (max-width: 540px) {
  .header__logo {
    margin-bottom: 3.5vw;
  }

  .header__nav-link {
    font-size: 4.8vw;
  }

  .header__order {
    font-size: 4.8vw;
    padding: 2vw 3vw;
    border-radius: 1.4vw;
  }

  .header__nav {
    padding-bottom: 3.5vw;
    margin-bottom: 6vw;
  }

  .header__title {
    font-size: 7vw;
    margin-bottom: 3vw;
  }

  .header__subtitle {
    font-size: 7vw;
    margin-bottom: 2vw;
  }

  .header__date {
    font-size: 4.5vw;
    padding-right: 0;
  }

  .header__section-wrapper {
    padding-bottom: 30vw;
  }
}

.info__img {
  width: 100%;
  border-radius: 10px;
  margin: 42px 0;
}

.info__img-1 {
  margin-top: -100px;
}

.info__text {
  font-size: 20px;
  line-height: 1.5;
  text-transform: uppercase;
  color: #222;
  margin-bottom: 15px;
}

.red {
  color: #f00;
}

@media (max-width: 540px) {
  .info__img-1 {
    margin-top: -26vw !important;
  }

  .info__img {
    margin: 5vw 0;
  }

  .info__text {
    font-size: 4.5vw;
    margin-bottom: 3.5vw;
  }
}

.question {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  text-transform: uppercase;
  color: #222;
  margin-bottom: 22px;
}

.answer {
  border-top: 2px solid #fed356;
  border-bottom: 2px solid #fed356;
  padding: 22px 0;
  margin-bottom: 23px;
}

.answer__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.answer__quote {
  width: 26px;
  height: auto;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  margin-right: 20px;
  margin-top: 5px;
}

.answer__text {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #222;
}

.answer__img {
  width: auto;
  height: auto;
  margin: auto;
  max-width: 100%;
  margin-top: 20px;
  border-radius: 10px;
}

.answer__imgs {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.answer__imgs img {
  display: inline-block;
  margin-left: 0;
  margin-right: 20px;
}

.answer__imgs img:last-child {
  margin-right: 0;
}

.mb__15 {
  margin-bottom: 15px;
}

.mt__23 {
  margin-top: 23px;
}

.answer__list {
  margin-bottom: 17px;
}

.answer__list-item {
  position: relative;
  padding-left: 17px;
  margin-bottom: 4px;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  text-transform: uppercase;
  color: #222;
}

.answer__list-item:before {
  content: "";
  width: 3px;
  height: calc(100% - 10px);
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #e3b83b;
}

.answer__list-item:last-child {
  margin-bottom: 0;
}

@media (max-width: 1080px) {
  .answer__imgs img {
    width: 45%;
  }
}

@media (max-width: 540px) {
  .question {
    font-size: 4.5vw;
    margin-bottom: 3.5vw;
  }

  .answer {
    padding: 4.8vw 0;
    margin-bottom: 3.5vw;
  }

  .answer__text {
    font-size: 4.5vw;
  }

  .answer__img {
    margin-top: 3.5vw;
  }

  .answer__imgs {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

  .answer__imgs img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 2vw;
  }

  .answer__imgs img:last-child {
    margin-bottom: 0;
  }

  .mt__23 {
    margin-top: 3.5vw;
  }

  .answer__list-item {
    padding-left: 4vw;
    margin-bottom: 1vw;
    font-size: 4.5vw;
  }

  .answer__list {
    margin-bottom: 4vw;
  }

  .mb__15 {
    margin-bottom: 4vw;
  }
}

.bar__block {
  padding: 70px 0 22px;
  border-bottom: 2px solid #fed356;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.bar__title {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
  color: #222;
  width: 100%;
  max-width: 776px;
  margin-bottom: 14px;
}

.bar__subtitle {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  color: #222;
  margin-bottom: 20px;
}

.bar__wrapper {
  width: 502px;
  height: auto;
  position: relative;
}

.bar {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.bar img {
  width: 100%;
  height: auto;
}

.start {
  width: 130px;
  height: 130px;
  border-radius: 100%;
  background-color: #ff3d00;
  border: 10px solid #9d0e26;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  font-weight: 600;
  font-size: 24px;
  line-height: 1;
  text-align: center;
  color: #fff;
}

.start:hover {
  background-color: #9d0e26;
}

.start:before {
  content: "";
  width: 36px;
  height: 33px;
  background-image: url(../img/tringle.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: -34px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.bar__info {
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  text-align: center;
  color: #222;
}

.card__block {
  padding: 64px 0 22px;
  border-bottom: 2px solid #fed356;
  display: none;
}

.card__title {
  font-weight: 600;
  font-size: 40px;
  text-transform: uppercase;
  text-align: center;
  color: #ff3d00;
  margin-bottom: 5px;
}

.card__subtitle {
  font-weight: 600;
  font-size: 24px;
  text-transform: uppercase;
  text-align: center;
  color: #ff5c00;
  margin-bottom: 11px;
}

.card__info {
  font-weight: 600;
  font-size: 24px;
  text-transform: uppercase;
  text-align: center;
  color: #222;
  margin-bottom: 14px;
}

.card__info-small {
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  text-align: center;
  color: #222;
  margin-bottom: 42px;
}

.card {
  width: 100%;
  height: auto;
  background-color: #fbe2b9;
  border-radius: 10px;
  padding: 43px 40px 50px;
  margin-bottom: 23px;
}

.card__content {
  width: 380px;
  height: auto;
  margin-left: auto;
  position: relative;
}

.card__content-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
  text-transform: uppercase;
  color: #222;
  margin-bottom: 13px;
}

.card__price {
  margin-bottom: 13px;
}

.price {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: flex !important;
  -webkit-box-pack: start !important;
  -webkit-justify-content: flex-start !important;
  justify-content: flex-start !important;
  -webkit-box-align: center !important;
  -webkit-align-items: center !important;
  align-items: center !important;
}

.old__price {
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  color: #222;
  position: relative;
  padding: 0 10px;
  margin-right: 15px;
  max-width: inherit;
}

.old__price:before {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  background: #f00;
  -webkit-transform: translate(-50%, -50%) rotate(-3deg);
  -ms-transform: translate(-50%, -50%) rotate(-3deg);
  -o-transform: translate(-50%, -50%) rotate(-3deg);
  transform: translate(-50%, -50%) rotate(-3deg);
}

.new__price {
  font-weight: 600;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
  color: #222;
  margin-right: 15px;
}

.card__discount {
  width: auto;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  padding: 6px 7px;
  background: #ff3d00;
  border-radius: 6px;
}

.card__content-info {
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  color: #222;
  margin-bottom: 15px;
}

.card__content-info span {
  margin-right: 0;
  font-size: 20px;
}

.card__timer {
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  color: #222;
  margin-bottom: 22px;
}

.card__form {
  width: 100%;
  max-width: 350px;
  height: auto;
}

.input__wrapper {
  position: relative;
  margin-bottom: 10px;
}

.input__wrapper:last-of-type {
  margin-bottom: 20px;
}

.input__wrapper:before {
  content: "";
  width: 60px;
  height: 60px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px 0 0 10px;
  background-color: #ffcc78;
  pointer-events: none;
  background-image: url(../img/name.png);
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid #ff9e00;
  border-right: none;
}

.input__tel:before {
  background-image: url(../img/phone.png);
}

.card__input {
  width: 100%;
  height: 60px;
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  color: #111;
  padding: 0 20px 0 80px;
  border: 1px solid #ff9e00;
  border-radius: 10px;
  max-width: inherit;
}

.card__submit {
  width: 100%;
  height: 60px;
  border-radius: 10px;
  background: #ff3d00;
  font-weight: 600;
  font-size: 24px;
  line-height: 1;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  max-width: inherit;
}

.card__submit:hover {
  background: #b42a00;
}

.card__decor {
  width: auto;
  position: absolute;
  top: 50%;
  left: -380px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.card__prod {
  width: 219px;
  height: auto;
  position: relative;
  z-index: 3;
}

.card__prod-1,
.card__prod-2 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(0deg) scale(0.8);
  -ms-transform: translate(-50%, -50%) rotate(0deg) scale(0.8);
  -o-transform: translate(-50%, -50%) rotate(0deg) scale(0.8);
  transform: translate(-50%, -50%) rotate(0deg) scale(0.8);
  -webkit-filter: blur(3px);
  filter: blur(3px);
  -webkit-transition: 1s ease;
  -o-transition: 1s ease;
  transition: 1s ease;
  opacity: 0;
}

.card__prod-1.active {
  -webkit-transform: translate(-98%, -50%) rotate(-15deg) scale(0.8);
  -ms-transform: translate(-98%, -50%) rotate(-15deg) scale(0.8);
  -o-transform: translate(-98%, -50%) rotate(-15deg) scale(0.8);
  transform: translate(-98%, -50%) rotate(-15deg) scale(0.8);
  opacity: 1;
}

.card__prod-2.active {
  -webkit-transform: translate(-3%, -50%) rotate(15deg) scale(0.8);
  -ms-transform: translate(-3%, -50%) rotate(15deg) scale(0.8);
  -o-transform: translate(-3%, -50%) rotate(15deg) scale(0.8);
  transform: translate(-3%, -50%) rotate(15deg) scale(0.8);
  opacity: 1;
}

.card__bottom {
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  text-align: center;
  color: #222;
}

.super-rotation {
  -webkit-animation-name: super-rotation;
  animation-name: super-rotation;
  -webkit-animation-duration: 7s;
  animation-duration: 7s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}

@-webkit-keyframes super-rotation {
  70% {
    -webkit-transform: rotate(2000deg);
    transform: rotate(2000deg);
  }

  100% {
    -webkit-transform: rotate(1977deg);
    transform: rotate(1977deg);
  }
}

@keyframes super-rotation {
  70% {
    -webkit-transform: rotate(2000deg);
    -o-transform: rotate(2000deg);
    transform: rotate(2000deg);
  }

  100% {
    -webkit-transform: rotate(1977deg);
    -o-transform: rotate(1977deg);
    transform: rotate(1977deg);
  }
}

@media (max-width: 1080px) {
  .card__content {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

  .card__decor {
    position: relative;
    top: auto;
    left: auto;
    -webkit-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    width: auto;
    margin: auto;
    margin-bottom: 30px;
  }

  .card__content-title {
    text-align: center;
  }

  .price {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }

  .card__content-info {
    text-align: center;
  }

  .card__timer {
    text-align: center;
  }
}

@media (max-width: 540px) {
  .bar__block {
    padding: 6.8vw 0 3vw;
  }

  .bar__title {
    font-size: 5.5vw;
    margin-bottom: 3vw;
  }

  .bar__subtitle {
    font-size: 4.8vw;
    margin-bottom: 4.8vw;
  }

  .bar__wrapper {
    width: 100%;
  }

  .bar {
    margin-bottom: 3vw;
  }

  .start {
    width: 28vw;
    height: 28vw;
    font-size: 5.8vw;
  }

  .start:before {
    width: 8.8vw;
    height: 7vw;
    top: -7vw;
  }

  .bar__info {
    font-size: 4.5vw;
  }

  .card__block {
    padding: 5vw 0;
  }

  .card__title {
    font-size: 9.8vw;
    margin-bottom: 0;
  }

  .card__subtitle {
    font-size: 5.6vw;
    margin-bottom: 1.4vw;
  }

  .card__info {
    font-size: 5.8vw;
    margin-bottom: 2vw;
  }

  .card__info-small {
    font-size: 4.8vw;
    margin-bottom: 5vw;
  }

  .card {
    padding: 5.5vw 4.8vw 7vw;
    margin-bottom: 5vw;
  }

  .card__content-title {
    font-size: 5.8vw;
    margin-bottom: 3vw;
    padding: 0 8vw;
  }

  .card__price {
    margin-bottom: 4vw;
  }

  .old__price {
    font-size: 4.8vw;
    padding: 0 2vw;
    margin-right: 3.5vw;
  }

  .new__price {
    font-size: 5.8vw;
    margin-right: 3.5vw;
  }

  .card__discount {
    font-size: 4.5vw;
    padding: 1.5vw 1.8vw;
    border-radius: 1.2vw;
  }

  .card__content-info {
    font-size: 4.8vw;
    margin-bottom: 2vw;
  }

  .card__timer {
    font-size: 4.8vw;
    margin-bottom: 5vw;
  }

  .card__prod {
    width: 36vw;
  }

  .card__prod-1,
  .card__prod-2 {
    width: 36vw;
  }

  .card__bottom {
    font-size: 4.4vw;
  }

  .card__bottom br {
    display: none;
  }
}

.review__section-wrapper {
  padding: 64px 0 30px;
}

.review__section-title {
  font-weight: 600;
  font-size: 40px;
  line-height: 1.5;
  text-transform: uppercase;
  text-align: center;
  color: #222;
  margin-bottom: 35px;
}

.review {
  margin-bottom: 50px;
}

.review__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 15px;
}

.review__photo {
  width: 38px;
  height: auto;
  border-radius: 6px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  margin-right: 15px;
}

.review__name {
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  color: #222;
  width: 100%;
}

.review__date {
  width: auto;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  text-align: right;
  color: #444;
}

.review__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  text-transform: uppercase;
  color: #222;
}

.review__img {
  width: auto;
  height: auto;
  margin-top: 15px;
  border-radius: 10px;
  max-width: 100%;
}

@media (max-width: 540px) {
  .review__section-wrapper {
    padding: 8vw 0 2vw;
  }

  .review__section-title {
    font-size: 8vw;
    margin-bottom: 8vw;
  }

  .review {
    margin-bottom: 9.8vw;
  }

  .review__photo {
    margin-right: 3vw;
  }

  .review__name {
    font-size: 4.8vw;
  }

  .review__date {
    font-size: 3.8vw;
  }

  .review__header {
    margin-bottom: 4vw;
  }

  .review__text {
    font-size: 4.5vw;
  }

  .review__img {
    margin-top: 3.5vw;
  }
}

.footer__section-wrapper {
  border-radius: 10px 10px 0 0;
  background: #191919;
  padding: 40px 40px 24px;
}

.footer__title {
  font-weight: 600;
  font-size: 24px;
  text-transform: uppercase;
  text-align: center;
  color: #fed356;
  margin-bottom: 31px;
}

.footer__text {
  width: 100%;
  max-width: 750px;
  height: auto;
  margin: auto;
  margin-bottom: 41px;
  font-weight: 400;
  font-size: 24px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}

.footer__order {
  width: 100%;
  max-width: 350px;
  display: block;
  height: auto;
  text-align: center;
  font-weight: 600;
  font-size: 24px;
  line-height: 1;
  color: #111;
  padding: 18px;
  border-radius: 10px;
  background: #fed356;
  margin: auto;
  margin-bottom: 44px;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.footer__order:hover {
  background: #ffc515;
}

.footer__copyright {
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: #b3b3b3;
}

@media (max-width: 540px) {
  .footer__section-wrapper {
    padding: 5.5vw 4.8vw 3.5vw;
  }

  .footer__title {
    font-size: 4.8vw;
    margin-bottom: 3vw;
  }

  .footer__text {
    margin-bottom: 5vw;
    font-size: 4.8vw;
  }

  .footer__order {
    font-size: 5.5vw;
    padding: 4.5vw;
    margin-bottom: 10vw;
  }

  .footer__copyright {
    font-size: 4vw;
  }
}