@charset "UTF-8";
:root {
  --content-width: 1720px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --font-family: "Open Sans", sans-serif;
  --second-family: "Exo 2", sans-serif;
  --third-family: "Rubik", sans-serif;
  --font3: "Montserrat", sans-serif;
  --font4: "Arial", sans-serif;
  --transition-duration: 0.2s;
  --e-global-color-text: #f27b01;
}

/* stylelint-disable */ /* stylelint-disable */ /* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:checked + .custom-checkbox__content::before {
  background-color: var(--accent-color);
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */ /* stylelint-disable */
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/../fonts/Montserrat-Thin.woff2") format("woff2");
  font-weight: 100;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/../fonts/Montserrat-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/../fonts/Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/../fonts/Montserrat-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/../fonts/Montserrat-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/../fonts/Montserrat-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/../fonts/HelveticaNeueCyr-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  -webkit-transition: 0.2s ease-in;
  -o-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
}
/* @media (any-hover: hover) {
  a:hover {
    color: #f47c01 !important;
  }
} */

.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

.page__body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  color: var(--black-color);
  font-weight: 400;
}

body{
  margin: 0;
  padding: 0;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
  display: block;
}

.is-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
}

.line-hidden {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  line-height: 1.4;
}

.padding-section {
  padding: 60px 0;
}
@media (max-width: 1024px) {
  .padding-section {
    padding: 50px 0;
  }
}
@media (max-width: 768px) {
  .padding-section {
    padding: 60px 0;
  }
}

.title-h1 {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 46px;
  line-height: 122%;
  letter-spacing: 0.01em;
  color: #fff;
}
@media (max-width: 1440px) {
  .title-h1 {
    font-size: 40px;
  }
}
@media (max-width: 1024px) {
  .title-h1 {
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 26px;
    letter-spacing: 0.01em;
    color: #fff;
  }
}
@media (max-width: 576px) {
  .title-h1 {
    font-size: 20px;
  }
}

.title-h2 {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 46px;
  color: #000;
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 1440px) {
  .title-h2 {
    margin-bottom: 30px;
  }
}
@media (max-width: 1024px) {
  .title-h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .title-h2 {
    margin-bottom: 30px;
    font-size: 24px;
    text-align: center;
  }
}

.title-h3 {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 42px;
  line-height: 122%;
  letter-spacing: 0.01em;
  text-align: center;
  color: #000;
  margin-bottom: 40px;
}
@media (max-width: 1440px) {
  .title-h3 {
    margin-bottom: 30px;
    font-size: 36px;
  }
}
@media (max-width: 1024px) {
  .title-h3 {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .title-h3 {
    margin-bottom: 60;
    font-size: 24px;
    text-align: center;
  }
}

.grid-column-2 {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}

.grid-column-3 {
  -ms-grid-column-span: 3;
  grid-column: span 3;
}

button {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
}

.section-margin {
  margin-bottom: 80px;
}
@media (max-width: 1440px) {
  .section-margin {
    margin-bottom: 60px;
  }
}

.button {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 23px;
  color: #fff;
  border-radius: 11px;
  padding: 15px 80px;
  -webkit-transition: 0.2s ease-in;
  -o-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
  background: #f47c01;
}
@media (any-hover: hover) {
  .button:hover {
    background: #c76502;
  }
}
@media (max-width: 1440px) {
  .button {
    padding: 15px 30px;
    font-size: 23px;
  }
}
@media (max-width: 576px) {
  .button {
    font-size: 18px;
    padding: 10px 5px;
  }
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  width: 52px;
  height: 52px;
}
@media (max-width: 1024px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 26px;
    height: 26px;
  }
}

.swiper-button-next {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.title-h2-orange {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 36px;
  line-height: 122%;
  letter-spacing: 0.01em;
  text-align: center;
  color: #fff;
  padding: 25px 50px;
  background: #f47c01;
}
@media (max-width: 1440px) {
  .title-h2-orange {
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  .title-h2-orange {
    padding: 20px 0;
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .title-h2-orange {
    padding: 15px 0;
    font-size: 20px;
  }
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

@media (max-width: 576px) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  .hidden-tablet {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .visible-tablet {
    display: none !important;
  }
}

@media (min-width: 576px) {
  .visible-mobile {
    display: none !important;
  }
}

a,
button,
label,
input,
textarea,
select,
svg * {
  -webkit-transition: all var(--transition-duration) ease-in;
  -o-transition: all var(--transition-duration) ease-in;
  transition: all var(--transition-duration) ease-in;
}

input,
select {
  outline: transparent;
}

.accordion {
  display: none;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .accordion {
    display: block;
  }
}
.accordion:has(.panel.inner-panel.show) .panel.main {
  border: none;
  padding-top: 0;
}
.accordion:has(.panel.inner-panel.show) .accordion-btn.main svg path {
  stroke: black;
}
.accordion:has(.inner-accord.active) .accordion-btn.main {
  color: #000;
}

.inner-content-padding {
  padding: 0 145px;
}
@media (max-width: 1440px) {
  .inner-content-padding {
    padding: 0;
  }
}

.breadcrumbs {
  background-image: url(../img/breadcrumbs-bg.jpg);
  padding: 35px 0;
}
@media (max-width: 768px) {
  .breadcrumbs {
    padding: 25px 0;
  }
}

.breadcrumbs__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .breadcrumbs__content {
    -webkit-box-pack: unset;
    -ms-flex-pack: unset;
    justify-content: unset;
    gap: 140px;
  }
}
@media (max-width: 768px) {
  .breadcrumbs__content {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 5px;
  }
}

.breadcrumbs-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}

.breadcrumbs-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding-right: 10px;
  margin-right: 10px;
}
@media (max-width: 768px) {
  .breadcrumbs-item {
    margin: 0;
    padding: 0;
  }
}
.breadcrumbs-item.back {
  display: none;
}
.breadcrumbs-item.back a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.breadcrumbs-item.back:after {
  display: none;
}
@media (max-width: 768px) {
  .breadcrumbs-item.back {
    display: block;
  }
}
@media (max-width: 768px) {
  .breadcrumbs-item:not(.back) {
    display: none;
  }
}

/* Разделитель через псевдоэлемент */
.breadcrumbs-item:not(:last-child)::after {
  content: "/";
  position: absolute;
  right: -5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 20px;
  color: #b0bec5;
}

.breadcrumbs-link {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 20px;
  color: #b0bec5;
}

.breadcrumbs-link:hover {
  color: #fff;
}

.breadcrumbs-item.active {
  color: #fff;
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 20px;
}

.content-inner {
  padding: 10px 0;
  border-bottom: 1px solid #000;
  border-top: 1px solid #000;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.content-inner a {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 14px;
  color: #616161;
}

.accrodion__link {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 14px;
  color: #000;
}
.accrodion__link:not(:last-child) {
  margin-bottom: 20px;
}

/* Button Styles */
.accordion-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 16px;
  color: #000;
  cursor: pointer;
  width: 100%;
  border: none;
  outline: none;
}
.accordion-btn.active {
  color: #f47c01;
}
.accordion-btn.active:not(.inner-accord) {
  margin-bottom: 20px;
}
.accordion-btn.active .accordion-btn-arrow {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.accordion-btn-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* Panel Styles */
.panel {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.panel.border {
  border-bottom: 1px solid #000;
  border-top: 1px solid #000;
}

.panel p {
  font-size: 1.2em;
  padding: 0 2em;
}

/* Show Panel onclick */
.panel.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  max-height: 500px;
}
.panel.show.border {
  padding: 10px 0;
}

/* Inner Accordion Style */
.inner-accord {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 14px;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.inner-accord.active svg path {
  stroke: #f47c01;
}

.list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}
.list__item {
  padding-left: 22px;
  position: relative;
  font-weight: 600;
}
.list__item::after {
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: var(--accent-color);
  position: absolute;
  top: 5px;
  left: 0;
}

.tabs .tabs__nav-btn--active {
  background-color: #ff0001;
}
.tabs .tabs__panel {
  display: none;
}
.tabs .tabs__panel--active {
  display: -ms-grid;
  display: grid;
}

.text-primary-99 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 13px;
  color: #999;
}
@media (max-width: 768px) {
  .text-primary-99 {
    font-size: 13px;
  }
}

.text-primary-55 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  color: #555;
}

.text-primary-0 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  color: #000;
}

.text-primary-33 {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 18px;
  color: #333;
}
@media (max-width: 768px) {
  .text-primary-33 {
    font-size: 13px;
  }
}

.separator {
  font-family: var(--font3);
  font-weight: 400;
  font-size: 15px;
  line-height: 167%;
  color: #999;
}

