.production-page {
  overflow: hidden;
  color: var(--color-white);
  background: var(--color-graphite);
}

.production-hero {
  position: relative;
  min-height: 743px;
  padding: 192px var(--page-padding) 120px;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.35) 33.23%, rgba(0, 0, 0, 0) 56.56%),
    url("../images/production/1.webp");
  background-position: center;
  background-size: cover;
}

.production-hero-circle {
  --production-hero-glow-color: 242, 91, 25;
  --production-hero-glow-blur: 436.2px;
  background: radial-gradient(
    ellipse at center,
    rgba(var(--production-hero-glow-color), 0.2) 0%,
    rgba(var(--production-hero-glow-color), 0.16) 24%,
    rgba(var(--production-hero-glow-color), 0.08) 46%,
    rgba(var(--production-hero-glow-color), 0.025) 63%,
    rgba(var(--production-hero-glow-color), 0) 70%
  );
  position: absolute;
  z-index: 1;
  mix-blend-mode: lighten;
  pointer-events: none;
  width: 846px;
  height: 842px;
}

.production-hero-circle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: rgb(var(--production-hero-glow-color));
  opacity: 0;
  mix-blend-mode: lighten;
  -webkit-filter: blur(var(--production-hero-glow-blur));
  filter: blur(var(--production-hero-glow-blur));
}

@supports ((filter: blur(1px)) or (-webkit-filter: blur(1px))) {
  .production-hero-circle::before {
    opacity: 0.25;
  }
}

@-moz-document url-prefix() {
  .production-hero-circle::before {
    opacity: 0;
  }
}

@supports (-webkit-touch-callout: none) {
  .production-hero-circle::before {
    opacity: 0;
  }
}

@supports (font: -apple-system-body) and (-webkit-appearance: none) {
  .production-hero-circle::before {
    opacity: 0;
  }
}

.production-hero-circle:first-of-type {
  top: -532px;
  right: 169px;
}

.production-hero-circle:nth-of-type(2) {
  top: 487px;
  right: -279px;
}

.production-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1720px;
  margin: 0 auto;
  opacity: 0;
}

.production-hero__content.animate {
  animation:
    fadeUp 1s forwards,
    blurIn 1s forwards;
}

.production-hero__breadcrumbs {
  display: flex;
  align-items: center;
  gap: 9px;
  max-width: 100%;
  overflow: hidden;
  color: var(--color-white);
  font-size: 16px;
  line-height: 22px;
  white-space: nowrap;
}

.production-hero__breadcrumbs > a {
  transition: color 180ms ease;
}

.production-hero__breadcrumbs > a:hover,
.production-hero__breadcrumbs > a:focus-visible,
.production-hero__breadcrumbs > [aria-current="page"] {
  color: var(--color-accent);
}

.production-hero__breadcrumbs-separator {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.production-hero__title {
  max-width: 1071px;
  margin: 30px 0 0;
  color: var(--color-white);
  font-size: 75px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.production-hero__text {
  max-width: 725px;
  margin: 10px 0 0;
  color: var(--color-white);
  font-size: 18px;
  letter-spacing: 0;
}

.production-hero__actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
}

.production-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  padding: 0 20px;
  color: var(--color-white);
  font-size: 18px;
  line-height: 120%;
  text-align: center;
  transition:
    background-color 180ms ease,
    border-color 180ms ease;
  white-space: nowrap;
  text-transform: uppercase;
}

.production-hero__button--primary {
  min-width: 296px;
  background: var(--color-accent);
}

.production-hero__button--secondary {
  min-width: 192px;
  border: 1px solid var(--color-accent);
}

.production-hero__button:hover,
.production-hero__button:focus-visible {
  background: #d84d12;
  border-color: #d84d12;
}

.production-workshops {
  position: relative;
  padding: 89px var(--page-padding) 126px;
  color: var(--color-white);
  background: var(--color-graphite);
}

.production-workshops__inner {
  width: 100%;
  max-width: 1720px;
  margin: 0 auto;
  opacity: 0;
}

.production-workshops__inner.animate {
  animation:
    fadeUp 1s forwards,
    blurIn 1s forwards;
}

.production-workshops__header {
  display: grid;
  grid-template-columns: minmax(0, 777px) minmax(0, 705px);
  justify-content: space-between;
  gap: 40px;
  align-items: center;
}

