:root {
  --border: #d6d6d6;
  --button-border: #ffffff;
  --name: #073671;
  --icon: #083f84;
  --link-color: #1872c5;
  --text: #838384;
  --text-2: #313132;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

.wrapper {
  padding-left: 15px;
  padding-right: 15px;
}

.support-center {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto;
}

.page-title--mod {
  font-size: 28px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .page-title--mod {
    font-size: 20px;
  }
}

.decorate-button {
  width: 66px;
  height: 66px;
  background-image: url(../img/icon-play.png);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.step-back-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  color: var(--link-color);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 12px 0;
  padding-left: 61px;
}
.step-back-link:hover {
  opacity: 0.7;
}
.step-back-link::before {
  content: "";
  display: block;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--icon);
  position: absolute;
  left: 0;
}
.step-back-link::after {
  content: "";
  background-image: url(../svg/icon-arrow-white.svg);
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  left: 13px;
  z-index: 2;
}

.brands-list__group {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  margin-bottom: 32px;
}
.brands-list__item .brands-preview-card {
  min-height: 100%;
  box-sizing: border-box;
}
.brands-list__text {
  text-align: center;
  margin-bottom: 25px;
}
@media (max-width: 1279px) {
  .brands-list__group {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 940px) {
  .brands-list__group {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 650px) {
  .brands-list__group {
    grid-template-columns: repeat(1, 1fr);
  }
}

.brands-preview-card {
  border: 1px solid var(--border);
  padding: 22px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.brands-preview-card:hover {
  scale: 1.1;
}
.brands-preview-card__logo {
  margin-bottom: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.brands-preview-card__logo img {
  display: block;
  max-width: 100%;
  height: 100%;
}
.brands-preview-card__name {
  color: var(--name);
  display: block;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto;
  padding-left: 22px;
  text-align: center;
  font-size: 14px;
  position: relative;
}
.brands-preview-card__name::before {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 0;
  width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(../svg/icon-arrow-long.svg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-position: right;
}
.brands-preview-card__name:hover::before {
  width: 24px;
  left: -10px;
}
@media (max-width: 650px) {
  .brands-preview-card {
    padding: 16px;
  }
}

.photo-slider {
  width: calc(100% + 50px);
  margin-left: -25px;
  margin-right: -25px;
  padding-top: 32px;
  padding-bottom: 32px;
  position: relative;
}
.photo-slider .swiper {
  width: calc(100% - 50px);
  margin: 0 auto;
}
.photo-slider .swiper-slide {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 100%;
}
.photo-slider .swiper-slide img {
  display: block;
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.photo-slider .photo-slider__item {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.photo-slider .photo-slider__link {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.photo-slider .swiper-button {
  border-radius: 50%;
  background-color: var(--icon);
  width: 45px;
  height: 45px;
  border: 4px solid var(--button-border);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.photo-slider .swiper-button:hover {
  scale: 1.3;
}
.photo-slider .swiper-button-prev {
  left: 0;
}
.photo-slider .swiper-button-prev::after {
  content: "";
  background-image: url(../svg/icon-arrow-white.svg);
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  left: 9px;
  z-index: 2;
}
.photo-slider .swiper-button-next {
  right: 0;
}
.photo-slider .swiper-button-next::after {
  content: "";
  background-image: url(../svg/icon-arrow-white.svg);
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  left: 9px;
  z-index: 2;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.photo-slider__item {
  position: relative;
}
.photo-slider__link {
  display: block;
  height: 360px;
  margin-bottom: 12px;
  position: relative;
}
.photo-slider__link .decorate-button {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -33px;
  margin-top: -33px;
  pointer-events: none;
}
.photo-slider__text {
  margin: 0;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding-right: 64px;
  display: block;
  position: absolute;
  max-width: 100%;
}
.photo-slider__link:hover + .photo-slider__text {
  opacity: 1;
}
.photo-slider__link:hover .decorate-button {
  scale: 1.2;
}
@media (max-width: 1279px) {
  .photo-slider {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
  }
  .photo-slider .swiper {
    width: calc(100% - 30px);
  }
  .photo-slider .photo-slider__link {
    height: 250px;
  }
}
@media (max-width: 1023px) {
  .photo-slider {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}

.documents-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.documents-list__item {
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .documents-list__item {
    margin-bottom: 16px;
  }
}

.documents-link {
  display: block;
  text-decoration: none;
  color: var(--text);
  position: relative;
  padding-left: 58px;
}
.documents-link:hover .documents-link__name::after {
  opacity: 1;
}
.documents-link::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 50px;
  background-image: url();
  background-repeat: no-repeat;
  background-size: contain;
}
.documents-link--doc::before {
  background-image: url(../img/documents-folders/doc.png);
}
.documents-link--docx::before {
  background-image: url(../img/documents-folders/docx.png);
}
.documents-link--pdf::before {
  background-image: url(../img/documents-folders/pdf.png);
}
.documents-link--xls::before {
  background-image: url(../img/documents-folders/xls.png);
}
.documents-link b {
  color: var(--text-2);
}
.documents-link:hover .documents-link__name {
  color: var(--link-color);
}
.documents-link__name {
  color: var(--name);
  font-weight: 500;
  margin: 0;
  margin-bottom: 12px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
.documents-link__name::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 1;
  width: 100%;
  height: 1px;
  background-color: var(--link-color);
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.documents-link__size {
  margin: 0;
}
@media (max-width: 767px) {
  .documents-link {
    font-size: 14px;
    padding-left: 45px;
  }
  .documents-link__name {
    margin-bottom: 6px;
  }
  .documents-link::before {
    width: 35px;
    height: 44px;
  }
}

.catalog-preview .catalog_list {
  max-width: calc(100% + 30px);
  margin-left: -15px;
  margin-right: -15px;
}

.brand-personal__logo {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto;
  margin-bottom: -17px;
  margin-top: 16px;
}

.documents-part {
  padding-top: 16px;
  padding-bottom: 16px;
}/*# sourceMappingURL=custom.css.map */