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

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

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

html {
  font-size: 62.5%;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: black;
  background-color: #e9f0f4;
}

h2,
p {
  margin: 0;
}

.text-bold {
  font-weight: bold;
}

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

.text-red {
  color: #e70000;
}

.text-green {
  color: #1eb336;
}

.image-wrapper {
  margin: 2.5rem 0;
}

.image-wrapper > img {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .image-wrapper--big {
    width: 290px;
    margin: 0 auto;
    overflow-x: scroll;
  }

  .image-wrapper--big > img {
    width: 600px;
    max-width: none;
  }

  @media screen and (min-width: 480px) {
    .image-wrapper--big {
      width: 416px;
    }
  }

  @media screen and (min-width: 560px) {
    .image-wrapper--big {
      width: 530px;
    }
  }
}

.scroll {
  max-width: 40px;
  transform: translateX(0);
  animation: moving 2s infinite;
  margin: 0 auto;
}

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

@keyframes moving {
  0% {
    transform: translateX(10px);
  }

  50% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(10px);
  }
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}

ul {
  padding-left: 3rem;
  margin: 0;
}
ul li {
  font-size: 1.6rem;
  line-height: 2.6rem;
}

.decoration {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 0.5rem;
}
.decoration-1 {
  background-color: #f69087;
}
.decoration-2 {
  background-color: #85ccb1;
}
.decoration-3 {
  background-color: #85a9b3;
}
.decoration-4 {
  background-color: #b0cb7a;
}

header {
  width: 100%;
  background-color: #2e3641;
  display: flex;
  flex-direction: column;
}
header .header-title {
  font-size: 4.2rem;
  color: white;
  padding: 2.1rem 1.5rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  header .header-title {
    font-size: 4.7rem;
    color: white;
    padding: 2.1rem 12.4rem;
  }
}

.container {
  width: 100%;
  max-width: 116rem;
  margin-left: auto;
  margin-right: auto;
}

.site-content {
  width: 100%;
  margin: 2rem auto 0;
}

@media (min-width: 768px) {
  .site-content {
    max-width: 768px;
  }
}
@media (min-width: 1240px) {
  .site-content {
    max-width: 920px;
  }
}

.main-top,
.main-bottom {
  background-color: white;
  padding: 15px;
}
main .main-title {
  font-size: 3.0rem;
  font-weight: bold;
  text-align: center;
  line-height: 4.0rem;
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 768px) {
  main .main-title {
    font-size: 4.5rem;
    line-height: 5.9rem;
  } 
}

main .main-subtitle {
  font-size: 2rem;
  font-weight: bold;
  line-height: 2.6rem;
  margin-bottom: 1.2rem;
}
main .main-paragraph-big {
  font-size: 1.8rem;
  line-height: 2.4rem;
  margin-bottom: 1.5rem;
}
main .paragraph {
  font-size: 1.6rem;
  line-height: 2.6rem;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}

