﻿/* Product / cargo inner pages (product.html, prodazha_product.html) */

.request__wrapper {
  padding: 40px 0;
}

@media screen and (max-width: 1024px) {
  .request__wrapper {
    padding: 20px 0;
  }
}

.request__wrapper__block {
  border: 1px solid #EDEDED;
  box-shadow: 0px 4px 25px 0px rgba(154, 154, 154, 0.1882352941);
  padding: 46px;
}

@media screen and (max-width: 1024px) {
  .request__wrapper__block {
    padding: 20px;
  }
}

.request__wrapper__block .title {
  font-size: 40px;
  font-weight: 700;
  color: #141F2E;
  margin-bottom: 16px;
}

@media screen and (max-width: 1024px) {
  .request__wrapper__block .title {
    font-size: 24px;
    margin-bottom: 5px;
  }
}

.request__wrapper__block .text {
  font-size: 18px;
  font-weight: 400;
  color: #141F2E;
}

@media screen and (max-width: 1024px) {
  .request__wrapper__block .text {
    font-size: 16px;
  }
}

.request__wrapper__block .text span {
  font-weight: 600;
}

.request__wrapper__block .request-form__form {
  display: flex;
  gap: 20px;
  margin: 40px 0;
}

@media screen and (max-width: 1024px) {
  .request__wrapper__block .request-form__form {
    margin: 15px 0;
  }
}

@media screen and (max-width: 1024px) {
  .request__wrapper__block .request-form__form {
    flex-direction: column;
    gap: 15px;
  }
}

.request__wrapper__block .request-form__form__input {
  flex: 1 1 0;
  width: auto;
  min-width: 0;
  padding: 32px 25px;
  background-color: rgba(65, 79, 131, 0.12);
  color: #757575;
  font-size: 14px;
  font-weight: 400;
  border: none;
}

.request__wrapper__block .request-form__form__input::-moz-placeholder {
  color: #757575;
}

.request__wrapper__block .request-form__form__input::placeholder {
  color: #757575;
}

.request__wrapper__block .request-form__form__input:focus-visible {
  outline: none;
}

@media screen and (max-width: 1024px) {
  .request__wrapper__block .request-form__form__input {
    width: 100%;
    padding: 16px 25px;
  }
}

.request__wrapper__block .request-form__form__btn {
  flex: 0 0 auto;
  width: auto;
  min-width: 220px;
  background-color: #363D56;
  color: #fff;
  font-weight: 700;
  font-size: 26px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
}

.request__wrapper__block .request-form__form__btn:hover {
  opacity: 0.8;
}

@media screen and (max-width: 1024px) {
  .request__wrapper__block .request-form__form__btn {
    height: 50px;
    width: 100%;
  }
}

.request__wrapper__block .request-form__form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.request__wrapper__block .request-form__form-check .request-form__form-check-input {
  width: 24px;
  height: 24px;
  border: 1px solid #94969C;
  box-sizing: border-box;
  cursor: pointer;
  position: relative;
}

.request__wrapper__block .request-form__form-check .request-form__form-check-input::after {
  content: "";
  width: 24px;
  height: 36px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("/static/images/index/checked.png");
  display: none;
  background-color: #fff;
}

.request__wrapper__block .request-form__form-check .request-form__form-check-input.active::after {
  display: block;
}

.request__wrapper__block .request-form__form-check .request-form__form-check-label {
  font-size: 16px;
  font-weight: 300;
  color: #262626;
}

.request__wrapper__block .request-form__form-check .request-form__form-check-label a {
  color: #E05628;
}

.request__wrapper__block .agree-section {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.request__wrapper__block .agree-section span {
  font-size: 16px;
  color: #585858;
  font-weight: 300;
}

.request__wrapper__block .agree-section span a {
  color: #E05628;
}

.stages__wrapper {
  padding: 40px 0;
}

@media screen and (max-width: 1024px) {
  .stages__wrapper {
    padding: 20px 0;
  }
}

.stages__wrapper__title {
  font-size: 40px;
  font-weight: 700;
  color: #141F2E;
  margin-bottom: 40px;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .stages__wrapper__title {
    text-align: left;
    font-size: 24px;
    margin-bottom: 30px;
  }
}

.stages__wrapper__content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

@media screen and (max-width: 1024px) {
  .stages__wrapper__content {
    justify-content: left;
    flex-wrap: nowrap;
  }
}

.stages__wrapper__content .line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1144px;
  margin-bottom: 20px;
}

