@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,700;1,400;1,700&display=swap');
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: 'Roboto';
}
main {
  display: block;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: transparent;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none;
}

* {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  font-size: 16px;
}
img {
  max-width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
a {
  text-decoration: none;
  cursor: pointer;
  color: inherit;
}
button {
  border: none;
  cursor: pointer;
  background-color: transparent;
}
.button {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  background-color: #d90303;
  color: #fff;
  padding: 15px 11px;
  font-size: 18px;
  line-height: 21px;
  text-align: center;
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
  filter: drop-shadow(2px 2px 4px rgba(51, 26, 26, 0.15));
}
h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 28px;
  color: #000;
}
h2 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 23px;
  color: #000;
}
h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  color: #000;
}
.grid-container {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: repeat(14, 1fr);
  grid-column-gap: 10px;
  grid-template-rows: repeat(3, 40px) repeat(5, max-content);
  grid-auto-rows: max-content;
  background: url("../img/bg.jpg");
  
}
a.product-link {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  text-decoration-line: underline;
  color: #0d7ee7;
}
.primary {
  color: #d90303;
}
.yellow {
  color: #ffbf00;
}
.footer {
  grid-column: 1/15;
  grid-row: 5/6;
}
.wiggle-button {
  display: block;
  margin: 19px auto 0;
  width: max-content;
  animation: wiggle 4s 2s infinite;
  transition: 0.5s all ease-in-out;
  border: 2px solid transparent;
  border-radius: 2px;
}
.wiggle-button:hover {
  border: 2px solid #d90303;
  background-color: #fff;
  color: #d90303;
}
.header {
  position: relative;
  grid-column: 1/15;
  -ms-grid-row: 1/4;
  grid-row: 1/4;
  background-image: url(../img/header-bg.jpg);
  background-position: center left 30%;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  z-index: 10;
}
.header-logo {
  margin-left: 1px;
  /* margin-bottom: 17px; */
  width: 235px;
  height: auto;
  display: block;
  margin-top: -3px;
}



.header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 20px;
}
.header-top__nav {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-right: 42px;
}
.header-nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}
.header-nav > .nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 50px;
}
.header-search {
  margin-right: 19px;
}
.header-search > label {
  display: block;
  min-width: 100%;
  min-height: 100%;
  position: relative;
}
.header-search > label > input {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  width: 208px;
  height: 26px;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  min-width: 100%;
  min-height: 100%;
  background: rgba(109, 129, 153, 0.6);
  padding: 7px 10px 7px 30px;
  color: #fff;
  font-size: 14px;
  line-height: 16px;
}
.header-search__icon {
  position: absolute;
  top: 5px;
  width: 16px;
  height: 16px;
  left: 10px;
  cursor: pointer;
}
.header-search__icon > svg {
  width: 16px;
  height: 16px;
}
.nav-menu__item {
  display: block;
  height: 100%;
}
.nav-menu__item > a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px 2.5px;
  white-space: nowrap;
}
.nav-menu__item + .nav-menu__item {
  margin-left: 25px;
}

.info__danger {
  width: 100%;
  min-height: 144px;
  height: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 18px 18px 14px 10px;
}

.info__danger-1 {
  background: -webkit-linear-gradient(
    0.15deg,
    #ffa73f 0.19%,
    #ff0000 99.94%,
    #ff8a00 99.95%
  );
  background: -moz-linear-gradient(
    0.15deg,
    #ffa73f 0.19%,
    #ff0000 99.94%,
    #ff8a00 99.95%
  );
  background: linear-gradient(
    89.85deg,
    #ffa73f 0.19%,
    #ff0000 99.94%,
    #ff8a00 99.95%
  );
}