.production-workshops__title {
  max-width: 777px;
  margin: 11px 0 0;
  color: var(--color-white);
  font-size: clamp(32px, 3.9vw, 64px);
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.production-workshops__title-mobile {
  display: none;
}

.production-workshops__intro {
  display: grid;
  grid-template-columns: 4px minmax(0, 1fr);
  align-items: center;
  gap: 48px;
  min-height: 176px;
}

.production-workshops__intro::before {
  display: block;
  width: 4px;
  height: 176px;
  background: var(--color-accent);
  content: "";
}

.production-workshops__intro > p {
  max-width: 653px;
  margin: 0;
  color: var(--color-white);
  font-size: 18px;
}

.production-workshops__gallery {
  display: grid;
  grid-template-columns: minmax(0, 995px) minmax(0, 705px);
  gap: 20px;
  margin-top: 89px;
  z-index: 1;
  position: relative;
}

.production-workshops__image {
  display: block;
  width: 100%;
  height: 442px;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}

@media (max-width: 1180px) {
  .production-hero {
    min-height: 610px;
    padding-top: 126px;
    padding-bottom: 80px;
  }

  .production-hero-circle {
    --production-hero-glow-blur: 254px;
    width: 493px;
    height: 491px;
  }

  .production-hero-circle:first-of-type {
    top: -210px;
    right: 104px;
  }

  .production-hero-circle:nth-of-type(2) {
    top: 360px;
    right: -144px;
  }

  .production-hero__content {
    max-width: 649px;
    margin: 0;
  }

  .production-hero__title {
    max-width: 649px;
    margin-top: 20px;
    font-size: 40px;
    letter-spacing: 0.01em;
  }

  .production-hero__text {
    max-width: 649px;
    font-size: 16px;
  }

  .production-hero__actions {
    margin-top: 30px;
  }

  .production-hero__button--primary {
    min-width: 319px;
  }

  .production-workshops {
    padding-top: 60px;
    padding-bottom: 90px;
  }

  .production-workshops__inner {
    max-width: none;
  }

  .production-workshops__header {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .production-workshops__title {
    max-width: 482px;
    margin-top: 27px;
  }

  .production-workshops__intro {
    gap: 30px;
    min-height: 150px;
  }

  .production-workshops__intro::before {
    height: 150px;
  }

  .production-workshops__intro > p {
    max-width: 448px;
    font-size: 16px;
  }

  .production-workshops__gallery {
    grid-template-columns: minmax(0, 482px) minmax(0, 478px);
    gap: 24px;
    margin-top: 60px;
  }
}

@media (max-width: 840px) {
  .production-workshops {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .production-workshops__header {
    display: block;
  }

  .production-workshops__title {
    max-width: unset;
    margin-top: 0;
    font-size: 32px;
    letter-spacing: -0.01em;
  }

  .production-workshops__intro {
    grid-template-columns: 4px minmax(0, 1fr);
    gap: 30px;
    min-height: 176px;
    margin-top: 24px;
  }

  .production-workshops__intro::before {
    height: 150px;
  }

  .production-workshops__intro > p {
    max-width: unset;
    font-size: 16px;
  }

  .production-workshops__gallery {
    display: block;
    margin-top: 30px;
  }

  .production-workshops__image {
    height: 260px;
  }

  .production-workshops__image + .production-workshops__image {
    margin-top: 10px;
  }
}

@media (max-width: 760px) {
  .production-hero {
    min-height: 712px;
    padding-top: 126px;
    padding-bottom: 60px;
    background-position: center top;
  }

  .production-hero-circle:first-of-type {
    top: -220px;
    right: -99px;
  }

  .production-hero-circle:nth-of-type(2) {
    top: 440px;
    right: -194px;
  }

  .production-hero__content {
    max-width: none;
  }

  .production-hero__title {
    max-width: unset;
    font-size: 36px;
    letter-spacing: -0.03em;
  }

  .production-hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    margin-top: 15px;
  }

  .production-hero__text {
    max-width: unset;
    margin-top: 30px;
    font-size: 16px;
  }

  .production-hero__button {
    width: 100%;
    min-width: 0;
    font-size: 16px;
  }
}

@media (max-width: 390px) {
  .production-workshops__title-full {
    display: none;
  }

  .production-workshops__title-mobile {
    display: inline;
  }
}

.production-category-slider {
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  user-select: none;
  scrollbar-width: none;
}

.production-category-slider::-webkit-scrollbar {
  display: none;
}

.production-category-slider.is-dragging {
  cursor: grabbing;
}

.production-category-slider__track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  min-width: 100%;
  padding: 0 50vw 130px;
  min-height: 220px;
  opacity: 0;
}

.production-category-slider__track.animate {
  animation:
    fadeUp 1s forwards,
    blurIn 1s forwards;
}

.production-category-slider__item {
  flex: 0 0 auto;
  border: 0;
  background: none;
  padding: 0;
  color: var(--color-white);
  font-size: 36px;
  line-height: 49px;
  text-transform: uppercase;
  opacity: 0.39;
  white-space: nowrap;
  pointer-events: none;
  transition:
    font-size 0.3s ease-in-out,
    opacity 0.3s ease-in-out;
}

.production-category-slider__item.is-active {
  font-size: 75px;
  line-height: 90px;
  opacity: 1;
  pointer-events: all;
  cursor: grab;
  letter-spacing: -0.02em;
}

@media (max-width: 1180px) {
  .production-category-slider__track {
    gap: 30px;
    padding: 0 50vw 70px;
    min-height: 128px;
  }

  .production-category-slider__item {
    line-height: 33px;
    font-size: 24px;
  }

  .production-category-slider__item.is-active {
    font-size: 48px;
    line-height: 58px;
  }
}

@media (max-width: 760px) {
  .production-category-slider__track {
    gap: 10px;
    padding: 0 50vw 60px;
    min-height: 89px;
  }

  .production-category-slider__item {
    line-height: 20px;
    font-size: 15px;
  }

  .production-category-slider__item.is-active {
    font-size: 24px;
    line-height: 29px;
    letter-spacing: -0.03em;
  }
}

html.is-production-modal-open,
body.is-production-modal-open {
  overflow: hidden;
}

.production-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  color: var(--color-white);
  background: var(--color-graphite);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity 300ms ease,
    visibility 300ms ease;
}

.production-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.production-modal__viewport {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  outline: none;
}

.production-modal__track {
  display: flex;
  flex-direction: column;
  height: 100%;
  transform: translate3d(0, 0, 0);
  transition: transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.production-modal.is-screen-dragging .production-modal__track {
  transition: none;
}

.production-modal__screen {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 74px var(--page-padding) 80px;
  background: var(--color-graphite);
}

.production-modal__screen::before,
.production-modal__screen::after {
  position: absolute;
  z-index: 0;
  width: 846px;
  height: 842px;
  border-radius: 50%;
  background: var(--color-accent);
  content: "";
  filter: blur(218px);
  mix-blend-mode: lighten;
  opacity: 0.25;
  pointer-events: none;
}

.production-modal__screen::before {
  top: -495px;
  right: -67px;
}

.production-modal__screen::after {
  left: 319px;
  bottom: -598px;
}

.production-modal__screen--process {
  background: none;
}

.production-modal__bg--process {
  background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75));
  position: absolute;
  inset: 0;
  pointer-events: none;
  user-select: none;
  width: 100%;
  height: 100%;
}