@media screen and (max-width: 1024px) {
  .stages__wrapper__content .line {
    margin-bottom: 0;
    width: auto;
    flex-direction: column;
    margin-right: 16px;
    height: 380px;
  }
}

.stages__wrapper__content .line__dot {
  width: 10px;
  min-width: 10px;
  height: 10px;
  background-color: #363D56;
  border-radius: 100%;
}

.stages__wrapper__content .line__line {
  width: 100%;
  height: 1px;
  background-color: #A2A5B3;
}

@media screen and (max-width: 1024px) {
  .stages__wrapper__content .line__line {
    width: 1px;
    height: 100%;
  }
}

.stages__wrapper__content .stage {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1309px;
  margin-left: auto;
}

@media screen and (max-width: 1024px) {
  .stages__wrapper__content .stage {
    width: auto;
    flex-direction: column;
    margin-left: 0;
  }
}

.stages__wrapper__content .stage__card {
  width: 200px;
}

@media screen and (max-width: 1024px) {
  .stages__wrapper__content .stage__card {
    width: 100%;
    margin-bottom: 15px;
  }
}

.stages__wrapper__content .stage__card__number {
  font-size: 48px;
  line-height: 48px;
  font-weight: 700;
  color: #E05628;
  margin-bottom: 20px;
}

@media screen and (max-width: 1024px) {
  .stages__wrapper__content .stage__card__number {
    margin-bottom: 5px;
  }
}

.stages__wrapper__content .stage__card__text {
  font-size: 18px;
  font-weight: 500;
  color: #141F2E;
}

.sert {
  background-image: url("/static/images/index/sertBanner.png");
  background-size: cover;
}

.sert__wrapper {
  padding: 40px 0;
}

@media screen and (max-width: 1024px) {
  .sert__wrapper {
    padding: 20px 0;
  }
}

.sert__wrapper__title {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 45px;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .sert__wrapper__title {
    text-align: left;
    font-size: 24px;
    margin-bottom: 30px;
  }
}

.sert__wrapper__swiper {
  overflow: hidden;
}

.sert__wrapper__swiper .swiper-slide {
  text-align: center;
}

.sert__wrapper__swiper .swiper-slide__image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.sert__wrapper__swiper .navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: auto;
  margin-top: 30px;
}

.sert__wrapper__swiper .navigation .swiper-button-prev-sert,
.sert__wrapper__swiper .navigation .swiper-button-next-sert {
  width: 24px;
  height: 24px;
  background-image: url("/static/images/index/arrow-right-swiper.svg");
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.sert__wrapper__swiper .navigation .swiper-button-prev-sert {
  transform: rotate(180deg);
}

.sert__wrapper__swiper .navigation .swiper-pagination-sert {
  width: auto;
}

.sert__wrapper__swiper .navigation .swiper-pagination-sert .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: transparent;
  border: 1px solid #fff;
  margin: 0 10px;
}

.sert__wrapper__swiper .navigation .swiper-pagination-sert .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #fff;
}

.realization__wrapper {
  padding: 40px 0;
}

@media screen and (max-width: 1024px) {
  .realization__wrapper {
    padding: 20px 0;
  }
}

.realization__wrapper__title {
  font-size: 40px;
  font-weight: 700;
  color: #141F2E;
  margin-bottom: 16px;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .realization__wrapper__title {
    text-align: left;
    font-size: 24px;
    margin-bottom: 5px;
  }
}

.realization__wrapper__text {
  font-size: 18px;
  font-weight: 500;
  color: #262626;
  margin-bottom: 16px;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .realization__wrapper__text {
    text-align: left;
    font-size: 16px;
  }
}

