* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: none;
  color: #000;
  list-style: none;
  text-decoration: none;
  outline: none;
}

@-webkit-keyframes bounceInDown {
  to {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@keyframes bounceInDown {
  to {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 23px;
  color: #fff;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 16px;
  }
}

img,
video {
  width: 100%;
}

.container {
  max-width: 828px;
  width: 100%;
  margin: 0 auto;
}

.header {
  background: #1e1e1e;
  padding: 10px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .header {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.header__logo {
  height: 43px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (max-width: 768px) {
  .header__logo {
    height: 35px;
  }
}

.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .header__menu {
    display: none;
  }
}

.header__menu li {
  margin-left: 25px;
}

.header__menu li a {
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  color: #f2f2f2;
}

.main {
  padding: 16px 25px;
  background: #f2f2f2;
}

.main__double-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 4px;
}

.main__double-video {
  position: relative;
  margin-right: 10px;
}

.main__double-video .signature {
  position: absolute;
  left: 15px;
  top: 10px;
  width: 117px;
  height: 117px;
  background: url(../img/star.svg) no-repeat center;
  background-size: contain;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 768px) {
  .main__double-video .signature {
    width: 70px;
    height: 70px;
  }
}

.main__double-video .signature span {
  font-weight: 700;
  font-size: 36px;
  line-height: 36px;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .main__double-video .signature span {
    width: 60%;
    font-size: 16px;
    line-height: 130%;
  }
}

.main__title span {
  display: inline-block;
  background: #ff3300;
  font-weight: 700;
  font-size: 40px;
  line-height: 47px;
  color: #ffffff;
  margin-bottom: 5px;
}

@media screen and (max-width: 768px) {
  .main__title span {
    font-size: 24px;
    line-height: 28px;
  }
}

.main__text {
  margin-bottom: 10px;
}

.main__grid {
  display: -ms-grid;
  display: grid;
      grid-template-areas: "main img" "main text";
  margin-bottom: 21px;
  grid-gap: 0 25px;
  -ms-grid-columns: 377px auto;
      grid-template-columns: 377px auto;
}

@media screen and (max-width: 768px) {
  .main__grid {
        grid-template-areas: "main text" "img text";
    -ms-grid-columns: 205px auto;
        grid-template-columns: 205px auto;
    grid-gap: 10px;
  }
}

.main__grid-main {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
  grid-area: main;
}

.main__grid-img {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: img;
  max-width: 120px;
}

@media screen and (max-width: 768px) {
  .main__grid-img {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}

.main__grid-text {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: text;
}

.main__grid-text strong {
  display: block;
  margin-bottom: 5px;
}

.main__grid-text em strong {
  display: inline;
}

.main__double-signature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 560px;
  margin: 0 auto;
  margin-bottom: 10px;
}

.main__double-first {
  position: relative;
  margin-right: 4px;
}

.main__double-first span {
  position: absolute;
  left: 15%;
  bottom: 5%;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  color: #ffffff;
  background: #ff0000;
  border-radius: 10px;
  padding: 3px 4px;
}

@media screen and (max-width: 768px) {
  .main__double-first span {
    left: 10%;
    font-size: 11px;
    line-height: 13px;
  }
}

.main__triple-grid {
  display: -ms-grid;
  display: grid;
      grid-template-areas: "img1 img3" "img2 img3";
  grid-gap: 8px;
  max-width: 628px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.main__triple-grid img:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: img1;
  max-width: 287px;
}

@media screen and (max-width: 768px) {
  .main__triple-grid img:nth-child(1) {
    max-width: 191.32px;
  }
}

.main__triple-grid img:nth-child(2) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: img2;
  max-width: 287px;
}

@media screen and (max-width: 768px) {
  .main__triple-grid img:nth-child(2) {
    max-width: 191.32px;
  }
}

.main__triple-grid img:nth-child(3) {
  max-width: 333px;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 2;
  grid-area: img3;
}

@media screen and (max-width: 768px) {
  .main__triple-grid img:nth-child(3) {
    max-width: 222.37px;
    height: 100%;
  }
}

.main__attention {
  font-weight: 700;
  font-size: 18px;
  line-height: 130%;
  color: #000000;
  padding: 20px;
  border: 2px solid #ff0707;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .main__attention {
    font-size: 16px;
  }
}

.main__subtitle {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 5px;
}

@media screen and (max-width: 768px) {
  .main__subtitle {
    font-size: 20px;
    line-height: 23px;
  }
}

.main__order-timer {
  background: #ff0707;
  padding: 5px 0;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main__order-timer span {
  display: inline-block;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: #ffffff;
  vertical-align: middle;
  margin-right: 4px;
}

@media screen and (max-width: 768px) {
  .main__order-timer span {
    font-size: 16px;
    line-height: 18px;
  }
}

.main__order-timer .timer {
  display: inline-block;
  padding: 0 7px;
  background: #ff0707;
  vertical-align: middle;
  font-weight: 700;
  font-size: 36px;
  line-height: 42px;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .main__order-timer .timer {
    font-size: 28px;
    line-height: 32px;
  }
}

.main__order-body {
  background: #500606;
  padding: 30px;
}

@media screen and (max-width: 768px) {
  .main__order-body {
    padding: 15px;
  }
}

.main__order-logo {
  text-align: center;
  margin-bottom: 22px;
}

.main__order-logo img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 43px;
}

.main__order-form {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 163px auto auto;
      grid-template-columns: 163px auto auto;
      grid-template-areas: "prices product fields";
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media screen and (max-width: 768px) {
  .main__order-form {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
        grid-template-areas: "prices product" "fields fields";
  }
}

.main__order-prices {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: prices;
  margin-top: auto;
  margin-bottom: 20px;
}

.main__order-old {
  display: inline-block;
  font-weight: 800;
  font-size: 24px;
  line-height: 130%;
  color: #ff0000;
  position: relative;
  margin-bottom: 2px;
}

.main__order-old::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #fff;
  width: 100%;
  height: 2px;
}

.main__order-new {
  display: inline-block;
  font-weight: 800;
  font-size: 36px;
  line-height: 130%;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .main__order-new {
    font-size: 30px;
  }
}

.main__order-product {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: product;
  position: relative;
  margin-right: 15px;
}

.main__order-product img {
  max-width: 181px;
  vertical-align: bottom;
}

.main__order-discont {
  width: 140px;
  height: 140px;
  background: url(../img/star.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  left: -90px;
  bottom: 100px;
}

@media screen and (max-width: 768px) {
  .main__order-discont {
    left: -108px;
    bottom: 140px;
  }
}

.main__order-discont span {
  display: block;
  font-weight: 700;
  font-size: 18px;
  line-height: 130%;
  text-transform: uppercase;
  color: #ffffff;
}

.main__order-discont strong {
  display: block;
  font-weight: 700;
  font-size: 48px;
  line-height: 130%;
  text-transform: uppercase;
  color: #ffffff;
}

.main__order-fields {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: fields;
}

.main__order-fields label {
  font-weight: 700;
  font-size: 14px;
  line-height: 130%;
  color: #ffffff;
  margin-bottom: 5px;
  display: block;
}

.main__order-fields input, .main__order-fields select {
  display: block;
  width: 100%;
  height: 60px;
  background: #ffffff;
  padding: 17px 12px;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 20px;
  appearance: none;
 -webkit-appearance: none; 
box-sizing: border-box;
}

.main__order-fields input.green {
  border: 1px solid #76ff21;
}

.main__order-fields button {
  display: block;
  width: 100%;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  padding: 16px 19px;
  background: #72e6ff;
  cursor: pointer;
  -webkit-animation: bounceInDown 0.3s ease infinite alternate;
          animation: bounceInDown 0.3s ease infinite alternate;
}

.main__opinion {
  background: #500606;
  padding: 30px 20px;
  display: -ms-grid;
  grid-gap: 0 10px;
  -ms-grid-columns: 100px auto;
      grid-template-columns: 100px auto;
}

.main__opinion-icon {
  width: 104px;
  height: 104px;
  border-radius: 100%;
  overflow: hidden;
}

.main__opinion-name {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .main__opinion-name {
    font-size: 20px;
    line-height: 23px;
    margin-bottom: 5px;
  }
}

.main__opinion-post {
  font-weight: 700;
  font-size: 12px;
  line-height: 130%;
  color: #ffffff;
  margin-bottom: 6px;
}

.main__opinion-text p {
  font-style: italic;
  font-size: 18px;
  line-height: 130%;
  margin-bottom: 10px;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .main__opinion-text p {
    font-size: 16px;
  }
}

.main__opinion-text p:last-child {
  margin-bottom: 0;
}

.forum {
  background: #f2f2f2;
  padding: 30px 25px;
  width: calc(100% + 50px);
  margin-left: -25px;
}

.forum .main__order-timer {
  background: none;
  padding-bottom: 0;
  margin-bottom: 21px;
}

.forum .main__order-timer span {
  color: #000000;
}

.forum__logo {
  margin-left: 9px;
}

.forum__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 13px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.forum__value {
  margin-right: 21px;
}

.forum__value strong {
  font-weight: 700;
  font-size: 18px;
  line-height: 130%;
  text-transform: uppercase;
  color: #f7971e;
}

.forum__value span {
  font-weight: 700;
  font-size: 18px;
  line-height: 130%;
  color: #f7971e;
}

.forum__logo {
  max-width: 178px;
}

.forum__add {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #c4c4c4;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.forum__add-img {
  background: #8a96a3;
  width: 37px;
  height: 37px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100%;
  margin-right: 7px;
}

.forum__add-img img {
  width: 16px;
}

.add-form__dontWrite {
  margin-bottom: 6px;
}

.add-form__dontWrite img {
  width: 11px;
  margin-right: 4px;
  vertical-align: middle;
}

.add-form__dontWrite span {
  vertical-align: middle;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
}

.add-form__field {
  height: 44px;
  padding: 12px;
  max-width: 484px;
  width: 100%;
  background: #fff;
  border: 1px solid #aeaeae;
  margin-bottom: 13px;
  border-radius: 4px;
}

.add-form__field::-webkit-input-placeholder {
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  color: #949494;
}

.add-form__field:-ms-input-placeholder {
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  color: #949494;
}

.add-form__field::-ms-input-placeholder {
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  color: #949494;
}

.add-form__field::placeholder {
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  color: #949494;
}

.add-form__btn {
  display: inline-block;
  padding: 15px 53px;
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.1em;
  color: #fff;
  background: #8a96a3;
}

.forum__best-comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.forum__limit {
  font-weight: 700;
  font-size: 18px;
  line-height: 130%;
  text-transform: uppercase;
  color: #f7971e;
  margin-top: 30px;
  text-align: center;
}

.forum__btn {
  display: block;
  background: #72e6ff;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  color: #000;
  padding: 16px 0;
  margin: 0 auto;
  max-width: 380px;
  width: 100%;
  -webkit-animation: bounceInDown 0.3s ease infinite alternate;
          animation: bounceInDown 0.3s ease infinite alternate;
}

.best-comment {
  margin-bottom: 10px;
}

.best-comment__img {
  margin-right: 13px;
}

.best-comment__img img {
  height: 100%;
}

.best-comment__img .comment__img {
  border: 3px solid #f7971e;
  width: 48px;
  height: 48px;
}

.best-comment__img img {
  -o-object-fit: cover;
  object-fit: cover;
}

.best-comment__img span {
  font-weight: 400;
  font-size: 12px;
  line-height: 130%;
  color: #a4a4a4;
  padding-left: 8px;
  position: relative;
}

.best-comment__img span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: #52ff00;
  border-radius: 100%;
}

.best-comment__autor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.best-comment__autor img {
  width: 30px;
  margin-left: 21px;
}

.best-comment__name {
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
}

.best-comment__fact {
  font-weight: 700;
  font-size: 18px;
  line-height: 130%;
  text-transform: uppercase;
  color: #f7971e;
}

.forum__comment {
  background: #FFFFFF;
  margin-bottom: 15px;
  padding: 20px 18px;
}

.comment {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 51px auto;
  grid-template-columns: 51px auto;
  grid-gap: 0 19px;
  margin-bottom: 15px;
}

.comment.answer {
  padding-left: 63px;
}

.comment__icon-img {
  width: 51px;
}

.comment__icon-img.orange img {
  border: 3px solid #f7971e;
}

.comment__icon-online {
  padding-left: 8px;
  font-weight: 700;
  font-size: 12px;
  line-height: 130%;
  position: relative;
  margin-right: 3px;
}

.comment__icon-online::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-70%);
          transform: translateY(-70%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.comment__icon-online.green::before {
  background: #52ff00;
}

.comment__icon-online.grey {
  color: #a4a4a4;
}

.comment__icon-online.grey::before {
  background: #a4a4a4;
}

.comment__name {
  margin-bottom: 5px;
}

.comment__name strong {
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  vertical-align: middle;
}

.comment__name.orange strong {
  color: #f7971e;
}

.comment__name svg {
  vertical-align: middle;
}

.comment__name span {
  font-weight: 700;
  font-size: 12px;
  line-height: 14px;
  color: #a4a4a4;
  vertical-align: middle;
  margin-left: 5px;
}

.comment__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  margin-bottom: 5px;
}

.comment__text img {
  display: inline-block;
  max-width: 210px;
  width: 100%;
  margin: 5px 0;
}

.comment__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.comment__actions a {
  font-weight: 700;
  font-size: 12px;
  line-height: 14px;
  color: #a4a4a4;
}

.comment__likes {
  margin-right: 10px;
}

.comment__likes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.comment__likes-item {
  background: #F2F2F2;
  border-radius: 50px;
  padding: 2px 6px 1px 4px;
  margin-right: 5px;
}

.comment__likes-item:last-child {
  margin-right: 0;
}

.comment__likes-item svg {
  vertical-align: middle;
}

.comment__likes-item span {
  margin-left: 2px;
  vertical-align: middle;
  font-weight: 700;
  font-size: 9px;
  line-height: 130%;
}

.footer {
  background: #c4c4c4;
  padding: 42px 0;
  text-align: center;
  color: #000;
}

.footer a {
  color: #6001d2;
}
/*# sourceMappingURL=style.css.map */