.production-modal__bg--process > img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: -1;
}

.production-modal__screen--process::before {
  right: 412px;
  top: -494px;
}

.production-modal__screen--process::after {
  left: unset;
  right: -7px;
  bottom: -545px;
}

.production-modal__screen--unique1 {
  color: var(--color-graphite);
  background: var(--color-gray);
}

.production-modal__screen--unique1::before {
  top: -486px;
  left: -465px;
  right: auto;
}

.production-modal__screen--unique1::after {
  left: unset;
  right: 394px;
  bottom: -624px;
}

.production-modal__inner {
  position: relative;
  z-index: 1;
  width: min(1430px, 100%);
  height: 100%;
  margin: 0 auto;
}

.production-modal__title {
  margin: 0;
  color: inherit;
  font-size: clamp(40px, 3.9vw, 64px);
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  hyphens: auto;
  overflow-wrap: break-word;
}
.production-modal__title--center {
  font-size: clamp(48px, 3.9vw, 75px);
  letter-spacing: -0.02em;
}

.production-modal__close {
  position: absolute;
  z-index: 4;
  top: 70px;
  right: var(--page-padding);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 85px;
  height: 85px;
  border: 0;
  padding: 0;
  color: currentColor;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.production-modal__close > span,
.production-modal__close > span::before,
.production-modal__close > span::after {
  position: absolute;
  display: block;
  width: 60px;
  height: 2px;
  background: var(--color-white);
  content: "";
  transition:
    background-color 220ms ease,
    transform 220ms ease;
}

.production-modal__close > span {
  background: transparent;
}

.production-modal__close > span::before {
  transform: rotate(45deg);
}

.production-modal__close > span::after {
  transform: rotate(-45deg);
}

.production-modal__close:hover > span::before,
.production-modal__close:focus-visible > span::before {
  transform: rotate(45deg) scaleX(0.86);
}

.production-modal__close:hover > span::after,
.production-modal__close:focus-visible > span::after {
  transform: rotate(-45deg) scaleX(0.86);
}

.production-modal[data-screen="unique2"]
  .production-modal__close
  > span::before,
.production-modal[data-screen="unique2"]
  .production-modal__close
  > span::after {
  background: var(--color-graphite);
}

.production-modal[data-screen="unique1"]
  .production-modal__close
  > span::before,
.production-modal[data-screen="unique1"] .production-modal__close > span::after,
.production-modal[data-screen="unique3"]
  .production-modal__close
  > span::before,
.production-modal[data-screen="unique3"]
  .production-modal__close
  > span::after {
  background: #fff;
}

.production-modal__pagination::before {
  content: "";
  position: absolute;
  background-color: rgba(180, 180, 182, 0.6);
  -webkit-mask-image: linear-gradient(0deg, #000 50%, transparent 100%);
  mask-image: linear-gradient(0deg, #000 50%, transparent 100%);
  width: 100dvw;
  height: 80px;
  left: 0;
  bottom: -40px;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.3s ease-in-out,
    transform 0.3s ease-in-out,
    background-color 0.3s ease-in-out;
}

.production-modal__pagination {
  position: absolute;
  z-index: 3;
  top: 53%;
  left: var(--page-padding);
  display: flex;
  flex-direction: column;
  gap: 9px;
  transform: translateY(-50%);
}

@media (max-width: 1660px) {
  .production-modal__pagination {
    left: calc(var(--page-padding) / 2);
  }
}

.production-modal__pagination > span {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #b4b4b6;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.production-modal__pagination > span:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

.production-modal__pagination > span.is-active {
  background: var(--color-accent);
}

.production-modal[data-screen="unique1"] .production-modal__pagination > span,
.production-modal[data-screen="unique3"] .production-modal__pagination > span {
  background: var(--color-graphite);
}

.production-modal[data-screen="unique1"]
  .production-modal__pagination
  > span.is-active,
.production-modal[data-screen="unique3"]
  .production-modal__pagination
  > span.is-active {
  background: var(--color-accent);
}

.production-modal-intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 76px;
}

.production-modal-intro__image {
  display: block;
  width: 100%;
  height: min(52.7vh, 569px);
  object-fit: cover;
}

.production-modal-intro__task {
  min-width: 0;
  padding-top: min(34vh, 368px);
}

.production-modal-intro__task > h3 {
  margin: 0 0 55px;
  color: inherit;
  font-size: clamp(40px, 3.34vw, 64px);
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  padding-left: 60px;
}

.production-modal-intro__task > div {
  min-height: 254px;
  border: 2px solid #ffffff33;
  padding: 60px;
  background-color: var(--color-graphite);
}

.production-modal-intro__task span {
  display: block;
  width: 235px;
  max-width: 100%;
  height: 5px;
  margin-bottom: 29px;
  background: var(--color-accent);
}

.production-modal-intro__task p {
  max-width: 500px;
  margin: 0;
  color: inherit;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: 0.01em;
}

.production-modal-process {
  position: relative;
  height: min(69.3vh, 748px);
  margin-top: 36px;
}

.production-modal-process__item {
  position: absolute;
  display: flex;
  flex-direction: column;
  width: 32.38%;
  height: min(34.6vh, 374px);
  min-height: 260px;
  border: 2px solid #ffffff33;
  padding: 40px;
}

.production-modal-process__item:nth-child(1) {
  top: 0;
  left: 0;
}

.production-modal-process:not(:has(> :nth-child(4)))
  > .production-modal-process__item:nth-child(2) {
  top: 25%;
  left: 33.84%;
}

.production-modal-process:not(:has(> :nth-child(4)))
  > .production-modal-process__item:nth-child(3) {
  top: 50%;
  right: 0;
}

.production-modal-process:has(> :nth-child(4))
  > .production-modal-process__item:nth-child(2) {
  top: 40px;
  left: 33.84%;
}

.production-modal-process:has(> :nth-child(4))
  > .production-modal-process__item:nth-child(3) {
  top: 80px;
  right: 0;
}

.production-modal-process:has(> :nth-child(4))
  > .production-modal-process__item:nth-child(4) {
  top: calc(50% + 20px);
  left: 0;
}

.production-modal-process:has(> :nth-child(4))
  > .production-modal-process__item:nth-child(5) {
  top: calc(50% + 60px);
  left: 33.84%;
}

.production-modal-process:has(> :nth-child(4))
  > .production-modal-process__item:nth-child(6) {
  top: calc(50% + 100px);
  right: 0;
}

.production-modal-process:has(> :nth-child(4))
  ~ .production-modal-process__note {
  display: none;
}

.production-modal-process__item > span {
  display: block;
  width: 235px;
  max-width: 100%;
  height: 5px;
  background: var(--color-accent);
}

.production-modal-process__item > p {
  max-width: 360px;
  margin: auto 0 0;
  color: inherit;
  font-size: 28px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.production-modal-process__note {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 1146px;
  margin: 0;
  color: inherit;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: 0.01em;
}

.production-modal-unique1 {
  position: relative;
  margin-top: 131px;
}

.production-modal-unique1__line {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100vh;
  min-height: 440px;
  background: var(--color-accent);
}

.production-modal-unique1__content {
  display: flex;
  margin-left: 31px;
  margin-right: calc((100% - 100vw) / 2);
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior: contain;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  cursor: grab;
  user-select: none;
}

.production-modal-unique1__content::-webkit-scrollbar {
  display: none;
}

.production-modal-unique1__content.is-dragging {
  cursor: grabbing;
}

.production-modal-unique1__item {
  display: flex;
  flex-direction: column;
  flex: 0 0 clamp(664px, 64.8vw, 923px);
  min-width: clamp(664px, 64.8vw, 923px);
}

.production-modal-unique1__item:first-of-type > div {
  border-right-width: 1px;
}
.production-modal-unique1__item:last-of-type > div {
  border-left-width: 1px;
}

.production-modal-unique1__item > img {
  object-fit: cover;
  height: 366px;
  width: 100%;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.production-modal-unique1__item > div {
  padding: 50px;
  border: 2px solid #00000033;
}

.production-modal-unique1__item > div > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-bottom: 37px;
  color: var(--color-white);
  background: var(--color-accent);
  font-size: 24px;
  line-height: 120%;
}

.production-modal-unique1__item > div > p {
  max-width: 823px;
  margin: 0;
  color: inherit;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: 0;
}

.production-modal-unique1__item > div > p > span {
  color: var(--color-accent);
}

.production-modal__screen--unique2 {
  color: var(--color-graphite);
  background: var(--color-white);
}

.production-modal__screen--unique2::before,
.production-modal__screen--unique2::after {
  display: none;
}

.production-modal__inner--unique2 > img {
  margin: 0 auto;
  margin-bottom: clamp(60px, 5.8vw, 74px);
  width: 100%;
  object-fit: contain;
  max-height: clamp(185px, 18vw, 327px);
}

.production-modal__inner--unique2 > div {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.production-modal__inner--unique2 > div > img {
  width: 100%;
  object-fit: cover;
  max-width: 705px;
  max-height: 511px;
}

.production-modal__inner--unique2 > div > div {
  display: flex;
  flex-direction: column;
  gap: 124px;
  max-width: 648px;
  width: 100%;
}

.production-modal__inner--unique2 > div > div > .production-modal__title {
  color: #292d78;
}

.production-modal__inner--unique2 > div > div > p {
  margin: 0;
  font-size: clamp(18px, 1.65vw, 24px);
  line-height: 120%;
  letter-spacing: 0.01em;
}

.production-modal__screen--unique3 {
  color: var(--color-graphite);
  background: #b4b4b6;
}

.production-modal__screen--unique3::before,
.production-modal__screen--unique3::after {
  display: none;
}

.production-modal__screen--unique3::after {
  left: unset;
  right: 394px;
  bottom: -624px;
}

.production-modal__content--unique3 {
  color: var(--color-white);
  background: url("../images/production/1.webp");
  background-size: 105%;
  background-repeat: no-repeat;
  background-position: left bottom;
  padding: 70px;
  position: relative;
  margin-top: 40px;
  height: 736px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: clamp(830px, 83vw, 1575px);
}

.production-modal__content--unique3::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #00000099;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.production-modal__layout--unique3 {
  display: grid;
  grid-template-columns: repeat(2, minmax(auto, 1fr));
  gap: 26px;
  width: 100%;
  max-width: 1164px;
  position: relative;
}

.production-modal__layout--unique3 > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
  border: 2px solid #ffffff33;
  padding: 27px;
}

.production-modal__layout--unique3 > div > h4 {
  margin: 0;
  color: var(--color-accent);
  font-size: 38px;
  line-height: 52px;
  font-weight: 400;
}

.production-modal__layout--unique3 > div > p {
  margin: 0;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: 0.01em;
  max-width: 282px;
}

.production-modal__layout--unique3 > div:first-of-type > p {
  max-width: 244px;
}

.production-modal__note--unique3 {
  display: flex;
  align-items: center;
  max-width: 1164px;
  width: 100%;
  justify-content: space-between;
  position: relative;
  gap: 30px;
}

.production-modal__note--unique3 > p {
  margin: 0;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: 0.01em;
  max-width: 841px;
}

.production-modal__note--unique3 > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  height: 76px;
  padding: 0 20px;
  border: 0;
  border-radius: 0;
  color: var(--color-white);
  background: var(--color-accent);
  font-size: 18px;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    background-color 180ms ease;
  white-space: nowrap;
  gap: 10px;
  min-width: 233px;
}

.production-modal__note--unique3 > a > svg {
  transition: 0.3s ease-in-out;
}

.production-modal__note--unique3 > a:hover,
.production-modal__note--unique3 > a:focus-visible {
  color: var(--color-white);
  background: #d84d12;
}

.production-modal__note--unique3 > a:hover > svg,
.production-modal__note--unique3 > a:focus-visible > svg {
  transform: translate(10px, -10px);
}

@media (min-width: 821px) {
  .production-modal-unique1__content {
    align-items: stretch;
  }

  .production-modal-unique1__item {
    align-self: stretch;
  }

  .production-modal-unique1__item > img {
    flex: 0 0 366px;
  }

  .production-modal-unique1__item > div {
    flex: 1 1 auto;
  }
}

@media (max-width: 1360px) {
  .production-modal__close {
    top: 10px;
    right: 20px;
  }

  .production-modal__pagination {
    left: 20px;
  }

  .production-modal__screen {
    padding: 90px 0;
  }

  .production-modal__screen::after,
  .production-modal__screen::before {
    width: 493px;
    height: 491px;
  }

  .production-modal__screen::before {
    top: -122px;
    right: -21px;
  }

  .production-modal__screen::after {
    bottom: -182px;
    left: 4px;
  }

  .production-modal__screen--unique1::before {
    left: unset;
  }

  .production-modal__screen--unique1::after {
    right: unset;
  }

  .production-modal__inner {
    padding: 0 100px;
  }

  .production-modal-intro {
    display: flex;
    flex-direction: column;
    margin-top: 60px;
  }

  .production-modal-intro__image {
    height: 425px;
    max-width: 737px;
  }

  .production-modal-intro__task {
    padding-top: 0;
    margin-left: auto;
    max-width: 569px;
  }

  .production-modal-intro__task > h3 {
    padding-left: 0;
    margin: 0 0 15px;
  }

  .production-modal-intro__task > div {
    padding: 50px;
  }

  .production-modal-process {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .production-modal-process:has(> :nth-child(4)) {
    margin-top: 30px;
  }

  .production-modal-process__item {
    position: unset;
    width: 100%;
    min-height: 180px;
    height: auto;
    padding: 20px;
  }

  .production-modal-process:has(> :nth-child(4))
    > .production-modal-process__item {
    min-height: 130px;
  }

  .production-modal-process__item:nth-of-type(2) {
    margin-left: 40px;
    width: calc(100% - 20px);
  }

  .production-modal-process__item:nth-of-type(3) {
    margin-left: 80px;
    width: calc(100% - 40px);
  }

  .production-modal-process__item:nth-of-type(4) {
    margin-left: 110px;
    width: calc(100% - 60px);
  }

  .production-modal-process__item:nth-of-type(5) {
    margin-left: 150px;
    width: calc(100% - 80px);
  }

  .production-modal-process__item:nth-of-type(6) {
    margin-left: 190px;
    width: calc(100% - 100px);
  }

  .production-modal-process__item > p {
    max-width: unset;
    font-size: clamp(18px, 1.7vw, 28px);
  }

  .production-modal-process__note {
    position: unset;
    font-size: clamp(16px, 1.5vw, 24px);
  }

  .production-modal-unique1__item > div > p {
    font-size: clamp(16px, 1.5vw, 24px);
  }

  .production-modal-unique1__content {
    margin-left: 0;
    margin-right: calc((100% - 100vw) / 2);
  }

  .production-modal-unique1 {
    margin-top: 60px;
  }

  .production-modal-unique1__line {
    display: none;
  }

  .production-modal__inner--unique2 > div {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .production-modal__inner--unique2 > img {
    margin-bottom: 60px;
  }

  .production-modal__inner--unique2 > div > img {
    max-width: unset;
    max-height: 400px;
  }

  .production-modal__inner--unique2 > div > div {
    gap: 29px;
    max-width: unset;
  }

  .production-modal__inner--unique2 > div > div > p {
    line-height: normal;
    letter-spacing: normal;
  }

  .production-modal__content--unique3 {
    padding: clamp(40px, 5.2vw, 70px);
    height: clamp(628px, 54.2vw, 736px);
    background-size: cover;
    width: 100%;
  }

  .production-modal__layout--unique3 {
    gap: clamp(20px, 1.9vw, 26px);
  }

  .production-modal__layout--unique3 > div > p {
    font-size: clamp(18px, 1.8vw, 24px);
    letter-spacing: normal;
    line-height: normal;
  }

  .production-modal__note--unique3 {
    margin-top: 26px;
  }

  .production-modal__note--unique3 > p {
    font-size: clamp(16px, 1.8vw, 24px);
    letter-spacing: normal;
    line-height: normal;
  }
}

@media (max-width: 820px) {
  .production-modal__viewport {
    cursor: grab;
    touch-action: pan-y;
  }

  .production-modal.is-screen-dragging .production-modal__viewport {
    cursor: grabbing;
  }

  .production-modal__track {
    flex-direction: row;
  }

  .production-modal__screen {
    min-width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    overscroll-behavior: contain;
    scrollbar-width: none;
    touch-action: pan-y;
  }

  .production-modal__screen.is-scrollable-y {
    overflow-y: auto;
  }

  .production-modal__screen::-webkit-scrollbar {
    display: none;
  }

  .production-modal__screen::before {
    top: -217px;
    right: -100px;
  }

  .production-modal__screen::after {
    bottom: -278px;
    left: -176px;
  }

  .production-modal__close {
    width: 66px;
    height: 66px;
  }

  .production-modal__pagination {
    bottom: 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: unset;
    flex-direction: row;
    justify-content: center;
  }

  .production-modal[data-screen="unique1"]
    .production-modal__pagination::before,
  .production-modal[data-screen="unique3"]
    .production-modal__pagination::before {
    opacity: 1;
    transform: translateY(0);
  }

  .production-modal[data-screen="unique2"]
    .production-modal__pagination::before {
    opacity: 1;
    transform: translateY(0);
    background-color: rgba(255, 255, 255, 0.6);
  }

  .production-modal[data-screen="process"]
    .production-modal__pagination::before {
    opacity: 1;
    transform: translateY(0);
    background-color: rgba(0, 0, 0, 0.6);
  }

  .production-modal[data-screen="intro"] .production-modal__pagination::before {
    opacity: 1;
    transform: translateY(0);
    background-color: rgba(34, 36, 38, 0.6);
  }

  .production-modal__screen {
    padding: 100px 0 0;
  }

  .production-modal__inner {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
  }

  .production-modal-intro__task {
    max-width: unset;
    margin-left: 0;
  }

  .production-modal-intro {
    margin-top: 21px;
    gap: 30px;
  }

  .production-modal__title {
    font-size: clamp(32px, 4.9vw, 40px);
    letter-spacing: -0.01em;
  }

  .production-modal__title--center {
    font-size: clamp(36px, 5.9vw, 48px);
    letter-spacing: -0.03em;
  }

  .production-modal-intro__task > h3 {
    font-size: clamp(32px, 4.9vw, 40px);
  }

  .production-modal-intro__image {
    height: clamp(363px, 52vw, 425px);
  }

  .production-modal-intro__task p {
    font-size: clamp(16px, 3vw, 24px);
  }

  .production-modal-intro__task > div {
    padding: 30px;
  }

  .production-modal-process > .production-modal-process__item {
    margin-left: 0 !important;
    width: 100% !important;
  }

  .production-modal-process {
    margin-top: 20px;
    gap: 10px;
    height: auto;
  }

  .production-modal-process__note {
    margin-top: 40px;
  }

  .production-modal-unique1 {
    margin-top: 20px;
    padding-bottom: 20px;
  }

  .production-modal-unique1__content {
    flex-direction: column;
    margin-right: 0;
    max-height: none;
    overflow: visible;
    touch-action: pan-y;
    cursor: auto;
    user-select: auto;
  }

  .production-modal-unique1__item {
    flex: 0 0 auto;
    min-width: unset;
  }

  .production-modal-unique1__item > div {
    padding: 30px;
  }

  .production-modal-unique1__item > img {
    height: clamp(270px, 45vw, 366px);
  }

  .production-modal-unique1__item > div > span {
    margin-bottom: 20px;
    font-size: clamp(20px, 3vw, 24px);
  }

  .production-modal-unique1__item:first-of-type > div {
    border-right-width: 2px;
  }

  .production-modal-unique1__item:last-of-type > div {
    border-left-width: 2px;
  }

  .production-modal__inner--unique2 > div {
    gap: 30px;
  }

  .production-modal__inner--unique2 > img {
    margin-bottom: 50px;
    max-height: clamp(134px, 23vw, 185px);
  }

  .production-modal__inner--unique2 > div > div {
    gap: 5px;
  }

  .production-modal__inner--unique2 > div > img {
    max-height: clamp(269px, 49vw, 400px);
  }

  .production-modal__inner--unique2 > div > div > p {
    font-size: clamp(16px, 2.5vw, 18px);
  }

  .production-modal__content--unique3 {
    height: auto;
    padding: 20px;
    padding-bottom: 60px;
    margin-top: 30px;
  }

  .production-modal__note--unique3 {
    margin-top: 20px;
  }

  .production-modal__layout--unique3 > div {
    padding: 24px;
  }
}

@media (max-width: 700px) {
  .production-modal__note--unique3 {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .production-modal__screen--unique2 > .production-modal__inner {
    margin-bottom: 60px;
  }

  .production-modal-unique1 {
    padding-bottom: 60px;
  }
}

@media (max-width: 560px) {
  .production-modal__layout--unique3 {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .production-modal,
  .production-modal__track,
  .production-modal__close > span,
  .production-modal__close > span::before,
  .production-modal__close > span::after,
  .production-modal__pagination::before,
  .production-modal__pagination > span {
    transition: none;
  }
}

.production-process {
  padding: 80px var(--page-padding);
  background-color: var(--color-accent);
}

.production-process > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1720px;
  color: var(--color-white);
  margin: 0 auto;
  gap: 20px;
  position: relative;
}

.production-process-circle {
  --production-process-glow-color: 242, 91, 25;
  --production-process-glow-blur: 436.2px;
  background: radial-gradient(
    ellipse at center,
    rgba(var(--production-process-glow-color), 0.2) 0%,
    rgba(var(--production-process-glow-color), 0.16) 24%,
    rgba(var(--production-process-glow-color), 0.08) 46%,
    rgba(var(--production-process-glow-color), 0.025) 63%,
    rgba(var(--production-process-glow-color), 0) 70%
  );
  position: absolute;
  z-index: 1;
  mix-blend-mode: lighten;
  pointer-events: none;
  width: 846px;
  height: 842px;
}

.production-process-circle:first-of-type {
  top: -401px;
  left: -648px;
}

.production-process-circle:nth-of-type(2) {
  top: -492px;
  right: -629px;
}

.production-process-circle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: rgb(var(--production-process-glow-color));
  opacity: 0;
  mix-blend-mode: lighten;
  -webkit-filter: blur(var(--production-process-glow-blur));
  filter: blur(var(--production-process-glow-blur));
}

@supports ((filter: blur(1px)) or (-webkit-filter: blur(1px))) {
  .production-process-circle::before {
    opacity: 0.25;
  }
}

@-moz-document url-prefix() {
  .production-process-circle::before {
    opacity: 0;
  }
}

@supports (-webkit-touch-callout: none) {
  .production-process-circle::before {
    opacity: 0;
  }
}

@supports (font: -apple-system-body) and (-webkit-appearance: none) {
  .production-process-circle::before {
    opacity: 0;
  }
}

.production-process > div > h3 {
  font-size: clamp(28px, 2vw, 32px);
  margin: 0;
  font-weight: 400;
  text-transform: uppercase;
  opacity: 0;
}

.production-process > div.animate > h3 {
  animation:
    fadeRightPercent 1s forwards,
    blurIn 1s forwards;
}

.production-process > div > p {
  font-size: 24px;
  line-height: 120%;
  max-width: 705px;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.01em;
  opacity: 0;
}

.production-process > div.animate > p {
  animation:
    fadeLeftPercent 1s forwards,
    blurIn 1s forwards;
}

@media (max-width: 1180px) {
  .production-process {
    padding: 70px var(--page-padding);
  }

  .production-process-circle {
    --production-process-glow-blur: 254px;
    width: 493px;
    height: 491px;
  }

  .production-process-circle:first-of-type {
    top: -12px;
    left: -179px;
  }

  .production-process-circle:nth-of-type(2) {
    top: -412px;
    right: -189px;
  }

  .production-process > div > h3 {
    font-size: 24px;
    min-width: 320px;
  }

  .production-process > div > p {
    font-size: 16px;
    max-width: 482px;
    letter-spacing: normal;
  }
}

@media (max-width: 840px) {
  .production-process {
    padding: 30px var(--page-padding) 40px;
  }

  .production-process-circle {
    display: none;
  }

  .production-process > div {
    flex-direction: column;
    align-items: flex-start;
  }

  .production-process > div > h3 {
    font-size: 20px;
    min-width: unset;
  }

  .production-process > div > p {
    max-width: unset;
  }
}

.production-equipment {
  display: flex;
  gap: 50px;
  justify-content: space-between;
  max-width: 1920px;
  margin: 0 auto;
  padding: 110px var(--page-padding) 120px;
  position: relative;
  opacity: 0;
  scroll-margin-top: 80px;
}

.production-equipment.animate {
  animation:
    fadeUp 1s forwards,
    blurIn 1s forwards;
}

.production-equipment > .show-more {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, rgba(34, 36, 38, 0) 0%, #222426 89.9%);
  height: 266px;
  display: flex;
  opacity: 0;
  transition: 0.3s ease-in-out;
  justify-content: center;
  align-items: flex-end;
  pointer-events: none;
  margin-bottom: 24px;
}

.production-equipment > .show-more > button {
  background-color: var(--color-accent);
  color: var(--color-white);
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 40px);
  text-transform: uppercase;
  font-size: 18px;
  border: none;
  outline: none;
}
.production-equipment > .info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 784px;
  color: var(--color-white);
  width: 100%;
  min-width: 0;
}
.production-equipment > .info > h2 {
  margin: 0;
  font-size: clamp(40px, 3.4vw, 64px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 120%;
}
.production-equipment > .info > h2 > span {
  display: none;
}
.production-equipment > .info > h2 > div {
  display: inline;
}
.production-equipment > .info > p {
  margin: 0;
  font-size: clamp(16px, 1.5vw, 24px);
  font-weight: 400;
  letter-spacing: 0.01em;
}
.production-equipment > .grid-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(215px, 1fr));
  max-width: 850px;
  gap: 20px;
  width: 100%;
}
.production-equipment > .grid-layout > .item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2px;
  border: 2px solid #ffffff33;
  padding: 20px;
}
.production-equipment > .grid-layout > .item > h4 {
  margin: 0;
  color: var(--color-accent);
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 400;
}
.production-equipment > .grid-layout > .item > p {
  margin: 0;
  color: var(--color-white);
  font-size: 18px;
  font-weight: 400;
}
.production-equipment > .grid-layout > a {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background-color: var(--color-accent);
  font-size: 18px;
  color: var(--color-white);
  padding: 20px;
  text-transform: uppercase;
}
.production-equipment > .grid-layout > a > span {
  width: 54px;
  height: 54px;
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1400px) {
  .production-equipment > .info > h2 {
    font-size: clamp(40px, 3vw, 64px);
  }
}
@media (max-width: 1250px) {
  .production-equipment {
    padding: 70px var(--page-padding);
  }
  .production-equipment > .info > h2 {
    font-size: clamp(34px, 3vw, 64px);
  }
}
@media (max-width: 1180px) {
  .production-equipment {
    flex-direction: column;
  }
  .production-equipment > .info,
  .production-equipment > .grid-layout {
    max-width: unset;
  }
  .production-equipment > .info > h2 {
    font-size: clamp(32px, 4.5vw, 40px);
  }
  .production-equipment > .info > p {
    letter-spacing: normal;
  }
  .production-equipment > .grid-layout > .item > h4 {
    margin-bottom: 27px;
  }
}
@media (max-width: 730px) {
  .production-equipment {
    flex-direction: column;
    gap: 30px;
    padding: 60px var(--page-padding) 24px;
  }
  .production-equipment > .info > h2 {
    letter-spacing: -0.01em;
  }
  .production-equipment:not(.is-expanded) > .show-more {
    opacity: 1;
    pointer-events: all;
  }
  .production-equipment > .grid-layout {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 495px;
    overflow: hidden;
  }
  .production-equipment.is-expanded > .grid-layout {
    max-height: unset;
  }
  .production-equipment.is-expanded > .show-more {
    opacity: 0;
    pointer-events: none;
  }
}
@media (max-width: 425px) {
  .production-equipment > .info > h2 > span {
    display: inline-block;
  }
  .production-equipment > .info > h2 > div {
    display: block;
  }
}