.realization__wrapper__cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .realization__wrapper__cards {
    flex-direction: column;
    gap: 5px;
    margin-bottom: 15px;
  }
}

.realization__wrapper__cards .block {
  padding: 90px 32px 23px;
  width: 595px;
  height: 324px;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .realization__wrapper__cards .block {
    width: 100%;
    height: 174px;
    padding: 30px 15px 15px;
  }
}

.realization__wrapper__cards .block__title {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .realization__wrapper__cards .block__title {
    font-size: 18px;
  }
}

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

.realization__wrapper__cards .block__buttons__text {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .realization__wrapper__cards .block__buttons__text {
    font-size: 14px;
  }
}

.realization__wrapper__cards .block__buttons__btn {
  border: 2px solid #FFFFFF;
  height: 58px;
  width: 168px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
}

@media screen and (max-width: 1024px) {
  .realization__wrapper__cards .block__buttons__btn {
    font-size: 14px;
    height: 37px;
    width: 121px;
  }
}

.realization__wrapper__cards .block.first-block {
  background-image: url("/static/images/index/real1.jpg");
}

.realization__wrapper__cards .block.second-block {
  background-image: url("/static/images/index/real2.jpg");
}

.realization__wrapper__danger {
  display: flex;
  gap: 20px;
  justify-content: center;
  max-width: 890px;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .realization__wrapper__danger {
    max-width: none;
  }
}

.realization__wrapper__danger__text {
  font-size: 18px;
  font-weight: 500;
  color: #262626;
}

@media screen and (max-width: 1024px) {
  .realization__wrapper__danger__text {
    font-size: 16px;
  }
}

.tank__wrapper {
  padding: 40px 0;
}

@media screen and (max-width: 1024px) {
  .tank__wrapper {
    padding: 20px 0;
  }
}

.tank__wrapper__title {
  font-size: 40px;
  font-weight: 700;
  color: #141F2E;
  margin-bottom: 16px;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .tank__wrapper__title {
    text-align: left;
    font-size: 24px;
    margin-bottom: 5px;
  }
}

.tank__wrapper__text {
  font-size: 18px;
  font-weight: 500;
  color: #262626;
  margin-bottom: 40px;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .tank__wrapper__text {
    text-align: left;
    font-size: 16px;
    margin-bottom: 15px;
  }
}

.tank__wrapper__image {
  display: block;
  margin: 0 auto;
  margin-bottom: 40px;
  width: 100%;
  max-width: 964px;
}

@media screen and (max-width: 1024px) {
  .tank__wrapper__image {
    margin-bottom: 15px;
    width: 100%;
  }
}

.tank__wrapper__btn {
  display: block;
  margin: 0 auto;
  width: 160px;
  height: 66px;
  background-color: #E05628;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
}

.tank__wrapper__btn:hover {
  background-color: #F8AFA6;
}

@media screen and (max-width: 1024px) {
  .tank__wrapper__btn {
    width: 138px;
    height: 50px;
    font-size: 14px;
  }
}

.bitrex__wrapper {
  padding: 40px 0;
}

@media screen and (max-width: 1024px) {
  .bitrex__wrapper {
    padding: 20px 0;
  }
}

.bitrex__wrapper__title {
  font-size: 40px;
  font-weight: 700;
  color: #141F2E;
  margin-bottom: 16px;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .bitrex__wrapper__title {
    text-align: left;
    font-size: 24px;
    margin-bottom: 15px;
  }
}

