* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
:after,
:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:active,
:focus {
  outline: 0;
}

a:active,
a:focus {
  outline: 0;
}

aside,
footer,
header,
nav {
  display: block;
}

body,
html {
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

button,
input,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

input,
textarea {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: inherit;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: inherit;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: inherit;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: inherit;
}

input::placeholder,
textarea::placeholder {
  color: inherit;
}

textarea {
  resize: none;
}

button {
  cursor: pointer;
  background-color: transparent;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a {
  display: inline-block;
  color: inherit;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  vertical-align: top;
}

svg {
  display: block;
  width: 100%;
  height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

picture {
  display: block;
  width: 100%;
  height: 100%;
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

@font-face {
  font-family: Arial;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(./ArialMT.woff2) format("woff2");
}

@font-face {
  font-family: Arial;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(./Arial-BoldMT.woff2) format("woff2");
}

@font-face {
  font-family: Tahoma;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(./Tahoma-Bold.woff2) format("woff2");
}

@font-face {
  font-family: Georgia;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(./Georgia.woff2) format("woff2");
}

:root {
  --font-main: "Arial", sans-serif;
  --container-width: 768px;
  --container-step: 10px;
  --container-step-tablet: 10px;
  --container-step-mobile: 10px;
  --container: calc(var(--container-width) + (var(--container-step) * 2));
  --background-page: #fff;
  --main: #000000;
  --black: #000000;
  --white: #ffffff;
  --l-blue: #4ba2b3;
  --gradient: linear-gradient(90deg, #4ba2b3 0%, #b91fec 100%);
  --dark: #1e1e1e;
  --blue: #a7cff3;
  --hover: #1b879c;
  --active: #1b879c;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-step);
}

@media (max-width: 991px) {
  .container {
    padding: 0 var(--container-step-tablet);
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 var(--container-step-mobile);
  }
}

.rd-transfer {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.Tahoma {
  font-family: Tahoma, sans-serif;
}

.Georgia {
  font-family: Georgia, sans-serif;
}

.page {
  margin: 0 auto;
  max-width: 768px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: var(--font-main);
  min-height: 100vh;
  overflow: hidden;
  color: var(--main);
  background-color: var(--background-page);
}

.main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.main_no-margin:not(:last-child) {
  margin-bottom: 0;
}

a,
button {
  color: var(--main);
}

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

.color-white {
  color: var(--white);
}

.color-black {
  color: var(--black);
}

.color-grey {
  color: #c1c1c1;
}

.color-green {
  color: #1bc168;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-16 {
  margin-bottom: 16px;
}

.input {
  display: block;
  border-radius: 24px;
  background: #e4e4e4;
  padding: 16px 24px;
  width: 100%;
  height: 55px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  resize: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #131313;
  -webkit-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
}

.input_area {
  height: 93px;
}

@media (any-hover: hover) {
  .input:hover {
    border-color: var(--hover);
  }
}

.input:focus-visible {
  border-color: var(--hover);
}

.img-hover {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

@media (any-hover: hover) {
  .img-hover:hover {
    opacity: 0.7;
  }
}

.img-hover:active {
  opacity: 0.6;
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
}

.back-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.size {
  background-size: cover;
}

.but {
  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;
  gap: 10px;
  padding: 5px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  border-radius: 24px;
  background: #1bc168;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 16px;
  width: 100%;
  min-height: 46px;
  color: var(--white);
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

@media (any-hover: hover) {
  .but:hover {
    opacity: 0.5;
  }
}

.but:focus-visible {
  opacity: 0.5;
}

.but:active {
  opacity: 0.5;
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.word-break {
  word-break: break-all;
}

.m-auto {
  margin-left: auto;
  margin-right: auto;
}

.img-contain {
  -o-object-fit: contain;
  object-fit: contain;
}

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

.underline {
  text-decoration: underline;
}

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

.text-right {
  text-align: right;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.fw-100 {
  font-weight: 100;
}

.fw-200 {
  font-weight: 200;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

.rd-upload img {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.rd-load img {
  opacity: 1;
}

.scroll {
  padding-bottom: 10px;
  overflow: auto;
}

.scroll::-webkit-scrollbar {
  height: 4px;
  background-color: var(--white);
}

.scroll::-webkit-scrollbar-thumb {
  background-color: var(--brown);
}

.mb-24 {
  margin-bottom: 24px;
}

.color-red {
  color: #c60800;
}

.link {
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

@media (any-hover: hover) {
  .link:hover {
    color: var(--hover);
  }
}

.link:active {
  color: var(--active);
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
}

.italic {
  font-style: italic !important;
}

.domain-header__top {
  padding: 10px 0;
  background: #c60800;
}

.domain-header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.domain-header__burger {
  max-width: 37px;
  width: 100%;
  height: 30px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.domain-header__top-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: -webkit-fill-available;
}

.domain-header__card-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.domain-header__img {
  width: 23px;
  height: 24px;
}

@media (max-width: 350px) {
  .domain-header__img {
    width: 20px;
    height: 21px;
  }
}

.domain-header__img-mail {
  width: 28px;
  height: 20px;
}

@media (max-width: 350px) {
  .domain-header__img-mail {
    width: 22px;
    height: 20px;
  }
}

.domain-header__logo {
  max-width: 157px;
  width: 100%;
  height: 32px;
  margin: 0 auto;
}

.contents__img-bad {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .domain-header__logo {
    height: 30px;
  }
}

.domain-header__log-in {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: var(--white);
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .domain-header__log-in {
    margin-left: auto;
  }
}

.domain-header__list {
  width: 100%;
  overflow: scroll;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  white-space: nowrap;
}

.domain-header__list::-webkit-scrollbar {
  display: none;
}

.domain-header__item {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.domain-header__item:nth-child(1) {
  width: 126px;
  margin-right: 4px;
}

.domain-header__item:nth-child(2) {
  width: 68px;
  padding: 11px 12px 7px 12px;
  border-bottom: 4px solid #c60800;
}

.domain-header__item:nth-child(2)::after {
  position: absolute;
  content: "";
  right: -3px;
  width: 1px;
  height: 20px;
  background: #ccc;
}

.domain-header__item:nth-child(3) {
  width: 77px;
  padding: 10px 15px 13px 15px;
}

.domain-header__item:nth-child(3)::after {
  position: absolute;
  content: "";
  right: -3px;
  width: 1px;
  height: 20px;
  background: #ccc;
}

.domain-header__item:nth-child(4) {
  width: 67px;
  padding: 10px 15px 13px 15px;
}

.domain-header__item:nth-child(4)::after {
  position: absolute;
  content: "";
  right: -3px;
  width: 1px;
  height: 20px;
  background: #ccc;
}

.domain-header__item:nth-child(5) {
  width: 105px;
  padding: 10px 15px 10px 12px;
}

.domain-header__item:nth-child(5)::after {
  position: absolute;
  content: "";
  right: -3px;
  width: 1px;
  height: 20px;
  background: #ccc;
}

.domain-header__item:nth-child(6) {
  width: 77px;
  padding: 10px 15px 13px 15px;
}

.domain-header__item:nth-child(6)::after {
  position: absolute;
  content: "";
  right: -3px;
  width: 1px;
  height: 20px;
  background: #ccc;
}

.domain-header__item:nth-child(7) {
  width: 111px;
  padding: 10px 15px 13px 14px;
}

.domain-header__item:nth-child(7)::after {
  position: absolute;
  content: "";
  right: -3px;
  width: 1px;
  height: 20px;
  background: #ccc;
}

.domain-header__item:nth-child(8) {
  width: 133px;
  padding: 10px 15px 13px 14px;
}

.domain-header__item:nth-child(8)::after {
  position: absolute;
  content: "";
  right: -3px;
  width: 1px;
  height: 20px;
  background: #ccc;
}

.domain-header__item:nth-child(9) {
  width: 116px;
  padding: 10px 15px 13px 14px;
}

.domain-header__item:nth-child(9)::after {
  position: absolute;
  content: "";
  right: -3px;
  width: 1px;
  height: 20px;
  background: #ccc;
}

.domain-header__item:nth-child(10) {
  width: 73px;
  padding: 10px 15px 13px 15px;
}

.domain-header__item:nth-child(10)::after {
  position: absolute;
  content: "";
  right: -3px;
  width: 1px;
  height: 20px;
  background: #ccc;
}

.domain-header__item:nth-child(11) {
  width: 203px;
  padding: 10px 15px 13px 14px;
}

.domain-header__item:nth-child(11)::after {
  position: absolute;
  content: "";
  right: -3px;
  width: 1px;
  height: 20px;
  background: #ccc;
}

.domain-header__link {
  width: 100%;
  font-size: 15px;
  font-style: normal;
  line-height: 16.95px;
  letter-spacing: -0.45px;
  color: var(--black);
}

.domain-header .link-one {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px 11px 12px 21px;
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
  background: #fff;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.3);
}

.domain-header .link-one span {
  display: block;
  max-width: 7px;
  width: 100%;
  height: 5px;
}

.domain-header__list-two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 360px) {
  .domain-header__list-two {
    gap: 4px;
  }
}

.domain-header__item-two {
  padding: 6px 8px;
  width: 25%;
  height: 58px;
}

@media (max-width: 360px) {
  .domain-header__item-two {
    padding: 4px 4px;
  }
}

.domain-header__item-text {
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: -0.36px;
  color: var(--white);
}

.contents__card {
  padding-top: 2px;
  padding-bottom: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.contents__card-helt {
  margin-bottom: 10px;
  max-width: 75px;
  width: 100%;
  height: 15px;
  font-size: 12.695px;
  font-style: normal;
  font-weight: 700;
  line-height: 13px;
  letter-spacing: 1.04px;
  text-transform: uppercase;
  color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-image: url(./Link.webp);
  background-size: cover;
}

.contents__card-helt span {
  position: relative;
  z-index: 2;
  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;
  text-align: center;
}

.contents__card-title {
  margin-bottom: 15px;
  font-size: 26.133px;
  font-style: normal;
  font-weight: 700;
  line-height: 31.5px;
  letter-spacing: -0.3px;
  color: #000;
}

.contents__card-ofter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.contents__card-name {
  margin-bottom: 10px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 15.96px;
  letter-spacing: -0.14px;
  color: var(--black);
}

.contents__card-name span {
  color: #c60800;
}

.contents__cards-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}

.contents .article-time {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 15.96px;
  letter-spacing: -0.14px;
  color: var(--black);
}

.contents__time {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 15.96px;
  letter-spacing: -0.14px;
  color: var(--black);
}

.contents__number {
  padding-top: 5px;
  width: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 26px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: var(--white);
  background-image: url(./comments.svg);
}

.contents__card-img {
  margin-bottom: 40px;
}

.contents__img-doc {
  margin-bottom: 7px;
  width: 100%;
}

@media (max-width: 360px) {
  .contents__img-doc {
    height: 220px;
  }
}

.contents__img-span {
  color: #585858;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
}

.contents__content-text {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.18px;
  color: #2a2a2a;
}

.contents__img {
  margin-bottom: 5px;
}

.contents__img-strim {
  margin-bottom: 5px;
  width: 100%;
}

@media (max-width: 360px) {
  .contents__img-strim {
    height: 500px;
  }
}

.contents__img-novo {
  margin-bottom: 5px;
  width: 100%;
}

@media (max-width: 360px) {
  .contents__img-novo {
    height: 180px;
  }
}

.contents__title {
  padding-bottom: 5px;
  width: 270px;
  font-size: 21.383px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: -0.23px;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 8px solid #c60800;
}

.contents__img-body {
  margin-bottom: 5px;
  width: 100%;
}

@media (max-width: 360px) {
  .contents__img-body {
    height: 300px;
  }
}

.contents__img-prod {
  margin-bottom: 5px;
  width: 100%;
}

.contents__img-food {
  margin-bottom: 5px;
  width: 100%;
}

.contents__img-mom {
  margin-bottom: 5px;
  width: 100%;
}

.contents .text {
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}

.contents__article-time {
  font-size: 16px;
  font-style: normal;
  line-height: 25.92px;
  letter-spacing: -0.18px;
  color: #2a2a2a;
}

.contents__cards-war {
  padding: 5px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  border-top: 1px solid #585858;
  border-bottom: 1px solid #585858;
}

.contents__span-war {
  width: 118px;
  height: 27px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 15.5px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.96px;
  color: var(--white);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-image: url(./war.webp);
}

.contents__content-war {
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 16.95px;
  letter-spacing: -0.45px;
}

.contents .link-btn {
  display: contents;
}

.contents__img-rev {
  margin: 0 auto;
  max-width: 166px;
  width: 100%;
  height: 81px;
}

.contents__prod {
  padding: 6px 11px 16px 11px;
  border-top: 4px solid #000;
  border-bottom: 4px solid #000;
  background: #ebeaf1;
}

.contents__prod-name {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 25.92px;
  letter-spacing: -0.18px;
  color: var(--black);
}

.contents__prod-special {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 25.92px;
  letter-spacing: -0.18px;
  color: var(--black);
}

.contents__img-product {
  max-width: 250px;
  width: 100%;
  margin: 0 auto;
  height: 308px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contents__prod-text {
  max-width: 337px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 6px;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 25.92px;
  letter-spacing: -0.18px;
  color: var(--black);
}

.contents__prod-link {
  max-width: 250px;
  width: 100%;
  min-height: 43px;
  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;
  text-align: center;
  padding: 8px 15px;
  margin: 0 auto;
  margin-top: 6px;
  margin-bottom: 7px;
  border-radius: 6px;
  font-size: 23px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  color: var(--white);
  background: #c60800;
}

.contents__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  padding-bottom: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-bottom: 1px solid #ccc;
}

.contents__item-tags:nth-child(1) {
  padding: 2px 7px;
  background: #000;
}

.contents__item-tags:nth-child(1) a {
  font-size: 12.086px;
  font-style: normal;
  font-weight: 700;
  line-height: 16.9px;
  letter-spacing: 1.04px;
}

.contents__item-tags:nth-child(2) a {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 11.62px;
  letter-spacing: -0.42px;
  color: #585858;
}

.contents__item-tags:nth-child(3) a {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 11.62px;
  letter-spacing: -0.42px;
  color: #585858;
}

.contents__item-tags:nth-child(4) a {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 11.62px;
  letter-spacing: -0.42px;
  color: #585858;
}

.contents__item-tags:nth-child(5) a {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 11.62px;
  letter-spacing: -0.42px;
  color: #585858;
}

.list-social {
  margin-bottom: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 11px;
}

.item-social {
  max-width: 85px;
  width: 100%;
  height: 40px;
  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: 20px;
  gap: 3px;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #fff;
}

.item-social:nth-child(1) {
  background: #3b5998;
}

.item-social:nth-child(2) {
  background: #000;
}

.item-social:nth-child(3) {
  background: #de0000;
}

.item-social img {
  width: 14px;
  height: 14px;
}

.comments {
  padding: 35px 0 39px 0;
  border-top: 4px solid #000;
  border-bottom: 5px solid #c60800;
  background: #f6f6f6;
}

.comments__top {
  padding: 9px 0;
  margin-bottom: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #fff;
}

.comments .row__title {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  color: #373e44;
}

.comments .row__name {
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 22.5px;
  color: rgba(7, 7, 7, 0.65);
}

.comments .row__list {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.comments .form-input {
  margin-bottom: 15px;
  padding: 12px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25.6px;
  border-radius: 2px;
  background: #fff;
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
  color: rgba(7, 7, 7, 0.65);
}

.comments .media-top {
  margin-bottom: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}

.comments .media-comments {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  color: rgba(7, 7, 7, 0.65);
}

.comments .media-new {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: rgba(7, 7, 7, 0.65);
}

.comments .media-comments-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.comments .media-left {
  position: relative;
}

.comments .media-left::after {
  position: absolute;
  content: "";
  top: 50px;
  left: 50%;
  width: 1px;
  height: 60%;
  background: #e3e3e3;
}

.comments .media-body-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.comments .media-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2px;
}

.comments .media-heading a {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  color: #c60800;
}

.comments .media-body-btn {
  max-width: 23px;
  width: 100%;
  height: 23px;
  background-image: url(./comments-btn.svg);
}

.comments .media-like-img {
  margin: 0 !important;
  max-width: 14px;
  width: 100%;
  height: 16px;
}

.comments .media-like-img img {
  margin: 0 !important;
}

.comments .media-like-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.comments .media-like {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.comments .media-yest {
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  color: rgba(7, 7, 7, 0.65);
}

.comments .media-like-btn {
  max-width: 192px;
  width: 100%;
  min-height: 33px;
  margin: 0 auto;
  margin-top: 40px;
  margin-bottom: 15px;
  padding: 8px 15px;
  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: 6px;
  background: #c33;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: var(--white);
}

.comments .media-list-help {
  padding-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: 1px solid #fff;
}

@media (max-width: 360px) {
  .comments .media-list-help {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.comments .media-item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  color: rgba(7, 7, 7, 0.65);
}

@media (max-width: 389px) {
  .comments .media-item-link {
    font-size: 12px;
  }
}

.comments .media-item-link span {
  display: block;
  max-width: 75px;
  width: 100%;
  height: 21px;
}

.comments .media-item {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  color: rgba(7, 7, 7, 0.65);
}

@media (max-width: 389px) {
  .comments .media-item {
    font-size: 12px;
  }
}

.footer {
  padding: 35px 0;
}

.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6px;
}

.footer__logo {
  margin: 0 auto;
  max-width: 220px;
  width: 100%;
  height: 34px;
}

.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.footer__item {
  max-width: 35px;
  width: 100%;
  height: 35px;
}

.footer__list-two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
}

.footer .item {
  padding-left: 6px;
  border-left: 1px solid #ccc;
}

.footer__link {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 12px;
  letter-spacing: -0.12px;
  color: #585858;
}

.footer__top {
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}

.footer__span {
  display: block;
  padding: 8px 0 17px 0;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 12px;
  letter-spacing: -0.12px;
  color: #585858;
}

.footer__span-two {
  margin: 0 auto;
  max-width: 187px;
  width: 100%;
  height: 25px;
}

.wman {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.text-puls {
  display: ruby;
}

.time-minus {
  display: block;
  width: fit-content;
  -webkit-animation: back-body 3s linear infinite;
  animation: back-body 3s linear infinite;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: scale(1);
  scale: 1;
}

@keyframes back-body {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