.main-top {
  margin-bottom: 4rem;
}
.main-top .main-article-date {
  text-align: center;
  font-size: 1.7rem;
  line-height: 1.8rem;
  color: #808080;
  margin-bottom: 1.9rem;
}
.main-top .list {
  margin-bottom: 1.6rem;
}
.main-top .green-box {
  background-color: #c2e5d8;
  padding: 2.2rem 1.5rem 1rem;
  margin-bottom: 2.5rem;
}
.main-top .product-promotion-details {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.main-top .product-promotion-details .text-red {
  text-decoration: line-through;
}
.main-top .product-promotion-details .text-red,
.main-top .product-promotion-details .text-green {
  font-weight: bold;
}

.main-bottom .comments-title {
  text-transform: uppercase;
  font-size: 2.6rem;
  font-weight: bold;
  padding-bottom: 1.6rem;
}
.main-bottom .comments-wrapper .comment {
  display: flex;
  margin-bottom: 2.3rem;
}
.main-bottom .comments-wrapper .comment .comment-avatar {
  width: 48px;
  height: 48px;
  margin-right: 2.4rem;
}
.main-bottom .comments-wrapper .comment .comment-content-wrapper .comment-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.main-bottom
  .comments-wrapper
  .comment
  .comment-content-wrapper
  .comment-row-image {
  display: flex;
  flex-direction: column;
}
.main-bottom
  .comments-wrapper
  .comment
  .comment-content-wrapper
  .comment-author {
  font-size: 1.6rem;
  font-weight: 500;
  color: #42a98b;
  margin-bottom: 0.8rem;
}
@media (max-width: 600px) {
  .main-bottom
    .comments-wrapper
    .comment
    .comment-content-wrapper
    .comment-author {
    display: flex;
    flex-direction: column;
  }
}
.main-bottom .comments-wrapper .comment .comment-content-wrapper .comment-date {
  color: #7f919e;
  font-size: 1.4rem;
}
.main-bottom
  .comments-wrapper
  .comment
  .comment-content-wrapper
  .comment-content {
  margin-bottom: 1.1rem;
}
.main-bottom
  .comments-wrapper
  .comment
  .comment-content-wrapper
  .comment-attachment {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 20rem;
  margin-bottom: 1.8rem;
}

aside {
  display: none;
}
@media (min-width: 768px) {
  aside {
    display: block;
  }
}

.aside__item {
  margin-top: 1.4rem;
}
.aside__item .covid--title {
  background-color: #9f0202;
  font-size: 1.6rem;
  color: #fff;
  font-weight: bold;
  padding: 0.9rem 0.8rem;
}
.aside__item .covid_wrapper {
  padding: 1.5rem 1.3rem;
  background-image: url("../images/covid-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.aside__item .covid_wrapper .inner {
  color: #fff;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 0.3rem;
  margin-bottom: 1.5rem;
}
.aside__item .covid_wrapper .inner_data {
  font-weight: bold;
}
.aside__item .covid_wrapper .inner:last-of-type {
  margin-bottom: 5rem;
}
footer .container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 55.6rem;
}

.image-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 0 auto 2rem;
  max-width: 61rem;
}