.section-header__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 269px 1fr;
  grid-template-columns: 269px 1fr;
  gap: 50px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  .section-header__content {
    gap: 20px;
    -ms-grid-columns: 248px 1fr;
    grid-template-columns: 248px 1fr;
  }
}
@media (max-width: 768px) {
  .section-header__content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }
}
.section-header__img {
  border-radius: 20px;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
}
.section-header__img img {
  width: 100%;
  height: 100%;
}
.section-header__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.section-header__name {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 36px;
  line-height: 122%;
  letter-spacing: 0.01em;
  color: #000;
  margin-bottom: 20px;
}
@media (max-width: 1440px) {
  .section-header__name {
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  .section-header__name {
    font-size: 24px;
  }
}
.section-header__desc {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 122%;
  letter-spacing: 0.01em;
  color: #000;
}
@media (max-width: 1024px) {
  .section-header__desc {
    font-size: 16px;
  }
}
.section-header__desc span {
  font-weight: 600;
  text-transform: uppercase;
}
.section-header__info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 90px;
  margin-top: 40px;
}
@media (max-width: 1024px) {
  .section-header__info-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 34px;
  }
}
.section-header__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
.section-header__info-item-name {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 122%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #000;
}
@media (max-width: 1024px) {
  .section-header__info-item-name {
    font-size: 18px;
  }
}
.section-header__info-item-img {
  max-width: 50px;
}
.section-header .certificates__item-download {
  background: #fff;
}

.header {
  padding: 10px 0;
  position: relative;
  background: #b0bec5;
}
.header__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

.logo {
  position: relative;
  z-index: 7;
}