.info__danger-2 {
  background: -webkit-linear-gradient(0.15deg, #25a3ff 0.19%, #ff00e5 99.95%);
  background: -moz-linear-gradient(0.15deg, #25a3ff 0.19%, #ff00e5 99.95%);
  background: linear-gradient(89.85deg, #25a3ff 0.19%, #ff00e5 99.95%);
}

.info__danger-3 {
  background: -webkit-linear-gradient(
    0.15deg,
    #ffa73f 0.19%,
    #ff0000 99.94%,
    #ff8a00 99.95%
  );
  background: -moz-linear-gradient(
    0.15deg,
    #ffa73f 0.19%,
    #ff0000 99.94%,
    #ff8a00 99.95%
  );
  background: linear-gradient(
    89.85deg,
    #ffa73f 0.19%,
    #ff0000 99.94%,
    #ff8a00 99.95%
  );
}

.info__danger-4 {
  background: -webkit-linear-gradient(0.15deg, #3fffe8 0.19%, #61ff00 99.95%);
  background: -moz-linear-gradient(0.15deg, #3fffe8 0.19%, #61ff00 99.95%);
  background: linear-gradient(89.85deg, #3fffe8 0.19%, #61ff00 99.95%);
  margin-bottom: 15px;
  margin-top: 15px;
  font-size: 16px;
}

.info__danger-img {
  width: 94px;
  height: auto;
  margin-right: 9px;
}

.text__bold {
  font-weight: 700;
}

.text__white {
  color: #ffffff;
}

.blocks-wrapper {
  grid-column: 1/11;
  grid-row: 4/5;
  margin-left: 0px;
  background-color: #ffffff;
  padding-bottom: 45px;
}
.block {
  padding: 30px 30px 30px 30px;
  width: 100%;
}
.block.gradient {
  background: linear-gradient(90deg, #09203f 0%, #537895 58.56%, #6d8199 100%);
  background-size: 400%;
  animation: gradient 5s infinite linear;
}
.block.gradient-diagonal {
  background: linear-gradient(134deg, #09203f, #537895, #6d8199);
  background-size: 600% 600%;
  -webkit-animation: diagonalGradient 6s ease infinite;
  -moz-animation: diagonalGradient 6s ease infinite;
  animation: diagonalGradient 6s ease infinite;
}
.block.article {
  background-color: #f8fafb;
}

.first-block {
  background-color: #fff;
  padding-top: 0;
}
.second-block {
  padding: 30px 83px 30px 30px;
}
.gradient-text {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  color: #fff;
}
@keyframes gradient {
  0% {
    background-position: 80% 0%;
  }
  50% {
    background-position: 20% 100%;
  }
  100% {
    background-position: 80% 0%;
  }
}
@-webkit-keyframes diagonalGradient {
  0% {
    background-position: 0% 4%;
  }
  50% {
    background-position: 100% 97%;
  }
  100% {
    background-position: 0% 4%;
  }
}
@-moz-keyframes diagonalGradient {
  0% {
    background-position: 0% 4%;
  }
  50% {
    background-position: 100% 97%;
  }
  100% {
    background-position: 0% 4%;
  }
}
@keyframes diagonalGradient {
  0% {
    background-position: 0% 4%;
  }
  50% {
    background-position: 100% 97%;
  }
  100% {
    background-position: 0% 4%;
  }
}
.third-block {
  padding-top: 20px;
}
.fourth-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 83px 20px 30px;
}
.fourth-block-strong {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 60px;
  line-height: 70px;
  margin-right: 10px;
}
.sixth-block {
  background-color: #fff;
}
.info-block {
  padding: 40px 115px 40px 62px;
}
.info-block-title {
  text-align: center;
  color: #fff;
}
.aside-news {
  grid-column: 11/15;
  grid-row: 4/5;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#fdfbfb),
    to(#ebedee)
  );
  background: linear-gradient(90deg, #fdfbfb, #ebedee);
  border:1px solid #ccc;
  border-radius: 2px;
  margin-top: 0;
  margin-left: 0px;
  height: fit-content;
  padding: 30px 0 26px 30px;
}
.aside-news-title {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 23px;
  margin-bottom: 16px;
  background: #dee0e8;
  padding: 10px 5px;
  text-align: center;
}

.aside-news-card {
  position: relative;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  color: #000;
  padding: 4px 1px 4px 15px;
  transition: all 0.2s ease-in;
  font-family: "Roboto", sans-serif;
  border-bottom: 2px solid #828aaf;
  margin-top: 9px;

  padding-bottom: 11px;
}
.aside-news-card:hover {
  transform: scale(1.1);
}
.aside-news-card + .aside-news-card {
}

.aside-news-card > img {
  display: block;
  border: 0.4px solid #000;
  filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.25));
  border-radius: 2px;
  overflow: hidden;
  min-width: 84px;
  height: 84px;
  margin-right: 10px;
}
.aside-link {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.hero {
  width: 100%;
  /* margin-right: -75px;
  margin-left: -30px; */
  margin-bottom: 20px;
}
.hero-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 673px;
  flex: 1 0 673px;
  max-width: 673px;
  padding: 15px 24px 20px;
  background: #e0e4ec;
  -webkit-box-shadow: 0 0 8px rgba(51, 26, 26, 0.15);
  box-shadow: 0 0 8px rgba(51, 26, 26, 0.15);
  position: relative;
  z-index: 1;
}
.hero-photo {
  min-width: 60px;
  height: 60px;
  flex-basis: 60px;
  flex-grow: 0;
  flex-shrink: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 14px;
  margin-top: 5px;
  margin-left: -5px;
  background-color: #6d8199;
  box-shadow: 0px 2px 4px 1px rgba(0, 5, 48, 0.2);
}
.hero-photo > img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1.5;
}
.hero-name {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
}
.hero-text {
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 12px;
  line-height: 17px;
  margin-top: 5px;
  max-width: 335px;
}
.hero-text > span {
  font-style: normal;
}
.hero-text > strong {
  color: #fff;
  background: #e03263;
}
.hero-info {
  display: flex;
  justify-content: flex-end;
  flex-grow: 1;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 12px;
}
.hero-watches {
  margin-right: 8px;
  display: flex;
}
.hero-watches:before {
  content: "";
  background: url("../img/icon-eye.svg") no-repeat top center/contain;
  display: inline-block;
  width: 15px;
  height: 12px;
  margin-right: 3px;
}
.hero-comments {
  display: flex;
}
.hero-comments:before {
  content: "";
  background: url("../img/icon-speech.svg") no-repeat top center/contain;
  display: inline-block;
  width: 15px;
  height: 12px;
  margin-right: 3px;
}

.hero-tags {
  margin-left: -74px;
}

.hero-tags__tag {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 12px;
  text-transform: lowercase;
  color: #e03263;
  display: inline-block;
  padding: 2px;
  margin-right: 15px;
}
.article-date {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  line-height: 16px;
  color: #960000;
}
.article-subtitle {
  margin-top: 12px;
}
.article-video {
  width: 100%;
  height: 100%;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
  max-width: 90%;
  margin-top: 20px;
  display: block;
}
.article-video--mb-20 {
  margin-bottom: 20px;
}
article.article {
  padding: 0;
}
.section-title {
  margin-bottom: 10px;
}
.section-text {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 10px;
}

.section-text > a { 
  text-decoration: underline;
  color: #0d7ee7;
}
.section-text > strong {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}
.section-photo {
  object-fit: contain;
  margin: 20px 0;
  overflow: hidden;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

.photo-mw {
  max-width: 100%;
  display: block;
  margin: 0 auto;
  margin-bottom: 20px;
  margin-top: 20px;
}

.photo-min {
  float: left;
  margin: 0;
  max-height: 350px;
  margin-right: 15px;
    margin-bottom: 15px;
}

.section-list {
  margin-bottom: 35px;
}

.section-img {
  width: 80%;
  height: 390px;
  object-fit: contain;
  display: block;
  margin: 20px auto;
}
.section-img1 {
  width: 45%;

  object-fit: contain;
  display: block;
  margin: 0 auto;
  margin-top: 10px;
}

.info__danger-4 {
  background: -webkit-linear-gradient(0.15deg, #3fffe8 0.19%, #61ff00 99.95%);
  background: -moz-linear-gradient(0.15deg, #3fffe8 0.19%, #61ff00 99.95%);
  background: linear-gradient(89.85deg, #3fffe8 0.19%, #61ff00 99.95%);
  font-family: "Roboto", sans-serif;
  font-size: 18px;
}

.section--mt-30 {
  margin-top: 30px;
}
.section--mt-20 {
  margin-top: 20px;
}
.section-autograph {
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  text-align: right;
  color: #000;
  margin-top: 20px;
}
.section-autograph > strong {
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-weight: 700;
}
.slider-swiper {
  width: 462px;
  height: 555px;
  margin: 20px auto 0;
  max-width: 100%;
}
.slider-slide {
  background: #6d8199 no-repeat top center/cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.slider-slide-1 {
  background-image: url("../img/slider/slide-bg-1.jpg");
}
.slider-slide-2 {
  background-image: url("../img/slider/slide-bg-2.jpg");
}
.slider-slide-3 {
  background-image: url("../img/slider/slide-bg-3.jpg");
}
.slider-slide-4 {
  background-image: url("../img/slider/slide-bg-4.jpg");
}
.slider-slide-img {
  filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.25));
  margin-top: 15px;
  display: inline-block;
  width: 350px;
  height: 440px;
  z-index: 15;
}
.slider-slide-text {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  color: #000;
  position: relative;
  z-index: 10;
}
.slider-slide-text__wrapp {
  position: relative;
  padding: 60px 18px 20px;
  transform: translateY(-30%);
}
.slider-slide-text__overlay {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: linear-gradient(90deg, #5d9fff 0%, #b8dcff 48%, #6bbbff 100%);
  opacity: 0.6;
  box-shadow: 2px 1px 2px rgba(51, 26, 26, 0.15);
  border-radius: 2px;
}
.slider-block {
  position: relative;
}
.slider-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  margin: 10px auto 0;
  min-width: 50px;
  max-width: 80px;
}
.slider-pagination-bullet {
  display: inline-block;
  width: 9px;
  height: 9px;
  background-color: #000530;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  cursor: pointer;
}
.slider-pagination-bullet-active {
  width: 11px;
  height: 11px;
  background-color: #d90303;
}
.slider-pagination-bullet + .slider-pagination-bullet {
  margin-left: 10px;
}
.product-block {
  position: relative;
  background: #fff url("../img/bull.jpg") no-repeat top center/cover;
  width: 100%;
  max-width: 700px;
  height: auto;
  margin: 32px auto 0;
}
.product-img {
  display: block;
  max-width: 200px;
  max-height: 100%;
  margin-left: auto;
  margin-right: 15px;
  transform: scale(1.1);
}
.product-offer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: absolute;
  bottom: 11%;
  left: 10%;
  text-align: center;
}
.product-offer > span {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 28px;
  line-height: 38px;
  text-transform: uppercase;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
  color: #ffffff;
  margin-bottom: 24px;
    text-shadow: 2px 2px 3px black, 0 0 2em #676767, 0 0 0.4em #676767;
}
.product-offer > span > strong {
  display: block;
  font-size: 40px;
  font-weight: 900;
}
.section-product {
  font-family: "Roboto", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.section-product-wrapper {
  position: relative;
}
.section-product__img {
  display: inline-block;
  margin: 0 auto;
  width: 245px;
    margin-top: 10px;
}
.section-product__img--label {
  position: absolute;
  top: 0px;
  right: calc(-50% + 70px);
  width: 110px;
  height: 110px;
}






@media (max-width: 480px) {
  .section-product__img--label {
    right: calc(-50% + 95px);
  }
}
.section-product-text {
  margin-top: 10px;
  font-size: 25px;
  line-height: 1.35em;
  text-align: center;
}
.section-product-counter {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  display: inline-block;
  font-size: 32px;
  line-height: 37px;
  margin-top: 15px;
  padding: 13px 10px;
  color: #fff;
  background-color: #d90303;
  transition: all 0.15s ease-in-out;
  animation: glowing 2000ms infinite both;
  border-radius: 4px;
}
.section-product-wheel {
  margin-top: 50px;
}
@media screen and (max-width: 1024px) {
  .section-product-wheel {
    margin-top: 88px;
  }
}
@keyframes glowing {
  0% {
    filter: drop-shadow(0px 0px 2px #d90000);
  }
  50% {
    filter: drop-shadow(0px 0px 8px #d90000);
  }
  100% {
    filter: drop-shadow(0px 0px 2px #d90000);
  }
}
.warning {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border: 0.3px solid #000530;
  border-radius: 2px;
  background: linear-gradient(
      142.75deg,
      #fce376 -11.7%,
      #fce479 11.09%,
      #fde681 25.06%,
      #feeb8f 36.64%,
      #fff0a0 45.29%,
      #bc6d00 193.23%
    )
    top center;
  width: 50%;
  margin: 0 auto;
  padding: 12px 14px;
  margin-top: 30px;
}
.warning > img {
  width: 52px;
  height: 46px;
}
.warning-text {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  margin-top: 19px;
}
.warning-text > strong {
  display: block;
  margin-bottom: 5px;
}
.main_form {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url(../img/form_bg.jpg) center top no-repeat;
  background-size: 100% 100%;
  padding: 30px 0;
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
  font-size: 18px;
  margin-bottom: 30px;
}
.main_form h2 {
  font-size: 32px;
  line-height: 1.2;
  color: #000;
  font-weight: bold;
  margin-top: 25px;
  margin-bottom: 15px;
  text-align: center;
  font-style: normal;
}
.sertif {
  color: blue;
  font-size: 14px;
  font-style: italic;
}
.blue-border {
  margin: 15px 20px 15px 20px;
  border: 2px solid #0299ff;
  padding: 10px !important;
  text-align: center !important;
  max-width: 700px;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.35;
}
.main_form p {
  padding: 0 0 30px;
  text-align: left;
}
.main_form .price {
  margin-top: 0;
  margin-bottom: 10px;
  text-align: center;
  padding-bottom: 0;
}
.price_red {
  font-weight: bold;
  color: red;
}
.main_form label {
  margin-top: 10px;
  font-size: 16px;
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
.main_form input {
  font-size: 18px;
  padding: 15px;
  border-radius: 3px;
  border: 2px solid #e9d7dc;
  max-width: 300px;
  width: 100%;
}
.main_form button {
  padding: 20px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 15px 0 rgba(129, 150, 160, 0.45);
  border-radius: 5px;
  background-color: #d90303;
  background-position: 1.35em 0.94em;
  background-size: 1em;
  background-repeat: no-repeat;
  transition: all 0.15s ease-in-out;
  border: none;
  cursor: pointer;
  font-size: 20px;
  margin-top: 20px;
  box-sizing: border-box;
  width: 260px;
  margin-bottom: 40px;
}
.main_form button {
  animation: glowing 2000ms infinite both;
}
.timelimit,
.additional {
  font-size: 12px;
  text-align: center;
  padding: 0 20px;
}
.timelimit b {
  display: inline-block;
  background: url(../img/timerIcon2.png) left top 3px no-repeat;
  background-size: 10px;
  margin-top: -2px;
  padding-left: 14px;
  color: red;
  vertical-align: middle;
  font-size: 15px;
}
.article__text b,
.article__text strong {
  font-weight: bold;
}
@media (max-width: 992px) {
  .main_form {
    padding: 30px 15px;
  }
  .main_form label {
    font-size: 14px;
  }
  .main_form input {
    width: 80%;
    font-size: 14px;
  }
}
.order-info {
  text-align: center;
}
.order-info__title {
  font-size: 24px;
  color: red;
  text-align: center;
}
.order-info__date {
  text-decoration: underline;
}
.order-info__count {
  display: inline-block;
  background: red;
  padding: 20px;
  margin: 12px auto;
  width: auto;
  color: #fff;
  text-shadow: 0 -1px 0 #000, 0 -1px 0 #000, 0 1px 0 #000, 0 1px 0 #000,
    -1px 0 0 #000, 1px 0 0 #000, -1px 0 0 #000, 1px 0 0 #000, -1px -1px 0 #000,
    1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000, -1px -1px 0 #000,
    1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  font-size: 44px;
  border-radius: 5px;
  text-align: center;
}
.comments-moderate {
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-weight: 700;
  display: none;
  background: #f2f8ff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px;
  font-size: 16px;
  line-height: 18px;
  color: #0d7ee7;
}
.comments-moderate__message {
  text-align: center;
}
.comments-moderate--visible {
  display: block;
}
.comments-form {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.comments-form-wrapp {
  padding: 8px 103px 8px 38px;
  border-top: 1px solid #000530;
  border-bottom: 1px solid #000530;
  background-color: #6d8199;
}
.comments-form--hidden {
  display: none;
}
.comments-form > label {
  position: relative;
  flex-grow: 1;
}
.comments-form__input {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  width: 100%;
  padding: 12px 30px 12px 12px;
  background: #fff;
  border: 0.2px solid #000530;
  border-radius: 2px;
  font-size: 12px;
  line-height: 14px;
  color: #000;
}
.comments-form__button {
  display: block;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  height: 28px;
}
.comments-form__button > img {
  width: 28px;
  height: 28px;
}
.comments-user-avatar {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-width: 60px;
  height: 60px;
  background-color: #f2f8ff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  margin-right: 10px;
  overflow: hidden;
}
.comments-user-avatar > img.icon {
  display: block;
  width: 29px;
  height: 23px;
}
.comments-user-avatar > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.comments-user-avatar > a {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
.comments-card {
  display: flex;
  align-items: flex-start;
  padding: 15px 22px 15px 6px;
  background-color: #f2f8ff;
  position: relative;
  box-shadow: 1px 1px 2px rgba(51, 26, 26, 0.15);
  border-radius: 2px;
}
.comments-more {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  line-height: 14px;
  width: 144px;
  padding: 11px 13px;
  border: 0.2px solid rgba(0, 0, 0, 0.4);
  box-sizing: border-box;
  border-radius: 2px;
  color: rgba(0, 0, 0, 0.4);
  margin: 19px auto 0;
}
.comments-more:after {
  content: "";
  display: inline-block;
  background: url("../img/arrow-down.svg") no-repeat top center/contain;
  width: 10px;
  height: 10px;
  margin-left: 4px;
}
@keyframes wiggle {
  5%,
  50% {
    transform: scale(1);
  }
  10% {
    transform: scale(0.9);
  }
  15% {
    transform: scale(1.15);
  }
  20% {
    transform: scale(1.15) rotate(-5deg);
  }
  25% {
    transform: scale(1.15) rotate(5deg);
  }
  30% {
    transform: scale(1.15) rotate(-3deg);
  }
  35% {
    transform: scale(1.15) rotate(2deg);
  }
  40% {
    transform: scale(1.15) rotate(0);
  }
}
.comment {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #000;
  font-size: 14px;
  line-height: 16px;
}
.comment-date {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 12px;
  line-height: 12px;
}
.comment-username {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}
.comment-text {
  margin-top: 4px;
}

.comment-text > a{
  text-decoration: underline;
  color: #0299ff;
}
.comment-text > img {
  display: block;
  max-width: 100%;
  margin-top: 10px;
  border-radius: 2px;
  overflow: hidden;
}
.comment + .comment {
  margin-top: 20px;
}
.comment.reply {
  margin-left: 73px;
}
.err {
  border: 1px solid #d90303;
}
.footer {
  background: #828aaf;
  color: #fff;
  padding: 28px 0 15px;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
}
.footer-policy {
  display: block;
  margin-top: 5px;
  text-decoration: underline;
}
.footer-socials {
	display: flex;
	justify-content: center;
	align-items: center;
  margin-top: 19px;
}
.footer-socials-link + .footer-socials-link {
  margin-left: 19px;
}
.doctor {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  width: 100%;
  max-width: 509px;
  margin: 20px auto 0;
  text-align: center;
  line-height: 0;
  overflow: hidden;
}
.doctor > img {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  max-width: 100%;
  object-fit: contain;
}
.doctor-description {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 13px;
  padding: 14px 80px;
  background-color: #f2f8ff;
  color: #000530;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px 2px 0 0;
}
.doctor-advantages {
  background: #000530 url("../img/bull-head.svg") no-repeat center center/400px;
  font-size: 16px;
  line-height: 17px;
  color: #fff;
  padding: 20px 44px;
}
.doctor-text {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}
.doctor-text + .doctor-text {
  margin-top: 28px;
}
.doctor-list {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  margin-top: 20px;
  text-align: left;
}
.doctor-list__item {
  position: relative;
}
.doctor-list__item + .doctor-list__item {
  margin-top: 10px;
}
.doctor-list__item:before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 4px;
  height: 4px;
  top: 5px;
  left: -10px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: #ffbf00;
}
.doctor-footnote {
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-weight: 400;
  text-align: left;
  font-size: 14px;
  line-height: 15px;
  margin-top: 16px;
}
.doctor-info {
  max-width: 509px;
  margin: 38px auto 0;
  padding: 30px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  width: 100%;
  background-color: #fff;
  color: #000;
  filter: drop-shadow(0px 0px 2px rgba(51, 51, 51, 0.25));
}
.doctor-info-title {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  text-align: center;
  font-size: 20px;
  line-height: 22px;
}
.doctor-info-text {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  margin-top: 16px;
  font-size: 16px;
  line-height: 17px;
}
.doctor-info-list {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  margin-top: 10px;
  font-size: 14px;
  line-height: 15px;
}
.doctor-info-list__item {
  position: relative;
  text-transform: lowercase;
  margin-left: 20px;
}
.doctor-info-list__item + .doctor-info-list__item {
  margin-top: 10px;
}
.doctor-info-list__item > strong {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}
.doctor-info-list__item:before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 18px;
  height: 16px;
  top: 2px;
  left: -24px;
  background: url("../img/list-bull.svg") no-repeat top center/18px;
}
@media (max-width: 767px) {
  .header-top {
    padding-left: 12px;
  }

  .header-logo {
    /* display: block; */
    /* margin: 0 auto; */
  }



  .hero-main {
    position: relative;
  }
  .hero-info {
    position: absolute;
    top: 20px;
    right: 20px;
  }
  .blocks-wrapper {
    grid-column: 1/15;
    margin: 0 12px;
  }
  .block {
    padding: 30px 12px;
  }
  .first-block {
    padding-top: 0;
  }
  .comments-form-wrapp {
    padding-right: 30px;
  }
  .aside-news {
    display: none;
  }
  .spin-wrapper p {
    margin-bottom: 30px;
  }
  .section-img {
    width: 100%;
    height: auto;
  }
  .warning {
    width: 70%;
  }
  .info-block {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 60px;
  }
  .doctor {
    max-width: unset;
  }
  .doctor-top {
    margin: 0 12px;
  }
  .doctor-advantages {
    margin-top: 23px;
  }
  .doctor-info {
    max-width: unset;
  }
  .footer {
    padding-bottom: 39px;
  }
}


@media(max-width: 600px) {
  .header-top__nav {
    display: none;
  }
}






@media (max-width: 480px) {
  .hero-name {
    font-size: 14px;
  }
  .hero-text {
    font-size: 14px;
  }
  .slider-slide-img {
    width: 280px;
    height: auto;
    margin-top: 50px;
  }
  .slider-slide-text__wrapp {
    transform: translateY(-10%);
    padding-bottom: 30px;
  }
  .product-img {
    height: 300px;
  }
  .product-offer {
    left: 5%;
    font-size: 24px;
    line-height: 34px;
  }
} 

body {
  background: url("../img/bg.jpg");
}
.grid-container {
  box-shadow: none;
}
.container {
  max-width: 1024px;
  margin: 0 auto;
}

.header__section-wrapper {
  width: 100%;
  height: auto;
  background-image: url(../img/header-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 10px;
}

.aside-news {
  padding: 0px 0 26px 0;
  height: 100%;
}

/* html{font-size:1.2px}@media(max-width: 1920px){html{font-size:calc(100vw / 1920)}}@media(max-width: 1480px){html{font-size:calc(100vw / 1480)}}@media(max-width: 1200px){html{font-size:calc(100vw / 1200)}}@media(max-width: 992px){html{font-size:calc(100vw / 992)}}@media(max-width: 768px){html{font-size:calc(100vw / 768)}}@media(max-width: 576px){html{font-size:calc(100vw / 576)}}@media(max-width: 480px){html{font-size:calc(100vw / 480)}} */

.blocks-wrapper {
      border: 1px solid #ccc;
}
.aside-news-text {
  font-size: 14px;
  line-height: 15px;
  max-width: 150px;
}
.comment .comments-user-avatar {
  box-shadow: 0px 2px 4px 1px rgba(0, 5, 48, 0.2);
}
.comments .button {
  margin: 40px auto 0;
}
.sixth-block {
  padding-bottom: 50px;
}
.sixth-block.comments-top {
  padding-bottom: 30px;
}
.info-block .button {
  margin-top: 30px;
}
h3,
.section-text,
.comment-text,
.comment-username {
  font-size: 16px;
  line-height: 19px;
}

@media (max-width: 768px) {
  .blocks-wrapper {
    padding-top: 0;
  }

  .hero {
    width: calc(100% + 24px);
    margin-left: -12px;
  }

  .hero-main {
    padding-top: 38px;
    max-width: 100%;
  }

  .section-photo,
  .section-img {
    max-width: 80%;
    margin: 20px auto;
    display: block;
  }
  .section-img {
    max-height: 390px;
  }
  .product-block {
    max-width: 560px;
  }
  .product-img {
    max-height: 300px;
  }
}

@media (max-width: 480px) {
  .nav-menu__item > a {
    padding: 10px 0;
    font-size: 12px;
  }
  .comments-form-wrapp {
    padding: 8px 30px 8px 20px;
  }
  .article-video,
  .section-photo,
  .section-img {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 460px) {
  .product-img {
    max-height: 175px;
  }
  .product-block {
    min-height: 220px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .product-offer > span {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 5px;
    transform: translateX(-10px);
  }
  .product-offer > span > strong {
    font-size: 32px;
    line-height: 40px;
  }
}

@media (max-width: 414px) {
  .hero-content {
    padding-bottom: 20px;
  }
  /* .hero-info {
    top: auto;
    bottom: 20px;
    right: 20px;
  } */
}

@media (max-width: 359px) {
  .nav-menu__item + .nav-menu__item {
    margin-left: 15px;
  }
  .comment {
    padding-bottom: 30px;
  }
  .comment-date {
    top: auto;
    bottom: 10px;
  }
  .product-offer > span {
    transform: translateX(-40px);
  }
}

.nw {
  display: flex;
  align-items: center;
  column-gap: 10px;
  font-size: 15px;
}
.left-img {
  width: 100%;
  max-width: 230px;
  margin: 0 8px 0 0; }


  .doc {
    margin: 0 12px;
    padding: 10px;
    margin-bottom: 30px;
    background-image: linear-gradient(20deg, #bbe4ff 0, #9db9f2 50%, #7f90b5 100%);
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  }
  .doc__title {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    margin-top: 10px;
    margin-bottom: 20px;
  }
  .doc__content {
    padding-bottom: 10px;
    background: #fff;
    -webkit-box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.25);
    box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.25);
  }
  .doc__image,
  .doc__image img {
    display: block;
    width: 100%;
    margin: 0;
  }
  .doc__image figcaption {
    padding: 16px;
    background: #eef2f5;
    -webkit-box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.25);
    box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.25);
  }
  .doc__image figcaption p {
    font-size: 14px;
    font-weight: 700;
    color: #000530;
    text-align: center;
  }
  .doc__text {
    max-width: 420px;
    margin: 20px auto;
    text-align: center;
  }
  .doc__bg {
    margin: 0 10px;
    padding: 20px 20px;
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(#eff0fa),
      color-stop(1%, #eff0fa),
      to(#f8f6fa)
    );
    background: linear-gradient(90deg, #eff0fa, #eff0fa 1%, #f8f6fa);
    border: 1px solid #d9dae0;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  }
  .doc__bg h3 {
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    color: #657f9f;
    margin-bottom: 15px;
  }
  .doc__bg ul li {
    font-size: 14px;
    padding-left: 24px;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
    font-weight: 500;
  }
  .doc__bg ul li:before {
    content: '';
    position: absolute;
    display: inline-block;
    background: url(../img/bullet.svg) 50% 50% / contain no-repeat;
    width: 16px;
    height: 16px;
    white-space: nowrap;
    overflow: hidden;
    left: 0;
    top: 0;
  }
  .doc__bg p {
    font-size: 10px;
    font-weight: 700;
    color: #657f9f;
  }


  .banners {
    margin: 0 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .banners li {
    width: calc(25% - 13px);
  }
  .banners li img {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    border: 1px solid #5a7b99;
    -webkit-filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
  }
  .banners li p {
    font-size: 12px;
  }


  @media (max-width: 766px) {
    .photo-float {
      margin: 0 15px 15px 0;

    }
  }