.products-content {
  width: 95%;
  max-width: 1520px;
  margin: 25px auto auto auto;
  display: flex;
  justify-content: space-between;
}

.products-info {
  width: 37.5%;
}

.products-descr {
  display: none;
  width: 90%;
  max-width: 506px;
  margin-bottom: 70px;
}

.products-descr.active {
  display: block;
}

.product-info-list-container {
  display: none;
}

.product-info-list-container.active {
  display: block;
}

.product-descr-paragraph {
  font-size: 15px;
  line-height: 25px;
  font-weight: 300;
  margin-bottom: 20px;
}

.products-menu {
  display: flex;
  width: 100%;
  overflow-x: auto;
}

.products-menu-item {
  margin-right: 5px;
  padding: 0 20px;
  height: 35px;
  line-height: 35px;
  color: #000;
  background-color: #fff;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid #afafaf;
  box-sizing: border-box;
  white-space: nowrap;
}

.products-menu-item.active {
  color: #fff;
  background-color: #000;
  font-weight: 900;
  border: none;
}

.product-info-list-wrapper {
  width: 100%;
  background-color: #f6f6f6;
  padding: 28px 36px 32px 36px;
  box-sizing: border-box;
}

.product-info-list {
  list-style-type: disc;
  list-style-position: inside;
}

.product-info-list-title,
.product-info-list-item {
  font-size: 15px;
  line-height: 35px;
  font-weight: 500;
  color: #000;
}

.product-arrow-wrapper {
  display: flex;
}

.product-arrow {
  width: 47px;
  height: 47px;
  background-color: #000;
  position: relative;
}

.product-arrow::after {
  content: '';
  position: absolute;
  width: 17px;
  height: 17px;
  z-index: 1;
  background: url('../images/arrow-white.svg') no-repeat center center/100%;
  top: 14px;
  left: 14px;
}

.product-arrow.left::after {
  transform: rotate(180deg);
}

.product-arrow.left {
  margin-right: 5px;
}

.products-image-container {
  width: 62.5%;
  transform: translateX(1%);
}

.product-image-figure {
  width: 100%;
  display: none;
}

.product-image-figure.active {
  display: block;
}

.product-image {
  width: 100%;
}

.footer-1-wrapper {
  width: 95%;
  margin: auto;
  max-width: 1724px;
  box-sizing: border-box;
}

@media only screen and (min-width: 993px) {
  .footer-1-wrapper {
    border-right: 1px solid #c5c5c5;
    border-left: 1px solid #c5c5c5;
  }
}

.footer-1-wrapper .footer-1 {
  width: 100%;
  margin-bottom: 0;
  padding-top: 70px;
  padding-bottom: 50px;
}

.main-title {
  font-size: 25px;
  color: #000;
  font-weight: 700;
  margin-bottom: 55px;
  position: relative;
}

.main-title::after {
  position: absolute;
  width: 100px;
  height: 3px;
  content: '';
  left: 0;
  bottom: -42px;
  background-color: #000;
}

.content-heading {
  font-size: 15px;
  line-height: 25px;
  color: #000;
  font-weight: 700;
}

.content-item {
  font-size: 15px;
  line-height: 25px;
  color: #000;
}

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

.content-item a {
  text-decoration: none;
  color: #000;
}

@media only screen and (max-width: 992px) {
  .content-heading,
  .content-item {
    font-size: 13px;
  }

  .main-title {
    font-size: 15px;
  }

  .footer-1-wrapper .footer-1 {
    padding-top: 0;
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 1200px) {
  .products-content {
    flex-direction: column;
    align-items: center;
  }

  .products-info {
    width: 100%;
  }

  .products-image-container {
    width: 100%;
    transform: translateX(0);
  }
}
