@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --font-family: "Inter Tight", sans-serif; }
/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0; }

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

:focus, :active {
  outline: none; }

a:focus, a:active {
  outline: none; }

nav, footer, header, aside {
  display: block; }

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

input, button, textarea {
  font-family: inherit; }

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

button {
  cursor: pointer; }

p {
  margin-bottom: 0; }

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

a, a:visited {
  text-decoration: none !important; }

a:hover {
  text-decoration: none; }

p {
  margin-bottom: 0; }

img {
  vertical-align: top; }

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: 400; }
/*--------------------*/
html {
  scroll-behavior: smooth; }

body {
  background: #fff;
  color: #151515;
  height: 100%;
  font-size: 16px;
  font-family: var(--font-family); }
  body.hidden {
    overflow: hidden; }

.wrapper {
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column; }

.page {
  flex: 1 0 auto;
  margin-top: 64px; }

._container {
  max-width: 1246px;
  padding: 0 15px;
  margin: 0 auto; }

.button, .contactModal__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 17px;
  text-align: center;
  color: #fff;
  line-height: 1.2;
  padding: 15px;
  min-width: 225px;
  background: #727271;
  transition: 0.5s;
  border: 1px solid transparent; }
  @media (max-width: 480px) {
  .button, .contactModal__submit {
    font-size: 15px;
    padding: 12px;
    min-width: 200px; } }
  .button.button--sm, .contactModal__submit.button--sm {
    padding: 10px;
    font-size: 15px;
    min-width: 175px; }
  .button.button--white, .contactModal__submit.button--white {
    color: #727271;
    background-color: #fff; }
    .button.button--white:hover, .contactModal__submit.button--white:hover {
      background-color: #727271;
      border-color: transparent;
      color: #fff; }
  .button:hover, .contactModal__submit:hover {
    border-color: #727271;
    color: #727271;
    background-color: transparent; }

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
  padding: 10px 0;
  background: #fff;
  border-bottom: 1px solid #e9e9e9; }
  .header__body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px; }
  .header__items {
    display: flex;
    align-items: center;
    column-gap: 20px;
    flex-wrap: wrap;
    row-gap: 5px; }
  .header__item {
    font-weight: 400;
    font-size: 16px;
    color: #151515;
    line-height: 1.2;
    transition: 0.5s;
    display: flex;
    align-items: center;
    column-gap: 10px;
    cursor: pointer;
    position: relative; }
    .header__item:hover {
      color: #727271;
      padding-bottom: 5px; }
    .header__item--dropdown:hover .header__dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0); }
  .header__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100; }
  .header__dropdown-list {
    padding: 8px 0;
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    margin-top: 10px; }
  .header__dropdown-item {
    list-style: none; }
  .header__dropdown-link {
    display: block;
    padding: 10px 20px;
    font-weight: 400;
    font-size: 15px;
    color: #151515;
    line-height: 1.2;
    transition: 0.3s; }
    .header__dropdown-link:hover {
      background-color: #f5f5f5;
      color: #727271; }
  .header__right {
    display: flex;
    align-items: center;
    column-gap: 25px; }
  .header__langs {
    display: flex;
    align-items: center;
    column-gap: 18px; }
  .header__lang {
    font-weight: 400;
    font-size: 15px;
    letter-spacing: -0.05em;
    color: #151515;
    position: relative; }
    .header__lang:not(:last-child)::after {
      content: "/";
      display: block;
      position: absolute;
      right: -11px;
      top: 0;
      font-weight: 400;
      font-size: 15px;
      letter-spacing: -0.05em;
      color: #c4c4c4; }
    .header__lang.active {
      color: #cecece; }
  .header__mobile {
    display: none; }
    @media (max-width: 991px) {
  .header__mobile {
    display: flex;
    align-items: center;
    column-gap: 15px; } }
  .header__burger {
    display: block;
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
    z-index: 101; }
  .header__mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease; }
    .header__mobile-menu.active {
      opacity: 1;
      visibility: visible; }
  .header__mobile-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px); }
  .header__mobile-menu-content {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: #fff;
    padding: 20px 20px 120px;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto; }
  .header__mobile-menu.active .header__mobile-menu-content {
    transform: translateX(0); }
  .header__mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
    color: #151515;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s; }
    .header__mobile-menu-close:hover {
      color: #727271; }
  .header__mobile-nav {
    flex: 1;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 10px; }
  .header__mobile-item {
    font-weight: 400;
    font-size: 18px;
    color: #151515;
    line-height: 1.2;
    padding: 15px 0;
    border-bottom: 1px solid #e9e9e9;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    column-gap: 10px;
    text-decoration: none; }
    .header__mobile-item:hover {
      color: #727271; }
    .header__mobile-item--dropdown {
      border-bottom: none;
      padding: 0;
      display: flex;
      flex-direction: column; }
  .header__mobile-item-header {
    display: flex;
    align-items: center;
    column-gap: 10px;
    padding: 15px 0;
    border-bottom: 1px solid #e9e9e9;
    cursor: pointer;
    width: 100%;
    font-weight: 400;
    font-size: 18px;
    color: #151515; }
  .header__mobile-item-arrow {
    margin-left: auto;
    transition: transform 0.3s; }
    .header__mobile-item--dropdown.active .header__mobile-item-arrow {
      transform: rotate(180deg); }
  .header__mobile-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease; }
    .header__mobile-item--dropdown.active .header__mobile-dropdown {
      max-height: 500px; }
  .header__mobile-dropdown-item {
    list-style: none; }
  .header__mobile-dropdown-link {
    display: block;
    padding: 12px 0;
    font-weight: 400;
    font-size: 16px;
    color: #727271;
    line-height: 1.2;
    transition: color 0.3s;
    text-decoration: none;
    border-bottom: 1px solid #f5f5f5; }
    .header__mobile-dropdown-link:hover {
      color: #151515; }
  .header__mobile-footer {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid #e9e9e9;
    display: flex;
    flex-direction: column;
    gap: 20px; }
  .header__mobile-langs {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 18px; }
  .header__mobile-lang {
    font-weight: 400;
    font-size: 15px;
    letter-spacing: -0.05em;
    color: #151515;
    position: relative;
    text-decoration: none; }
    .header__mobile-lang:not(:last-child)::after {
      content: "/";
      display: block;
      position: absolute;
      right: -11px;
      top: 0;
      font-weight: 400;
      font-size: 15px;
      letter-spacing: -0.05em;
      color: #c4c4c4; }
    .header__mobile-lang.active {
      color: #cecece; }
  .header__mobile-search {
    display: flex;
    align-items: center;
    justify-content: center; }
  .header__mobile-button {
    width: 100%; }
  @media (max-width: 991px) {
  .header__items {
    display: none; }
  .header__right {
    display: none; } }

.footer {
  background: #727271;
  padding: 50px 0 30px; }
  @media (max-width: 480px) {
  .footer {
    padding: 30px 0 20px; } }
  .footer__body {
    display: flex;
    align-items: start;
    justify-content: space-between;
    column-gap: 50px; }
    @media (max-width: 767px) {
  .footer__body {
    flex-direction: column;
    align-items: start;
    row-gap: 30px; } }
  @media (max-width: 480px) {
      .footer__logo img {
        width: 100px; } }
  .footer__content {
    display: flex;
    column-gap: 80px; }
    @media (max-width: 992px) {
  .footer__content {
    flex-wrap: wrap;
    column-gap: 40px;
    row-gap: 30px; } }
    @media (max-width: 480px) {
  .footer__content {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    column-gap: 20px; } }
  .footer__top-top img {
    transition: 0.5s; }
    .footer__top-top img:hover {
      transform: scale(1.1); }
  .footer__foot {
    display: flex;
    align-items: center;
    gap: 5px;
    padding-top: 24px;
    border-top: 1px solid #929292;
    margin-top: 50px; }
    @media (max-width: 480px) {
  .footer__foot {
    margin-top: 30px;
    padding-top: 15px; } }
    .footer__foot span {
      font-weight: 300;
      font-size: 14px;
      line-height: 120%;
      color: #fff; }
    @media (max-width: 480px) {
    .footer__foot span {
      font-size: 12px; } }
    .footer__foot a {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 2px; }

.nav-footer__title {
  font-weight: 500;
  font-size: 17px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.2; }
  @media (max-width: 480px) {
    .nav-footer__title {
      font-size: 14px;
      margin-bottom: 10px; } }
  .nav-footer__items {
    display: flex;
    flex-direction: column;
    row-gap: 10px; }
  @media (max-width: 480px) {
    .nav-footer__items {
      row-gap: 5px; } }
  .nav-footer__item {
    font-weight: 300;
    font-size: 17px;
    color: #eee;
    line-height: 1.2;
    transition: 0.5s; }
  @media (max-width: 480px) {
    .nav-footer__item {
      font-size: 14px; } }
  .nav-footer__socials {
    margin-top: 24px;
    display: flex;
    column-gap: 10px; }
  @media (max-width: 480px) {
    .nav-footer__socials {
      margin-top: 15px;
      column-gap: 5px; } }
  .nav-footer__social {
    transition: 0.5s; }
  .nav-footer__social:hover {
    transform: scale(1.1); }
  .nav-footer__social img {
    width: 34px;
    height: 34px; }

section {
  margin-top: 70px; }
  @media (max-width: 480px) {
  section {
    margin-top: 50px; } }

.banner {
  height: calc(100vh - 64px);
  margin-top: 0;
  position: relative; }
  .banner::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(28, 28, 28, 0.55); }
  .banner__container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1; }
  .banner__title {
    font-weight: 500;
    font-size: 78px;
    line-height: 115%;
    color: #fff;
    max-width: 600px;
    margin-bottom: 25px; }
  @media (max-width: 480px) {
    .banner__title {
      font-size: 40px;
      margin-bottom: 15px; } }
  .banner__text {
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: #fff;
    margin-bottom: 30px;
    max-width: 445px; }
  @media (max-width: 480px) {
    .banner__text {
      font-size: 16px;
      margin-bottom: 20px; } }
  .banner__images {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    overflow: hidden; }
  @media (max-width: 480px) {
    .banner__images {
      grid-template-columns: 1fr 1fr; } }
  .banner__image img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

.title {
  font-weight: 500;
  font-size: 50px;
  line-height: 120%;
  color: #151515;
  margin-bottom: 40px; }
  @media (max-width: 480px) {
  .title {
    font-size: 28px;
    margin-bottom: 25px; } }
  .title.title--bordered {
    padding-bottom: 25px;
    margin-bottom: 30px;
    border-bottom: 1px solid #d9d9d9; }

.cats__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px; }
  @media (max-width: 992px) {
    .cats__items {
      grid-template-columns: 1fr 1fr;
      gap: 20px; } }
  @media (max-width: 600px) {
    .cats__items {
      grid-template-columns: 1fr;
      gap: 15px; } }
  .item-cats {
    position: relative; }
  .item-cats:hover .item-cats__image img {
    transform: scale(1.1); }
  .item-cats__image {
    position: relative;
    overflow: hidden;
    padding-bottom: 90%;
    display: block; }
  @media (max-width: 480px) {
    .item-cats__image {
      padding-bottom: 70%; } }
  .item-cats__image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s; }
  .item-cats__bottom {
    position: absolute;
    left: 17px;
    right: 17px;
    bottom: 20px;
    display: flex;
    align-items: flex-end;
    column-gap: 10px; }
  @media (max-width: 480px) {
    .item-cats__bottom {
      left: 10px;
      right: 10px;
      bottom: 10px; } }
  .item-cats__title {
    flex-grow: 1;
    min-height: 60px;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.38);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5px 10px;
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    color: #fff; }
  @media (max-width: 480px) {
    .item-cats__title {
      font-size: 16px; } }
  .item-cats__arrow {
    width: 33px;
    height: 33px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; }

.advantages__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px; }
  @media (max-width: 992px) {
    .advantages__items {
      grid-template-columns: 1fr 1fr;
      gap: 20px; } }
  @media (max-width: 600px) {
    .advantages__items {
      grid-template-columns: 1fr;
      gap: 15px; } }
  .advantage {
    padding: 60px 40px 40px;
    background: #f0f0f0;
    transition: 0.5s;
    cursor: pointer; }
  @media (max-width: 480px) {
  .advantage {
    padding: 30px 20px 20px; } }
  .advantage:hover {
    background: #727271; }
  .advantage:hover .advantage__icon {
    background-color: #fff; }
  .advantage:hover .advantage__icon svg path[stroke] {
    stroke: #727271; }
    .advantage:hover .advantage__icon svg path[fill] {
      fill: #727271; }
  .advantage:hover .advantage__title, .advantage:hover .advantage__text {
    color: #fff; }
  .advantage__icon {
    width: 77px;
    height: 77px;
    background: #727271;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border-radius: 50%;
    transition: 0.5s; }
  @media (max-width: 480px) {
    .advantage__icon {
      margin-bottom: 15px; } }
  .advantage__icon svg path {
    transition: 0.5s; }
  .advantage__title {
    font-weight: 500;
    font-size: 28px;
    line-height: 120%;
    color: #151515;
    margin-bottom: 20px;
    transition: 0.5s; }
  @media (max-width: 480px) {
    .advantage__title {
      font-size: 20px;
      margin-bottom: 15px; } }
  .advantage__text {
    font-weight: 300;
    font-size: 20px;
    line-height: 120%;
    color: #777;
    transition: 0.5s; }
  @media (max-width: 480px) {
    .advantage__text {
      font-size: 16px; } }

.info.info--form .info__content {
  width: 656px; }
  @media (max-width: 767px) {
      .info.info--form .info__content {
        width: auto; } }
  .info__body {
    height: 607px;
    position: relative; }
  @media (max-width: 480px) {
    .info__body {
      height: 500px; } }
  .info__image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; }
  .info__image img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .info__content {
    position: absolute;
    left: 20px;
    bottom: 20px;
    width: 625px;
    padding: 40px;
    backdrop-filter: blur(44px);
    background: rgba(0, 0, 0, 0.2); }
  @media (max-width: 767px) {
    .info__content {
      width: auto;
      right: 20px; } }
  @media (max-width: 480px) {
    .info__content {
      left: 10px;
      bottom: 10px;
      right: 10px;
      padding: 20px; } }
  .info__title {
    font-weight: 500;
    font-size: 50px;
    line-height: 120%;
    color: #fff;
    margin-bottom: 18px; }
  @media (max-width: 480px) {
    .info__title {
      font-size: 28px;
      margin-bottom: 12px; } }
  .info__text {
    font-weight: 400;
    font-size: 22px;
    line-height: 118%;
    color: #fff;
    margin-bottom: 25px; }
  @media (max-width: 480px) {
    .info__text {
      font-size: 16px;
      margin-bottom: 15px; } }
  .info__types {
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.7);
    max-width: 420px;
    width: 100%;
    padding-right: 20px; }
  @media (max-width: 480px) {
    .info__types {
      padding-right: 15px;
      margin-bottom: 15px; } }
  .info__types select {
    font-family: var(--font-family);
    background-color: transparent;
    font-weight: 400;
    font-size: 17px;
    color: #151515;
    line-height: 1.2;
    width: 100%;
    padding: 15px 20px; }
  @media (max-width: 480px) {
      .info__types select {
        font-size: 14px;
        padding: 12px 15px; } }
  @media (max-width: 480px) {
    .info__types {
      margin-bottom: 15px; } }
  .info__button {
    min-width: 180px; }

.charters__item {
  display: block;
  position: relative;
  overflow: hidden;
  padding-bottom: 144%;
  border: 7px solid #000; }
  @media (max-width: 480px) {
    .charters__item {
      border-width: 5px; } }
  .charters__item img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .swiper-pagination-bullets {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    column-gap: 20px; }
  @media (max-width: 480px) {
  .swiper-pagination-bullets {
    margin-top: 25px; } }
  .swiper-pagination-bullets.swiper-pagination-lock {
    display: none; }
  .swiper-pagination-bullets .swiper-pagination-bullet {
    background-color: #151515;
    transition: 0.5s; }

.item-projects {
  position: relative; }
  .item-projects:hover .item-projects__image img {
    transform: scale(1.1); }
  .item-projects__image {
    position: relative;
    overflow: hidden;
    padding-bottom: 90%;
    display: block; }
  @media (max-width: 480px) {
    .item-projects__image {
      padding-bottom: 70%; } }
  .item-projects__image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s; }
  .item-projects__bottom {
    position: absolute;
    left: 17px;
    right: 17px;
    bottom: 20px;
    display: flex;
    align-items: flex-end;
    column-gap: 10px; }
  @media (max-width: 480px) {
    .item-projects__bottom {
      left: 10px;
      right: 10px;
      bottom: 10px; } }
  .item-projects__title {
    flex-grow: 1;
    min-height: 60px;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.38);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5px 10px;
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    color: #fff; }
  @media (max-width: 480px) {
    .item-projects__title {
      font-size: 16px; } }
  .item-projects__arrow {
    width: 33px;
    height: 33px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; }

.partners__item {
  height: 114px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px; }
  @media (max-width: 480p) {
    .partners__item {
      height: 90px; } }
  .partners__item img {
    max-width: 100%;
    max-height: 100%; }
  .breads {
    margin: 30px 0 50px; }
  .breads__items {
    display: flex;
    align-items: center;
    column-gap: 20px;
    flex-wrap: wrap;
    row-gap: 10px; }
  .breads__item {
    font-weight: 300;
    font-size: 14px;
    line-height: 120%;
    color: #151515;
    position: relative; }
  .breads__item:not(:last-child)::after {
    content: "/";
    display: block;
    position: absolute;
    top: 0;
    right: -13px;
    font-weight: 300;
    font-size: 14px;
    line-height: 120%;
    color: #afafaf; }
  .breads__item:last-child {
    color: #818181; }

.block.block--reverse .block__body {
  flex-direction: row-reverse; }
  @media (max-width: 992px) {
      .block.block--reverse .block__body {
        flex-direction: column; } }
  .block__body {
    display: flex;
    align-items: center;
    margin: 0 -50px; }
  @media (max-width: 992px) {
    .block__body {
      flex-direction: column;
      align-items: start;
      row-gap: 30px; } }
  @media (max-width: 480px) {
    .block__body {
      row-gap: 20px; } }
  .block__image {
    flex: 0 0 50%;
    padding: 0 50px; }
  @media (max-width: 992px) {
    .block__image {
      max-width: 500px; } }
  .block__image img {
    width: 100%; }
  .block__content {
    flex: 1 1 50%;
    padding: 0 50px; }
  .block__title {
    margin-bottom: 30px; }
  @media (max-width: 480px) {
    .block__title {
      margin-bottom: 15px; } }
  .block__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 156%;
    color: #777;
    display: flex;
    flex-direction: column;
    row-gap: 10px; }
  @media (max-width: 480px) {
    .block__text {
      font-size: 14px; } }
  .block__text strong {
    color: #333;
    font-weight: 600; }

.projects-page__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px; }
  @media (max-width: 992px) {
    .projects-page__items {
      grid-template-columns: 1fr 1fr;
      gap: 20px; } }
  @media (max-width: 650px) {
    .projects-page__items {
      grid-template-columns: 1fr;
      gap: 15px; } }

.docs__body {
  display: grid;
  grid-template-columns: 263px 1fr;
  align-items: start;
  gap: 50px; }
  @media (max-width: 992px) {
    .docs__body {
      grid-template-columns: 1fr;
      gap: 20px; } }
  .docs__categories {
    padding: 20px 10px;
    background-color: #f0f0f0;
    display: flex;
    flex-direction: column; }
  .docs__category {
    font-weight: 400;
    font-size: 16px;
    color: #151515;
    line-height: 1.2;
    padding: 10px;
    transition: 0.5s;
    cursor: pointer; }
  .docs__category.active {
    background-color: #151515;
    color: #fff; }
  .docs__items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px; }
  @media (max-width: 1200px) {
    .docs__items {
      grid-template-columns: 1fr 1fr; } }
  @media (max-width: 480px) {
    .docs__items {
      grid-template-columns: 1fr;
      gap: 20px; } }
  .docs__items-4 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 32px; }
  @media (max-width: 1200px) {
  .docs__items-4 {
    grid-template-columns: 1fr 1fr 1fr; } }
  @media (max-width: 992px) {
  .docs__items-4 {
    grid-template-columns: 1fr 1fr; } }
  @media (max-width: 480px) {
  .docs__items-4 {
    grid-template-columns: 1fr;
    gap: 20px; } }

.item-docs {
  padding: 30px 25px;
  border: 1px solid #d7d7d7;
  display: none; }
  .item-docs.active {
    display: flex;
    flex-direction: column; }
  .item-docs__icon {
    margin-bottom: 20px; }
  .item-docs__title {
    font-weight: 400;
    font-size: 20px;
    color: #151515;
    margin-bottom: 20px;
    line-height: 1.2;
    flex-grow: 1; }
  .item-docs__actions {
    display: flex;
    column-gap: 23px;
    row-gap: 10px;
    flex-wrap: wrap; }
  .item-docs__action {
    display: flex;
    align-items: center;
    column-gap: 8px;
    cursor: pointer; }
  .item-docs__action span {
    font-weight: 400;
    font-size: 17px;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #151515; }

.contacts__body {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 50px; }
  @media (max-width: 992px) {
    .contacts__body {
      grid-template-columns: 280px 1fr;
      gap: 20px; } }
  @media (max-width: 767px) {
    .contacts__body {
      grid-template-columns: 1fr; } }
  .contacts__items {
    padding: 45px 30px;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    border: 1px solid #e4e4e4; }
  @media (max-width: 480px) {
    .contacts__items {
      padding: 30px 20px; } }
  .contacts__item:not(:last-child) {
    padding-bottom: 30px;
    border-bottom: 1px solid #e4e4e4; }
  @media (max-width: 767px) {
    .contacts__map {
      height: 380px; } }
  .contacts__map iframe, .contacts__map div {
    width: 100%;
    height: 100%; }

.contact__icon {
  margin-bottom: 15px; }
  .contact__title {
    font-weight: 300;
    font-size: 18px;
    line-height: 111%;
    color: #555;
    margin-bottom: 10px; }
  .contact__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 133%;
    color: #151515; }

@media (max-width: 480px) {
      .catalog__title {
        padding-bottom: 0 !important;
        border-bottom: none !important; } }
  .catalog__body {
    display: grid;
    grid-template-columns: 281px 1fr;
    gap: 32px;
    align-items: start; }
  @media (max-width: 992px) {
    .catalog__body {
      grid-template-columns: 250px 1fr;
      gap: 20px; } }
  @media (max-width: 767px) {
    .catalog__body {
      grid-template-columns: 1fr; } }
  .catalog__items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px; }
  @media (max-width: 992px) {
    .catalog__items {
      grid-template-columns: 1fr 1fr;
      gap: 20px; } }
  @media (max-width: 550px) {
    .catalog__items {
      grid-template-columns: 1fr; } }
  .categories-catalog {
    padding: 20px 0;
    background-color: #f0f0f0;
    display: flex;
    flex-direction: column; }
  .categories-catalog__item {
    font-weight: 400;
    font-size: 16px;
    color: #151515;
    line-height: 1.2;
    padding: 10px 20px;
    transition: 0.5s;
    cursor: pointer;
    position: relative; }
  .categories-catalog__item:last-child::after {
    display: none; }
  .categories-catalog__item::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background-color: #d9d9d9;
    transition: 0.5s; }
  .categories-catalog__item.active {
    background-color: #727271;
    color: #fff; }

.item-catalog {
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column; }
  .item-catalog__image {
    position: relative;
    overflow: hidden;
    display: block;
    padding-bottom: 80%; }
  .item-catalog__image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .item-catalog__content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 25px 13px; }
  .item-catalog__title {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #151515;
    margin-bottom: 10px; }
  .item-catalog__price {
    flex-grow: 1;
    font-weight: 300;
    font-size: 17px;
    line-height: 165%;
    color: #151515;
    margin-bottom: 18px; }
  .item-catalog__button {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #727271;
    padding: 10px;
    width: 100%;
    border: 1px solid #727271; }

.product__body {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px; }
  @media (max-width: 992px) {
    .product__body {
      display: flex;
      flex-direction: column-reverse; } }
  .product__content {
    padding: 40px 50px;
    background-color: #fff; }
  @media (max-width: 767px) {
    .product__content {
      padding: 30px 20px; } }
  @media (max-width: 480px) {
    .product__content {
      padding: 0;
      background-color: transparent; } }
  .product__title {
    font-weight: 500;
    font-size: 29px;
    line-height: 114%;
    color: #151515;
    margin-bottom: 20px; }
  @media (max-width: 480px) {
    .product__title {
      font-size: 20px;
      margin-bottom: 15px; } }
  .product__articul {
    font-weight: 400;
    font-size: 18px;
    color: #999;
    margin-bottom: 30px;
    line-height: 1.2; }
  @media (max-width: 480px) {
    .product__articul {
      font-size: 16px;
      margin-bottom: 20px; } }
  .product__images-wrapper {
    display: grid;
    grid-template-columns: 1fr 184px;
    gap: 20px; }
  @media (max-width: 767px) {
    .product__images-wrapper {
      grid-template-columns: 3fr 1fr; } }
  @media (max-width: 480px) {
    .product__images-wrapper {
      gap: 10px; } }
  .product__poster {
    position: relative;
    overflow: hidden;
    display: block;
    padding-bottom: 70%; }
  .product__poster img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .product__images {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    height: 100%;
    overflow-y: auto;
    max-height: 485px;
    overflow-y: auto; }
  @media (max-width: 480px) {
    .product__images {
      row-gap: 10px; } }
  .product__images::-webkit-scrollbar {
    width: 5px; }
  .product__images::-webkit-scrollbar-track {
    background: #f1f1f1; }
  .product__images::-webkit-scrollbar-thumb {
    background: #888; }
  .product__image {
    position: relative;
    overflow: hidden;
    display: block;
    padding-bottom: 80%; }
  .product__image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .product__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 133%;
    color: #777;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    margin-top: 40px;
    overflow-x: auto; }
  @media (max-width: 480px) {
    .product__text {
      margin-top: 20px;
      font-size: 14px; } }
  .product__text ul {
    display: flex;
    flex-direction: column;
    row-gap: 10px; }
  .product__text strong {
    color: #151515;
    font-weight: 500; }
  .product__text td {
    min-width: 150px; }

.tech-product {
  padding: 40px 20px;
  background-color: #fff;
  overflow: hidden; }
  @media (max-width: 480px) {
  .tech-product {
    padding: 20px 15px; } }
  .tech-product__title {
    font-weight: 400;
    font-size: 17px;
    color: #c4c4c4;
    line-height: 1.2;
    margin-bottom: 30px;
    position: relative; }
  @media (max-width: 480px) {
    .tech-product__title {
      font-size: 15px; } }
  .tech-product__title::after {
    content: "";
    display: block;
    position: absolute;
    left: -20px;
    right: -20px;
    bottom: -15px;
    height: 0.7px;
    background-color: #bababa; }
  .tech-product__items {
    display: flex;
    flex-direction: column;
    row-gap: 30px; }
  .tech-product__item {
    position: relative; }
  .tech-product__item::after {
    content: "";
    display: block;
    position: absolute;
    left: -20px;
    right: -20px;
    bottom: -15px;
    height: 0.7px;
    background-color: #bababa; }
  .tech-product__item-title {
    font-weight: 400;
    font-size: 17px;
    color: #777;
    margin-bottom: 10px; }
  @media (max-width: 480px) {
    .tech-product__item-title {
      font-size: 15px; } }
  .tech-product__item-text {
    font-weight: 500;
    font-size: 17px;
    color: #151515; }
  @media (max-width: 480px) {
    .tech-product__item-text {
      font-size: 15px; } }
  .tech-product__button {
    margin-top: 50px; }
  @media (max-width: 480px) {
    .tech-product__button {
      margin-top: 30px; } }

.highlight {
  color: #727271;
  /* Акцентный цвет (оранжевый промышленный) */ }
/* Сетка (Grid) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3 колонки */
  gap: 24px; }
/* Карточка */
.feature-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  transition: 0.5s;
  border: 1px solid #eee;
  background: #f0f0f0; }

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #727271; }
/* Оформление первой большой карточки */
.large-card {
  grid-row: span 2;
  /* Занимает 2 строки по высоте */ }

.card-desc {
  margin-bottom: 10px; }
/* Типографика карточек */
.card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  width: 77px;
  height: 77px;
  border-radius: 300px;
  background: #727271;
  display: flex;
  align-items: center;
  justify-content: center; }

.vorbex-features h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 700; }
  .vorbex-features p, .vorbex-features li {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555; }
/* Мини-список в карточке качества */
.mini-list {
  padding-left: 20px;
  margin-top: 10px; }
/* --- АДАПТИВНОСТЬ (Mobile) --- */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2 колонки на планшете */ }

  .large-card {
    grid-column: span 2;
    /* Все еще широкий */
    grid-row: auto; } }

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
    /* 1 колонка на телефоне */ }

  .large-card {
    grid-column: span 1; } }

.services-section {
  background-color: #1a1a1a;
  /* Темный фон */
  color: #fff;
  /* Белый текст */
  padding: 80px 20px; }

.container {
  max-width: 1280px;
  margin: 0 auto; }
/* Заголовок и описание */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto; }

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff; }

.section-intro {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #b0b0b0;
  /* Серый текст описания */ }
/* Сетка (GRID) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  align-items: start; }
/* Карточка услуги */
.service-card {
  background-color: #252525;
  /* Фон карточки */
  overflow: hidden;
  border: 1px solid #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column; }
/* Место под фото */
.card-image-placeholder {
  height: 180px;
  background-color: #3a3a3a;
  background-size: cover;
  background-position: center;
  position: relative; }
/* Затемнение фото */
.card-image-placeholder::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(37, 37, 37, 1)); }

.card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column; }

.card-title {
  font-size: 1.35rem;
  margin: 0 0 15px 0;
  color: #fff; }

.card-description {
  color: #b0b0b0;
  line-height: 1.5;
  margin-bottom: 20px;
  font-size: 0.95rem; }
/* Списки */
.benefits-list {
  margin-top: auto;
  list-style: none;
  padding: 0;
  margin: 0; }

.benefits-title {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  display: block; }

.benefits-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
  color: #b0b0b0;
  font-size: 0.9rem;
  line-height: 1.2; }
/* Галочки списка */
.benefits-list li::before {
  content: "✓";
  color: #fff;
  /* Оранжевый цвет галочки */
  position: absolute;
  left: 0;
  top: 0px;
  font-weight: bold; }
/* Мобильная версия */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem; }

  .services-section {
    padding: 50px 15px; } }

