html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.3;
  font-family: "Red Hat Display", Arial, Helvetica, sans-serif;
  color: #474645;
  background: #F1E4DD;
}

img {
  max-width: 100%;
}

ul,
li {
  list-style: none;
}

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

.overflow {
  overflow: hidden;
}

/*-----------------------------------------Common-----------------------------------------*/
.container {
  width: 100%;
  max-width: 564px;
  margin: 0 auto;
  padding: 0 20px;
}

.accent {
  font-weight: 700;
  color: #C12725;
}

.product-link {
  font-weight: 500;
  color: #64A7C5;
  transition: all .3s ease-out;
}

.product-link:hover {
  text-decoration: none;
  color: #C12725;
}

.info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.info-item {
  font-size: 14px;
  color: #D0BAAE;
}

.info-item:not(:last-of-type) {
  margin-right: 30px;
}

.info-item--views,
.info-item--comments {
  position: relative;
  padding-left: 30px;
}

.info-item--views::before,
.info-item--comments::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: block;
  width: 20px;
  height: 20px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.info-item--views::before {
  background-image: url("../images/views-icon.svg");
}

.info-item--comments::before {
  background-image: url("../images/comments-icon.svg");
}

.info-item--date {
  margin-left: auto;
}

.box {
  padding: 20px 14px;
  background-color: #F8F8F8;
  border-radius: 10px;
}

.order-button {
  display: block;
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  padding: 18px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  color: #ffffff;
  background-color: #64A7C5;
  border: none;
  border-radius: 10px;
  outline: none;
  transition: all .3s ease-out;
  cursor: pointer;
}

.order-button:hover {
  background-color: #FF8E8C;
}

.main-header__top-bar {
  display: none;
}

.nav {
  padding: 10px 0;
  background-color: #ffffff;
}

.nav__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  margin-right: 15px;
  font-weight: 700;
  font-size: 17px;
  color: #B28C7E;
}

.nav__search {
  display: block;
  margin-left: auto;
  margin-right: 22px;
  width: 24px;
  height: 24px;
  background: url("../images/search-icon.svg") center / contain no-repeat;
  opacity: 0.6;
}

.nav__list {
  display: none;
}

.nav__burger {
  width: 24px;
  height: 24px;
  background: url("../images/burger-icon.svg") center / contain no-repeat;
}

.main-content {
  display: block;
  margin-top: 14px;
}

.main-content__crumbs {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  padding: 18px 10px 4px;
  background-color: #ffffff;
}

.main-content__crumb:not(:last-of-type) {
  position: relative;
  padding-right: 16px;
  margin-right: 8px;
}

.main-content__crumb:not(:last-of-type)::after {
  content: ">";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.main-content__crumb--desktop {
  display: none;
}

.main-content__crumb-link {
  position: relative;
  display: block;
  font-size: 14px;
  text-decoration: none;
  color: inherit;
}

.main-content__crumb-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #64A7C5;
  border-radius: 10px;
}

.main-content__crumb-link--active::after {
  display: none;
}

.article {
  padding: 10px 10px 40px;
  background-color: #ffffff;
}

.article__banner {
  min-height: 320px;
  padding: 15px 20px;
  background-color: #474645;
  background: url("../images/article-banner-bg.jpg") center / cover no-repeat;
}

.article__title {
  font-weight: 700;
  font-size: 21px;
  text-align: center;
  color: #ffffff;
}

.article__title-accent {
  color: #FF8E8C;
}

.info-item--date-desktop {
  display: none;
}

.article__info {
  padding: 14px 0;
  border-bottom: 1px solid #F1E4DD;
}

.article__intro {
  margin-top: 20px;
  font-weight: 700;
  font-size: 16px;
}

.article__image {
  display: block;
  margin-top: 16px;
  font-size: 0;
  text-align: center;
}

.article__image--flex {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.article__image--flex img {
  width: 100%;
  max-width: calc((100% - 6px) / 2);
}

.article__image--flex img:not(:last-of-type) {
  margin-right: 6px;
}

.article__image-desc {
  margin-top: 8px;
  font-weight: 500;
  font-size: 14px;
  text-align: left;
  color: #C12725;
}

.article__paragraph {
  margin-top: 16px;
}

.article__quote {
  position: relative;
  display: block;
  min-height: 83px;
  margin-top: 12px;
  padding-top: 25px;
  padding-left: 35px;
  font-weight: 500;
  font-style: italic;
  font-size: 15px;
  color: #C12725;
  z-index: 1;
}

.article__quote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 83px;
  height: 83px;
  background: url("../images/quotes-icon.svg") center / contain no-repeat;
  z-index: -1;
}

