@charset "UTF-8";
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Ссылки */
a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Общий */
aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Форма */
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type='submit'] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

body {
  background-color: #fff;
  font-family: Inter, sans-serif;
  color: #333331;
}

.container {
  max-width: 1356px;
  padding: 0 15px;
  margin: 0 auto;
}
@media (max-width: 1220px) {
  .container {
    max-width: 1170px;
  }
}
@media (max-width: 848px) {
  .container {
    max-width: 100%;
  }
}

.header {
  padding: 43px 0;
  background-color: #414141;
}
@media (max-width: 848px) {
  .header {
    padding: 10px 0;
  }
}

.header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 848px) {
  .header__nav {
    display: none;
  }
  .header {
    z-index: 1000;
    position: sticky;
    top: 0;
  }
}

.nav__list {
  display: flex;
  justify-content: space-between;
  gap: 176px;
}
@media (max-width: 1300px) {
  .nav__list {
    gap: 60px;
  }
}

.nav__item {
  font-size: 17px;
  line-height: 1.31765;
  text-align: center;
}
.nav__item a {
  color: #fff;
}

.header__mob-btn {
  display: none;
}
@media (max-width: 848px) {
  .header__mob-btn {
    display: block;
  }
}

.cta {
  margin-top: 45px;
}
@media (max-width: 848px) {
  .cta {
    margin-top: 20px;
  }
}