.image-col {
  width: 50%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.before-after-image {
  width: 100%;
}

.image-title {
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.image-title-red {
  color: darkred;
}

.image-title-green {
  color: #3fcba3;
}

.cpa_wr {
  overflow: hidden;
  display: flex;
  justify-content: center;
  font-family: sans-serif, Arial, Helvetica;
  padding: 10px 10px 0;
  margin-bottom: 2rem;
}

.cpa_form-wr {
  box-sizing: border-box;
  max-width: 660px;
  /* min-width: 320px; */
  width: 100%;
  padding: 20px;
  display: flex;
  border: 1px solid #cfd7d4;
  text-align: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

@media screen and (min-width: 768px) {
  .cpa_form-wr {
    flex-direction: row;
  }
}

.cpa_img-block {
  text-align: center;
  padding: 0px;
  margin: 0 auto;
}

.cpa_form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
}

.cpa_form-title {
  display: inline-block;
  font-size: 19px;
  font-weight: 900;
  text-align: center;
}

.cpa_form-title span:nth-child(2) {
  color: #81245a;
}

.cpa_price {
  padding-top: 15px;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cpa_new-price {
  color: red;
}

.cpa_new-price,
.cpa_old-price {
  flex: 1;
}

.cpa_new-price-title {
  font-size: 19px;
  white-space: nowrap;
  display: block;
}

.cpa_new-price-cost {
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
  display: block;
}

.cpa_old-price {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  font-weight: 600;
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid #888;
}

.cpa_old-price-cost {
  text-decoration: line-through;
  font-size: 22px;
}

.cpa_old-price-title {
  display: block;
  white-space: nowrap;
}

.cpa_timer {
  padding: 15px 0;
  width: 100%;
  text-align: center;
}

.cpa_timer-title {
  font-size: 12px;
  font-weight: 800;
  color: black;
}

.cpa_timer-clock {
  padding: 10px 0;
  font-size: 38px;
  display: flex;
  justify-content: space-around;
  max-width: 250px;
  margin: 0 auto;
}

.cpa_timer-item {
  color: #fff;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, green, green);
  padding: 5px;
}

.cpa_hours,
.cpa_minutes,
.cpa_seconds {
  box-sizing: content-box;
  line-height: 1.1;
  margin-right: 3px;
  display: inline-block;
  width: 48px;
  height: 40px;
  position: relative;
}

.cpa_hours::before,
.cpa_minutes::before,
.cpa_seconds::before {
  font-size: 16px;
  color: black;
  font-weight: 600;
  bottom: -20px;
}

.cpa_hours::before {
  content: "Ñ‡Ð°ÑÐ¾Ð²Ðµ";
  position: absolute;
  left: 2px;
}

.cpa_minutes::before {
  content: "Ð¼Ð¸Ð½ÑƒÑ‚Ð¸";
  position: absolute;
  left: 0px;
}

.cpa_seconds::before {
  content: "ÑÐµÐºÑƒÐ½Ð´Ð¸";
  position: absolute;
  left: -3px;
}

.cpa_input-label {
  display: block;
  font-size: 16px;
  text-align: left;
  width: 100%;
  max-width: 300px;
}

.cpa_input-label-txt {
  display: block;
  padding-bottom: 3px;
}

.cpa_input-label:nth-of-type(2) {
  padding-top: 15px;
}

.cpa_input {
  width: 100%;
  max-width: 300px;
  box-sizing: border-box;
  /* height: 2rem; */
  border: 1px solid #ccc;
  outline: 0;
  font-size: 16px;
  padding: 10px 5px;
}

.cpa_submit-btn {
  margin: 15px 0 0;
  padding: 20px 10px;
  background-color: red;
  border: 0;
  border-radius: 30px;
  width: 100%;
  max-width: 300px;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  word-wrap: break-word;
  cursor: pointer;
}

.cpa_form-image {
  max-width: 200px;
}

@media screen and (min-width: 768px) {
  .cpa_form-image {
    max-width: 250px;
  }
}

.footer_img-wrapper {
  max-width: 200px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.footer_btn {
  display: block;
  background-color: red;
  border-radius: 30px;
  padding: 20px 10px;
  max-width: 280px;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  margin: 0 auto;
  text-align: center;
}

.footer_btn > a {
  color: #fff;
}

.comment {
  border-bottom: 1px solid #d4d4d4;
  padding-bottom: 1.4rem;
}

.comment-create__btn {
  font-family: "Roboto", sans-serif;
  padding: 10px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background-color: #ccc;
  max-width: 320px;
  border: none;
  margin: 0;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.comment-create__btn:hover {
  background-color: #adadad;
}

.comment-create__wrapper {
  margin: 0 auto 30px;
}

.comment-create__form {
  display: none;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  max-width: 500px;
  margin: 0 auto 30px;
}
.comment-create__name {
  border-radius: 5px;
  border: 1px solid #838383;
  padding: 10px;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  margin-bottom: 10px;
  width: 100%;
}

.comment__info-image-wrapper {
  width: 100%;
  margin-bottom: 10px;
}

@media screen and (min-width: 480px) {
  .comment-create__name,
  .comment__info-image-wrapper {
    width: 48%;
  }
}

.create-comment__image-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
}

.create-comment__image {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e5e5e5;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.create-comment__image img.create-comment__image-1 {
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.create-comment__image img.create-comment__image-2 {
  width: 24px;
  height: 24px;
}

.create-comment__image-1,
.create-comment__image-2 {
  display: none;
}

.create-comment__image-1.show {
  display: block;
}

.create-comment__image-1.show,
.create-comment__image-2.show {
  display: block;
}

.create-comment__image-text {
  margin-left: 10px;
  cursor: pointer;
  text-decoration: underline;
  font-weight: 400;
}

.create-comment__image-text {
  margin-left: 10px;
  cursor: pointer;
  text-decoration: underline;
  font-weight: 400;
}

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

.comment-create__text {
  resize: none;
  height: 100px;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #838383;
  max-width: none;
  overflow: auto;
  padding: 10px;
  font-size: 16px;
  font-weight: normal;
  font-family: "Roboto", sans-serif;
  margin: 0 0 10px;
}

.comment_moderate {
  display: none;
  font-size: 18px;
  text-align: center;
}

.comment_moderate.show {
  display: block;
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
  }

  50% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
  }

  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
  }
}

.footer {
  background: #e9f0f4;
  color: #fff;
  padding: 30px 0;
}

.footer__date {
  color: green;
  text-align: center;
  margin: 0;
}