.article__subtitle {
  margin-top: 28px;
  font-weight: 700;
  font-size: 17px;
  color: #C12725;
}

.article__subtitle + .article__paragraph {
  margin-top: 10px;
}

.article__symptoms {
  max-width: 320px;
  margin: 10px auto 0;
}

.article__symptom {
  position: relative;
  padding-top: 77px;
  text-align: center;
}

.article__symptom:not(:first-of-type) {
  margin-top: 20px;
}

.article__symptom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 77px;
  height: 77px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.article__symptom--1::before {
  background-image: url("../images/symptoms-image1.svg");
}

.article__symptom--2::before {
  background-image: url("../images/symptoms-image2.svg");
}

.article__symptom--3::before {
  background-image: url("../images/symptoms-image3.svg");
}

.article__symptom--4::before {
  background-image: url("../images/symptoms-image4.svg");
}

.article__symptom--5::before {
  background-image: url("../images/symptoms-image5.svg");
}

.article__symptom--6::before {
  background-image: url("../images/symptoms-image6.svg");
}

.article__symptom--7::before {
  background-image: url("../images/symptoms-image7.svg");
}

.article__components {
  max-width: 320px;
  margin: 10px auto 0;
}

.article__component {
  position: relative;
  padding-top: 62px;
}

.article__component:not(:first-of-type) {
  margin-top: 20px;
}

.article__component::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 76px;
  height: 56px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 10px;
}

.article__component--1::before {
  background-image: url("../images/components-image1.jpg");
}

.article__component--2::before {
  background-image: url("../images/components-image2.jpg");
}

.article__component--3::before {
  background-image: url("../images/components-image3.jpg");
}

.article__component--4::before {
  background-image: url("../images/components-image4.jpg");
}
.article__component--5::before {
  background-image: url("../images/components-image5.jpg");
}
.article__component--6::before {
  background-image: url("../images/components-image6.jpg");
}
.article__component--7::before {
  background-image: url("../images/components-image7.jpg");
}
.article__results {
  margin-top: 10px;
}

.article__result {
  max-width: 504px;
  margin: 0 auto;
  padding: 20px 14px 26px;
}

.article__result:not(:first-of-type) {
  margin-top: 10px;
}

.article__result-name {
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #C12725;
}

.article__result-images {
  display: flex;
  justify-content: center;
  align-items: top;
  margin-top: 16px;
}

.article__result-image {
  display: block;
  width: 100%;
  max-width: calc((100% - 6px) / 2);
  font-size: 0;
}

.article__result-image:not(:last-of-type) {
  margin-right: 6px;
}

.article__result-image-desc {
  margin-top: 5px;
  font-size: 14px;
}

.article__result-paragrah {
  margin-top: 10px;
}

.article__result-product {
  margin-top: 10px;
  font-size: 0;
  text-align: center;
}

.article__order-button {
  margin-top: 32px;
}

.main-content__comments {
  margin-top: 14px;
}

.comments {
  padding: 20px 10px 40px;
  background-color: #ffffff;
}

.comments__title {
  font-weight: 700;
  font-size: 17px;
  color: #C12725;
}

.comments__list {
  margin-top: 14px;
}

.comments__item {
  padding: 16px 14px 14px;
}


.comments__item:not(:first-of-type) {
  margin-top: 10px;
}

.comments__header {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}

.comments__avatar {
  width: 40px;
  height: 40px;
  margin-right: 20px;
  overflow: hidden;
}

.comments__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: calc(100% - 40px - 20px);
}

.comments__name {
  font-weight: 500;
  color: #C12725;
}

.comments__date {
  position: relative;
  margin-top: 2px;
  padding-left: 24px;
  font-size: 14px;
}

.comments__date::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: block;
  width: 14px;
  height: 14px;
  background: url("../images/calendar-icon.svg") center / contain no-repeat;
}

.comments__content {
  margin-top: 10px;
}

