/*** ICONS ***/
/*** COLORS ***/
/*** END COLORS ***/
.banner {
  position: relative;
  width: 100%;
}
.banner::before {
  display: block;
  width: 100%;
  padding-top: 36.5%;
  content: "";
}
.banner__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fixed-video {
  position: fixed;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 19;
  bottom: 7rem;
  left: 3rem;
  max-width: 22rem;
  max-height: 100vh;
  background-color: #fff;
  padding: 1rem 1rem 2.4rem;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .fixed-video {
    display: none;
  }
}
.fixed-video__video-box {
  position: relative;
}
.fixed-video__video {
  display: inline-block;
  margin-bottom: 1rem;
}
.fixed-video__title {
  font-size: 1.4rem;
  line-height: 1;
}
.fixed-video__button {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 6.4rem;
  height: 6.4rem;
  border: 1px solid #fff;
  border-radius: 50%;
}
.fixed-video__icon {
  display: inline-block;
  font-size: 60px;
  color: #fff;
}

.section-about {
  padding-top: 12rem;
  padding-bottom: 12rem;
}
@media (max-width: 1024px) {
  .section-about {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
}
.section-about__grid {
  display: grid;
  grid-template: auto/1fr 2.05fr;
  grid-gap: 3rem;
}
@media (max-width: 1024px) {
  .section-about__grid {
    grid-template: auto/100%;
  }
}
.section-about__title {
  margin-top: 1.4rem;
  font-size: 1.6rem;
  line-height: 1;
  text-transform: uppercase;
  color: #7D7D7D;
  letter-spacing: 0.065em;
}
@media (max-width: 1024px) {
  .section-about__title {
    margin-top: 0;
  }
}
.section-about__content {
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .section-about__content {
    font-size: 1.8rem;
  }
}
.section-about__content-box {
  max-width: 78rem;
}
.section-about__text-bold {
  margin-bottom: 3.4rem;
}
@media (max-width: 1024px) {
  .section-about__text-bold {
    margin-bottom: 1.6rem;
  }
}
.section-about__text {
  color: #7D7D7D;
}

.section-production__grid {
  display: grid;
  grid-template: auto/repeat(2, 1fr);
  background-color: #191919;
  color: #fff;
}
@media (max-width: 1024px) {
  .section-production__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.section-production__text-col {
  padding: 11rem 7.5rem 17.3rem;
  background-image: url("../images/media/production-bg.svg");
  background-size: auto 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 1024px) {
  .section-production__text-col {
    padding: 3rem 3rem 4.5rem;
  }
}
.section-production__title {
  font-size: 4.4rem;
  line-height: 1;
  margin-bottom: 5rem;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .section-production__title {
    margin-bottom: 2.4rem;
    font-size: 2.4rem;
  }
}
.section-production__text {
  font-size: 2rem;
  line-height: 2.6rem;
}
@media (max-width: 1024px) {
  .section-production__text {
    font-size: 1.7rem;
    line-height: 2rem;
  }
}
.section-production__text:not(:last-child) {
  margin-bottom: 2rem;
}
.section-production__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.slider-progress {
  overflow: hidden;
}
.slider-progress__slider {
  padding-top: 4rem;
  margin-bottom: 5.4rem;
}
@media (max-width: 1024px) {
  .slider-progress__slider {
    padding-top: 2.4rem;
    margin-bottom: 3.2rem;
  }
}
.slider-progress .slick-list {
  padding-right: 25%;
}
.slider-progress__slide {
  padding-right: 4rem;
}
@media (max-width: 1024px) {
  .slider-progress__slide {
    padding-right: 2.4rem;
  }
}
.slider-progress__img {
  width: 100%;
}
.slider-progress__progress {
  position: relative;
  width: 100%;
  height: 3px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.slider-progress__progress-track {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 30rem;
  height: 100%;
  background-color: #000;
  -webkit-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
}
@media (max-width: 1024px) {
  .slider-progress__progress-track {
    min-width: 6.4rem;
  }
}

.section-other-collection {
  padding-top: 7rem;
  padding-bottom: 7rem;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .section-other-collection {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.section-other-collection__title {
  margin-bottom: 5rem;
}
@media (max-width: 1024px) {
  .section-other-collection__title {
    margin-bottom: 2.4rem;
  }
}
.section-other-collection .slick-list {
  overflow: unset;
}
@media (max-width: 1024px) {
  .section-other-collection__slider {
    padding-right: 25%;
  }
}
.section-other-collection__slide {
  display: inline-block;
}
.section-other-collection__img {
  display: block;
  width: 100%;
  margin-bottom: 2.4rem;
}
@media (max-width: 1024px) {
  .section-other-collection__img {
    margin-bottom: 1.4rem;
  }
}
.section-other-collection__text {
  font-size: 2.4rem;
  line-height: 1.1;
}
@media (max-width: 1024px) {
  .section-other-collection__text {
    font-size: 1.7rem;
  }
}

.section-catalog {
  padding-top: 14rem;
}
@media (max-width: 1024px) {
  .section-catalog {
    padding-top: 7rem;
  }
}