.production-machine-park {
  padding: 120px var(--page-padding);
  background: var(--color-white);
}

.machine-park__container {
  max-width: 1920px;
  margin: 0 auto;
  opacity: 0;
}

.machine-park__container.animate {
  animation:
    fadeUp 1s forwards,
    blurIn 1s forwards;
}

.machine-park__eyebrow {
  margin-bottom: 20px;
  color: var(--color-accent);
  font-size: 24px;
  text-transform: uppercase;
}

.machine-park__title {
  margin: 0 0 69px;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-graphite);
  letter-spacing: 0.01em;
}

.machine-park__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 2px solid #00000033;
  border-bottom: 2px solid #00000033; /* общая нижняя линия */
}

.machine-park__item {
  display: grid;
  grid-template-columns: minmax(210px, 0.9fr) minmax(260px, 1.35fr);
  gap: 36px;
  padding: 30px 0;
  border-bottom: 2px solid #00000033;
  color: var(--color-graphite);
}
.machine-park__item:nth-child(even) {
  padding-left: 36px;
}
.machine-park__item:last-child {
  border-bottom: none;
}

.machine-park__item h3 {
  margin: 0;
  font-size: clamp(20px, 1.5vw, 24px);
  font-weight: 400;
  text-transform: uppercase;
  max-width: 335px;
}