.bitrex__wrapper__content {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media screen and (max-width: 1024px) {
  .bitrex__wrapper__content {
    flex-direction: column;
    gap: 15px;
  }
}

.bitrex__wrapper__content__text {
  width: 50%;
}

@media screen and (max-width: 1024px) {
  .bitrex__wrapper__content__text {
    width: 100%;
  }
}

.bitrex__wrapper__content__text p {
  font-size: 18px;
  font-weight: 500;
  color: #262626;
  margin-bottom: 10px;
}

@media screen and (max-width: 1024px) {
  .bitrex__wrapper__content__text p {
    font-size: 16px;
  }
}

.bitrex__wrapper__content__image {
  width: 50%;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .bitrex__wrapper__content__image {
    width: 100%;
  }
}

.bitrex__wrapper__content__image img {
  width: 595px;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.reviews {
  background-color: rgba(162, 165, 179, 0.1);
}

.reviews__wrapper {
  padding: 40px 0;
}

@media screen and (max-width: 1024px) {
  .reviews__wrapper {
    padding: 20px 0;
  }
}

.reviews__wrapper__title {
  font-size: 40px;
  font-weight: 700;
  color: #141F2E;
  margin-bottom: 80px;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .reviews__wrapper__title {
    font-size: 24px;
    margin-bottom: 30px;
  }
}

.reviews__wrapper__swiper .review img {
  max-width: 100%;
  margin: 0px auto 20px;
  display: block;
  height: 350px;
  width: initial;
}

.reviews__wrapper__swiper {
  overflow: hidden;
  max-width: 1064px;
  margin: 0 auto;
  position: relative;
}

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

.reviews__wrapper__swiper .review__content__name {
  font-size: 24px;
  font-weight: 500;
  color: #141F2E;
  margin-bottom: 8px;
}

.reviews__wrapper__swiper .review__content__company {
  font-size: 18px;
  font-weight: 500;
  color: #141F2E;
  margin-bottom: 24px;
}

.reviews__wrapper__swiper .navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0px;
  position: absolute;
  top: 0px;
  bottom: 0px;
  width: 100%;
  z-index: 2;
}

.reviews__wrapper__swiper .swiper-button-prev-review,
.reviews__wrapper__swiper .swiper-button-next-review {
  width: 24px;
  height: 24px;
  background-image: url("/static/images/index/arrow-right-grey.svg");
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  position: absolute;
  bottom: 0px;
  top: 0px;
  margin: auto;
  z-index: 2;
}

.reviews__wrapper__swiper .swiper-button-next-review {
  right: 0px;
}

.reviews__wrapper__swiper .swiper-button-prev-review {
  transform: rotate(180deg);
  left: 0px;
}

.reviews__wrapper__swipe .swiper-pagination-review {
  width: auto;
}

.reviews__wrapper__swiper .navigation .swiper-pagination-review .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: transparent;
  border: 1px solid #A2A5B3;
  margin: 0 10px;
}

.reviews__wrapper__swiper .navigation .swiper-pagination-review .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #A2A5B3;
}

.news__wrapper {
  padding: 40px 0;
}

@media screen and (max-width: 1024px) {
  .news__wrapper {
    padding: 20px 0;
  }
}

.news__wrapper__titles {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 1024px) {
  .news__wrapper__titles {
    margin-bottom: 15px;
  }
}

.news__wrapper__titles__title {
  font-size: 40px;
  font-weight: 700;
  color: #141F2E;
}

@media screen and (max-width: 1024px) {
  .news__wrapper__titles__title {
    font-size: 24px;
  }
}

.news__wrapper__titles__link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #141F2E;
  cursor: pointer;
  border: 2px solid #363D56;
  transition: all 0.3s ease-in-out;
  width: 214px;
  height: 58px;
}

.news__wrapper__titles__link:hover {
  background-color: #363D56;
  color: #fff;
}

.news__wrapper__swiper {
  overflow: hidden;
}

.news__wrapper__swiper .news-card {
  max-width: 349px;
  margin: 0 auto;
}

.news__wrapper__swiper .news-card__image {
  margin-bottom: 16px;
}

.news__wrapper__swiper .news-card__image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  height: 219px;
  object-fit: cover;
  object-position: center;
}

.news__wrapper__swiper .news-card__text {
  font-size: 16px;
  font-weight: 600;
  color: #141F2E;
  margin-bottom: 8px;
}

.news__wrapper__swiper .news-card__date {
  font-size: 18px;
  font-weight: 600;
  color: #A2A5B3;
}

.news__wrapper__link {
  margin-top: 15px;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #141F2E;
  cursor: pointer;
  border: 2px solid #363D56;
  transition: all 0.3s ease-in-out;
  width: 100%;
  height: 50px;
}