.children {
  margin-top: 10px;
  display: none; }
  .children__items {
    display: flex;
    flex-direction: column;
    row-gap: 10px; }
  .children__item {
    font-weight: 400;
    font-size: 14px;
    color: #555;
    line-height: 1.2;
    margin: 0 10px;
    position: relative;
    padding-left: 20px; }
  .children__item::after {
    content: "";
    display: block;
    position: absolute;
    top: 7px;
    left: 8px;
    width: 7px;
    height: 1px;
    background-color: #151515; }

.contactModal__dialog {
  max-width: 600px;
  margin: 1.75rem auto; }

.contactModal__content {
  border-radius: 20px;
  border: none; }

.contactModal__header {
  padding: 25px 30px 10px;
  border: none; }

.contactModal__title {
  font-size: 28px;
  font-weight: 500;
  color: #151515; }

.contactModal__close {
  background: none;
  border: none; }

.contactModal__body {
  padding: 0px 30px 30px; }

.contactModal__description {
  font-size: 16px;
  color: #666;
  line-height: 1.5; }

.contactModal__form {
  display: flex;
  flex-direction: column;
  row-gap: 20px; }

.contactModal__field {
  display: flex;
  flex-direction: column;
  row-gap: 8px; }

.contactModal__label {
  font-size: 15px;
  color: #151515; }

.contactModal__input, .contactModal__textarea {
  width: 100%;
  padding: 12px 15px;
  font-size: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #fff;
  color: #151515; }

.contactModal__textarea {
  resize: vertical;
  min-height: 100px; }

.contactModal__submit {
  width: 100%; }

.alert {
  position: relative; }
  .alert .close {
    background-color: transparent;
    position: absolute;
    top: 5px;
    right: 5px; }

.catalog__form {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  margin-bottom: 30px; }
  @media (max-width: 600px) {
  .catalog__form {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 20px; } }

.services-block .block__text {
  font-size: 17px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  line-height: 1.4; }
  @media (max-width: 480px) {
    .services-block .block__text {
      font-size: 14px; } }
  .services-block ul {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    row-gap: 5px; }
  .services-block li {
    list-style: none;
    position: relative;
    padding-left: 20px; }
  .services-block li::before {
    content: "✓";
    color: #777;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    position: absolute;
    left: 0;
    top: 0; }

.service-card img {
  height: 340px;
  object-fit: cover; }
  @media (max-width: 480px) {
    .service-card img {
      height: 240px; } }
