
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Montserrat', sans-serif;
  color: #000;
  background: url('../images/backgrounds/bg.webp') no-repeat center top / cover;
  line-height: 1.2;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { outline: none; border: none; font-family: 'Roboto', sans-serif; }


.text-red { color: #c50806; }
.text-green { color: #03c10d; }
.fw-800 { font-weight: 800; }
.fw-900 { font-weight: 900; }

.global-wrapper {
  width: 100%;
  position: relative;

  overflow-x: hidden;
}


.container {
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 15px;
}

.grid-1920 {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}


.header { position: relative; }
.header-bg {
  background: url('../images/backgrounds/header-wood.webp') no-repeat center top / cover;
  padding: 10px 0 11px;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-contacts {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 225px;
}
.contact-line {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 300;
}
.header-logo img {
  width: 606px;
}
.header-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  width: 315px;
}
.lang-switcher { display: flex; gap: 30px; }
.lang-item {
  width: 82px; height: 50px;
  border: 3px solid #d40000;
  border-radius: 25px;
  background: #fff; color: #d40000;
  font-family: 'Roboto', sans-serif; font-size: 15px; font-weight: bold;
  display: flex; align-items: center; justify-content: center;
}
.lang-item.active-lang {
  border-color: #c50806;
  background-color: #51b600 !important;
  color: #ffffff !important;
}
.btn-contact {
  min-height: 60px; padding: 12px 24px;
  border: 3px solid #d40000;
  border-radius: 30px;
  background: #fff; color: #d40000;
  font-family: 'Roboto', sans-serif; font-size: 20px; text-transform: uppercase;
  display: flex; align-items: center; gap: 20px;
}
.header-line { height: 2px; background: #c50806; }


.burger-menu-toggle { display: none; }
.burger-overlay {
  display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(255, 255, 255, 0.95); z-index: 1000;
  flex-direction: column; align-items: center; justify-content: center; gap: 20px;
}
.burger-overlay.active { display: flex; }
.burger-close {
  position: absolute; top: 20px; right: 25px; font-size: 40px; color: #c50806;
}
.burger-nav-item {
  color: #c50806;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 10px 30px;
  border: 3px solid #c50806;
  border-radius: 30px;
  min-width: 250px;
  text-align: center;
  text-decoration: none;


  cursor: pointer;
  transition: all 0.3s ease;
}


.burger-nav-item:hover {
  background-color: #51b600;
  border: 3px solid #c50806;
  color: #ffffff;
}


.burger-close {
  transition: color 0.3s ease, transform 0.3s ease;
}

.burger-close:hover {
  color: #51b600;
  transform: scale(1.1);
}


.nav-container {
  display: flex; justify-content: center; gap: 30px; margin-top: 18px;
}
.nav-btn {
  width: 315px; min-height: 60px; padding: 6px 25px;
  border: 3px solid #c50806;
  border-radius: 30px; background: #fff;
  display: flex; align-items: center; justify-content: center; gap: 20px; color: #c50806;
  font-family: 'Roboto', sans-serif; font-size: 20px; text-transform: uppercase;
}
.nav-btn.active-nav { border-color: #d40000; color: #d40000; }


.hero-section {
  height: 1010px; margin-top: 20px;
  background: url('../images/banners/bn-miasolub.webp') no-repeat center top / cover;
  display: flex; align-items: flex-end; padding-bottom: 65px;
}
.hero-box {
  margin: 0 auto;
  width: 1120px;
  min-height: 240px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.title-big {
  font-size: 82px;
  font-weight: 800;
  color: #c50806;
  line-height: 0.85;
  margin: 0;
}

.hero-box .text-green {
  font-size: 62px;
  font-weight: 800;
  line-height: 1;
  margin: 0;
}


.section-title-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 40px auto 30px;
}

    .error-404-container {
      text-align: center;
      padding: 60px 15px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    .error-404-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 120px;
      font-weight: 900;
      color: #c50806;
      line-height: 1;
      margin: 0 0 20px 0;
    }
    .error-404-subtitle {
      font-family: 'Montserrat', sans-serif;
      font-size: 28px;
      font-weight: 800;
      color: #333;
      margin-bottom: 20px;
    }
    .error-404-desc {
      font-family: 'Roboto', sans-serif;
      font-size: 18px;
      color: #555;
      max-width: 600px;
      margin: 0 auto 40px auto;
      line-height: 1.5;
    }
    .btn-home {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      padding: 15px 40px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      text-transform: uppercase;
      font-size: 16px;
      cursor: pointer;
    }

.line-green {
  flex: 1;
  height: 2px;
  background: #03c10d;
}


.title-core {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 30px;
}


.section-title {
  font-size: 35px;
  font-weight: 800;
  text-align: center;
}


.line-red {
  width: 100%;
  height: 5px;
  background: #c50806;
  margin-top: 5px;
}


.product-card {
  height: 480px;
  display: flex;
  align-items: flex-end;
  justify-content: center;

  position: relative;
  overflow: hidden;
}

.product-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.product-label {
  min-width: 240px;
  padding: 15px 20px;
  background: #fff;
  border: 3px solid #c50806;
  border-radius: 25px 25px 0 0;
  color: #c50806;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;

  position: relative;
  z-index: 2;
}


.about-section { margin-top: 98px; }
.about-desc {
  margin: 20px auto 0; max-width: 1116px; font-size: 35px; font-weight: bold; text-align: center; padding: 0 15px;
}
.features-container {
  display: flex; justify-content: center; gap: 30px; margin-top: 106px;
}
.feature-card { width: 430px; position: relative; }
.feature-icon {
  width: 125px; height: 125px; margin: 0 auto; background: #fff;
  border: 2px solid #d40000; border-radius: 25px; box-shadow: 0 0 50px rgba(0,0,0,0.1);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
}
.feature-text {
  background: #fff; border: 2px solid #d40000; border-radius: 25px;
  box-shadow: 0 0 50px rgba(0,0,0,0.1); padding: 95px 40px 50px;
  margin-top: -75px; min-height: 250px; position: relative; z-index: 1;
  text-align: center; font-size: 20px; font-weight: bold;
}


.values-section { margin-top: 115px; }
.values-line-red { width: 330px; }

.values-bg {
  height: 1080px;
  margin-top: 30px;
  background: url('../images/pages/main/bg/main-myaso.webp') no-repeat center top / cover;
  display: flex;
  align-items: center;
}

.values-flex {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 200px;
  width: 100%;
}

.value-item {
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.val-icon {
  display: block;
  z-index: 5;
  flex-shrink: 0;

  height: 180px;
  width: auto;
  max-width: none !important;
}

.value-text {
  background: #fff;
  border-radius: 15px;
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  width: 180px;
  height: 120px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 25px;
  margin-top: -60px;
  z-index: 1;
  position: relative;
}


.val-arrow {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  left: 100%;
}


.arrow-1 {
  bottom: 20px;
  margin-left: 15px;
}


.arrow-2 {
  top: 60px;
  margin-left: 15px;
}


.partners-section { margin-top: 70px; }
.partners-flex {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 30px; margin-top: 60px;
}
.partner-circle {
  width: 200px; height: 200px; border: 1px solid #03c10d; border-radius: 50%;
  background: #fff; box-shadow: 0 0 50px rgba(0,0,0,0.1);
  display: flex; align-items: center; justify-content: center;
}

.partner-circle img {
  max-width: 75%;
  max-height: 75%;
  object-fit: contain;
}

.gallery-section { margin-top: 115px; }
.gallery-line-red { width: 160px; }
.gallery-section img { width: 100%; height: 100%; object-fit: cover; }


.club-section { margin-top: 98px; }
.club-flex {
  display: flex; align-items: center; justify-content: space-between;
}
.club-text {
  font-size: 62px; font-weight: 800; max-width: 800px; text-align: center; line-height: 1.2;
}
.title-huge { font-size: 110px; }


.job-section { margin-top: 63px; }
.job-bg {
  position: relative;
  overflow: hidden;
  height: 540px;
  background: url('../images/pages/main/job-section/job-bg.webp') no-repeat center top / cover;
  background-color: #f1f4e9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.job-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.job-img-left,
.job-img-right {
  position: absolute;
  top: 0;
  height: 100%;
  width: 42%;
  object-fit: cover;
  z-index: 1;
}

.job-img-left {
  left: 0;
  object-position: center 30%;
  -webkit-mask-image: linear-gradient(to right, black 50%, transparent 100%);
  mask-image: linear-gradient(to right, black 50%, transparent 100%);
}

.job-img-right {
  right: 0;
  width: 32%;
  object-position: right top;
  -webkit-mask-image: linear-gradient(to left, black 50%, transparent 100%);
  mask-image: linear-gradient(to left, black 50%, transparent 100%);
}
.job-arrow {
  width: 120px;
  transition: all 0.3s ease;
}
.job-title { font-size: 47px; font-weight: 600; line-height: 1.2; }
.btn-submit {
  margin-top: 34px;
  padding: 17px 40px;
  background: #c50806;

  border: 3px solid #c50806;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}
.job-or {
  display: flex; align-items: center; gap: 80px; margin-top: 35px;
  font-size: 26px; font-weight: 600;
}
.job-phone { font-size: 45px; font-weight: 800; margin-top: 18px; }


.footer-section { margin-top: 144px; }
.footer-bg {
  min-height: 550px; background: url('../images/backgrounds/pattern-laminate-floor.webp') no-repeat center top / cover;
  padding: 40px 0 60px;
}
.footer-container { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; }
.footer-col { width: 430px; display: flex; flex-direction: column; }
.footer-center { align-items: center; text-align: center; }
.footer-title { color: #fff; font-size: 26px; font-weight: 800; text-transform: uppercase; text-align: center; }
.line-footer {
  flex: none;
  height: 5px;
  width: 100%;
  background: #03c10d;
  margin-top: 5px;
  margin-bottom: 25px;
}


.footer-input {
  width: 100%;
  min-height: 60px;
  border-radius: 30px;
  padding: 0 28px;
  margin-bottom: 20px;
  font-size: 20px;

  font-weight: 900;
  color: #000;
}


.footer-input::placeholder {

  font-weight: 600;

  color: #777;
}
.footer-textarea {
  width: 100%; min-height: 120px; border-radius: 30px; padding: 26px 28px;
  margin-bottom: 30px; font-size: 15px; resize: none;
}
.btn-outline {
  background: #fff;
  color: #c50806;
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
}

.social-icons { display: flex; gap: 35px; margin-bottom: 60px; }
.app-text { color: #fff; font-family: 'Roboto', sans-serif; font-size: 20px; margin-bottom: 15px; }
.app-btn { margin-bottom: 15px; }


.footer-contact {
  display: flex; align-items: center; gap: 15px; color: #fff;
  font-size: 26px; font-weight: 800; margin-bottom: 20px;
}
.footer-logo { margin-top: 80px; margin-bottom: 35px; }
.copyright { color: #fff; font-family: 'Roboto', sans-serif; font-size: 15px; text-align: center; }


@media screen and (max-width: 1200px) {
  .title-underline-left { margin-left: 0; margin: 5px auto 0; text-align: center; }
}

.lang-item,
.btn-contact,
.nav-btn,
.product-label,
.btn-submit {
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-item:hover,
.btn-contact:hover,
.nav-btn:hover,
.product-label:hover,
.btn-submit:hover {
  background-color: #51b600;
  border: 3px solid #c50806;
  color: #ffffff;
}


.btn-contact:hover img,
.nav-btn:hover img,
.btn-submit:hover img {
  filter: none !important;
}



.products-catalog-section {
  padding-bottom: 80px;
}

.breadcrumbs {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}


.catalog-layout {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  margin-top: 40px;
  margin-bottom: 20px
}


.catalog-sidebar {
  width: 280px;
  flex-shrink: 0;
}

.category-menu {
  list-style: none;
  padding: 0;
}

.category-menu li {
  font-size: 22px;
  font-weight: 800;
  color: #000;
  margin-bottom: 20px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.category-menu li:hover,
.category-menu li.active {
  color: #c50806;
}


.catalog-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.part-name-badge {
  background: #000;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  border-radius: 30px;
  margin-bottom: 30px;


  min-width: 320px;
  height: 60px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;

  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}


.animal-diagram-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.svg-part {
  opacity: 0.01;
  transition: opacity 0.3s ease;
  cursor: pointer;
  pointer-events: all;
  -webkit-tap-highlight-color: transparent;
}

.svg-part path {
  pointer-events: all;
}

.svg-part:hover,
.svg-part.active {
  opacity: 1;
}

.base-outline {
  fill: none;
  stroke: #8800db;
  stroke-width: 3px;
  pointer-events: none;
}


.part-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}



.photo-grid-wrapper {
  width: 100%;
  max-width: 1920px;
  margin: 60px auto 0;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}


.photo-card {
  height: 480px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  cursor: pointer;

  position: relative;
  overflow: hidden;
}

.photo-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;

  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
  display: block;
}

.photo-label {
  min-width: 240px;
  padding: 15px 20px;
  background: #fff;
  border: 3px solid #8800db;
  border-radius: 25px 25px 0 0;
  color: #8800db;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;

  position: relative;
  z-index: 2;
}

.photo-card:hover .photo-label,
.photo-card.active .photo-label {
  background: #8800db;
  border-color: #8800db;
  color: #ffffff;
}


.partner-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  overflow-y: auto;
  display: flex;
  align-items: flex-start;
  padding: 40px 15px;
  box-sizing: border-box;
}

.partner-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}


.partner-modal-content {
  position: relative;
  width: 720px;
  max-width: 95%;
  background-color: #ffffff;
  border-radius: 50px 0 50px 0;
  padding-bottom: 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  overflow: visible;
  margin: auto;
}

.partner-modal-overlay.active .partner-modal-content {
  transform: scale(1);
}


.partner-modal-close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 36px;
  height: 36px;
  background-color: #d40000;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  z-index: 10;
}

.partner-modal-close:hover {
  background-color: #a00000;
}


.partner-modal-header-bg {
  width: 100%;
  height: 130px;
  background: url('../images/backgrounds/header-bg-wood.webp') no-repeat center center;
  background-size: cover;
  background-color: #3a2218;
  border-radius: 50px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-modal-logo {
  max-width: 80%;
  height: auto;
}


.partner-modal-title-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 30px;
}

.partner-modal-title-group img,
.partner-modal-title-group svg {
  width: 80px;
  height: auto;
  margin-bottom: 10px;
}

.partner-modal-title-group h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  color: #000;
  margin: 0;
}

.partner-modal-line {
  height: 5px;
  width: 300px;
  background: #03c10d;
  margin: 10px auto 30px;
}


.partner-modal-form {
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.partner-modal-form input,
.partner-modal-form textarea {
  width: 100%;
  max-width: 660px;
  background: #f3f3f3;
  border: none;
  border-radius: 30px;
  padding: 20px 30px;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #000;
}

.partner-modal-form textarea {
  min-height: 120px;
  border-radius: 30px;
  resize: vertical;
}

.partner-modal-form input:focus,
.partner-modal-form textarea:focus {
  outline: 2px solid #03c10d;
}


.btn-submit-partner {
  background: #ffffff;
  border: 3px solid #d40000;
  color: #d40000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 30px;
  cursor: pointer;
  width: 100%;
  max-width: 315px;
  height: 60px;
  margin-top: 20px;
  transition: all 0.3s;
}

.btn-submit-partner:hover {
  background: #d40000;
  color: #ffffff;
}



.contacts-section {
  padding-bottom: 80px;
}

.contacts-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 50px;
}

.contacts-desc {
  font-size: 26px;
  font-weight: 800;
  color: #000;
  margin-bottom: 10px;
}

.contacts-sub-desc {
  font-size: 20px;
  font-weight: 500;
  color: #000;
  margin-bottom: 30px;
}


.search-form {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 660px;
  height: 60px;
  border: 2px solid #d40000;
  border-radius: 30px;
  background: #fff;
  overflow: hidden;
}

.search-input-wrapper {
  display: flex;
  align-items: center;
  flex: 1;
  padding-left: 25px;
  height: 100%;
}

.search-icon {
  width: 22px;
  height: auto;
  margin-right: 15px;
}

.search-input {
  flex: 1;
  height: 100%;
  border: none;
  outline: none;
  font-size: 20px;
  color: #000;
  background: transparent;
}

.search-input::placeholder { color: #a2a2a2; }


.search-btn {
  width: 170px;
  height: 100%;
  border: none;
  border-left: 2px solid #d40000;
  background: #fff;
  color: #d40000;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-btn:hover {
  background: #d40000;
  color: #fff;
}


.map-full-bg {
  width: 100%;

  background: url('../images/backgrounds/map-bg-myaso.webp') no-repeat center center / cover;
  padding: 70px 0;
  margin-bottom: 80px;
}


.map-green-frame {
  position: relative;
  width: 100%;
  max-width: 1265px;
  margin: 0 auto;
  border: 10px solid #03c10d;
  display: flex;
}

.map-streets-img {
  width: 100%;
  height: auto;
  display: block;
}


.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  z-index: 2;
}


.telegram-promo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  max-width: 890px;
  margin: 0 auto;
}

.telegram-icon {
  width: 200px;
  height: 200px;
  flex-shrink: 0;
}

.telegram-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tg-title {
  font-size: 26px;
  margin-bottom: 10px;
}

.tg-desc {
  font-size: 26px;
  font-weight: 500;
  color: #000;
  margin-bottom: 20px;
}

.line-blue {
  width: 100%;
  height: 2px;
  background: #00a6eb;
}


.text-blue-bold { color: #00a6eb; font-weight: 800; }


.news-section {
  padding-bottom: 80px;
}

.news-container {
  max-width: 1350px;
  margin: 0 auto;
}


.news-intro-text {
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.4;
}

.news-lead {
  font-size: 35px;
  font-weight: 800;
  color: #000;
  margin-bottom: 20px;
}

.news-desc {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

.news-slogans {
  font-size: 35px;
  font-weight: 800;
}


.text-red-bold { color: #c50806; font-weight: 800; }
.text-green-bold { color: #03c10d; font-weight: 800; }
.text-black-bold { color: #000; font-weight: 800; }


.news-images-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.news-img {
  width: 100%;
  height: auto;
  display: block;


}



.vacancies-container {
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.job-card {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 30px;
}


.job-img-wrapper {
  position: relative;
  width: 660px;
  height: 510px;
  flex-shrink: 0;
  display: flex;
  overflow: hidden;
  border-radius: 10px;
}

.job-card:first-child .job-img-wrapper img {
  object-position: center 1%;
}

.job-card:nth-child(2) .job-img-wrapper img {

  object-position: center 30%;
}

.job-img-wrapper > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.job-watermark {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 180px;
  height: auto;
  z-index: 2;
}


.job-info {
  width: 660px;
  flex-shrink: 0;
  padding-top: 10px;
}

.job-title {
  color: #c50806;
  font-size: 35px;
  font-weight: 800;
  margin-bottom: 25px;
}

.job-subtitle {
  color: #03c10d;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 15px;
}

.job-list { list-style: none; padding: 0; }
.job-list li {
  font-size: 20px;
  color: #000;
  margin-bottom: 15px;
  line-height: 1.2;
  font-weight: 600;
}
.job-list .num { font-weight: bold; color: #000; }
.job-list .text-red { color: #c50806; font-weight: bold; }



.apply-wrapper {
  position: relative;
  align-self: center;
  width: 545px;
  height: 130px;
  margin-top: 20px;
  margin-bottom: 50px;
}


.apply-arrow-left {
  position: absolute;
  top: -10px;
  left: 110px;
  width: 100px;
}

.apply-arrow-right {
  position: absolute;
  bottom: 61px;
  right: -10px;
  width: 80px;
}


.btn-apply-job {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 380px;
  height: 60px;
  border: 3px solid #d40000;
  border-radius: 30px;
  background: #ffffff;
  color: #d40000;
  font-weight: bold;
  font-size: 20px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 30px;
  transition: all 0.3s ease;
  z-index: 2;
  cursor: pointer;
}


.apply-icon {
  position: absolute;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
  z-index: 3;
}


.btn-apply-job:hover {
  background: #27a6e6;
  border-color: #27a6e6;
  color: #fff;
}




@media screen and (max-width: 1200px) {

  .header-contacts,
  .header-actions .btn-contact,
  .header-actions .lang-switcher,
  .nav-container {
    display: none;
  }


  .header-container {
    display: grid !important;

    grid-template-columns: 35px 1fr 35px;
    align-items: center;
    min-height: 80px;
  }


  .header-logo {
    grid-column: 2;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .header-logo img {
    max-width: 100%;
    height: auto;
  }


  .header-actions {
    grid-column: 3;
    position: static !important;
    transform: none !important;
    display: flex;
    justify-content: flex-end;
    width: 100%;
  }

  .burger-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 35px;
    height: 25px;
  }

  .burger-menu-toggle span {
    display: block;
    height: 4px;
    background: #c50806;
    border-radius: 2px;
  }

  .burger-overlay .lang-switcher {
    display: flex;
    justify-content: center;
    width: 100%;
  }


  .hero-section {
    height: auto;
    padding-top: 100px;
    min-height: 600px;
  }

  .hero-box {
    width: 90%;
    min-height: auto;
    padding: 20px;
  }

  .title-big {
    font-size: 60px;
  }

  .hero-box .text-green {
    font-size: 48px;
  }
  .title-big { font-size: 60px; }

  .grid-1920 { grid-template-columns: repeat(2, 1fr); }

  .features-container { flex-wrap: wrap; }
  .feature-card { width: 45%; }

  .values-bg::before,
  .values-bg::after {
    display: none !important;
  }
  .values-bg { height: auto; padding: 60px 0; }
  .values-flex { flex-direction: column; align-items: center; gap: 40px; }
  .value-item .val-icon { margin-top: 0; }
  .value-item .value-text { margin-top: -30px; }

  .val-arrow { display: none !important; }
  .val-img-shadow { display: none; }

  .club-flex { flex-direction: column; text-align: center; gap: 30px; }

  .footer-container { flex-wrap: wrap; justify-content: center; }
  .footer-col { width: 45%; }

  .job-card {
    flex-direction: column;
    align-items: center;
  }
  .job-img-wrapper {
    width: 100%;
    max-width: 660px;
    height: auto;
    aspect-ratio: 660 / 510;
  }
  .job-info { width: 100%; max-width: 660px; padding: 0 15px; }
  .apply-wrapper { width: 100%; max-width: 400px; }
  .apply-arrow-left, .apply-arrow-right { display: none; }
  .btn-apply-job { position: relative; top: 0; left: 0; transform: none; width: 100%; margin-top: 30px; }

  .news-lead, .news-slogans { font-size: 28px; }
  .news-desc { font-size: 20px; }

  .search-form { max-width: 90%; }
  .telegram-promo { flex-direction: column; text-align: center; }
  .telegram-icon { width: 150px; height: 150px; }

  .catalog-layout { flex-direction: column; align-items: center; }
  .catalog-sidebar { width: 100%; text-align: center; }
  .category-menu { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
  .category-menu li { margin-bottom: 0; font-size: 18px; border: 2px solid #ccc; padding: 5px 15px; border-radius: 20px; }
  .category-menu li.active { border-color: #c50806; }


  .photo-grid { display: flex !important; overflow-x: auto; scroll-snap-type: x mandatory; }
  .photo-card { flex: 0 0 50%; scroll-snap-align: center; }


  .catalog-content {
    width: 100%;
  }


  .animal-diagram-wrapper {
    max-width: 90% !important;
  }

}


@media screen and (max-width: 768px) {
  .hero-box { font-size: 32px; padding: 20px; min-height: 150px; border-radius: 25px; }
  .title-big { font-size: 40px; }



  .part-name-badge {
    font-size: 18px;
    height: 50px;
    min-width: 250px;
    padding: 0 20px;
  }

  .grid-1920 { grid-template-columns: 1fr; }
  .product-label { font-size: 20px; min-height: 50px; padding: 10px; }

  .about-desc { font-size: 20px; }
  .features-container { flex-direction: column; align-items: center; }
  .feature-card { width: 90%; max-width: 400px; margin-bottom: 20px; }

  .value-label { font-size: 24px; }

  .club-text { font-size: 40px; }
  .title-huge { font-size: 60px; }

  .job-bg { height: auto; padding: 50px 0; }
  .hide-mobile { display: none; }
  .job-or { gap: 0; justify-content: center; }

  .footer-col { width: 100%; max-width: 400px; margin-bottom: 40px; }
  .footer-bg {
    background-size: auto;
    background-repeat: repeat;
  }
  .title-core { margin: 0 15px; }
  .section-title { font-size: 24px; white-space: normal; }
  .hero-section {
    min-height: 500px;
  }

  .title-big {
    font-size: 48px;
  }

  .hero-box .text-green {
    font-size: 36px;
  }

  .news-lead, .news-slogans { font-size: 24px; }
  .news-desc { font-size: 18px; }
  .news-images-container { gap: 20px; }

  .contacts-desc { font-size: 22px; }
  .contacts-sub-desc { font-size: 18px; }
  .tg-title, .tg-desc { font-size: 20px; }

  .photo-label { font-size: 20px; min-height: 50px; padding: 10px; min-width: 200px; }
  .part-name-badge { font-size: 18px; padding: 8px 25px; }

  .value-item .val-icon {
    height: 160px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
  }

  .value-item .value-text {
    width: 150px;
    height: 90px;
    font-size: 20px;
    padding-bottom: 15px;
    margin-top: -40px;
  }
  .job-bg {
    height: auto;
    padding: 70px 0;
  }
  .job-img-left,
  .job-img-right {
    width: 50%;
    opacity: 0.3;
  }
  .job-arrow {
    width: 50px;
  }
  .job-or {
    gap: 15px;
  }


}


@media screen and (max-width: 480px) {
  .header-logo img { width: 250px; }

  .hero-section {
    min-height: 400px;
    padding-bottom: 40px;
  }

  .hero-box {
    width: 95%;
    padding: 15px;
    border-radius: 30px;
    gap: 3px;
  }

  .title-big {
    font-size: 32px !important;
    line-height: 0.9 !important;
  }

  .hero-box .text-green {
    font-size: 24px !important;
    line-height: 1.1 !important;
  }

  .section-title { font-size: 20px; }

  .partner-circle { width: 120px; height: 120px; }

  .club-text { font-size: 28px; }
  .title-huge { font-size: 40px; }

  .job-phone { font-size: 32px; }
  .title-core { margin: 0 10px; }
  .line-red { height: 3px; margin-top: 3px; }

  .job-title { font-size: 24px; }
  .job-subtitle { font-size: 20px; }
  .job-list li { font-size: 16px; }
  .job-watermark { width: 200px; bottom: 10px; right: 10px; }
  .apply-icon { width: 50px; height: 50px; left: -10px; }
  .btn-apply-job { font-size: 16px; padding-left: 20px; height: 50px; }

  .news-intro-text { margin-bottom: 25px; }
  .news-lead, .news-slogans { font-size: 20px; }
  .news-desc { font-size: 16px; }
  .news-images-container { gap: 15px; }

  .contacts-intro { margin-bottom: 30px; }

  .search-form {
    flex-direction: row;
    height: 50px;
    background: #fff;
    border: 2px solid #d40000;
    border-radius: 25px;
  }
  .search-input-wrapper {
    width: auto;
    border: none;
    margin-bottom: 0;
    height: 100%;
    padding-left: 15px;
  }
  .search-icon {
    width: 18px;
    margin-right: 10px;
  }
  .search-input {
    font-size: 16px;
  }
  .search-btn {
    width: 100px;
    height: 100%;
    border: none;
    border-left: 2px solid #d40000;
    border-radius: 0;
    background: #fff;
    color: #d40000;
    font-size: 16px;
  }
  .search-btn:hover {
    background: #d40000;
    color: #fff;
  }

  .map-wrapper { margin-bottom: 40px; border-width: 5px; }
  .telegram-icon { width: 100px; height: 100px; }
  .tg-title, .tg-desc { font-size: 16px; }

  .photo-label { font-size: 18px; min-height: 40px; padding: 8px 10px; min-width: 160px; border-radius: 15px 15px 0 0; }

  .value-item .val-icon {
    height: 130px;
    width: auto;
  }

  .value-item .value-text {
    width: 130px;
    height: 80px;
    font-size: 18px;
    padding-bottom: 10px;
    margin-top: -30px;
  }
  .job-img-left, .job-img-right {
    opacity: 0.15;
  }
  .job-arrow {
    display: none;
  }
  .job-or {
    margin-top: 25px;
  }

}


.slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}



.slider-btn {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;

  background: rgba(255, 255, 255, 0.9);
  color: #c50806;
  border: 2px solid #c50806;
  border-radius: 50%;
  font-size: 22px;
  z-index: 10;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-btn:hover {
  background: #c50806;
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

.slider-dots {
  display: none;
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 14px;
  height: 14px;
  background: #fff;
  border: 3px solid #c50806;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.dot.active {
  background: #c50806;
  transform: scale(1.3);
}


@media screen and (max-width: 1200px) {

  .slider-wrapper .slider-btn { display: flex !important; }
  .slider-wrapper .slider-dots { display: flex; }


  .slider-wrapper .grid-1920.slider-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    gap: 0 !important;
  }


  .slider-wrapper .grid-1920.slider-track::-webkit-scrollbar {
    display: none !important;
  }


  .slider-wrapper .grid-1920.slider-track > * {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    scroll-snap-align: center;
  }

  .photo-grid.slider-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    gap: 0 !important;
  }


  .photo-grid.slider-track::-webkit-scrollbar {
    display: none !important;
  }


  .photo-card {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    scroll-snap-align: center;
  }
}


@media screen and (max-width: 768px) {
  .slider-wrapper .grid-1920.slider-track > * {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    scroll-snap-align: center;
  }
}