.menu {
  margin-left: auto;
}
@media (max-width: 1024px) {
  .menu {
    position: fixed;
    background-color: #b0bec5;
    bottom: 0;
    top: 0;
    right: -100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: right 0.2s ease-in;
    -o-transition: right 0.2s ease-in;
    transition: right 0.2s ease-in;
    z-index: 12;
  }
  .menu--active {
    right: 0;
  }
}
.menu__item {
  padding: 10px 0;
  position: relative;
}
@media (any-hover: hover) {
  .menu__item:hover .menu__item-dropdown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 1024px) {
  .menu__item {
    padding: 0;
  }
  .menu__item span.menu__link {
    display: none;
  }
}
.menu__link-arrow {
  display: none;
}
@media (max-width: 1024px) {
  .menu__link-arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.menu__item-dropdown {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  border-radius: 0 0 10px 10px;
  padding: 25px 30px;
  padding-top: 50px;
  background: #b0bec5;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  min-width: 250px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
  z-index: 10;
}
.menu__item-dropdown-item {
  z-index: 10;
  position: relative;
}
.menu__item-dropdown-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 18px;
  color: #000;
}
@media (any-hover: hover) {
  .menu__item-dropdown-item a:hover {
    color: #f47c01;
  }
}
@media (any-hover: hover) {
  .menu__item-dropdown-item:hover .menu__item-dropdown-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.menu__item-dropdown-inner {
  display: none;
  z-index: 10;
  position: absolute;
  right: 0;
  top: -25px;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  background: #b0bec5;
  border-radius: 0 0 10px 0;
  padding: 10px 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  min-width: 300px;
}
.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 100px;
  -moz-column-gap: 100px;
  column-gap: 100px;
}
@media (max-width: 1440px) {
  .menu__list {
    gap: 30px;
  }
}
@media (max-width: 1024px) {
  .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 20px;
    text-align: center;
    margin: 0 auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.menu__link {
  cursor: pointer;
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 18px;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.menu__link:hover {
  color: #f47c01;
}
@media (max-width: 1440px) {
  .menu__link {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  .menu__link {
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 16px;
    color: #000;
  }
}

.burger {
  --burger-width: 26px;
  --burger-height: 18px;
  --burger-line-height: 3px;
  position: relative;
  border: none;
  padding: 0;
  width: var(--burger-width);
  height: var(--burger-height);
  color: #000;
  background-color: transparent;
  cursor: pointer;
  display: none;
}
.burger::before, .burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger::before {
  top: 0;
}
.burger::after {
  top: calc(100% - var(--burger-line-height));
}
.burger__line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active::before {
  top: 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active::after {
  top: 50%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active .burger__line {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media (max-width: 1024px) {
  .burger {
    display: block;
    z-index: 13;
  }
}
.gallery-swiper-container .swiper-button-prev{
  width: auto;
  height: auto;
}
.gallery-swiper-container .swiper-button-next{
  width: auto;
  height: auto;
}
.hero__wrapper{
  height: 100vh;
}
.hero__wrapper video {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
  object-fit: cover;
  pointer-events: none;
}

.custom-casting__title {
  padding-left: 15px;
  padding-right: 15px;
}
.custom-casting__wrapper {
  background-image: url(../img/custom-casting-wrapper.jpg);
  padding: 30px 0;
}
@media (max-width: 1440px) {
  .custom-casting__wrapper {
    padding: 65px 0;
  }
}
@media (max-width: 576px) {
  .custom-casting__wrapper {
    padding: 50px 0;
  }
}
.custom-casting__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}
@media (max-width: 1440px) {
  .custom-casting__grid {
    gap: 20px;
  }
}
@media (max-width: 1024px) {
  .custom-casting__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .custom-casting__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.custom-casting__item {
  border-radius: 11px;
  padding: 15px;
  height: 440px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (any-hover: hover) {
  .custom-casting__item:hover {
    -webkit-transform: scale(1.01);
    -ms-transform: scale(1.01);
    transform: scale(1.01);
  }
}
@media (max-width: 1440px) {
  .custom-casting__item {
    height: 375px;
  }
}
@media (max-width: 1024px) {
  .custom-casting__item {
    -ms-grid-column-span: 1;
    grid-column: span 1;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .custom-casting__item {
    height: 295px;
  }
}
.custom-casting__item-name {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  color: #fff;
  border-radius: 11px;
  padding: 10px 30px;
  background: #f47c01;
  text-align: center;
}
@media (max-width: 1024px) {
  .custom-casting__item-name {
    font-size: 23px;
  }
}
@media (max-width: 576px) {
  .custom-casting__item-name {
    font-weight: 600;
    font-size: 16px;
  }
}

.press-swiper-container {
  padding: 0 145px;
  position: relative;
}
@media (max-width: 1440px) {
  .press-swiper-container {
    padding: 0 70px;
  }
}
@media (max-width: 576px) {
  .press-swiper-container {
    padding: 0 35px;
  }
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.swiper-navigation-icon {
  display: none;
}

.press-card {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.swiper-slide.press-card {
  height: unset;
}
.press-card__head {
  width: 100%;
  position: relative;
  border-radius: 12px;
  margin-bottom: 40px;
  border-radius: 11px;
  overflow: hidden;
  height: 280px;
}
.resume__main-head-subtitle{
  margin-bottom: 30px;
}
.resume__main-content-item-blocks{
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.article-page .press-card__head {
  height: auto;
}
@media (max-width: 1440px) {
  .press-card__head {
    margin-bottom: 30px;
    height: auto;
  }
}
@media (max-width: 576px) {
  .press-card__head {
    margin-bottom: 20px;
  }
}
.press-card__head-img {
  width: 100%;
}
.press-card__head-img img {
  width: 100%;
}
.press-card__head-date {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: #000;
  border-radius: 11px;
  padding: 10px 20px;
  background: #fff;
}
@media (max-width: 1440px) {
  .press-card__head-date {
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  .press-card__head-date {
    font-size: 16px;
    right: 15px;
    bottom: 15px;
  }
}
.press-card__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 40px;
}
@media (max-width: 1440px) {
  .press-card__info {
    margin-bottom: 30px;
  }
}
@media (max-width: 576px) {
  .press-card__info {
    margin-bottom: 20px;
  }
}
.press-card__info-name {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 26px;
  color: #000;
  margin-bottom: 25px;
}
@media (max-width: 1440px) {
  .press-card__info-name {
    font-size: 25px;
  }
}
@media (max-width: 1024px) {
  .press-card__info-name {
    font-size: 22px;
  }
}
@media (max-width: 576px) {
  .press-card__info-name {
    font-size: 20px;
  }
}
.press-card__info-desc {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  color: #000;
}
@media (max-width: 1024px) {
  .press-card__info-desc {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .press-card__info-desc {
    font-size: 16px;
  }
}
.press-card__link {
  margin-top: auto;
}
@media (max-width: 576px) {
  .press-card__link {
    width: 100%;
    text-align: center;
  }
}

.about {
  background-image: url(../img/about-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0;
}
@media (max-width: 1440px) {
  .about {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .about {
    padding: 50px 0;
  }
}
.about__content {
  border-radius: 16px;
  background: rgba(176, 190, 197, 0.9);
  padding: 60px 145px;
  opacity: 0.9;
  margin: 0 145px;
}
@media (max-width: 1440px) {
  .about__content {
    padding: 60px 105px;
    margin: 0;
  }
}
@media (max-width: 1024px) {
  .about__content {
    padding: 30px 35px;
  }
}
@media (max-width: 576px) {
  .about__content {
    padding: 60px 20px;
  }
}
.about__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto;
  grid-template-columns: auto auto;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 768px) {
  .about__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.about__info {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 506px;
  gap: 60px;
}
@media (max-width: 1440px) {
  .about__info {
    gap: 80px;
    max-width: 440px;
  }
}
@media (max-width: 1024px) {
  .about__info {
    gap: 60px;
    max-width: 373px;
  }
}
@media (max-width: 768px) {
  .about__info {
    max-width: unset;
  }
}
.about__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.about__info-item-name {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 28px;
  line-height: 122%;
  letter-spacing: 0.01em;
  color: #000;
  margin-bottom: 30px;
}
@media (max-width: 1440px) {
  .about__info-item-name {
    font-size: 26px;
  }
}
@media (max-width: 1024px) {
  .about__info-item-name {
    font-size: 24px;
  }
}
.about__info-item-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .about__info-item-row {
    gap: 15px;
  }
}
.about__info-item-row--flex-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.about__info-item-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 30px;
}
.about__info-item-desc {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 122%;
  letter-spacing: 0.01em;
  color: #000;
}
@media (max-width: 768px) {
  .about__info-item-desc {
    font-size: 12px;
  }
}
.about__link {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 122%;
  letter-spacing: 0.01em;
  color: #000;
}
@media (max-width: 1024px) {
  .about__link {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .about__link {
    font-size: 16px;
  }
}

.contact-form {
  max-width: 435px;
}
@media (max-width: 1440px) {
  .contact-form {
    max-width: 420px;
  }
}
@media (max-width: 1024px) {
  .contact-form {
    max-width: 336px;
  }
}
@media (max-width: 768px) {
  .contact-form {
    max-width: unset;
    margin-top: 40px;
  }
}
.contact-form__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.contact-form__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 10px;
  width: 100%;
}
.contact-form__label {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #000;
  margin-bottom: 10px;
}
.contact-form__input {
  width: 100%;
  border-radius: 15px;
  padding: 10px 37px 10px 15px;
  background: #fff;
  border: unset;
}
.contact-form__textarea {
  border-radius: 15px;
  padding: 10px 37px 10px 15px;
  resize: none;
  background: #fff;
  border: none;
  min-height: 120px;
}
.contact-form__field--file {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-bottom: 30px;
  cursor: pointer;
}
.contact-form__file-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}
.contact-form__file-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contact-form__file-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #000;
}
.contact-form__file-input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.contact-form__submit {
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .contact-form__submit {
    width: 100%;
  }
}
.contact-form__privacy {
  font-family: var(--font3);
  font-weight: 500;
  font-size: 12px;
  color: #fff;
}

.resume p {
  margin-top: 20px;
  max-width: 907px;
}
@media (max-width: 768px) {
  .resume p {
    margin-top: 40px;
  }
}
.resume__wrapper {
  background-image: url(../img/vacancy-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 75px;
  padding-bottom: 75px;
}
@media (max-width: 768px) {
  .resume__wrapper {
    padding: 0;
    padding-bottom: 50px;
  }
}
.resume__head {
  border: 1px solid #fff;
  border-radius: 4px;
  background: #fafafa;
  margin-bottom: 60px;
  padding: 40px 0 40px 140px;
}
@media (max-width: 1440px) {
  .resume__head {
    padding: 40px 0 40px 105px;
  }
}
@media (max-width: 1024px) {
  .resume__head {
    padding: 30px 0 30px 90px;
  }
}
@media (max-width: 768px) {
  .resume__head {
    padding: 30px 10px;
  }
}
@media (max-width: 1440px) {
  .resume__head button {
    padding: 15px;
  }
}
@media (max-width: 1024px) {
  .resume__head button {
    margin-top: 40px;
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    padding: 15px 50px;
  }
}
@media (max-width: 768px) {
  .resume__head button {
    margin-top: 50px;
    font-size: 18px;
    padding: 10px 25px;
  }
}
.resume__head-grid {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 235px 235px 1fr 1fr;
  grid-template-columns: 235px 235px 1fr 1fr;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .resume__head-grid {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
  }
}
@media (max-width: 768px) {
  .resume__head-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
.resume__head-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 22px;
}
.resume__head-item-link{
  text-align: center;
}
@media(max-width: 1024px) {
  .resume__head-item-link{
    margin-top: 30px;
  }
}
.resume__head-item:has(button) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .resume__head-item {
    gap: 10px;
  }
}
.resume__head-item-info {
  gap: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 768px) {
  .resume__head-item-info {
    gap: 5px;
  }
}
.resume__main {
  background: #fafafa;
  border: 1px solid #e5e5e5;
}
.resume__main-head {
  border-bottom: 1px solid #e5e5e5;
  border-radius: 4px 4px 0 0;
  padding: 40px 110px 40px 140px;
  cursor: pointer;
}
.resume__main-head.active + .resume__main-content{
  display: flex;
}
@media (max-width: 1440px) {
  .resume__main-head {
    padding: 40px 90px 40px 105px;
  }
}
@media (max-width: 1024px) {
  .resume__main-head {
    padding: 30px 5px 30px 90px;
  }
}
@media (max-width: 768px) {
  .resume__main-head {
    padding: 20px 50px 20px 20px;
  }
}
.resume__main-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 70px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}
@media (max-width: 1024px) {
  .resume__main-row {
    gap: 60px;
  }
}
@media (max-width: 768px) {
  .resume__main-row {
    margin-bottom: 8px;
  }
}
.resume__main-content {
  padding: 40px 110px 40px 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 45px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  display: none;
}
@media (max-width: 1440px) {
  .resume__main-content {
    padding: 40px 90px 40px 105px;
  }
}
@media (max-width: 1024px) {
  .resume__main-content {
    padding: 30px 5px 30px 90px;
  }
}
@media (max-width: 768px) {
  .resume__main-content {
    padding: 20px 50px 20px 20px;
  }
}
@media (max-width: 768px) {
  .resume__main-content p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 10px;
    line-height: 180%;
    color: #555;
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .resume__main-content .text-primary-99 {
    font-size: 10px;
  }
}
@media (max-width: 768px) {
  .resume__main-content {
    font-size: 11px;
  }
}
.resume__main-content-item {
  width: 100%;
}
.resume__main-content-item ul {
  list-style: unset;
  padding-left: 25px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .resume__main-content-item ul {
    padding-left: 15px;
  }
}
.resume__main-content-item ul li {
  line-height: 167%;
}
@media (max-width: 768px) {
  .resume__main-content-item ul li {
    font-size: 10px;
    line-height: 250%;
    color: #555;
  }
}
.resume__main-price {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: right;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 139%;
  color: #333;
}

.contacts__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 65% 1fr;
  grid-template-columns: 65% 1fr;
}
@media (max-width: 1024px) {
  .contacts__content {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .contacts__content {
    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;
  }
}
.contacts__info {
  background: #ff8500;
  padding: 50px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
}
@media (max-width: 1440px) {
  .contacts__info {
    padding: 30px;
  }
}
@media (max-width: 768px) {
  .contacts__info {
    padding: 50px 20px;
  }
}
.contacts__info-item-name {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  color: #993a00;
  margin-bottom: 15px;
  display: block;
}
@media (max-width: 1440px) {
  .contacts__info-item-name {
    font-size: 12px;
  }
}
.contacts__info-item-desc {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 22px;
  color: #fff;
}
.contacts__info-item-desc.num-big {
  font-size: 25px;
}
@media (max-width: 1440px) {
  .contacts__info-item-desc {
    font-size: 18px;
  }
}
.contacts__info-item-worktimes-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media (max-width: 1440px) {
  .contacts__info-item-worktimes-row {
    gap: 53px;
  }
}
.contacts__info-item-worktimes-days {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 22px;
  color: #fff;
  min-width: 70px;
}
@media (max-width: 1440px) {
  .contacts__info-item-worktimes-days {
    font-size: 18px;
    min-width: 60px;
  }
}
.contacts__info-item-worktimes-time {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 22px;
  color: #fff;
}
@media (max-width: 1440px) {
  .contacts__info-item-worktimes-time {
    font-size: 18px;
  }
}
.contacts__info-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 25px 106px;
}
@media (max-width: 1440px) {
  .contacts__info-numbers {
    gap: 15px 106px;
  }
}
@media (max-width: 768px) {
  .contacts__info-numbers {
    gap: 40px;
  }
}
.contacts__info-numbers-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1440px) {
  .contacts__info-numbers-item {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .contacts__info-numbers-item {
    gap: 15px;
  }
}
.contacts__info-item-numbers-name {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
}
@media (max-width: 1440px) {
  .contacts__info-item-numbers-name {
    margin-bottom: 5px;
  }
}
.contacts__info-item-numbers-desc {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  color: #000;
}
@media (max-width: 1440px) {
  .contacts__info-item-numbers-desc {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .contacts__info-item-numbers-desc {
    font-size: 20px;
  }
}

.map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 516px;
  position: relative;
}
.map iframe {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.article-page {
  padding: 60px 0;
  background-image: url(../img/wrapper.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 1440px) {
  .article-page {
    padding: 45px 0;
  }
}
@media (max-width: 1024px) {
  .article-page {
    padding: 30px 0;
  }
}
@media (max-width: 768px) {
  .article-page {
    padding: 60px 0;
  }
}
.article-page__content {
  padding-left: 145px;
}
@media (max-width: 1440px) {
  .article-page__content {
    padding-left: 105px;
  }
}
@media (max-width: 1024px) {
  .article-page__content {
    padding: 0;
  }
}
.article-page__title-back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 215px;
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  .article-page__title-back {
    gap: 40px;
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .article-page__title-back {
    display: none;
  }
}
.article-page__title-back a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1024px) {
  .article-page__title-back a img {
    max-width: 48px;
  }
}
.article-page__title {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 45px;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  color: #000;
}
@media (max-width: 1024px) {
  .article-page__title {
    font-size: 32px;
  }
}
.article-page__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 55px;
  max-width: 1285px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media (max-width: 1440px) {
  .article-page__text {
    max-width: unset;
  }
}
.article-page__text p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  color: #000;
}
@media (max-width: 1024px) {
  .article-page__text p {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .article-page__text p {
    font-size: 16px;
  }
}
.article-page__text a {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 23px;
  color: #fff;
  padding: 15px 27px;
}
@media (max-width: 768px) {
  .article-page__text a {
    font-size: 18px;
    padding: 15px 44px;
    margin-top: -15px;
  }
}
.article-page .press-card__head {
  margin: 0;
  overflow: hidden;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .article-page .press-card__head {
    margin-bottom: 40px;
  }
}
.article-page .press-card__head-img {
  height: 552px;
}
@media (max-width: 1440px) {
  .article-page .press-card__head-img {
    height: 463px;
  }
}
@media (max-width: 1024px) {
  .article-page .press-card__head-img {
    height: 552px;
  }
}
@media (max-width: 768px) {
  .article-page .press-card__head-img {
    height: 310px;
  }
}
.article-page .press-card__head-img img {
  height: 100%;
}
.articles {
  background-image: url(../img/wrapper.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 768px) {
  .articles__header {
    margin-right: -15px;
  }
}
.articles__years-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  padding: 0 145px;
  margin-bottom: 60px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .articles__years-list {
    gap: 18px;
    margin-bottom: 50px;
  }
}
@media (max-width: 768px) {
  .articles__years-list {
    min-width: 100%;
    padding: 0;
    overflow-x: auto;
    -webkit-box-pack: unset;
    -ms-flex-pack: unset;
    justify-content: unset;
    padding-right: 15px;
    margin-bottom: 40px;
    gap: 6px;
  }
  .articles__years-list::-webkit-scrollbar {
    display: none;
  }
}
.articles__years-item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-radius: 12px;
  background: #b0bec5;
  -webkit-transition: 0.2s ease-in;
  -o-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
  max-width: 125px;
}
@media (max-width: 1440px) {
  .articles__years-item {
    max-width: 85px;
  }
}
@media (max-width: 768px) {
  .articles__years-item {
    max-width: unset;
  }
}
.articles__years-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10px 5px;
  width: 100%;
  font-family: var(--third-family);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}
@media (max-width: 1440px) {
  .articles__years-item a {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .articles__years-item a {
    padding: 10px 5px;
    font-size: 13px;
  }
}
@media (any-hover: hover) {
  .articles__years-item:hover {
    background: #ff8500;
  }
}
.articles__years-item.active {
  background: #ff8500;
}
.articles__years-item.active a {
  padding: 10px;
}
.articles__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 60px;
}
@media (max-width: 1440px) {
  .articles__list {
    margin-bottom: 40px;
  }
}
@media (max-width: 1024px) {
  .articles__list {
    margin-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .articles__list {
    margin-bottom: 40px;
  }
}
.articles__article-card {
  border-radius: 18px;
  background: #838d93;
  padding: 32px 85px 32px 125px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 165px;
}
@media (max-width: 1440px) {
  .articles__article-card {
    padding: 32px 105px 32px 110px;
    gap: 100px;
  }
}
@media (max-width: 1024px) {
  .articles__article-card {
    padding: 30px 20px;
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .articles__article-card {
    padding: 25px 20px;
    gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.articles__article-card-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  max-width: 600px;
}
.articles__article-card-info h2 {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 25px;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  color: #fff;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .articles__article-card-info h2 {
    font-size: 18px;
  }
}
.articles__article-card-info p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  color: #fff;
  margin-bottom: 33px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .articles__article-card-info p {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .articles__article-card-info p {
    font-size: 16px;
    -webkit-line-clamp: 4;
  }
}
@media (max-width: 768px) {
  .articles__article-card-info a {
    padding: 10px 21px;
    font-size: 18px;
  }
}
.articles__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #d9d9d9;
  padding: 60px 15px;
}
@media (max-width: 1024px) {
  .articles__pagination {
    padding: 35px 15px;
  }
}
@media (max-width: 768px) {
  .articles__pagination {
    padding: 30px 15px;
  }
}
.articles__pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}
@media (max-width: 768px) {
  .articles__pagination ul {
    gap: 15px;
  }
}
.articles__pagination ul li a {
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 20px;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  text-align: center;
  color: #1095ea;
  border-radius: 7px;
  background: transparent;
  padding: 5px 15px;
  -webkit-transition: 0.2s ease-in;
  -o-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
}
@media (max-width: 1440px) {
  .articles__pagination ul li a {
    font-size: 16px;
    padding: 5px 10px;
  }
}
@media (max-width: 768px) {
  .articles__pagination ul li a {
    font-size: 12px;
  }
}
.articles__pagination ul li a.active {
  color: #fff;
  background: #ff8500;
  text-decoration: none;
}
@media (max-width: 1440px) {
  .articles__pagination ul li a.active {
    font-size: 14px;
    padding: 5px 10px;
  }
}
@media (max-width: 768px) {
  .articles__pagination ul li a.active {
    font-size: 10px;
  }
}
@media (any-hover: hover) {
  .articles__pagination ul li a:hover {
    text-decoration: none;
    color: #fff;
    background: #ff8500;
  }
}
.articles .press-card__head {
  margin: 0;
  overflow: hidden;
  height: 260px;
  max-width: 432px;
}
@media (max-width: 1440px) {
  .articles .press-card__head {
    max-width: 400px;
  }
}
@media (max-width: 1024px) {
  .articles .press-card__head {
    max-width: 305px;
  }
}
@media (max-width: 768px) {
  .articles .press-card__head {
    max-width: 100%;
  }
}
.articles .press-card__head-img {
  height: 100%;
}
.articles .press-card__head-img img {
  height: 100%;
}

.pruduction {
  background: #b0bec5;
}
.pruduction__content {
  border-radius: 18px;
  background: #fff;
  padding: 13px;
}
.pruduction__head {
  margin-bottom: 35px;
  border-radius: 16px;
  padding: 20px 10px;
  background: #f47c01;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 1440px) {
  .pruduction__head {
    margin-bottom: 45px;
  }
}
@media (max-width: 1024px) {
  .pruduction__head {
    margin-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .pruduction__head {
    margin-bottom: 40px;
    padding: 20px 10px;
  }
}
.pruduction__title {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 36px;
  line-height: 110%;
  letter-spacing: 0.01em;
  text-align: center;
  color: #fff;
  max-width: 820px;
}
@media (max-width: 1440px) {
  .pruduction__title {
    font-size: 32px;
    max-width: 730px;
  }
}
@media (max-width: 1024px) {
  .pruduction__title {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .pruduction__title {
    font-size: 18px;
  }
}
.pruduction__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  margin: 0 auto;
  margin-bottom: 30px;
  position: relative;
  max-width: 1500px;
}



.pruduction__about-col{
  display: flex;
  flex-direction: column;
  gap: 70px;
}

@media(max-width: 1024px) {
  .pruduction__grid{
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .pruduction__about-col{
    gap: 50px;
  }
}

.pruduction__about-col:nth-child(2) {
  margin-top: 140px;
}

@media(max-width: 1024px) {
  .pruduction__about-col:nth-child(2){
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .pruduction__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}
.pruduction__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}
@media (max-width: 768px) {
  .pruduction__column {
    display: none;
  }
}
.pruduction__column-item {
  overflow: hidden;
  height: 150px;
  border-radius: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.pruduction__column-item:last-child .pruduction__time-lines-year::after {
  display: none;
}
.pruduction__column-item.sertificate {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.pruduction__column-item.sertificate img {
  max-width: 555px;
}
@media (max-width: 768px) {
  .pruduction__column-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    height: auto;
    width: 100%;
    overflow: visible;
  }
}
.pruduction__name {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 122%;
  letter-spacing: 0.01em;
  color: #000;
}
@media (max-width: 1024px) {
  .pruduction__name {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .pruduction__name {
    font-size: 16px;
    padding-left: 20px;
  }
}
.pruduction__img {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.pruduction__img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.pruduction__time-lines {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 768px) {
  .pruduction__time-lines {
    display: none;
  }
}
.pruduction__time-lines-year {
  height: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 768px) {
  .pruduction__time-lines-year {
    position: absolute;
    top: 0;
    left: -15px;
    height: 100%;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.pruduction__time-lines-year:nth-child(odd)::before {
  content: "";
  position: absolute;
  left: -100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  height: 2px;
  background-color: #000;
}
@media (max-width: 768px) {
  .pruduction__time-lines-year:nth-child(odd)::before {
    display: none;
  }
}
.pruduction__time-lines-year:nth-child(even)::before {
  content: "";
  position: absolute;
  right: -100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  height: 2px;
  background-color: #000;
}
@media (max-width: 768px) {
  .pruduction__time-lines-year:nth-child(even)::before {
    display: none;
  }
}
.pruduction__time-lines-year:not(:last-child)::after {
  content: "";
  width: 2px;
  top: 50%;
  z-index: 0;
  position: absolute;
  background-color: #000;
  height: 100%;
  left: 50%;
  bottom: 0;
}
@media (max-width: 768px) {
  .pruduction__time-lines-year:not(:last-child)::after {
    top: 90px;
    z-index: 1;
  }
}
.pruduction__time-lines-year span {
  position: relative;
  z-index: 1;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  line-height: 122%;
  letter-spacing: 0.01em;
  text-align: center;
  color: #fff;
  background: #000;
  padding: 10px;
}
@media (max-width: 768px) {
  .pruduction__time-lines-year span {
    top: 50px;
  }
}
.pruduction__desc {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 28px;
  line-height: 122%;
  letter-spacing: 0.01em;
  text-align: center;
  color: #f47c01;
  padding: 0 13px;
  margin: 0 auto;
  -ms-grid-column-span: 2;
  grid-column: span 2;
}
@media (max-width: 1024px) {
  .pruduction__desc {
    font-size: 24px;
    grid-column: unset;
  }
}
@media (max-width: 768px) {
  .pruduction__desc {
    font-size: 20px;
  }
}
.pruduction__mobile {
  display: none;
}
@media (max-width: 768px) {
  .pruduction__mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.pruduction__mobile .pruduction__img {
  overflow: hidden;
  border-radius: 18px;
  height: 150px;
}

.advantages {
  background-image: url(../img/advantages-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 768px) {
  .advantages {
    background-position: center;
  }
}
.advantages__title {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .advantages__title {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.advantages__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 80px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .advantages__list {
    gap: 0;
    row-gap: 40px;
  }
}
.advantages__item {
  max-width: 280px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .advantages__item {
    max-width: 300px;
  }
}
.advantages__item-img {
  max-width: 100px;
  margin-bottom: 20px;
}
.advantages__item-name {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 26px;
  line-height: 122%;
  letter-spacing: 0.01em;
  text-align: center;
  color: #fff;
  margin-bottom: 10px;
}
@media (max-width: 1440px) {
  .advantages__item-name {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .advantages__item-name {
    font-size: 22px;
  }
}
.advantages__item-desc {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 22px;
  line-height: 122%;
  letter-spacing: 0.01em;
  text-align: center;
  color: #fff;
}
@media (max-width: 1440px) {
  .advantages__item-desc {
    font-size: 18px;
  }
}

.why-us {
  background-image: url(../img/about-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 1024px) {
  .why-us {
    padding-left: 90px;
    padding-right: 90px;
  }
}
@media (max-width: 768px) {
  .why-us {
    padding: 60px 0;
  }
}
.why-us__title {
  margin-bottom: 60px;
  text-align: center;
}
@media (max-width: 768px) {
  .why-us__title {
    font-size: 24px;
  }
}
.why-us__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .why-us__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.why-us__item {
  border-radius: 20px;
  padding: 50px 30px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1440px) {
  .why-us__item {
    gap: 20px;
  }
}
@media (max-width: 1024px) {
  .why-us__item {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .why-us__item {
    border-radius: 15px;
    padding: 20px 10px;
    gap: 20px;
  }
}
.why-us__item-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1024px) {
  .why-us__item-img {
    min-width: 62px;
    max-width: 62px;
  }
}
@media (max-width: 768px) {
  .why-us__item-img {
    min-width: 40px;
    max-width: 40px;
  }
}
@media (max-width: 1024px) {
  .why-us__item-img img {
    min-width: 62px;
    max-width: 62px;
  }
}
@media (max-width: 768px) {
  .why-us__item-img img {
    min-width: 40px;
    max-width: 40px;
  }
}
.why-us__item-desc {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 122%;
  letter-spacing: 0.01em;
  color: #000;
}
@media (max-width: 1440px) {
  .why-us__item-desc {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .why-us__item-desc {
    font-size: 16px;
  }
}
.why-us__link {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 36px;
  line-height: 122%;
  letter-spacing: 0.01em;
  text-align: center;
  color: #fff;
  border-radius: 20px;
  padding: 25px 10px;
  background: #f47c01;
  width: 100%;
}
@media (max-width: 1440px) {
  .why-us__link {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .why-us__link {
    font-size: 20px;
    border-radius: 20px;
    padding: 20px 10px;
  }
}

.production-web__wrapper {
  background-image: url(../img/production-web-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.production-web__img {
  position: relative;
  min-height: 941px;
  max-width: 1550px;
  margin: 0 auto;
}

.advantages-slider {
  background-image: url(../img/advantages-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.advantages-slider .swiper-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 1440px) {
  .advantages-slider .swiper-wrapper {
    margin-bottom: 35px;
  }
}
.advantages-slider .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: visible;
}
.advantages-slider__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  border-radius: 10px;
  padding: 20px;
  background: #b0bec5;
}
.advantages-slider__title {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 1440px) {
  .advantages-slider__title {
    margin-bottom: 40px;
  }
}
.advantages-slider .swiper-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  height: 77px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .advantages-slider .swiper-nav {
    display: none;
  }
}
.advantages-slider .swiper-nav .swiper-button-prev {
  position: static;
  width: 77px;
  height: 77px;
}
.advantages-slider .swiper-nav .swiper-button-next {
  width: 77px;
  position: static;
  height: 77px;
}
.advantages-slider__list-mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  padding: 0 20px;
}

.arrow-slide {
  position: relative;
  width: 463px !important;
  padding-left: 180px;
  padding-top: 50px;
  min-height: 302px;
  background: #b0bec5;
  color: #1a1a1a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%, 0% 0%);
  clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%, 0% 0%);
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: 1;
  margin-left: -129px;
}
@media (max-width: 1024px) {
  .arrow-slide {
    min-height: 247px;
    width: 376px;
    padding-left: 150px;
    margin-left: -97px;
  }
}

.advantages-slide-name {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 28px;
  line-height: 100%;
  color: #000;
  margin-bottom: 45px;
  max-width: 335px;
  min-height: 84px;
}
@media (max-width: 1024px) {
  .advantages-slide-name {
    font-size: 20px;
    min-height: 68px;
    margin-bottom: 50px;
    max-width: 280px;
  }
}
@media (max-width: 576px) {
  .advantages-slide-name {
    min-height: auto;
    max-width: unset;
    margin-bottom: 0;
  }
}

.advantages-slide-desc {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 110%;
  letter-spacing: 0.01em;
  color: #000;
  max-width: 296px;
}
@media (max-width: 1024px) {
  .advantages-slide-desc {
    font-size: 14px;
  }
}

.process-casting{
  background-image: url(../img/process-casting-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .process-casting .container {
    padding: 0;
  }
}
.process-casting__title {
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  .process-casting__title {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .process-casting__title {
    margin-bottom: 24px;
  }
}
@media (max-width: 768px) {
  .process-casting__img picture {
    width: 100%;
  }
  .process-casting__img img {
    width: 100%;
  }
}
.process-casting__mobile {
  padding: 0 20px;
  gap: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: none;
}
@media (max-width: 576px) {
  .process-casting__mobile{
    display: flex;
  }
}
.process-casting__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.process-casting__item:nth-child(odd) {
  margin-left: 57px;
}
.process-casting__item-num {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 36px;
  text-shadow: 3px 4px 4px 0 rgba(0, 0, 0, 0.25);
  margin-bottom: 5px;
}
.process-casting__item-num.yellow {
  color: #efd542;
}
.process-casting__item-num.red {
  color: #b8432d;
}
.process-casting__item-num.orange {
  color: #f47c01;
}
.process-casting__item-num.brown {
  color: #876160;
}
.process-casting__item-num.blue {
  color: #467589;
}
.process-casting__item-num.gray {
  color: #666e79;
}
.process-casting__item-num.green {
  color: #9da33f;
}
.process-casting__item-name {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 110%;
  color: #000;
  margin-bottom: 5px;
}
.process-casting__item-desc {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 122%;
  letter-spacing: 0.01em;
  color: #000;
}

.gallery-video__title {
  margin-bottom: 30px;
  text-align: left;
}
@media (max-width: 768px) {
  .gallery-video__title {
    text-align: center;
  }
}
.gallery-video__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .gallery-video__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.gallery-video__item {
  position: relative;
  width: 100%;
  height: 460px;
  padding: 15px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
@media (max-width: 1440px) {
  .gallery-video__item {
    height: 360px;
  }
}
@media (max-width: 1024px) {
  .gallery-video__item {
    height: 230px;
  }
}
@media (max-width: 768px) {
  .gallery-video__item {
    height: 181px;
    padding: 10px 15px;
  }
}
.gallery-video__item video {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.gallery-video__item-video-name {
  position: relative;
  z-index: 5;
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 26px;
  color: #fff;
  padding: 0 0 10px 10px;
  border-bottom: 3px solid #f47c01;
  min-width: 360px;
  display: none;
}
@media (max-width: 1440px) {
  .gallery-video__item-video-name {
    font-size: 22px;
  }
}
@media (max-width: 1024px) {
  .gallery-video__item-video-name {
    min-width: 80%;
  }
}
@media (max-width: 768px) {
  .gallery-video__item-video-name {
    font-size: 16px;
    width: 100%;
    min-width: unset;
    position: static;
  }
}

.gallery-slider {
  margin-bottom: 60px;
}
.gallery-slider__img {
  height: 554px;
}
.gallery-slider__img img {
  height: 100%;
  width: 100%;
}
@media (max-width: 1440px) {
  .gallery-slider__img {
    height: 400px;
  }
}
@media (max-width: 1024px) {
  .gallery-slider__img {
    height: 320px;
  }
}
@media (max-width: 768px) {
  .gallery-slider__img {
    height: 280px;
  }
}
.gallery-slider .swiper-nav {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  padding: 10px 0;
  background: #d9d9d9;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .gallery-slider .swiper-nav {
    gap: 40px;
    padding: 20px 0;
  }
}
.gallery-slider .swiper-button-prev,
.gallery-slider .swiper-button-next {
  position: static;
  margin: 0;
}

.gallery-slide {
  height: auto;
}

.information-hero {
  background-image: url(../img/wrapper.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgb(176, 190, 197);
}
.information-hero__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 525px;
  grid-template-columns: 1fr 525px;
  gap: 55px;
}
@media (max-width: 1440px) {
  .information-hero__content {
    -ms-grid-columns: 1fr 379px;
    grid-template-columns: 1fr 379px;
  }
}
@media (max-width: 1024px) {
  .information-hero__content {
    gap: 22px;
    -ms-grid-columns: 1fr 254px;
    grid-template-columns: 1fr 254px;
  }
}
@media (max-width: 768px) {
  .information-hero__content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.information-hero__info {
  border-radius: 20px;
  padding: 30px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .information-hero__info {
    padding: 35px 30px;
  }
}
.information-hero__info-title {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 36px;
  line-height: 122%;
  letter-spacing: 0.01em;
  color: #000;
  margin-bottom: 30px;
}
@media (max-width: 1440px) {
  .information-hero__info-title {
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  .information-hero__info-title {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .information-hero__info-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.information-hero__info-desc {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 122%;
  letter-spacing: 0.01em;
  color: #000;
}
@media (max-width: 1440px) {
  .information-hero__info-desc {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .information-hero__info-desc {
    font-size: 16px;
  }
}
.information-hero__img {
  overflow: hidden;
  border-radius: 20px;
  width: 100%;
}
.information-hero__img img {
  width: 100%;
}

.certificates__title {
  text-align: center;
}
.certificates__grid {
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  display: -ms-grid;
  display: grid;
}
@media (max-width: 768px) {
  .certificates__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
.certificates__grid-links {
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  display: -ms-grid;
  display: grid;
}
@media (max-width: 768px) {
  .certificates__grid-links {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }
}
.certificates__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.certificates__item-img {
  border-radius: 10px;
  padding: 20px;
  background: #e2e2e2;
  margin-bottom: 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 1024px) {
  .certificates__item-img {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .certificates__item-img {
    max-width: 200px;
    padding: 10px;
    margin-bottom: 20px;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
}
@media (max-width: 576px) {
  .certificates__item-img {
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
}
.certificates__item-name {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 28px;
  line-height: 122%;
  letter-spacing: 0.01em;
  color: #000;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .certificates__item-name {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .certificates__item-name {
    font-size: 20px;
  }
}
.certificates__item-desc {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 122%;
  letter-spacing: 0.01em;
  color: #000;
  margin-bottom: 60px;
}
@media (max-width: 1440px) {
  .certificates__item-desc {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .certificates__item-desc {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .certificates__item-desc {
    margin-bottom: 0;
  }
}
.certificates__item-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 768px) {
  .certificates__item-links {
    gap: 20px;
  }
}
.certificates__item-download {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 122%;
  letter-spacing: 0.01em;
  color: #000;
  border-radius: 10px;
  padding: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
  background: #e2e2e2;
}
@media (max-width: 1440px) {
  .certificates__item-download {
    font-size: 20px;
    gap: 20px;
  }
  .certificates__item-download img {
    max-width: 44px;
  }
}
@media (max-width: 1024px) {
  .certificates__item-download {
    font-size: 16px;
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .certificates__item-download {
    font-size: 14px;
    gap: 20px;
    padding: 10px 15px;
  }
  .certificates__item-download img {
    max-width: 34px;
  }
}

.work-protection {
  background-image: url(../img/work-protection-wrapper.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.employee {
  background-image: url(../img/employee-wrapper.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.employee .section-header__name {
  color: #fff;
}
.employee .section-header__desc {
  color: #fff;
}
.employee__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 35px 90px;
}
@media (max-width: 1440px) {
  .employee__list {
    gap: 80px 50px;
  }
}
@media (max-width: 1024px) {
  .employee__list {
    gap: 90px 20px;
  }
}
@media (max-width: 768px) {
  .employee__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.employee__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 45px;
  max-width: 780px;
}
@media (max-width: 1024px) {
  .employee__item {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .employee__item {
    gap: 15px;
  }
}
.employee__item-img {
  min-width: 100px;
}
@media (max-width: 1440px) {
  .employee__item-img {
    min-width: 60px;
    max-width: 60px;
  }
}
@media (max-width: 1024px) {
  .employee__item-img {
    min-width: 40px;
    max-width: 40px;
  }
}
@media (max-width: 768px) {
  .employee__item-img {
    min-width: 24px;
    max-width: 24px;
  }
}
.employee__item-name {
  display: block;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 26px;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  color: #fff;
  margin-bottom: 20px;
}
@media (max-width: 1440px) {
  .employee__item-name {
    font-size: 24px;
  }
}
@media (max-width: 1024px) {
  .employee__item-name {
    font-size: 18px;
  }
}
.employee__item-desc {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  color: #fff;
}
@media (max-width: 1440px) {
  .employee__item-desc {
    font-size: 18px;
  }
}

.stability {
  background-image: url(../img/stability-wrapper.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.stability .section-header__content {
  padding-right: 120px;
  -ms-grid-columns: 443px 1fr;
  grid-template-columns: 443px 1fr;
}
@media (max-width: 1440px) {
  .stability .section-header__content {
    padding-right: 0;
    -ms-grid-columns: 294px 1fr;
    grid-template-columns: 294px 1fr;
  }
}
@media (max-width: 1024px) {
  .stability .section-header__content {
    -ms-grid-columns: 246px 1fr;
    grid-template-columns: 246px 1fr;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
}
@media (max-width: 768px) {
  .stability .section-header__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}
.stability .section-header__info {
  background: #fff;
  padding: 50px 30px;
  border-radius: 20px;
}
@media (max-width: 1440px) {
  .stability .section-header__info {
    padding: 40px 30px;
  }
}
@media (max-width: 1024px) {
  .stability .section-header__info {
    padding: 20px 30px;
  }
}
@media (max-width: 768px) {
  .stability .section-header__info {
    padding: 30px 20px;
  }
}
@media (max-width: 576px) {
  .stability .section-header__img {
    height: 190px;
  }
  .stability .section-header__img img {
    -o-object-position: top;
    object-position: top;
  }
}

.quality-protection .certificates__grid {
  gap: 107px;
}
@media (max-width: 1440px) {
  .quality-protection .certificates__grid {
    gap: 200px;
  }
}
@media (max-width: 1024px) {
  .quality-protection .certificates__grid {
    gap: 100px;
  }
}
@media (max-width: 768px) {
  .quality-protection .certificates__grid {
    gap: 40px;
  }
}
@media (max-width: 576px) {
  .quality-protection .certificates__item-img {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
}

.policy {
  background-image: url(../img/protect-wrapper.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.policy .certificates__item-download {
  background: transparent;
  color: #fff;
}
.policy .section-header__name {
  color: #fff;
}
@media (max-width: 768px) {
  .policy .section-header__name {
    font-size: 20px;
  }
}
.policy .section-header__desc {
  color: #fff;
  font-size: 16px;
}
@media (max-width: 576px) {
  .policy .section-header__img {
    max-width: 108px;
    margin: 0 auto;
  }
}

.footer {
  padding: 60px 0;
  background: #616161;
}
.footer__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (auto)[3];
  grid-template-columns: repeat(3, auto);
  gap: 20px;
}
@media (max-width: 1024px) {
  .footer__grid {
    -ms-grid-columns: (auto)[2];
    grid-template-columns: repeat(2, auto);
  }
}
@media (max-width: 576px) {
  .footer__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.footer__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 480px;
  margin-top: auto;
}
@media (max-width: 1440px) {
  .footer__head {
    margin: unset;
    max-width: 340px;
  }
}
.footer__head-title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 122%;
  letter-spacing: 0.01em;
  color: #fff;
  margin-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 576px) {
  .footer__head-title {
    font-size: 16px;
  }
}
.footer__head-copy {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 122%;
  letter-spacing: 0.01em;
  color: #fff;
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 576px) {
  .footer__head-copy {
    font-size: 13px;
  }
}
.footer__nav-container {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 1024px) {
  .footer__nav-container {
    display: none;
  }
}
.footer__title {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 28px;
  color: #fff;
  margin-bottom: 30px;
  display: block;
}
@media (max-width: 1440px) {
  .footer__title {
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .footer__title {
    font-size: 22px;
    margin-bottom: 30px;
  }
}
.footer__nav ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto;
  grid-template-columns: auto auto;
  gap: 20px 60px;
  position: relative;
}
@media (max-width: 1440px) {
  .footer__nav ul {
    gap: 15px 30px;
  }
}
.footer__nav ul::before {
  content: "";
  position: absolute;
  left: 50%;
  height: 80%;
  width: 3px;
  background-color: #f47c01;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (max-width: 1440px) {
  .footer__nav ul::before {
    width: 2px;
    height: 100%;
  }
}
.footer__nav ul li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.footer__nav ul li a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  color: #fff;
}
@media (max-width: 1440px) {
  .footer__nav ul li a {
    font-size: 16px;
  }
}
.footer__contacts-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .footer__contacts-list {
    gap: 15px;
  }
}
.footer__contacts-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}
.footer__contacts-item a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  color: #fff;
}
@media (max-width: 1024px) {
  .footer__contacts-item a {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .footer__contacts-item a {
    font-size: 18px;
  }
}
.footer__contacts-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
.footer__contacts-social img {
  max-width: 40px;
}
@media (max-width: 576px) {
  .footer__contacts-social {
    gap: 12px;
  }
}
.footer__contacts-social-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}




/* Базовое состояние */
.animate-on-scroll {
    opacity: 1; /* элементы всегда видны */
    will-change: transform, opacity;
}

/* Анимации */
@keyframes fadeInUp {
    from {
        transform: translateY(20px);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        transform: translateX(-20px);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        transform: translateX(20px);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes fadeInDown {
    from {
        transform: translateY(-20px);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.95);
    }
    to {
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        transform: rotate(-5deg) scale(0.95);
    }
    to {
        transform: rotate(0) scale(1);
    }
}

@keyframes flipInX {
    from {
        transform: perspective(400px) rotateX(30deg);
    }
    to {
        transform: perspective(400px) rotateX(0);
    }
}

@keyframes fadeInScale {
    from {
        transform: scale(0.9) translateY(10px);
    }
    to {
        transform: scale(1) translateY(0);
    }
}

/* Спокойные анимации */
.animate-on-scroll.animated.animated-1 { animation: fadeInUp 1.2s ease-in-out forwards; }
.animate-on-scroll.animated.animated-4 { animation: fadeInLeft 1.2s ease-in-out forwards; }
.animate-on-scroll.animated.animated-7 { animation: fadeInRight 1.2s ease-in-out forwards; }
.animate-on-scroll.animated.animated-10 { animation: fadeInDown 1.2s ease-in-out forwards; }
.animate-on-scroll.animated.animated-13 { animation: zoomIn 1.2s ease-in-out forwards; }
.animate-on-scroll.animated.animated-16 { animation: rotateIn 1.2s ease-in-out forwards; }
.animate-on-scroll.animated.animated-19 { animation: flipInX 1.2s ease-in-out forwards; }
.animate-on-scroll.animated.animated-23 { animation: fadeInScale 1.2s ease-in-out forwards; }
/*# sourceMappingURL=main.css.map */

.production-web__link{
  position: absolute;
}

.production-web__link img{
  transition: all .2s ease-in;
}

.production-web__link:hover img{
  transform: scale(1.1);
}

.production-web__link-product{
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.production-web__link-meh {
  bottom: 50px;
  left: 40px;
}
.production-web__link-lit {
  top: 50%;
  left: 250px;
}
.production-web__link-hts {
  top: 160px;
  left: 50px;
}
.production-web__link-davl {
  top: 20px;
  transform: translateX(-50%);
  left: 30%;
}
.production-web__link-cokil {
  top: 50px;
  transform: translateX(-50%);
  left: 58%;
}
.production-web__link-chug {
  right: 45px;
  top: 130px;
}
.production-web__link-term {
  bottom: 240px;
  right: 150px;
}
.production-web__link-gall {
  right: 0;
  bottom: 30px;
}
.production-web__link-lab {
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
}

@media(max-width: 1024px) {
  .production-web__link {
      max-width: 150px;
  }
  .production-web__link-lit{
    top: 60%;
  }
}

@media(max-width: 768px) {
  .production-web__link-lit{
   left: 50px;
  }
}

@media(max-width: 576px) {
  .production-web__link {
    max-width: 100px;
  }
  .production-web__link-product{
    max-width: 120px;
  }
  .production-web__wrapper{
    background-image: url(../img/production-web-bg-mob.png);
  }
  .production-web__img{
    min-height: 760px;
  }
  .production-web__link-davl {
    top: 185px;
    transform: translateX(-50%);
    left: 50%;
}
.production-web__link-hts{
  left: 20px;
}
.production-web__link-cokil{
  left: 50%;
}
.production-web__link-chug{
  right: 20px;
}
.production-web__link-term{
  bottom: 285px;
  right: 20px;
}
.production-web__link-lit{
  top: 55%;
  left: 20px;
}
.production-web__link-lab{
  left: 60%;
  bottom: 150px;
}
}

/* Базовый оверлей попапа */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
}

.contact-modal.is-open {
  display: flex;
}

/* затемнение фона */
.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

/* сама карточка */
.contact-modal__dialog {
  position: relative;
  max-width: 760px;
  width: 100%;
  margin: 0 20px;
  background: #b5c3cc; /* как на скрине */
  border-radius: 14px;
  padding: 40px 48px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  z-index: 1;
}

/* крестик */
.contact-modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  border: none;
  background: none;
  color: #000;
  font-size: 26px;
  cursor: pointer;
}

.contact-modal__inner {
  max-width: 610px;
}

.contact-modal__title {
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: 700;
}

.contact-modal__subtitle {
  margin: 0 0 24px;
  font-size: 18px;
}

/* Подстройка твоих существующих классов */

.contact-form__field {
  margin-bottom: 14px;
}

.contact-form__label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  border-radius: 24px;
  border: none;
  padding: 10px 16px;
  font-size: 14px;
  box-sizing: border-box;
}

.contact-form__textarea {
  border-radius: 14px;
  min-height: 110px;
  resize: vertical;
}

.contact-form__field--file {
  margin: 16px 0 22px;
}

.contact-form__file-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
}

.contact-form__file-input {
  display: none;
}

.contact-form__submit.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 34px;
  border-radius: 24px;
  border: none;
  background: #ff8a00;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 14px;
}

.contact-form__submit.button:hover {
  background: #e87700;
}

.contact-form__privacy {
  font-size: 12px;
  max-width: 420px;
  opacity: 0.85;
}

/* адаптив */

@media (max-width: 640px) {
  .contact-modal__dialog {
    padding: 28px 20px 24px;
  }

  .contact-modal__title {
    font-size: 22px;
  }

  .contact-modal__subtitle {
    font-size: 15px;
  }
}

[data-modal-target] {
  cursor: pointer;
}

.product {
  padding: 60px 0;
}
.product__content {
  max-width: 1380px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 50px;
}
@media (max-width: 1024px) {
  .product__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }
}
.product__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
.product__title {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 36px;
  color: #000;
  margin: 0;
}
@media (max-width: 768px) {
  .product__title {
    font-size: 20px;
  }
}
.product__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 122%;
  letter-spacing: 0.01em;
  color: #000;
}
@media (max-width: 576px) {
  .product__text {
    font-size: 16px;
  }
}

.product-steps {
  background-image: url(../img/product-steps-bg.webp);
  padding: 60px 0;
}
.product-steps__title {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 36px;
  text-align: center;
  color: #fff;
  margin: 0;
  margin-bottom: 60px;
}
.product-steps__steps {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .product-steps__steps {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.product-steps__step svg {
  margin-bottom: 20px;
}
.product-steps__step-name {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 22px;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  color: #fff;
  margin-bottom: 20px;
  display: block;
}
.product-steps__step-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: #fff;
}

.product-directions {
  padding: 60px 0;
  background-image: url(../img/bg-statistik.webp);
}
.product-directions__title {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 46px;
  text-align: center;
  color: #000;
  max-width: 1400px;
  margin: 0 auto;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .product-directions__title {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .product-directions__img {
    display: none;
  }
}
.product-directions__img-mob {
  display: none;
}
@media (max-width: 576px) {
  .product-directions__img-mob {
    display: block;
  }
}

.product-equipment {
  background-image: url(../img/equipment-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 60px 0;
}
.product-equipment__title {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 46px;
  text-align: center;
  color: #000;
  margin: 0;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .product-equipment__title {
    font-size: 24px;
    margin-bottom: 35px;
  }
}
.product-equipment__content-title {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 36px;
  color: #000;
  margin: 0;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .product-equipment__content-title {
    font-size: 20px;
  }
}
.product-equipment__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .product-equipment__content {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .product-equipment__content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.product-equipment__item {
  min-height: clamp(13.125rem, -0.9797rem + 22.0386vw, 23.125rem);
}
@media (max-width: 1024px) {
  .product-equipment__item {
    min-height: clamp(14.8125rem, -0.75rem + 32.4219vw, 20rem);
  }
}
@media (max-width: 768px) {
  .product-equipment__item {
    min-height: clamp(14.125rem, -1.4404rem + 66.4122vw, 30.4375rem);
  }
}
.product-equipment__item:hover .product-equipment__info {
  margin-top: 0;
  opacity: 1;
  visibility: visible;
  -webkit-transition: margin 0.3s ease-in-out, opacity 0.4s ease-in 0.3s;
  -o-transition: margin 0.3s ease-in-out, opacity 0.4s ease-in 0.3s;
  transition: margin 0.3s ease-in-out, opacity 0.4s ease-in 0.3s;
}
.product-equipment__body {
  z-index: 2;
  position: relative;
}
.product-equipment__img {
  display: block;
  width: 100%;
  height: 100%;
}
.product-equipment__name {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 26px;
  color: #fff;
  position: absolute;
  left: 20px;
  bottom: 25px;
  max-width: 390px;
  padding-left: 10px;
  padding-bottom: 10px;
  border-bottom: 3px solid #e87d0e;
}
@media (max-width: 1024px) {
  .product-equipment__name {
    font-size: 20px;
    right: 20px;
  }
}
.product-equipment__info {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  padding: 20px;
  background: rgba(0, 0, 0, 0.8);
  margin-top: -100%;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  position: relative;
}
@media (max-width: 768px) {
  .product-equipment__info {
    font-size: 14px;
  }
}

.product-steps__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 70px;
  margin-bottom: 40px;
}
@media (max-width: 1200px) {
  .product-steps__content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .product-steps__content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.product-steps__content-text {
  font-weight: 400;
  font-size: 24px;
  line-height: 122%;
  letter-spacing: 0.01em;
  color: #fff;
}
@media (max-width: 1200px) {
  .product-steps__content-text {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .product-steps__content-text {
    font-size: 16px;
  }
}
.product-steps__content-text span {
  color: #f47c01;
}

.product-order {
  background-image: url(../img/product-order-bg.webp);
  padding: 60px 0;
}
.product-order__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 50px;
}
@media (max-width: 1200px) {
  .product-order__content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .product-order__content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.product-order__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 20px;
}
.product-order__title {
  font-weight: 600;
  font-size: 26px;
  line-height: 122%;
  letter-spacing: 0.01em;
  color: #000;
}
@media (max-width: 576px) {
  .product-order__title {
    font-size: 18px;
  }
}
.product-order__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 122%;
  letter-spacing: 0.01em;
  color: #000;
}
@media (max-width: 576px) {
  .product-order__text {
    font-size: 16px;
  }
}
.product-order__btn {
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  padding: 15px 40px;
  border-radius: 10px;
  background-color: #f47c01;
}
@media (any-hover: hover) {
  .product-order__btn:hover {
    background-color: #cf6a04;
  }
}
@media (max-width: 576px) {
  .product-order__btn {
    width: 100%;
  }
}

.product-equipment__item-one {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: unset;
}
.product-equipment__item-one .product-equipment__body {
  height: 100%;
}
.product-equipment__item-one .product-equipment__info {
  margin-top: 0;
  opacity: 1;
  visibility: visible;
  padding-left: 30px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 576px) {
  .product-equipment__item-one .product-equipment__info {
    padding-left: 20px;
  }
}
@media (max-width: 1024px) {
  .product-equipment__item-one {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .product-equipment__item-one .product-equipment__img {
    min-height: 264px;
  }
}
.product-equipment__item .product-equipment__item:not(.product-equipment__item-one):hover .product-equipment__info {
  margin-top: 0;
  opacity: 1;
  visibility: visible;
  -webkit-transition: margin 0.3s ease-in-out, opacity 0.4s ease-in 0.3s;
  -o-transition: margin 0.3s ease-in-out, opacity 0.4s ease-in 0.3s;
  transition: margin 0.3s ease-in-out, opacity 0.4s ease-in 0.3s;
}

.flex-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.product-steps__btn {
  margin-top: 40px;
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  padding: 15px 40px;
  border-radius: 10px;
  background-color: #f47c01;
}
@media (any-hover: hover) {
  .product-steps__btn:hover {
    background-color: #cf6a04;
  }
}
@media (max-width: 576px) {
  .product-steps__btn {
    width: 100%;
  }
}


.marks__item-info {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: max-height 0.3s ease;
  -o-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}

.marks {
  padding: 60px 0;
}
.marks__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
@media (max-width: 1024px) {
  .marks__content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.marks__item:has(.marks__item-info.active) .marks__btn svg {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.marks__btn {
  border-radius: 10px 10px 0 0;
  padding: 10px;
  background: #e5e5e5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  font-weight: 600;
  font-size: 22px;
  color: #000;
}
.marks__btn svg {
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
@media (max-width: 576px) {
  .marks__btn {
    font-size: 18px;
    text-align: left;
  }
}
.marks__item-info-wrapper {
  padding: 10px;
}
.marks__item-info-inner {
  padding: 10px;
  background-color: #f0f0f0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.marks__item-info-title {
  font-weight: 600;
  font-size: 18px;
  color: #000;
  margin-bottom: 5px;
}
.marks__item-info-text {
  font-weight: 400;
  font-size: 16px;
  color: #000;
  margin-bottom: 5px;
}

.product__link {
  font-weight: 400;
  font-size: 18px;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  color: #f47c01;
  margin-bottom: 5px;
  display: block;
}

.marks__title{
  margin: 0; 
  margin-bottom: 40px;
  text-align: center;
  font-weight: 600;
  font-size: 32px;
  text-align: center;
  color: #000;
}

@media(max-width: 576px) {
  .marks__title {
    font-size: 24px;
  }
}
.pruduction__about-img{
  margin-bottom: 20px;
  width: 100%;
}

.pruduction__about-info{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.pruduction__about-info-rev{
  flex-direction: row-reverse;
}

.pruduction__about-date{
  font-weight: 600;
  font-size: 24px;
  line-height: 122%;
  letter-spacing: 0.01em;
  text-align: center;
  color: #fff;
  padding: 10px 33px;
  background: #f47c01;
}

.pruduction__about-title{
  font-weight: 600;
  font-size: 20px;
  line-height: 122%;
  letter-spacing: 0.01em;
  color: #000;
}

@media(max-width: 1024px) {
  .pruduction__about-title{
    font-size: 14px;
  }
}

@media(max-width: 1024px) {
  .pruduction__about-date{
    font-size: 20px;
    padding: 10px 20px;
  }
}

.gallery-slider__title::first-letter {
  text-transform: uppercase;
}