.machine-park__item p {
  margin: 0;
  font-size: 18px;
  max-width: 415px;
}

@media (max-width: 1180px) {
  .production-machine-park {
    padding: 60px var(--page-padding) 65px;
  }

  .machine-park__container {
    max-width: unset;
  }

  .machine-park__eyebrow {
    margin-bottom: 10px;
    font-size: 20px;
  }

  .machine-park__title {
    margin-bottom: 30px;
    font-size: 36px;
  }

  .machine-park__grid {
    display: block;
  }

  .machine-park__item {
    grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.15fr);
    gap: 34px;
    padding: 20px 0;
  }
  .machine-park__item:nth-child(even) {
    padding-left: 0;
  }

  .machine-park__item h3 {
    font-size: 20px;
    max-width: 482px;
  }

  .machine-park__item p {
    font-size: 16px;
  }
}

@media (max-width: 680px) {
  .production-machine-park {
    padding: 60px var(--page-padding);
  }

  .machine-park__title {
    font-size: 32px;
    letter-spacing: -0.01em;
  }

  .machine-park__item {
    display: block;
    padding: 15px 0;
  }

  .machine-park__item h3 {
    margin-bottom: 10px;
  }
}

.production-equipment-for-tasks {
  padding: 80px var(--page-padding);
  background-color: var(--color-accent);
}