.news__wrapper__link:hover {
  background-color: #363D56;
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .news__wrapper__link {
    display: flex !important;
  }
}

.accord__wrapper {
  padding: 40px 0;
}

@media screen and (max-width: 1024px) {
  .accord__wrapper {
    padding: 20px 0;
  }
}

.accord__wrapper__title {
  font-size: 40px;
  font-weight: 700;
  color: #141F2E;
  margin-bottom: 16px;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .accord__wrapper__title {
    text-align: left;
    font-size: 24px;
    margin-bottom: 5px;
  }
}

.accord__wrapper__text {
  margin: 0 auto;
  max-width: 718px;
  font-size: 18px;
  font-weight: 500;
  color: #141F2E;
  margin-bottom: 40px;
}

@media screen and (max-width: 1024px) {
  .accord__wrapper__text {
    font-size: 16px;
    margin-bottom: 15px;
  }
}

.accord__wrapper__block {
  max-width: 718px;
  margin: 0 auto;
}

.accord__wrapper__block .accordion-item {
  box-shadow: 0px 4px 6.8000001907px 0px rgba(0, 0, 0, 0.05);
  padding: 16px;
  margin-bottom: 8px;
}

.accord__wrapper__block .accordion-item .accordion-button {
  position: relative;
  max-width: 90%;
  padding-bottom: 16px;
  font-size: 16px;
  font-weight: 600;
  color: #141F2E;
}

@media screen and (max-width: 1024px) {
  .accord__wrapper__block .accordion-item .accordion-button {
    font-size: 16px;
  }
}

.accord__wrapper__block .accordion-item .accordion-button::after {
  position: absolute;
  width: 24px;
  height: 24px;
  background-image: url("/static/images/index/chevron-down.svg");
  right: -10%;
  transition: all 0.3s ease;
}

.accord__wrapper__block .accordion-item .accordion-button.collapsed {
  padding-bottom: 0;
}

.accord__wrapper__block .accordion-item .accordion-button.collapsed::after {
  transform: rotate(180deg);
}

.accord__wrapper__block .accordion-item .accordion-body {
  font-size: 16px;
  color: #141F2E;
}

.best-sert img {
  display: block;
  width: 100%;
  max-width: 450px;
  margin: auto;
}

ul.list-category {
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
}

ul.list-category li {
  width: 33.333%;
}

ul.list-category a {
  border: 1px solid #A2A5B3;
  padding: 12px 10px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

ul.list-category a:hover {
  color: #E05628;
  border-color: #E05628;
}

.list-product__wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

section.list-product {
  background: white;
}

ul.list-category.list-category--delivery li:last-child {
  width: 100%;
}

ul.list-category.list-category--delivery li:last-child a {
  border: 2px solid #E05628;
  color: #E05628;
}

section.list-product .title {
  font-size: 40px;
  font-weight: 700;
  color: #141F2E;
  margin-bottom: 16px;
}

section.advantages.no-margin {
  clear: both;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  padding: 30px 0px;
}

.advantages__item {
  width: 33%;
}

.news-item-content.product .advantages__icon img {
  height: 62px;
  margin-right: 0px;
  width: initial;
}

.advantages__content {
  padding-right: 30px;
}

.advantages__title {
  font-weight: 600;
  font-size: 18px;
  color: #141F2E;
}

.advantages__text {
  font-size: 16px;
  color: #141F2E;
  line-height: 1.5;
}

.reviews__wrapper__swiper .review__image {
  border-radius: 24px;
}

.reviews__wrapper__swiper .review__image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  border-radius: 24px;
}

.product__header-info table tr {
  border-bottom: 1px solid;
}

.product__header-info table tr p,
.product__header-info table tr {
  font-size: 16px;
}

.product__header-info table td:first-child {
  font-weight: 500;
  padding-right: 10px;
}

.product__btn-wrapper {
  clear: both;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  margin: 30px 0px 10px;
}

.product__btn-price-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
}

