@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-Medium.woff2") format("woff2"), url("../fonts/Inter-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.woff2") format("woff2"), url("../fonts/Inter-Bold.woff") format("woff");
  font-weight: 700;
  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: #fff;
}

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: #fff !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;
}

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: #fff;
  background: #0E233E;
}

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

.site__wrapper {
  width: 100%;
  margin: auto;
  max-width: 1920px;
  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;
}

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

@keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.container {
  width: 1140px;
  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;
}

.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: #E5F2FA;
  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 0;
}

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

.file div {
  width: 60px;
  height: 40px;
  border-radius: 4px;
  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: 58px;
  height: auto;
  border-radius: 4px;
  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-wrapper {
  position: relative;
}

.header__bg {
  position: absolute;
  top: 0;
  left: -390px;
  height: 100%;
  width: auto;
}

.header__content {
  position: relative;
  z-index: 1;
  width: 570px;
  height: auto;
  padding: 130px 0;
}

.header__logo {
  width: 100%;
  height: auto;
  margin-bottom: 39px;
}

.header__title {
  color: #153762;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.header__block {
  width: 410px;
  height: auto;
  padding: 19px 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  border-radius: 10px;
  border: 2px solid #34A6E8;
  background: rgba(14, 35, 62, 0.8);
  margin-left: -30px;
}

.header__price {
  width: auto;
}

.price {
  width: 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-align: center;
  -webkit-align-items: center;
          align-items: center;
}

.old__price {
  color: #FFF;
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  position: relative;
  padding: 0 15px;
  margin-bottom: 10px;
}
.old__price:before {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  background: #F00;
  -webkit-transform: translate(-50%, -50%) rotate(-2deg);
      -ms-transform: translate(-50%, -50%) rotate(-2deg);
       -o-transform: translate(-50%, -50%) rotate(-2deg);
          transform: translate(-50%, -50%) rotate(-2deg);
}

.new__price {
  color: #FFC700;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

.header__discount {
  width: auto;
  color: #FFF;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  padding: 10px 18px;
  border-radius: 10px;
  background: #4DB21D;
}
.header__discount span {
  display: inline-block;
}

.order__btn {
  width: 100%;
  height: auto;
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 100%;
  text-transform: uppercase;
  padding: 20px;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  background-color: #4DB21D;
  margin-top: 25px;
  border-radius: 10px;
}
.order__btn:hover {
  background-color: #4ED80D;
}

.header__date {
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  margin-top: 13px;
}
.header__date span {
  color: #FFC700;
  font-weight: 700;
}

.header__info-wrapper {
  width: 410px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  margin-left: -30px;
  margin-top: 28px;
}

.header__info {
  width: 46.4%;
  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-align: center;
  -webkit-align-items: center;
          align-items: center;
  border-radius: 10px;
  border: 2px solid #34A6E8;
  background: rgba(14, 35, 62, 0.8);
  padding: 20px 31px 15px;
}
.header__info img {
  height: 40px;
  width: auto;
  margin-bottom: 6px;
}

.header__info-text {
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}

.header__decor {
  width: 100%;
}

.header__decor-img {
  position: absolute;
}

.header__decor-1 {
  height: 100%;
  width: auto;
  top: 0;
  right: -960px;
}

.header__decor-2 {
  height: calc(100% - 100px);
  width: auto;
  top: 50px;
  right: -580px;
}

.header__boot {
  position: absolute;
  width: 770px;
  height: auto;
  bottom: -25px;
  right: -440px;
}

.advantage__section-wrapper {
  padding: 89px 0 94px;
  position: relative;
}

.advantage__section-title {
  color: #1987C7;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 90px;
}

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

.advantage {
  width: 28.1%;
  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-align: center;
  -webkit-align-items: center;
          align-items: center;
}

.advantage__icon {
  width: auto;
  height: 64px;
  margin-bottom: 15px;
}

.advantage__title {
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 31px;
  position: relative;
}
.advantage__title:before {
  content: "";
  width: 44px;
  height: 2px;
  position: absolute;
  bottom: -16px;
  left: 50%;
  background: #FFC700;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
}

.advantage__text {
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
}

.advantage__decor {
  position: absolute;
}

.advantage__decor-1 {
  width: 278px;
  height: auto;
  -webkit-transform: rotate(30deg);
      -ms-transform: rotate(30deg);
       -o-transform: rotate(30deg);
          transform: rotate(30deg);
  top: 90px;
  left: -300px;
}

.advantage__decor-2 {
  width: 264px;
  height: auto;
  -webkit-transform: rotate(-15deg);
      -ms-transform: rotate(-15deg);
       -o-transform: rotate(-15deg);
          transform: rotate(-15deg);
  bottom: 60px;
  right: -300px;
}

.info__section-wrapper {
  position: relative;
  padding: 167px 0 47px;
}

.info__decor {
  position: absolute;
  height: 100%;
  width: auto;
  max-width: 960px;
  top: 0;
  z-index: -1;
}

.info__decor-1 {
  left: -390px;
}

.info__decor-2 {
  right: -390px;
}

.info__logo {
  width: 275px;
  height: auto;
  margin: auto;
  margin-bottom: 14px;
}

.info__title {
  color: #FFF;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
}

.info__block {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
          align-items: flex-end;
}

.info__left {
  width: 360px;
  height: auto;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
}
.info__left .order__btn {
  display: inline-block;
}

.info__price {
  width: auto;
}
.info__price .price {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: inline-flex;
}

.info__right {
  width: 360px;
  height: auto;
  margin-bottom: 33px;
}
.info__right a {
  width: 100%;
  height: auto;
  border-radius: 10px;
  background-color: #C90C0C;
  padding: 20px;
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
.info__right a:hover {
  background-color: #FF0000;
}
.info__right img {
  position: absolute;
  width: auto;
  height: 80px;
  top: 50%;
  left: -83px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}

.info__center {
  width: 420px;
  height: 420px;
  margin: auto;
  margin-top: -57px;
  margin-bottom: -60px;
  border-radius: 100%;
  border: 2px solid #fff;
  position: relative;
  box-sizing: border-box;
}
.info__center:before {
  content: "";
  width: calc(50% + 2px);
  height: calc(100% + 4px);
  position: absolute;
  top: -2px;
  right: -2px;
  border-top-right-radius: 210px;
  border-bottom-right-radius: 210px;
  border: 2px solid #1987C7;
  box-sizing: border-box;
  border-left: none;
}

.info__line {
  position: absolute;
  width: 264px;
  height: 2px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}

.info__line-1 {
  background-color: #fff;
  left: -264px;
}

.info__line-2 {
  background-color: #1987C7;
  right: -264px;
}

.info__boot-center {
  position: absolute;
  top: 50%;
  left: 45%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 670px;
  height: auto;
}

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

.info__boot-right {
  position: absolute;
  top: 50%;
  right: -390px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 303px;
}

.info__discount {
  color: #0A1E3D;
  font-size: 120px;
  font-weight: 700;
  text-transform: uppercase;
  position: absolute;
  top: -78px;
  right: -360px;
}
.info__discount span {
  display: inline-block;
}

.galary__section {
  background-image: url(../img/galary-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.galary__section-wrapper {
  position: relative;
  padding: 89px 0 100px;
  z-index: 1;
}

.galary__decor {
  position: absolute;
  top: 0;
  width: auto;
  height: 100%;
  left: 132px;
  z-index: -1;
}

.galary__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  margin-bottom: 40px;
}

.galary__title {
  color: #00A1FF;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  width: 48%;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
}

.galary__text {
  width: 49%;
  color: #FFF;
  font-size: 20px;
  line-height: 1.5;
}

.galary {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}
.galary img {
  width: 360px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.25);
}

.card__section-wrapper {
  padding: 100px 0;
}

.card__header {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  margin-bottom: 100px;
}

.card__header-info {
  width: auto;
  color: #FFF;
  font-size: 30px;
  font-weight: 500;
  border-radius: 10px 0px 0px 10px;
  background: #1987C7;
  padding: 12px 30px 11px;
}

.card__header-discount {
  width: auto;
  border-radius: 0px 10px 10px 0px;
  padding: 12px 30px 11px;
  background: #4DB21D;
  color: #FFF;
  font-size: 30px;
  font-weight: 700;
  position: relative;
}
.card__header-discount:before {
  content: "";
  width: 50px;
  height: 50px;
  background-image: url(../img/discount-icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  left: -20px;
  bottom: -40px;
}
.card__header-discount:after {
  content: "";
  width: 60px;
  height: 60px;
  background-image: url(../img/discount-icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  -webkit-transform: rotate(-75deg);
      -ms-transform: rotate(-75deg);
       -o-transform: rotate(-75deg);
          transform: rotate(-75deg);
  -webkit-filter: blur(2.5px);
          filter: blur(2.5px);
  right: -37px;
  top: -25px;
}

.card {
  border-radius: 10px;
  background: #0E4BA4;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.25);
  padding-left: 100px;
  padding-right: 46px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  margin-bottom: 80px;
  position: relative;
}

.card__2 .card__left-block {
  background-image: url(../img/card-bg-2.jpg);
}
.card__2 .card__boot {
  margin-bottom: 10px;
  margin-top: 30px;
}

.card__3 {
  margin-bottom: 50px;
}
.card__3 .card__logo {
  width: 155px;
  height: auto;
}
.card__3 .card__left-block {
  background: #0B397C;
}
.card__3 .card__boot {
  margin-left: 30px;
  margin-bottom: -10px;
  margin-top: 20px;
}
.card__3 .card__right {
  padding: 42px 0 60px;
}

.card__left {
  width: 456px;
  height: auto;
}

.card__left-block {
  position: relative;
  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;
  padding-top: 90px;
  background-image: url(../img/card-bg-1.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 0px 0px 20px 20px;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.25);
}

.card__logo {
  width: 220px;
  height: auto;
}

.card__boot {
  margin-left: 20px;
  margin-bottom: -20px;
  margin-top: -30px;
}

.card__photos {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  margin-top: 30px;
}
.card__photos a {
  width: 14.7%;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
.card__photos a:hover {
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
       -o-transform: translateY(-10px);
          transform: translateY(-10px);
}
.card__photos img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
}

.card__discount {
  width: auto;
  position: absolute;
  top: 120px;
  right: 0;
  padding: 12px 18px;
  border-radius: 10px 0px 0px 10px;
  background: -webkit-linear-gradient(343deg, #FF6222 0%, #FF2001 100%);
  background: linear-gradient(107deg, #FF6222 0%, #FF2001 100%);
  color: #FFF;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  z-index: 1;
}

.card__right {
  width: 436px;
  height: auto;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  padding: 42px 0 27px;
}

.card__title {
  color: #FFF;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 17px;
}

.card__price {
  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: 19px;
}
.card__price .price {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
          align-items: baseline;
}
.card__price .old__price {
  font-size: 24px;
  padding: 0 10px;
  margin-right: 20px;
  margin-bottom: 0;
}
.card__price .new__price {
  font-size: 30px;
  margin-right: 20px;
}

.card__rating {
  width: auto;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: inline-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;
}
.card__rating img {
  width: 18px;
  height: auto;
  margin-right: 3px;
}
.card__rating img:last-child {
  margin-right: 0;
}

.card__info {
  color: #FFF;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 23px;
}

.card__form {
  width: 360px;
  height: auto;
}

.card__input-wrapper {
  width: 100%;
  height: auto;
  position: relative;
  margin-bottom: 10px;
}
.card__input-wrapper label {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  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;
  border-radius: 10px 0px 0px 10px;
  background: #086ECD;
  pointer-events: none;
}

.card__input {
  width: 100%;
  height: 50px;
  padding: 0 20px 0 80px;
  color: #FFF;
  font-size: 18px;
  line-height: 1;
  border-radius: 10px;
  border: 1px solid #086ECD;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
.card__input:focus {
  background: rgba(0, 0, 0, 0.2);
}
.card__input option {
  background: #086ECD;
}

.card__submit {
  margin-top: 10px;
  cursor: pointer;
}

.card__decor {
  position: absolute;
  z-index: -1;
  height: auto;
}

.card__decor-1 {
  width: 354px;
  top: -87px;
  right: -300px;
}

.card__decor-2 {
  width: 343px;
  left: -360px;
  bottom: -200px;
}

.card__decor-3 {
  width: 354px;
  right: -380px;
  bottom: -200px;
}

.card__decor-4 {
  width: 383px;
  left: -360px;
  bottom: -223px;
}

.delivery {
  width: 542px;
  height: auto;
  padding: 25px 50px 29px;
  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;
  border-radius: 10px;
  background: #0E4BA4;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.25);
  margin: auto;
}

.delivery__icon {
  width: 139px;
  height: auto;
  padding: 10px;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  border-radius: 10px;
  background: #FFF;
  margin-right: 30px;
}

.delivery__text {
  color: #FFF;
  font-size: 18px;
}

.review__section {
  background-image: url(../img/review-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.review__section-wrapper {
  padding: 89px 0 56px;
  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;
}

.review__title {
  color: #00A1FF;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.review__slider {
  margin-bottom: 27px;
}

.review__icon {
  width: 68px !important;
  height: auto;
  margin-bottom: 15px;
}

.review__text {
  color: #FFF;
  font-size: 20px;
  margin-bottom: 14px;
}

.review__footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  border-top: 1px solid #FFC700;
  padding-top: 18px;
}

.review__name {
  color: #FFF;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}

.review__rating {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}
.review__rating img {
  width: 18px !important;
  height: auto;
  margin-right: 3px;
}
.review__rating img:last-child {
  margin-right: 0;
}

.add__review {
  color: #DDD;
  font-size: 16px;
  line-height: 1;
  -webkit-align-self: flex-end;
          align-self: flex-end;
  cursor: pointer;
}
.add__review:hover {
  text-decoration: underline;
}

.footer__section {
  background-image: url(../img/footer-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.footer__section-wrapper {
  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;
  padding: 87px 0 47px;
  position: relative;
}

.footer__logo {
  width: 100%;
  height: auto;
  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: 1;
}

.footer__title {
  color: #FFF;
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 413px;
}

.footer__decor {
  width: 100%;
}

.footer__boot {
  position: absolute;
  height: auto;
}

.footer__boot-1 {
  top: 220px;
  left: 38px;
  -webkit-transform: rotate(-30deg);
      -ms-transform: rotate(-30deg);
       -o-transform: rotate(-30deg);
          transform: rotate(-30deg);
  width: 644px;
}

.footer__boot-2 {
  top: 190px;
  right: -20px;
  z-index: 1;
  width: 670px;
}

.footer__items {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  position: absolute;
  top: 100px;
  left: 0;
}
.footer__items .header__info {
  width: 170px;
  padding: 20px 21px 15px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

.footer__block {
  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;
}
.footer__block .header__price {
  margin-right: 61px;
}
.footer__block .header__discount {
  margin-right: 50px;
}

.footer__order-wrapper {
  width: 360px;
  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-align: center;
  -webkit-align-items: center;
          align-items: center;
  margin-top: 10px;
}
.footer__order-wrapper .order__btn {
  width: 100%;
  height: auto;
}

.footer__line {
  background-color: rgba(0, 0, 0, 0.2);
}

.footer__line-wrapper {
  padding: 10px 0;
}

.footer__line-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-around;
          justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}

.footer__line-item {
  color: #B7B7B7;
  text-align: center;
  font-size: 14px;
  line-height: 1.3;
}
.footer__line-item a:hover {
  text-decoration: underline;
}

@media (max-width: 1480px) {
  .header__content {
    width: 500px;
    padding: 100px 0;
  }
  .header__logo {
    margin-bottom: 20px;
  }
  .header__boot {
    width: 700px;
    right: -450px;
  }
  .header__decor-2 {
    height: calc(100% - 200px);
    top: 100px;
    right: -520px;
  }
  .header__decor-1 {
    right: -820px;
  }
}
@media (max-width: 1280px) {
  .container {
    width: 1000px;
  }
  .header__content {
    width: 450px;
    padding: 50px 0;
  }
  .header__title {
    font-size: 32px;
  }
  .header__boot {
    width: 640px;
    bottom: 20px;
    right: -450px;
  }
  .header__decor-1 {
    right: -770px;
  }
  .header__decor-2 {
    right: -500px;
  }
  .info__decor-2 {
    right: -443px;
  }
  .info__discount {
    top: -78px;
    right: -300px;
  }
  .info__center {
    width: 400px;
    height: 400px;
  }
  .info__boot-center {
    width: 620px;
  }
  .info__boot-left {
    left: -340px;
  }
  .info__boot-right {
    right: -340px;
    width: 280px;
  }
  .galary img {
    width: 315px;
  }
  .card__right {
    width: 400px;
  }
  .card__left {
    width: 420px;
    height: auto;
  }
  .card__boot {
    width: 140%;
  }
  .card {
    padding-left: 80px;
  }
  .card__1 .card__boot {
    margin-bottom: 0px;
    margin-top: 0px;
  }
  .card__3 .card__boot {
    width: 80%;
  }
  .footer__boot-1 {
    top: 240px;
    left: 20px;
    width: 580px;
  }
  .footer__boot-2 {
    top: 200px;
    right: -50px;
    width: 620px;
  }
}
@media (max-width: 1080px) {
  .container {
    width: 700px;
  }
  .header__content {
    width: 100%;
    padding: 50px 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-align: center;
    -webkit-align-items: center;
            align-items: center;
  }
  .header__title {
    font-size: 36px;
    text-align: center;
  }
  .header__logo {
    width: 320px;
  }
  .header__decor {
    position: relative;
    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;
    margin-bottom: 30px;
  }
  .header__boot {
    position: relative;
    bottom: auto;
    right: auto;
    width: 700px;
  }
  .header__decor-1 {
    height: auto;
    width: 280px;
    top: auto;
    bottom: 0;
    right: -35px;
  }
  .header__decor-2 {
    width: 320px;
    height: auto;
    top: 0;
    right: auto;
    left: -65px;
  }
  .advantages {
    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;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
  }
  .advantage {
    width: 100%;
    margin-bottom: 54px;
  }
  .advantage:last-child {
    margin-bottom: 0;
  }
  .advantage__decor-1 {
    top: 150px;
    left: -224px;
  }
  .advantage__decor-2 {
    width: 264px;
    bottom: 60px;
    right: -200px;
  }
  .advantage__section-wrapper {
    padding: 60px 0;
  }
  .advantage__section-title {
    margin-bottom: 40px;
  }
  .info__section {
    overflow: hidden;
  }
  .info__line {
    display: none;
  }
  .info__decor {
    position: absolute;
    height: auto;
    width: auto;
    width: 100vw;
    max-width: 100vw;
    z-index: -1;
  }
  .info__decor-1 {
    left: 50%;
    top: 50%;
    bottom: auto;
    -webkit-transform: translate(-50%, 0%);
        -ms-transform: translate(-50%, 0%);
         -o-transform: translate(-50%, 0%);
            transform: translate(-50%, 0%);
  }
  .info__decor-2 {
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    -webkit-transform: translate(-50%, -100%);
        -ms-transform: translate(-50%, -100%);
         -o-transform: translate(-50%, -100%);
            transform: translate(-50%, -100%);
  }
  .info__center {
    margin: 217px auto;
    width: 420px;
    height: 420px;
    z-index: 1;
  }
  .info__center:before {
    width: calc(100% + 4px);
    height: calc(50% + 2px);
    position: absolute;
    top: -2px;
    right: -2px;
    border-radius: 0;
    border-top-left-radius: 210px;
    border-top-right-radius: 210px;
    border: 2px solid #1987C7;
    border-bottom: none;
  }
  .info__section-wrapper {
    padding: 55px 0 47px;
  }
  .info__logo {
    margin-bottom: 22px;
  }
  .info__title {
    color: #0A1E3D;
    text-align: center;
  }
  .info__boot-left {
    left: 50%;
    top: -180px;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .info__boot-right {
    left: 50%;
    top: auto;
    bottom: -180px;
    right: auto;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .info__discount {
    top: 0;
    right: auto;
    left: 10px;
    -webkit-transform: rotate(-30deg);
        -ms-transform: rotate(-30deg);
         -o-transform: rotate(-30deg);
            transform: rotate(-30deg);
    font-size: 64px;
  }
  .info__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
    position: relative;
    z-index: 1;
  }
  .info__right {
    width: 300px;
    height: auto;
    margin-bottom: 44px;
    margin-left: 80px;
  }
  .info__right img {
    height: 67px;
  }
  .info__price {
    text-align: center;
  }
  .info__price .price {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
            align-items: baseline;
            margin: auto;
  }
  .info__price .old__price {
    margin-bottom: 0;
    margin-right: 20px;
  }
  .info__section-wrapper {
    z-index: 1;
  }
  .info__decor {
    width: 1080px;
  }
  .info__section {
    background-color: #fff;
  }
  .info__decor-1 {
    -webkit-transform: translate(-50%, -5.5%);
        -ms-transform: translate(-50%, -5.5%);
         -o-transform: translate(-50%, -5.5%);
            transform: translate(-50%, -5.5%);
    z-index: 1;
    max-width: initial;
  }
  .galary__header {
    -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;
  }
  .galary__title {
    width: 100%;
    text-align: center;
  }
  .galary__text {
    width: 100%;
    text-align: center;
  }
  .galary__decor {
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .galary a {
    width: 31.5%;
  }
  .galary img {
    width: 100%;
  }
  .galary__section-wrapper {
    padding: 60px 0 70px;
  }
  .card__section-wrapper {
    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__header {
    width: auto;
    -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;
    position: relative;
  }
  .card__header-info {
    border-radius: 10px;
  }
  .card__header-discount {
    border-radius: 0px 0px 10px 10px;
    position: static;
  }
  .card__header-discount:before {
    left: 20px;
    bottom: 20px;
  }
  .card__header-discount:after {
    right: -30px;
    top: -10px;
  }
  .card {
    -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;
    padding: 0 20px;
  }
  .card__left {
    width: 500px;
    height: auto;
  }
  .card__right {
    width: 500px;
    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__title {
    text-align: center;
  }
  .card__price {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
  }
  .footer__logo {
    position: static;
    -webkit-transform: none;
        -ms-transform: none;
         -o-transform: none;
            transform: none;
    margin-bottom: 20px;
  }
  .footer__items {
    position: static;
  }
  .footer__decor {
    position: relative;
  }
  .footer__boot {
    position: static;
    top: auto;
    left: auto;
    right: auto;
  }
  .footer__boot-1 {
    position: absolute;
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
         -o-transform: rotate(0deg);
            transform: rotate(0deg);
    width: 520px;
  }
  .footer__boot-2 {
    margin-left: auto;
    -webkit-transform: scaleX(-1);
        -ms-transform: scaleX(-1);
         -o-transform: scaleX(-1);
            transform: scaleX(-1);
    width: 540px;
  }
  .footer__title {
    font-size: 48px;
    margin-bottom: 7px;
  }
  .footer__items {
    width: 384px;
    margin-bottom: 20px;
  }
  .footer__block {
    width: 384px;
    height: auto;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
    border-radius: 10px;
    border: 2px solid #34A6E8;
    background: rgba(14, 35, 62, 0.8);
    padding: 19px 20px;
  }
  .footer__block .header__price {
    margin-right: 0;
  }
  .footer__block .header__discount {
    margin-right: 0;
  }
  .footer__items .header__info {
    border: 2px solid #34A6E8;
    background: rgba(14, 35, 62, 0.5);
  }
  .footer__line-list {
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .footer__section-wrapper {
    padding: 50px 0 47px;
  }
  .footer__order-wrapper {
    margin-top: 0;
  }
  .card__right {
    padding: 42px 0 60px;
  }
  .card__form {
    width: 100%;
  }
}
@media (max-width: 700px) {
  .container {
    width: calc(100% - 30px);
  }
  .card__left {
    width: 80%;
  }
  .card__right {
    width: 80%;
  }
  .footer__boot-1 {
    width: 78%;
  }
  .footer__boot-2 {
    width: 80%;
  }
}
@media (max-width: 600px) {
  .header__content {
    padding: 7vw 0 12vw;
  }
  .header__logo {
    width: 66vw;
    margin-bottom: 5vw;
  }
  .header__title {
    font-size: 7vw;
    margin-bottom: 4.8vw;
  }
  .header__decor {
    margin-bottom: 4.8vw;
  }
  .header__boot {
    -webkit-transform: rotate(15deg);
        -ms-transform: rotate(15deg);
         -o-transform: rotate(15deg);
            transform: rotate(15deg);
    width: 120vw;
    margin-left: -10vw;
    margin-top: -5vw;
    margin-bottom: -8vw;
  }
  .header__decor-1 {
    width: 47vw;
    right: -8vw;
  }
  .header__decor-2 {
    width: 56vw;
    left: -14vw;
  }
  .header__block {
    width: 100%;
    padding: 4.7vw 4.8vw;
    margin-left: 0;
  }
  .old__price {
    font-size: 6vw;
    padding: 0 3vw;
    margin-bottom: 2vw;
  }
  .new__price {
    font-size: 8vw;
  }
  .header__discount {
    font-size: 9.8vw;
    padding: 2vw 4.5vw;
  }
  .order__btn {
    font-size: 4.8vw;
    padding: 4.8vw;
    margin-top: 5.5vw;
  }
  .header__date {
    font-size: 4.8vw;
    margin-top: 3vw;
  }
  .header__info-wrapper {
    width: 100%;
    margin-left: 0;
    margin-top: 4.8vw;
  }
  .header__info {
    width: 47%;
    padding: 4.8vw 6vw 3.5vw;
  }
  .header__info-text {
    font-size: 4.8vw;
  }
  .header__bg {
    left: auto;
    right: -15px;
  }
  .advantage__section-wrapper {
    padding: 10vw 0;
  }
  .advantage__section-title {
    margin-bottom: 10vw;
    font-size: 7.5vw;
  }
  .advantage__icon {
    margin-bottom: 3.5vw;
  }
  .advantage__title {
    font-size: 4.8vw;
    margin-bottom: 7.5vw;
  }
  .advantage__title:before {
    bottom: -3.7vw;
  }
  .advantage__text {
    font-size: 4.8vw;
    padding: 0 4.8vw;
  }
  .advantage {
    margin-bottom: 12vw;
    position: relative;
    z-index: 1;
  }
  .advantage__decor-1 {
    top: 34vw;
    left: -29vw;
    width: 67vw;
  }
  .advantage__decor-2 {
    width: 35vw;
    bottom: 25vw;
    right: -16vw;
  }
  .info__section-wrapper {
    padding: 15vw 0 11.5vw;
  }
  .info__logo {
    width: 66vw;
    margin-bottom: 5vw;
  }
  .info__title {
    font-size: 7.5vw;
  }
  .info__center {
    margin: 52vw auto;
    width: 100%;
    height: calc(100vw - 30px);
    border: 3px solid #fff;
    z-index: 1;
  }
  .info__price {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
  }
  .info__price .price {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
  }
  .info__boot-center {
    width: 115vw;
    left: 46%;
  }
  .info__boot-left {
    width: 71vw;
    top: -42vw;
  }
  .info__boot-right {
    width: 71vw;
    bottom: -42vw;
  }
  .info__discount {
    left: 2vw;
    font-size: 15vw;
  }
  .info__decor-2 {
    width: 158.7vw;
    max-width: initial;
    -webkit-transform: translate(-50%, -105%);
        -ms-transform: translate(-50%, -105%);
         -o-transform: translate(-50%, -105%);
            transform: translate(-50%, -105%);
  }
  .info__decor-1 {
    width: 208.2vw;
    -webkit-transform: translate(-42%, -6.4%);
        -ms-transform: translate(-42%, -6.4%);
         -o-transform: translate(-42%, -6.4%);
            transform: translate(-42%, -6.4%);
  }
  .info__left {
    width: 87vw;
  }
  .info__right {
    width: 72.5vw;
    margin-bottom: 10vw;
    margin-left: 21vw;
  }
  .info__right img {
    height: 16.3vw;
    left: -21vw;
  }
  .info__right a {
    padding: 4.5vw;
    font-size: 4.5vw;
  }
  .info__price .old__price {
    margin-right: 2vw;
  }
  .info__center:before {
    width: calc(100% + 6px);
    height: calc(50% + 3px);
    top: -3px;
    right: -3px;
    border-radius: 0;
    border-top-left-radius: calc(50vw - 15px);
    border-top-right-radius: calc(50vw - 15px);
    border: 3px solid #1987C7;
    border-bottom: none;
  }
  .owl-nav {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
    margin-top: 20px;
  }
  .owl-nav button {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background-color: #086ECD !important;
    background-image: url(../img/arrow.png) !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
  }
  .owl-nav button span {
    display: none;
  }
  .owl-nav .owl-next {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
         -o-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .galary .owl-stage-outer {
    overflow: visible;
  }
  .owl-dots {
    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;
    margin-top: -30px;
  }
  .owl-dots button {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    margin-right: 10px;
    background-color: #086ECD !important;
  }
  .owl-dots button:last-child {
    margin-right: 0;
  }
  .owl-dots button.active {
    background-color: #fff !important;
  }
  .galary__section-wrapper {
    padding: 10vw 0 14vw;
  }
  .galary__decor {
    display: none;
  }
  .galary__section {
    background-position: left center;
  }
  .galary__title {
    font-size: 7vw;
    margin-bottom: 3vw;
  }
  .galary__text {
    font-size: 4.8vw;
  }
  .galary__header {
    margin-bottom: 5vw;
  }
  .card__section-wrapper {
    padding: 12vw 0;
  }
  .card__header {
    width: 100%;
    margin-bottom: 12vw;
  }
  .card__header-info {
    width: 100%;
    font-size: 4.8vw;
    padding: 3.5vw;
    text-align: center;
  }
  .card__header-discount {
    font-size: 5.5vw;
    padding: 3vw 7vw;
  }
  .card__header-discount:before {
    width: 12vw;
    height: 12vw;
    left: 2vw;
    bottom: 4vw;
  }
  .card__header-discount:after {
    width: 14vw;
    height: 14vw;
    right: -5vw;
    top: -3vw;
  }
  .card {
    padding: 0;
    margin-bottom: 12vw;
    border-radius: 10px;
  }
  .card__left {
    width: 100%;
  }
  .card__left-block {
    border-radius: 0;
    background-position: center top;
    padding-top: 7vw;
    border-radius: 10px 10px 0px 0px;
  }
  .card__boot {
    width: 110%;
    margin-left: 6vw;
    margin-bottom: -2vw;
    margin-top: -2vw;
  }
  .card__photos {
    padding: 0 4.8vw;
    margin-top: 4.8vw;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .card__photos a {
    width: 30%;
    margin-bottom: 4.8vw;
  }
  .card__discount {
    top: 90px;
  }
  .card__right {
    width: 100%;
    padding: 0 4.8vw 6.5vw !important;
  }
  .card__title {
    font-size: 5.5vw;
    margin-bottom: 1.8vw;
  }
  .card__price {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
    margin-bottom: 2vw;
  }
  .card__price .new__price {
    margin-right: 0;
  }
  .card__rating {
    margin-bottom: 2.5vw;
  }
  .card__price .new__price {
    font-size: 7.5vw;
  }
  .card__price .old__price {
    font-size: 5.5vw;
    padding: 0 2.5vw;
    margin-right: 4.8vw;
  }
  .card__info {
    font-size: 4.5vw;
    margin-bottom: 3vw;
  }
  .card__form {
    width: 100%;
  }
  .card__submit {
    margin-top: 10px;
  }
  .card__3 .card__boot {
    width: 65%;
    margin-left: 7vw;
    margin-bottom: -2vw;
    margin-top: 4.8vw;
  }
  .card__3 .card__photos a {
    width: 14.7%;
    margin-bottom: 4.8vw;
  }
  .card__decor-1 {
    width: 35vw;
    top: -34vw;
    right: -14vw;
  }
  .card__decor-2 {
    width: 35vw;
    left: -23vw;
    bottom: -9vw;
  }
  .card__decor-3 {
    display: none;
  }
  .card__decor-4 {
    width: 35vw;
    left: -20vw;
    bottom: -18vw;
  }
  .delivery {
    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;
    padding: 4.8vw 4.8vw 3vw;
  }
  .delivery__icon {
    margin: 0;
    margin-bottom: 3vw;
  }
  .delivery__text {
    font-size: 4.5vw;
    text-align: center;
  }
  .add__review {
    -webkit-align-self: center;
            align-self: center;
    margin-top: -10px;
  }
  .review__section-wrapper {
    padding: 10vw 0 12vw;
  }
  .review__title {
    font-size: 7.5vw;
    margin-bottom: 5vw;
  }
  .review__section {
    background-image: url(../img/review-bg-mobile.jpg);
  }
  .review__icon {
    width: 16.5vw !important;
    margin-bottom: 3.5vw;
  }
  .review__text {
    font-size: 4.8vw;
    margin-bottom: 3.5vw;
  }
  .review__name {
    font-size: 4.8vw;
  }
  .footer__section-wrapper {
    padding: 12vw 0;
  }
  .footer__logo {
    margin-bottom: 3.5vw;
  }
  .footer__title {
    font-size: 7vw;
    margin-bottom: 2vw;
  }
  .footer__title br {
    display: none;
  }
  .footer__boot-1 {
    width: 84%;
    margin-left: -4vw;
  }
  .footer__boot-2 {
    width: 86%;
    margin-right: -4vw;
  }
  .footer__items {
    width: 100%;
    margin-bottom: 4.8vw;
  }
  .footer__items .header__info {
    width: 47%;
    padding: 4.8vw 4.8vw 3.5vw;
  }
  .footer__block {
    width: 100%;
    padding: 4.6vw 4.8vw;
  }
  .fancybox-content {
    padding: 44px 20px 20px;
  }
}