.comments__footer {
  margin-top: 10px;
}

.comments__reply-link {
  font-size: 14px;
  text-decoration: none;
  color: #D0BAAE;
}

.comments__reply-link:hover {
  text-decoration: underline;
}

.comments__image {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 406px;
  margin: 10px auto 0;
  font-size: 0;
  text-align: center;
}

.comments__image img {
  width: 100%;
  max-width: calc((100% - 6px) / 2);
}

.comments__image img:not(:last-of-type) {
  margin-right: 6px;
}

.comments__product {
  margin-top: 10px;
  font-size: 0;
  text-align: center;
}

.comments__order-button {
  margin-top: 32px;
}

.main-content__sidebar {
  display: none;
}

.main-footer {
  margin-top: 14px;
}

.main-footer__top-bar {
  display: none;
}

.main-footer__bottom {
  padding: 12px 0;
  background-color: #ffffff;
}

.main-footer__copyright {
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  color: #B28C7E;
}



@media (min-width: 992px) {
  body {
    font-size: 16px;
    line-height: 1.4;
  }

  .container {
    max-width: 1060px;
  }
  
  .box {
    padding: 30px 40px;
  }

  .info {
    justify-content: flex-start;
  }

  .info-item--date {
    display: none;
  }
  
  .info-item--date-desktop {
    display: block;
  }
  
  .order-button {
    max-width: 320px;
    font-size: 18px;
  }
  
  .main-header__top-bar {
    display: block;
    padding: 15px 0;
    color: #ffffff;
    background-color: #C8A998;
  }

  .main-header__list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-left: auto;
  }

  .main-header__item:not(:first-of-type) {
    margin-left: 60px;
  }

  .main-header__link {
    font-size: 14px;
    text-decoration: none;
    color: inherit;
  }

  .main-header__link:hover {
    text-decoration: underline;
  }
  
  .nav {
    padding: 25px 0;
  }
  
  .nav__logo {
    margin-right: 30px;
    font-size: 24px;
  }
  
  .nav__search {
    display: none;
  }
  
  .nav__list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    max-width: calc(100% - 225px);
    margin-left: auto;
  }

  .nav__item:not(:first-of-type) {
    margin-left: 50px;
  }
  
  .nav__link {
    position: relative;
    display: block;
    font-weight: 500;
    font-size: 18px;
    text-decoration: none;
    color: #C12725;
  }

  .nav__link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 0;
    height: 2px;
    border-radius: 10px;
    background-color: #C12725;
    transition: all .3s ease-in-out;
  }

  .nav__link:hover::after {
    width: 100%;
    background-color: #B28C7E;
  }

  .nav__link--accent {
    color: #B28C7E;
    text-transform: uppercase;
  }

  .nav__burger {
    display: none;
  }
  
  .main-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 25px;
  }
  
  .main-content__crumbs {
    width: 100%;
    margin-bottom: 14px;
    padding: 0;
    background-color: transparent;
  }
  
  .main-content__crumb--desktop {
    display: block;
  }

  .main-content__wrapper {
    width: 100%;
    max-width: calc(100% - 300px - 60px);
    margin-right: 60px;
  }
  
  .article {
    padding: 30px 45px 75px;
  }
  
  .article__banner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    min-height: 419px;
    padding: 30px 40px 16px;
    background: url("../images/article-banner-bg-desktop.jpg") center / cover no-repeat;
  }
  
  .article__title {
    max-width: 340px;
    font-size: 35px;
    line-height: 1.2;
    text-align: right;
  }
  
  .article__image {
    margin-top: 20px;
  }
  
  .article__image--flex img {
    max-width: calc((100% - 20px) / 2);
  }
  
  .article__image--flex img:not(:last-of-type) {
    margin-right: 20px;
  }
  
  .article__image-desc {
    margin-top: 10px;
  }
  
  .article__paragraph {
    margin-top: 20px;
  }
  
  .article__quote {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 45px;
    margin-top: 16px;
    padding-top: 0;
    padding-left: 75px;
    font-size: 16px;
  }
  
  .article__quote::before {
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: url("../images/quotes-icon-desktop.svg") center / contain no-repeat;
  }
  
  .article__subtitle {
    margin-top: 30px;
    font-size: 22px;
  }
  
  .article__subtitle + .article__paragraph {
    margin-top: 16px;
  }
  
  .article__symptoms {
    max-width: 100%;
    margin: 16px auto 0;
  }
  
  .article__symptom {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 77px;
    padding-top: 0;
    padding-left: 107px;
    text-align: left;
  }
  
  .article__symptom::before {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  
  .article__components {
    max-width: 100%;
    margin: 16px auto 0;
    padding: 0;
    background-color: transparent;
  }
  
  .article__component {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 90px;
    padding-top: 0;
    padding-left: 165px;
  }
  
  .article__component:not(:first-of-type) {
    margin-top: 16px;
  }
  
  .article__component::before {
    top: 50px;
    left: 0;
    transform: translateY(-50%);
    width: 135px;
    height: 90px;
    background-size: contain;
  }

  .article__wrapper {
    margin-top: 16px;
  }

  .article__wrapper::after {
    content: "";
    display: block;
    width: 100%;
    clear: both;
  }

  .article__wrapper .article__paragraph {
    float: left;
    max-width: calc(100% - 237px - 5px);
    margin-top: 0;
  }

  .article__image--float {
    float: right;
    margin-top: 0;
    margin-left: 5px;
  }
  
  .article__results {
    margin-top: 28px;
  }
  
  .article__result {
    max-width: 100%;
    padding: 30px 40px 40px;
  }
  
  .article__result:not(:first-of-type) {
    margin-top: 28px;
  }
  
  .article__result-name {
    font-size: 20px;
  }
  
  .article__result-images {
    margin-top: 20px;
  }
  
  .article__result-image {
    max-width: calc((100% - 20px) / 2);
  }
  
  .article__result-image:not(:last-of-type) {
    margin-right: 20px;
  }
  
  .article__result-image-desc {
    margin-top: 10px;
  }
  
  .article__result-paragrah {
    margin-top: 16px;
  }
  
  .article__result-product {
    margin-top: 16px;
  }
  
  .article__order-button {
    margin-top: 40px;
  }
  
  .main-content__comments {
    margin-top: 30px;
  }
  
  .comments {
    padding: 50px 45px 75px;
  }
  
  .comments__title {
    font-size: 22px;
  }
  
  .comments__list {
    margin-top: 20px;
  }
  
  .comments__item {
    padding: 30px 40px;
  }

  
  .comments__item:not(:first-of-type) {
    margin-top: 20px;
  }
  
  .comments__avatar {
    width: 50px;
    height: 50px;
  }
  
  .comments__info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    max-width: calc(100% - 40px - 20px);
  }
  
  .comments__content {
    margin-top: 16px;
  }
  
  .comments__footer {
    margin-top: 16px;
  }
  
  .comments__image {
    max-width: 100%;
    margin: 16px auto 0;
  }
  
  .comments__image img {
    max-width: calc((100% - 20px) / 2);
  }
  
  .comments__image img:not(:last-of-type) {
    margin-right: 20px;
  }
  
  .comments__product {
    margin-top: 16px;
  }
  
  .comments__order-button {
    margin-top: 40px;
  }
  
  .main-content__sidebar {
    display: block;
    width: 100%;
    max-width: 300px;
  }

  .sidebar {
    padding: 30px;
    background-color: #ffffff;
  }

  .sidebar__action:not(:first-of-type) {
    margin-top: 24px;
  }

  .sidebar__action-link {
    position: relative;
    padding-left: 30px;
    text-decoration: none;
    color: #B28C7E;
  }

  .sidebar__action-link:hover {
    text-decoration: underline;
  }

  .sidebar__action-link::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: block;
    width: 20px;
    height: 20px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }

  .sidebar__action-link--1::before {
    background-image: url("../images/sidebar-icon1.svg");
  }

  .sidebar__action-link--2::before {
    background-image: url("../images/sidebar-icon2.svg");
  }

  .sidebar__action-link--3::before {
    background-image: url("../images/sidebar-icon3.svg");
  }

  .sidebar__action-link--4::before {
    background-image: url("../images/sidebar-icon4.svg");
  }

  .sidebar__action-link--5::before {
    background-image: url("../images/sidebar-icon5.svg");
  }

  .sidebar__action-link--6::before {
    background-image: url("../images/sidebar-icon6.svg");
  }

  .sidebar__button {
    display: block;
    width: 100%;
    margin: 40px auto 0;
    padding: 20px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    color: #ffffff;
    background-color: #98BECE;
    border-radius: 10px;
    transition: all .3s ease-out;
  }

  .sidebar__button:hover {
    background-color: #FF8E8C;
  }

  .sidebar__search {
    display: block;
    width: 100%;
    min-height: 43px;
    margin-top: 40px;
    border: 3px solid #F2EEEE;
    background-color: #F2EEEE;
    background: url("../images/search-icon.svg") center left 16px no-repeat, #F2EEEE;
    transition: all .3s ease-out;
  }

  .sidebar__search:hover {
    background-color: #ffffff;
  } 

  .sidebar__section {
    margin-top: 40px;
  }

  .sidebar__title {
    font-weight: 700;
    font-size: 22px;
    color: #B28C7E;
  }

  .sidebar__articles {
    margin-top: 24px;
  }

  .sidebar__article:not(:first-of-type) {
    margin-top: 24px;
  }

  .sidebar__article-link {
    display: block;
    text-decoration: none;
  }

  .sidebar__article-poster {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    min-height: 224px;
    padding: 16px;
    background-color: #474645;
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    transition: all .3s ease-out;
  }

  .sidebar__article-poster::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 23, 17, 0.5);
    opacity: 0;
    transition: all .3s ease-out;
    z-index: -1;
  }

  .sidebar__article-link:hover .sidebar__article-poster::before {
    opacity: 1;
  }

  .sidebar__article-poster--1 {
    background-image: url("../images/sidebar-poster1.jpg");
  }

  .sidebar__article-poster--2 {
    background-image: url("../images/sidebar-poster2.jpg");
  }

  .sidebar__article-poster--3 {
    background-image: url("../images/sidebar-poster3.jpg");
  }

  .sidebar__article-poster--4 {
    background-image: url("../images/sidebar-poster4.jpg");
  }

  .sidebar__article-poster--5 {
    background-image: url("../images/sidebar-poster5.jpg");
  }

  .sidebar__article-poster--6 {
    background-image: url("../images/sidebar-poster6.jpg");
  }

  .sidebar__article-poster--7 {
    background-image: url("../images/sidebar-poster7.jpg");
  }

  .sidebar__article-heading {
    font-weight: 700;
    font-size: 16px;
    color: #D0BAAE;
  }

  .sidebar__article-info {
    margin-top: 10px;
  }

  .sidebar__more-link {
    position: relative;
    display: inline-block;
    margin-top: 24px;
    padding-right: 36px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    color: #98BECE;
  }

  .sidebar__more-link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: block;
    width: 23px;
    height: 23px;
    background: url("../images/more-link-arrow.svg") center / contain no-repeat;
  }

  .sidebar__more-link:hover {
    text-decoration: underline;
  }


  
  .main-footer {
    margin-top: 30px;
  }

  .main-footer__top-bar {
    display: block;
    padding: 18px 0;
    background-color: #ffffff;
  }
  
  .main-footer__top-bar__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .main-footer__list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: calc(100% - 230px);
    margin-right: 30px;
  }

  .main-footer__item:not(:last-of-type) {
    margin-right: 60px;
  }

  .main-footer__link {
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    color: #B28C7E;
  }

  .main-footer__link:hover {
    text-decoration: underline;
  }

  .social {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .social__item:not(:first-of-type) {
    margin-left: 24px;
  }

  .social__link {
    display: block;
    width: 24px;
    height: 24px;
    text-decoration: none;
    border-radius: 50%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    overflow: hidden;
    transition: all .3s ease-out;
    opacity: 0.7;
  }

  .social__link--1 {
    background-image: url("../images/facebook-icon.svg");
  }

  .social__link--2 {
    background-image: url("../images/instagram-icon.svg");
  }

  .social__link--3 {
    background-image: url("../images/vk-icon.svg");
  }

  .social__link--4 {
    background-image: url("../images/youtube-icon.svg");
  }

  .social__link:hover {
    opacity: 1;
  }
  
  .main-footer__bottom {
    padding: 15px 0;
    background-color: #C4C4C4;
  }
  
  .main-footer__copyright {
    color: #474645;
  }
  
  .main-footer__text--desktop {
    display: inline;
  }
  
}