.product__btn-price {
  font-weight: bold;
  font-size: 20px;
  margin-right: 30px;
}

.product__payment img {
  max-height: 35px;
  width: initial;
  margin-top: 10px;
}

.product__header-picture {
  width: 30vw;
}

.product__header-info {
  width: calc(100% - 32vw);
}

.product__header {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.product__header-info table {
  width: 100%;
}

.news-item-content.product .product__header-picture img {
  margin-right: 0px;
  display: block;
  width: 100%;
  object-fit: contain;
  object-position: center;
}

.banner-caption {
  position: relative;
}

.banner-caption__container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.banner-caption .page-title-text {
  color: black;
  text-align: left;
}

.banner-caption__wrapper-btn {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  margin-top: 50px;
}

.banner-caption__wrapper-text {
  width: 60%;
  text-align: left;
}

.banner-caption__wrapper-picture {
  width: 40%;
}

.banner-caption__picture {
  width: 40vw;
  height: initial;
  top: 0px;
  right: 0px;
  position: absolute;
}

.banner-caption__no-picture {
  width: 40vw;
  height: initial;
}

.title-h2 {
  font-size: 40px;
  font-weight: 700;
  color: #141F2E;
  margin-bottom: 80px;
  text-align: center;
}

.banner-caption__text {
  margin-top: 20px;
  color: black;
  text-align: left;
  max-width: 90%;
}

.document-list__icon {
  margin-right: 20px;
}

.document-list__text {
  width: calc(100% - 80px);
  font-size: 16px;
  font-weight: 500;
  color: #141F2E;
}

.document-list__icon img {
  width: 60px;
}

.document-list__wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  margin-bottom: 30px;
}

.document-list__item {
  width: 30%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  margin-bottom: 25px;
}

.best-sert img {
  display: block;
  width: 100%;
  max-width: 450px;
  margin: auto;
}

article .description__wrapper__content ul,
article .description__wrapper__content li {
  margin-left: 0px;
  margin-right: 0px;
  padding-left: 0px;
}

article .description__wrapper__content li {
  margin-bottom: 32px;
}

article .description__wrapper__content li .title img {
  margin-bottom: 0px;
}

article .description__wrapper__content li .title {
  font-size: 24px;
  font-weight: 600;
  color: #E05628;
  margin-bottom: 20px;
}

@media (max-width: 1024px) {
  .article__wrapper__picture {
    width: 100%;
  }

  .article__wrapper__text-block {
    width: 100%;
  }

  .article__wrapper__image {
    margin: 20px auto 20px;
    display: block;
  }
}

@media (max-width: 900px) {
  .banner-caption__wrapper-text {
    width: 100%;
  }

  .banner-caption__wrapper-picture {
    width: 100%;
  }

  .banner-caption__picture {
    display: none;
  }

  img.banner-caption__no-picture {
    width: 100%;
    margin: 30px auto 0px;
  }

  .document-list__item {
    width: 47%;
  }
}

@media (max-width: 767px) {
  article .description__wrapper__content li .title img {
    margin-right: 10px;
  }

  article .description__wrapper__content li .title {
    font-size: 16px;
  }

  .product__header-picture {
    width: 100%;
  }

  .product__header-info {
    width: 100%;
  }

  .main__wrapper__video-tab video {
    max-width: 100vw;
    margin: 0px -20px;
    width: 100vw;
  }

  .list-product__text {
    margin-bottom: 25px;
  }

  .advantages__item {
    width: 100%;
    margin-bottom: 20px;
  }

  .product__btn-price-wrapper {
    margin-bottom: 20px;
    display: block;
  }

  .product__btn-price {
    font-size: 18px;
    margin-right: 20px;
    margin-bottom: 10px;
  }

  .title-h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
}

@media (max-width: 650px) {
  ul.list-category li {
    width: 50%;
  }

  .banner-caption__wrapper-btn .btn {
    width: 100%;
    margin-bottom: 5px;
  }

  .document-list__item {
    width: 100%;
  }
}

@media (max-width: 400px) {
  ul.list-category li {
    width: 100%;
  }
}