.production-equipment-for-tasks > div {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1720px;
  color: var(--color-white);
  margin: 0 auto;
  gap: 20px;
}

.production-equipment-for-tasks > div > h3 {
  font-size: clamp(28px, 2vw, 32px);
  margin: 0;
  font-weight: 400;
  text-transform: uppercase;
  max-width: 496px;
  opacity: 0;
}

.production-equipment-for-tasks > div.animate > h3 {
  animation:
    fadeRightPercent 1s forwards,
    blurIn 1s forwards;
}

.production-equipment-for-tasks > div > p {
  font-size: 24px;
  line-height: 120%;
  max-width: 705px;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.01em;
  opacity: 0;
}

.production-equipment-for-tasks > div.animate > p {
  animation:
    fadeLeftPercent 1s forwards,
    blurIn 1s forwards;
}

@media (max-width: 1180px) {
  .production-equipment-for-tasks {
    padding: 70px var(--page-padding);
  }

  .production-equipment-for-tasks > div > h3 {
    font-size: 24px;
    max-width: 456px;
  }

  .production-equipment-for-tasks > div > p {
    font-size: 16px;
    max-width: 482px;
    letter-spacing: normal;
  }
}

@media (max-width: 840px) {
  .production-equipment-for-tasks {
    padding: 30px var(--page-padding) 40px;
  }

  .production-equipment-for-tasks > div {
    flex-direction: column;
  }

  .production-equipment-for-tasks > div > h3 {
    max-width: unset;
  }

  .production-equipment-for-tasks > div > p {
    max-width: unset;
  }
}

.production-bottom-image {
  max-width: 1920px;
  margin: 0 auto;
  height: 591px;
  object-fit: cover;
  width: 100%;
  display: block;
  opacity: 0;
}

.production-bottom-image.animate {
  animation:
    fadeIn 1s forwards,
    blurIn 1s forwards;
}