.cta-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 848px) {
  .cta-top {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

.cta-top__item-left {
  font-weight: 700;
  font-size: 13px;
  line-height: 1.39636;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
@media (max-width: 848px) {
  .cta-top__item-left {
    font-size: 12px;
    letter-spacing: 0.13em;
  }
}

.cta-top__item-right {
  font-size: 20px;
  line-height: 1.64404;
  color: #9ba0a4;
}
@media (max-width: 848px) {
  .cta-top__item-right {
    font-size: 9px;
    line-height: 3.73333;
  }
}

.slider {
  margin-top: 52px;
}
@media (max-width: 848px) {
  .slider {
    margin-top: 22px;
  }
}

.cta-bottom {
  margin-top: 55px;
  display: flex;
  gap: 65px;
  align-items: center;
}
@media (max-width: 848px) {
  .cta-bottom {
    margin-top: 20px;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
}

.cta-bottom__item-left {
  flex: 30%;
  font-weight: 700;
  font-size: 48px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
@media (max-width: 1220px) {
  .cta-bottom__item-left {
    flex: 50%;
  }
}
@media (max-width: 848px) {
  .cta-bottom__item-left {
    font-size: 18px;
    letter-spacing: 0.09em;
  }
}

.cta-bottom__item-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 18px;
}
.cta-bottom__item-right h2 {
  font-weight: 500;
  line-height: 1.06667;
  letter-spacing: 0.13em;
}
.cta-bottom__item-right h3 {
  line-height: 1.86667;
  color: #9ba0a4;
}
@media (max-width: 848px) {
  .cta-bottom__item-right {
    font-size: 12px;
  }
}

.catalog {
  margin-top: 127px;
}
@media (max-width: 848px) {
  .catalog {
    margin-top: 20px;
  }
}

.catalog__wrap {
  display: flex;
  gap: 260px;
}
@media (max-width: 1220px) {
  .catalog__wrap {
    gap: 30px;
  }
}
@media (max-width: 848px) {
  .catalog__wrap {
    gap: 20px;
    flex-direction: column;
  }
}

.catalog__text {
  flex: 50%;
}
.catalog__text h2 {
  font-weight: 700;
  font-size: 48px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.catalog__text p {
  margin-top: 16px;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.39636;
  letter-spacing: 0.12em;
}
@media (max-width: 848px) {
  .catalog__text h2 {
    font-size: 18px;
  }
  .catalog__text p {
    font-size: 12px;
  }
}

.catalog__items {
  display: flex;
  gap: 14px;
}
@media (max-width: 848px) {
  .catalog__items {
    justify-content: center;
  }
}

.catalog__items-colums {
  display: flex;
  gap: 14px;
}
@media (max-width: 848px) {
  .catalog__items-colums {
    gap: 10px;
  }
}
@media (max-width: 348px) {
  .catalog__items-colums {
    gap: 4px;
  }
}

.catalog__items-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (max-width: 848px) {
  .catalog__items-col {
    gap: 10px;
  }
}

.catalog__item {
  display: block;
  padding-left: 20px;
  border: 1px solid #d9d9d9;
  max-width: 230px;
  height: 90px;
  align-content: center;
  text-align: left;
  font-weight: 700;
  font-size: 14px;
  color: #333331;
  transition: all 0.2s ease-in;
}
.catalog__item:hover {
  background-color: #9ba0a4;
}
@media (max-width: 848px) {
  .catalog__item {
    max-width: 170px;
    height: 90px;
    font-size: 10px;
  }
}
@media (max-width: 348px) {
  .catalog__item {
    padding: 2px;
    text-align: center;
    font-size: 8px;
  }
}

.catalog__items-button {
  display: block;
  width: 230px;
  font-weight: 700;
  font-size: 14px;
  align-content: center;
  text-align: center;
  border: 1px solid #d9d9d9;
  color: #9ba0a4;
  transition: all 0.2s ease-in;
}
.catalog__items-button:hover {
  background-color: #9ba0a4;
  color: #333331;
}

.advantages {
  margin-top: 106px;
  padding: 46px 0px;
  background-color: #414141;
  color: #fff;
}
@media (max-width: 848px) {
  .advantages {
    margin-top: 34px;
    padding: 23px 0px;
  }
}

.advantages__title {
  font-weight: 700;
  font-size: 48px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
@media (max-width: 848px) {
  .advantages__title {
    font-size: 18px;
    letter-spacing: 0.09em;
  }
}

.advantages__items {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 144px;
}
@media (max-width: 1220px) {
  .advantages__items {
    gap: 50px;
    justify-content: center;
  }
}
@media (max-width: 848px) {
  .advantages__items {
    margin-top: 20px;
    gap: 10px;
    justify-content: flex-start;
  }
}

.advantages__item {
  padding: 22px 18px;
  width: 346px;
  height: 158px;
  border: 1px solid #747474;
}
.advantages__item h3 {
  font-weight: 700;
  font-size: 20px;
}
.advantages__item p {
  margin-top: 24px;
  font-size: 13px;
  color: #9ba0a4;
}
@media (max-width: 848px) {
  .advantages__item {
    padding: 16px 8px;
    width: 48%;
    height: auto;
  }
  .advantages__item h3 {
    font-size: 12px;
  }
  .advantages__item p {
    font-size: 10px;
  }
}

.products {
  margin-top: 57px;
}

.products__wrap {
  display: flex;
}
@media (max-width: 1220px) {
  .products__wrap {
    flex-direction: column;
    gap: 20px;
  }
}

.products__text {
  flex: 1;
}
.products__text h2 {
  font-weight: 700;
  font-size: 48px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.products__text p {
  margin-top: 38px;
  font-size: 18px;
  line-height: 1.86667;
  color: #9ba0a4;
}
.products__text p span {
  color: #333331;
}
@media (max-width: 848px) {
  .products__text h2 {
    font-size: 18px;
    letter-spacing: 0.09em;
  }
  .products__text p {
    margin-top: 14px;
    font-size: 12px;
    color: #333331;
  }
}

.products__items {
  display: flex;
  gap: 14px;
}
@media (max-width: 1220px) {
  .products__items {
    justify-content: center;
  }
}
@media (max-width: 848px) {
  .products__items {
    flex-wrap: wrap;
  }
}

.products__item {
  width: 40%;
}

.products__item-img {
  padding: 23px 0px;
  border: 1px solid #d9d9d9;
  border-bottom: none;
}

.products__item-name {
  padding: 9px 25px;
  font-size: 20px;
  line-height: 1.64404;
  text-align: center;
  color: #fff;
  background-color: #414141;
}
@media (max-width: 848px) {
  .products__item-name {
    padding: 6px;
    font-size: 12px;
  }
}

.qualities {
  margin-top: 159px;
}
@media (max-width: 848px) {
  .qualities {
    margin-top: 77px;
  }
}

.qualities__wrap {
  display: flex;
}
@media (max-width: 1220px) {
  .qualities__wrap {
    flex-direction: column;
  }
}

.qualities__content-title {
  width: 474px;
  font-weight: 700;
  font-size: 48px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
@media (max-width: 848px) {
  .qualities__content-title {
    width: 100%;
    font-size: 18px;
    letter-spacing: 0.09em;
  }
}

.qualities__content-text {
  margin-top: 32px;
  font-size: 18px;
  line-height: 1.86667;
}
.qualities__content-text p + p {
  margin-top: 39px;
}
.qualities__content-text span {
  color: #9ba0a4;
}
@media (max-width: 848px) {
  .qualities__content-text {
    margin-top: 24px;
    font-size: 12px;
  }
  .qualities__content-text p + p {
    margin-top: 14px;
  }
  .qualities__content-text span {
    color: #333331;
  }
}

.qualities__images {
  flex: 1 0 54%;
  display: flex;
  flex-direction: column;
  gap: 62px;
  position: relative;
}
@media (max-width: 1220px) {
  .qualities__images {
    flex: none;
    gap: 15px;
  }
}
@media (max-width: 848px) {
  .qualities__images {
    margin-top: 14px;
  }
}

.qualities__images-top,
.qualities__images-bottom {
  width: 480px;
  height: 180px;
}
@media (max-width: 1220px) {
  .qualities__images-top,
  .qualities__images-bottom {
    width: 100%;
    height: auto;
  }
  .qualities__images-top img,
  .qualities__images-bottom img {
    width: 100%;
  }
}

.qualities__images-top {
  margin-left: clamp(0px, 20vw, 235px);
}
@media (max-width: 1220px) {
  .qualities__images-top {
    margin-left: 0;
  }
}

.holding {
  margin-top: 64px;
}

.holding__wrap {
  display: flex;
  gap: 55px;
}
@media (max-width: 1220px) {
  .holding__wrap {
    flex-direction: column;
  }
}
@media (max-width: 848px) {
  .holding__wrap {
    gap: 25px;
  }
}

.holding__content-title {
  font-weight: 700;
  font-size: 48px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
@media (max-width: 848px) {
  .holding__content-title {
    font-size: 18px;
    letter-spacing: 0.09em;
  }
}

.holding__content-text {
  margin-top: 32px;
  font-size: 18px;
  line-height: 1.86667;
}
.holding__content-text p {
  margin-top: 39px;
  color: #9ba0a4;
}
@media (max-width: 848px) {
  .holding__content-text {
    margin-top: 24px;
    font-size: 12px;
  }
  .holding__content-text p {
    margin-top: 14px;
  }
}

.holding__items {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  gap: 57px;
}
@media (max-width: 1220px) {
  .holding__items {
    gap: 30px;
  }
}
@media (max-width: 848px) {
  .holding__items {
    flex-direction: column;
    gap: 10px;
  }
}

.holding__item {
  padding: 35px 15px 23px 25px;
  flex: 0 1 46%;
  border: 1px solid #d9d9d9;
}
@media (max-width: 1220px) {
  .holding__item {
    padding: 26px 15px 18px 20px;
  }
}

.holding__item-number {
  font-weight: 700;
  font-size: 48px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.holding__item-text {
  margin-top: 40px;
  font-size: 13px;
  line-height: 1.61441;
  letter-spacing: 0.06em;
  color: #9ba0a4;
}
@media (max-width: 1220px) {
  .holding__item-text {
    margin-top: 30px;
  }
}

.more {
  margin-top: 91px;
}
@media (max-width: 848px) {
  .more {
    margin-top: 44px;
  }
}

.more__wrap {
  display: flex;
  gap: 51px;
}
@media (max-width: 1220px) {
  .more__wrap {
    gap: 25px;
  }
}
@media (max-width: 848px) {
  .more__wrap {
    flex-direction: column;
  }
}

.more__content-title {
  font-weight: 700;
  font-size: 48px;
  line-height: 1.125;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
@media (max-width: 1220px) {
  .more__content-title {
    font-size: 40px;
  }
}
@media (max-width: 848px) {
  .more__content-title {
    font-size: 18px;
  }
}

.more__content-text {
  margin-top: 30px;
  font-size: 18px;
  line-height: 1.86667;
}
@media (max-width: 848px) {
  .more__content-text {
    margin-top: 20px;
    font-size: 12px;
  }
}

.more__items {
  display: flex;
  flex: 1 0 50%;
  gap: 44px;
  flex-direction: column;
}
@media (max-width: 1220px) {
  .more__items {
    gap: 34px;
  }
}
@media (max-width: 848px) {
  .more__items {
    gap: 11px;
  }
}

.more__items-row {
  display: flex;
  gap: 44px;
}
@media (max-width: 1220px) {
  .more__items-row {
    gap: 34px;
  }
}
@media (max-width: 848px) {
  .more__items-row {
    gap: 11px;
  }
}

.more__item {
  display: block;
  padding: 28px 0px 0px 25px;
  width: 338px;
  height: 200px;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.05em;
  border: 1px solid #d9d9d9;
  color: #333331;
  transition: all 0.2s ease-in;
}
.more__item:hover {
  background-color: #9ba0a4;
}
@media (max-width: 1220px) {
  .more__item {
    padding: 15px 0px 0px 15px;
    width: 230px;
    height: 165px;
    font-size: 19px;
  }
}
@media (max-width: 848px) {
  .more__item {
    width: 170px;
    height: 60px;
    font-size: 12px;
  }
}

.footer {
  margin-top: 81px;
  padding: 25px 0px;
  background-color: #414141;
}
@media (max-width: 848px) {
  .footer {
    display: none;
  }
}

.footer__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1220px) {
  .footer__wrap {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

.footer__nav {
  display: flex;
  gap: 44px;
  font-size: 17px;
  line-height: 1.23529;
}
.footer__nav a {
  color: #fff;
}

.footer__contacts {
  font-size: 17px;
  line-height: 1.23529;
  color: #fff;
  text-align: left;
}
.footer__contacts a {
  color: #fff;
}
@media (max-width: 1220px) {
  .footer__contacts {
    padding-left: 30px;
  }
}

.contacts__tel {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contacts__location,
.contacts__tel,
.contacts__email {
  position: relative;
}

.contacts__location::before {
  content: '';
  background-image: url('../image/location.png');
  background-repeat: no-repeat;
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 999;
  top: 10px;
  left: -30px;
}

.contacts__tel::before {
  content: '';
  background-image: url('../image/phone.png');
  background-repeat: no-repeat;
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 999;
  top: 0px;
  left: -30px;
}

.contacts__email::before {
  content: '';
  background-image: url('../image/email.png');
  background-repeat: no-repeat;
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 999;
  top: 3px;
  left: -30px;
}

.footer-mob {
  display: none;
}
@media (max-width: 848px) {
  .footer-mob {
    display: block;
  }
}

.footer-mob__top-row {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #414141;
}

@media (max-width: 848px) {
  .footer-mob__top-row {
    padding: 8px 10px;
  }
}

.footer-mob__nav {
  display: flex;
  gap: 40px;
  font-size: 14px;
  line-height: 1.5;
}

.footer-mob__nav-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__nav-item {
  color: #fff;
}

.footer-mob__bottom-row {
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
}

.footer-mob__contacts a {
  color: #333331;
}
.footer-mob__contacts p + p {
  margin-top: 5px;
}

.footer-mob__contacts-tel,
.footer-mob__contacts-email,
.footer-mob__contacts-location {
  position: relative;
  padding-left: 6px;
}

.footer-mob__contacts-tel {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-mob__contacts-tel::before {
  content: '';
  background-image: url('../image/mob-phone.png');
  background-repeat: no-repeat;
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 999;
  top: 1px;
  left: -14px;
}

.footer-mob__contacts-email::before {
  content: '';
  background-image: url('../image/mob-email.png');
  background-repeat: no-repeat;
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 999;
  top: 4px;
  left: -14px;
}

.footer-mob__contacts-location::before {
  content: '';
  background-image: url('../image/mob-location.png');
  background-repeat: no-repeat;
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 999;
  top: 11px;
  left: -14px;
}

.brand {
  margin-top: 91px;
}
@media (max-width: 848px) {
  .brand {
    margin-top: 44px;
  }
}

.brand__wrap {
  display: flex;
  gap: 100px;
}
@media (max-width: 1220px) {
  .brand__wrap {
    gap: 25px;
  }
}
@media (max-width: 848px) {
  .brand__wrap {
    flex-direction: column;
  }
}

.brand__content-title {
  font-weight: 700;
  font-size: 48px;
  line-height: 1.125;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
@media (max-width: 848px) {
  .brand__content-title {
    font-size: 18px;
  }
}

.brand__content-text {
  margin-top: 30px;
  font-size: 18px;
  line-height: 1.86667;
}
.brand__content-text p {
  margin-top: 16px;
  color: #9ba0a4;
}

/* Стили для адресов в секции бренда */
.brand__addresses {
  margin-top: 20px;
}

.address-item {
  margin-bottom: 15px;
}

.address-item:last-child {
  margin-bottom: 0;
}

.address-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: #333331;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.address-item p {
  font-size: 14px;
  color: #9ba0a4;
  margin: 0;
}

/* Стили для контактов в секции бренда */
.brand__contacts {
  margin-top: 25px;
}

.brand__contacts h4 {
  font-size: 16px;
  font-weight: 600;
  color: #333331;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.brand__contacts .contact-tel-item {
  margin-bottom: 12px;
}

.brand__contacts .contact-tel-item:last-child {
  margin-bottom: 0;
}

.brand__contacts .contact-tel-item h5 {
  font-size: 14px;
  font-weight: 500;
  color: #333331;
  margin-bottom: 3px;
}

.brand__contacts .contact-tel-item a {
  font-size: 16px;
  font-weight: 700;
  color: #333331;
  text-decoration: none;
}

.brand__contacts .contact-tel-item a:hover {
  color: #666;
}

/* Стили для списка компаний */
.company-list {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.company-item {
  flex: 1 1 calc(33.333% - 14px);
  min-width: 300px;
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 6px;
  border-left: 3px solid #007bff;
  margin-bottom: 0;
}

.company-name {
  font-size: 16px;
  font-weight: 700;
  color: #333331;
  margin-bottom: 12px;
  text-transform: uppercase;
  border-bottom: 1px solid #007bff;
  padding-bottom: 6px;
}

.company-item .brand__addresses {
  margin-top: 10px;
}

.company-item .address-item {
  margin-bottom: 8px;
}

.company-item .address-item h5 {
  font-size: 12px;
  font-weight: 600;
  color: #333331;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.company-item .address-item p {
  font-size: 11px;
  color: #666;
  margin: 0;
}

.company-item .brand__contacts {
  margin-top: 12px;
}

.company-item .brand__contacts h5 {
  font-size: 12px;
  font-weight: 600;
  color: #333331;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.company-item .contact-tel-item {
  margin-bottom: 6px;
}

.company-item .contact-tel-item h6 {
  font-size: 11px;
  font-weight: 500;
  color: #333331;
  margin-bottom: 2px;
}

.company-item .contact-tel-item a {
  font-size: 13px;
  font-weight: 700;
  color: #007bff;
  text-decoration: none;
}

.company-item .contact-tel-item a:hover {
  color: #0056b3;
}

.contact-email-item {
  margin-bottom: 6px;
}

.contact-email-item h6 {
  font-size: 11px;
  font-weight: 500;
  color: #333331;
  margin-bottom: 2px;
}

.contact-email-item a {
  font-size: 13px;
  font-weight: 700;
  color: #007bff;
  text-decoration: none;
}

.contact-email-item a:hover {
  color: #0056b3;
}

@media (max-width: 848px) {
  .brand__content-text {
    margin-top: 20px;
    font-size: 12px;
  }
  .brand__content-text p {
    margin-top: 10px;
  }

  /* Адаптивность для адресов */
  .brand__addresses {
    margin-top: 15px;
  }

  .address-item {
    margin-bottom: 10px;
  }

  .address-item h4 {
    font-size: 14px;
    margin-bottom: 3px;
  }

  .address-item p {
    font-size: 12px;
  }

  /* Адаптивность для контактов */
  .brand__contacts {
    margin-top: 20px;
  }

  .brand__contacts h4 {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .brand__contacts .contact-tel-item {
    margin-bottom: 8px;
  }

  .brand__contacts .contact-tel-item h5 {
    font-size: 12px;
  }

  .brand__contacts .contact-tel-item a {
    font-size: 14px;
  }

  /* Адаптивность для списка компаний */
  .company-list {
    margin-top: 20px;
  }

  .company-item {
    margin-bottom: 25px;
    padding: 15px;
  }

  .company-name {
    font-size: 16px;
    margin-bottom: 15px;
    padding-bottom: 8px;
  }

  .company-item .brand__addresses {
    margin-top: 12px;
  }

  .company-item .address-item {
    margin-bottom: 8px;
  }

  .company-item .address-item h5 {
    font-size: 12px;
    margin-bottom: 3px;
  }

  .company-item .address-item p {
    font-size: 11px;
  }

  .company-item .brand__contacts {
    margin-top: 15px;
  }

  .company-item .brand__contacts h5 {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .company-item .contact-tel-item {
    margin-bottom: 6px;
  }

  .company-item .contact-tel-item h6 {
    font-size: 11px;
  }

  .company-item .contact-tel-item a {
    font-size: 13px;
  }

  .contact-email-item {
    margin-bottom: 6px;
  }

  .contact-email-item h6 {
    font-size: 11px;
  }

  .contact-email-item a {
    font-size: 13px;
  }
}

.brand__map {
  flex: 1 0 54%;
  height: 344px;
}

/* Стили для секции компаний */
.companies {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.companies__wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.companies__title {
  text-align: center;
  margin-bottom: 50px;
}

.companies__title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #333331;
  text-transform: uppercase;
}

@media (max-width: 848px) {
  .companies {
    padding: 40px 0;
  }

  .companies__title {
    margin-bottom: 30px;
  }

  .companies__title h2 {
    font-size: 24px;
  }

  .company-list {
    gap: 15px;
  }

  .company-item {
    flex: 1 1 calc(50% - 7.5px);
    min-width: 280px;
  }
}

@media (max-width: 600px) {
  .company-item {
    flex: 1 1 100%;
    min-width: 100%;
  }
}
/* Мобильное меню */
.mobile-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 1000; /* Важно: должен быть выше, чем у Swiper */
  background: #fff;
  overflow-y: auto;
  transition: transform 1s ease;
  transform: translateX(-100%);
}

.mobile-nav[style*='display: flex'] {
  transform: translateX(0);
}

.mobile-nav__header {
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #414141;
}

.mobile-nav__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 50px;
  background-color: #fff;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
}

.mobile-nav__item {
  padding: 35px 15px;
  font-size: 18px;
  line-height: 1.24444;
  color: #333331;
  border-bottom: 1px solid #d9d9d9;
}
.mobile-nav__item:last-child {
  border-bottom: none;
}

.mobile-nav__contacts {
  padding: 10px 5px 10px 30px;
  font-size: 12px;
  border-top: 1px solid #d9d9d9;
}
.mobile-nav__contacts p a {
  color: #333331;
}

.mobile-nav__contacts-tel {
  margin-top: 15px;
}

/* Когда меню открыто - скрываем Swiper */
body.mobile-menu-open .swiper-container {
  visibility: hidden !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease;
}
/* Фикс для body при открытом меню */
body.mobile-menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}
swiper-container::part(scrollbar) {
  cursor: pointer;
}

/* Для draggable-части скроллбара */
swiper-container::part(scrollbar-drag) {
  cursor: pointer;
}

/* Стили для новых элементов телефонов */
.contact-tel-item {
  margin-bottom: 15px;
}

.contact-tel-item:last-child {
  margin-bottom: 0;
}

.contact-tel-item h4 {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.contact-tel-item a {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.contact-tel-item a:hover {
  color: #666;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 848px) {
  .contact-tel-item h4 {
    font-size: 12px;
    margin-bottom: 3px;
    color: #333331;
  }

  .contact-tel-item a {
    font-size: 14px;
    color: #333331;
  }

  .contact-tel-item {
    margin-bottom: 10px;
  }
}
