@charset "UTF-8";
/* 
      &display=swap
      &subset=cyrillic-ext 
      */
@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&display=swap&subset=cyrillic-ext");
/* ОБНУЛЕНИЕ СТИЛЕЙ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

li {
  list-style: none;
}

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

a:hover {
  text-decoration: none;
}

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

img {
  vertical-align: top;
}

html,
body {
  height: 100%;
}

html {
  /* по умолчанию */
  font-size: 16px;
}

body {
  line-height: 100%;
  color: #000000;
  background-color: #ffffff;
  font-family: "Comfortaa", sans-serif;
  font-weight: 400;
}

.wrapper {
  min-height: 100vh;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}

main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media (max-width: 767.98px) {
  body.menu_open {
    overflow: hidden;
    height: 100vh;
  }
}

[class$=__container] {
  max-width: 1470px;
  margin: 0 auto;
  padding: 0 15px;
}

.top_header {
  height: 30px;
  background-color: #0d0932;
  color: #fff;
  padding: 4px 0px;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media (max-width: 767.98px) {
  .top_header {
    font-size: 12px;
  }
}

.top_header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  width: 100%;
}

.top_social_icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top_social_icons img {
  max-height: 20px;
  width: auto;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
@media (any-hover: hover) {
  .top_social_icons img:hover {
    -webkit-transform: scale(1.08);
        -ms-transform: scale(1.08);
            transform: scale(1.08);
  }
}

.top_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  vertical-align: middle;
}
@media (max-width: 767.98px) {
  .top_right {
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
  }
}

.top_contact-info {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top_contact-info a {
  line-height: 100%;
  -webkit-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
}
@media (any-hover: hover) {
  .top_contact-info a:hover {
    color: #999;
  }
}
@media (max-width: 767.98px) {
  .top_contact-info {
    display: none;
  }
}

.top_contact-info a {
  color: #fff;
}

.top_vision_helper {
  cursor: pointer;
}

.top_vision_helper img {
  max-height: 20px;
  width: auto;
}

.top_language-switcher {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top_language-switcher div {
  text-transform: uppercase;
  line-height: 100%;
  cursor: pointer;
}
.top_language-switcher div.active {
  color: #999;
}
@media (max-width: 767.98px) {
  .top_language-switcher {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}

@media (max-width: 767.98px) {
  [class$=__container] {
    padding: 0px 10px;
  }
}
.header {
  position: absolute;
  background-color: transparent;
  width: 100%;
  top: 30px;
  left: 0;
  z-index: 3;
  color: #fff;
  height: 65px;
  padding: 10px 0px;
  font-size: 16px;
}
@media (max-width: 767.98px) {
  .header {
    height: 50px;
    padding: 5px 0px;
    font-size: 14px;
  }
}

.header.scrolled {
  padding-right: var(--scrollbar-width, 0);
  background-color: #0d0932;
  position: fixed;
  top: 0;
  left: 0;
}
.header.scrolled .header_block::before {
  display: none;
}

.header__container {
  height: 100%;
}

.header_block {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  position: relative;
}
.header_block::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  bottom: -10px;
  position: absolute;
}
@media (max-width: 767.98px) {
  .header_block::before {
    bottom: -5px;
  }
}

.header_search_section {
  cursor: pointer;
  position: relative;
}
.header_search_section::after {
  content: "";
  position: absolute;
  display: block;
  background: url(../img/search.svg);
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}

.header_search_text {
  margin: 0px 0px 0px 24px;
}

.header_logo {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.new__year_logo {
  position: relative;
}
.new__year_logo::after {
  content: url("../img/new_year/logo_new_year.svg");
  position: absolute;
  left: 85%;
  top: -60px;
}
@media (max-width: 767.98px) {
  .new__year_logo::after {
    left: 70%;
    top: -42px;
  }
}

.header_logo_img {
  max-height: 45px;
  width: auto;
}
@media (max-width: 767.98px) {
  .header_logo_img {
    max-height: 25px;
  }
}

.header_burger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  position: relative;
  cursor: pointer;
  z-index: 8;
  -webkit-transition: all 0.3 ease;
  transition: all 0.3 ease;
}
.header_burger.active .header_burger_line span:nth-child(1) {
  top: 50%;
  -webkit-transform: rotate(45deg) translateY(-50%);
      -ms-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
}
.header_burger.active .header_burger_line span:nth-child(2) {
  opacity: 0;
}
.header_burger.active .header_burger_line span:nth-child(3) {
  bottom: 50%;
  -webkit-transform: rotate(-45deg) translateY(50%);
      -ms-transform: rotate(-45deg) translateY(50%);
          transform: rotate(-45deg) translateY(50%);
}
@media (max-width: 991.98px) {
  .header_burger.active {
    gap: 3px;
  }
}
@media (max-width: 567.98px) {
  .header_burger.active {
    gap: 1px;
  }
}

.header_burger_menu.active {
  display: none;
}

.header_burger_clouse {
  display: none;
}
@media (max-width: 991.98px) {
  .header_burger_clouse {
    font-size: 12px;
  }
}
@media (max-width: 767.98px) {
  .header_burger_clouse {
    font-size: 12px;
  }
}
.header_burger_clouse.active {
  display: block;
  position: relative;
  z-index: 8;
}

.header_burger_line {
  display: block;
  width: 20px;
  height: 100%;
  -webkit-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
}
.header_burger_line span {
  width: 100%;
  height: 100%;
  display: block;
  height: 1px;
  width: 20px;
  background-color: #fff;
  -webkit-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
}
.header_burger_line span:nth-child(1) {
  width: 20px;
  position: absolute;
  right: 0;
  top: 0;
}
.header_burger_line span:nth-child(2) {
  width: 15px;
  position: absolute;
  right: 0;
  top: 49.5%;
}
.header_burger_line span:nth-child(3) {
  width: 20px;
  position: absolute;
  right: 0;
  bottom: 0;
}

.header_nav {
  -webkit-overflow-scrolling: touch;
  /* Плавный скролл на iOS */
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  --scrollbar-width: 0px;
  z-index: 6;
  padding-bottom: 20px;
  padding-top: 20px;
  padding-right: var(--scrollbar-width);
  top: 0;
  right: -40%;
  width: 40%;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  position: fixed;
  background-color: rgba(13, 9, 50, 0.95);
  backdrop-filter: blur(10px);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  overflow-y: auto;
  -webkit-transition: 0.6s all ease-out;
  transition: 0.6s all ease-out;
}

.header_nav.active {
  right: 0;
  overflow-y: auto;
  height: 100%;
}
@media (max-width: 767.98px) {
  .header_nav.active {
    width: 100%;
    font-size: 14px;
    overflow-y: auto;
  }
}

/* Улучшаем отображение на мобильных устройствах */
@media (max-width: 767.98px) {
  .header_nav {
    padding: 70px 0 30px;
    /* Добавляем отступы сверху и снизу */
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    /* Меню начинается сверху */
  }
  .header_menu {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    /* Не растягиваем меню */
    margin-bottom: auto;
    /* Прижимаем контакты к низу */
  }
  .mobile_contact_info {
    padding: 20px 0;
    margin-bottom: auto;
    /* Прижимаем к низу меню */
  }
}
/* Дополнительные улучшения для iOS */
@supports (-webkit-touch-callout: none) {
  .header_nav {
    height: -webkit-fill-available;
    /* Используем доступную высоту на iOS */
  }
}
.header_menu {
  padding: 10px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 25px;
  z-index: 6;
}

.header_link {
  font-size: 20px;
  line-height: 100%;
  color: #fff;
  position: relative;
  z-index: 6;
}
.header_link::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  background-color: #fff;
  bottom: 0;
  right: -30%;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.header_link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background-color: #fff;
  bottom: 0;
  left: -30%;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media (any-hover: hover) {
  .header_link:hover::after {
    left: 50%;
    width: 50%;
  }
  .header_link:hover::before {
    right: 50%;
    width: 50%;
  }
}
@media (max-width: 991.98px) {
  .header_link {
    font-size: 18px;
  }
}
@media (max-width: 830px) {
  .header_link {
    font-size: 16px;
  }
}
@media (max-width: 567.98px) {
  .header_link {
    font-size: 16px;
  }
}

.mobile_contact_info {
  padding: 20px 0px 50px 0px;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}
.mobile_contact_info a {
  color: #fff;
}
@media (max-width: 767.98px) {
  .mobile_contact_info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
  }
}

.menu_overlay {
  z-index: 4;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 60%;
  min-height: 100vh;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 767.98px) {
  .menu_overlay {
    display: none;
  }
}

.menu_overlay.active {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 767.98px) {
  .menu_overlay.active {
    display: none;
  }
}

/* Окно поиска */
.search_overlay {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  backdrop-filter: blur(10px);
  z-index: 7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: top 0.5s ease;
  transition: top 0.5s ease;
}

.search_overlay.active {
  top: 0;
}
.search_overlay.active body {
  overflow: hidden;
}

.search_form {
  width: 80%;
  max-width: 600px;
  position: relative;
}

.search_input {
  width: 100%;
  padding: 15px 20px;
  font-size: 14px;
  border: none;
  border-bottom: 2px solid #0d0932;
  outline: none;
  background-color: #0d0932;
  color: #fff;
}

.search_input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.55);
  font-family: "Comfortaa", sans-serif;
}

.search_input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.55);
  font-family: "Comfortaa", sans-serif;
}

.search_input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.55);
  font-family: "Comfortaa", sans-serif;
}

.search_input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.55);
  font-family: "Comfortaa", sans-serif;
}

.search_input::placeholder {
  color: rgba(255, 255, 255, 0.55);
  font-family: "Comfortaa", sans-serif;
}

.close_search {
  position: absolute;
  top: -80px;
  right: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  color: #333;
  -webkit-transition: all 0.3 ease-in-out;
  transition: all 0.3 ease-in-out;
}
@media (max-width: 767.98px) {
  .close_search {
    top: -50px;
  }
}
@media (any-hover: hover) {
  .close_search:hover span:nth-child(1) {
    background-color: #2e2679;
    -webkit-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  .close_search:hover span:nth-child(2) {
    background-color: #2e2679;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
.close_search span {
  width: 100%;
  height: 100%;
  display: block;
  height: 3px;
  width: 40px;
  background-color: #0d0932;
  -webkit-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
}
.close_search span:nth-child(1) {
  width: 40px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media (max-width: 767.98px) {
  .close_search span:nth-child(1) {
    width: 20px;
  }
}
.close_search span:nth-child(2) {
  width: 40px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (max-width: 767.98px) {
  .close_search span:nth-child(2) {
    width: 20px;
  }
}

/* Главный экран со слайдером как фон */
.hero_slider {
  position: relative;
  left: 0;
  width: 100%;
  height: calc(100vh - 30px);
  z-index: 2;
  overflow: hidden;
  background-color: #0d0932;
}
.slides {
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slide.active {
  opacity: 1;
}

.slide:nth-child(1) {
  background-image: url("../img/new_year/1.jpg");
}

.slide:nth-child(2) {
  background-image: url("../img/slider_3.jpg");
}

.slide:nth-child(3) {
  background-image: url("../img/bg_3.jpg");
}

.slide:nth-child(4) {
  background-image: url("../img/bg_4.jpg");
}

.slide:nth-child(5) {
  background-image: url("../img/bg_5.jpg");
}

.slide_text {
  height: 100%;
  color: #fff;
  position: absolute;
  top: 75px;
  font-size: 18px;
}
@media (max-width: 767.98px) {
  .slide_text {
    top: 60px;
  }
}
@media (max-width: 567.98px) {
  .slide_text {
    font-size: 14px;
  }
}

/* Подписи к слайдам */
.slide_caption {
  width: 100%;
  max-width: 1440px;
  position: absolute;
  padding: 20px 20px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: white;
  font-size: 36px;
  text-transform: uppercase;
  line-height: 150%;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 991.98px) {
  .slide_caption {
    font-size: 26px;
  }
}
@media (max-width: 767.98px) {
  .slide_caption {
    font-size: 20px;
  }
}
@media (max-width: 567.98px) {
  .slide_caption {
    font-size: 16px;
  }
}

.services_link {
  -webkit-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
  position: absolute;
  bottom: 20%;
  left: 50%;
  -webkit-transform: translate(-50%);
      -ms-transform: translate(-50%);
          transform: translate(-50%);
  background: linear-gradient(-30deg, #0d0932 50%, #06041a 50%);
  padding: 15px 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  color: #ffffff;
  font-size: 20px;
  text-align: center;
  text-decoration: none;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
          box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
@media (max-width: 767.98px) {
  .services_link {
    padding: 13px 28px;
    font-size: 18px;
  }
}
@media (max-width: 567.98px) {
  .services_link {
    padding: 12px 23px;
    font-size: 14px;
  }
}
@media (any-hover: hover) {
  .services_link:hover {
    -webkit-box-shadow: 0 6px 20px #0d0932;
            box-shadow: 0 6px 20px #0d0932;
  }
}

.services_link::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 100%;
  width: 100%;
  height: 100%;
  background-color: #0d0932;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}

.services_link:hover::before {
  opacity: 0.2;
}

.services_link span {
  position: absolute;
}

.services_link span:nth-child(1) {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(43, 8, 8, 0)), to(#ebeaf3));
  background: linear-gradient(to left, rgba(43, 8, 8, 0), #ebeaf3);
  -webkit-animation: 2s animateTop linear infinite;
          animation: 2s animateTop linear infinite;
}

@-webkit-keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.services_link span:nth-child(2) {
  top: 0px;
  right: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(43, 8, 8, 0)), to(#ebeaf3));
  background: linear-gradient(to top, rgba(43, 8, 8, 0), #ebeaf3);
  -webkit-animation: 2s animateRight linear -1s infinite;
          animation: 2s animateRight linear -1s infinite;
}

@-webkit-keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
.services_link span:nth-child(3) {
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(43, 8, 8, 0)), to(#ebeaf3));
  background: linear-gradient(to right, rgba(43, 8, 8, 0), #ebeaf3);
  -webkit-animation: 2s animateBottom linear infinite;
          animation: 2s animateBottom linear infinite;
}

@-webkit-keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
.services_link span:nth-child(4) {
  top: 0px;
  left: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(43, 8, 8, 0)), to(#ebeaf3));
  background: linear-gradient(to bottom, rgba(43, 8, 8, 0), #ebeaf3);
  -webkit-animation: 2s animateLeft linear -1s infinite;
          animation: 2s animateLeft linear -1s infinite;
}

@-webkit-keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
.services_link.hidden {
  display: none;
}

.services_link:hover {
  background-color: #0D0932;
  -webkit-box-shadow: 0 6px 20px #0D0932;
          box-shadow: 0 6px 20px #0D0932;
}

.slider_controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  z-index: 2;
}

.slider_dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.slider_dot.active {
  background-color: #0d0932;
}

.services_section {
  padding: 60px 0px 60px 0px;
}
@media (max-width: 1140px) {
  .services_section {
    padding: 55px 0px 50px 0px;
  }
}
@media (max-width: 991.98px) {
  .services_section {
    padding: 45px 0px 40px 0px;
  }
}
@media (max-width: 767.98px) {
  .services_section {
    padding: 35px 0px 30px 0px;
  }
}
@media (max-width: 567.98px) {
  .services_section {
    padding: 25px 0px 20px 0px;
  }
}

.services__title {
  line-height: 130%;
  text-align: center;
  font-size: 36px;
  color: #0d0932;
  position: relative;
  font-weight: 700;
  margin-bottom: 40px;
}
@media (max-width: 767.98px) {
  .services__title {
    margin-bottom: 25px;
    font-size: 26px;
  }
}
@media (max-width: 567.98px) {
  .services__title {
    margin-bottom: 15px;
    font-size: 20px;
  }
}

.services__slider_block {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  padding: 10px 0;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.services__slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.service_card {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(33.333% - 30px);
          flex: 0 0 calc(33.333% - 30px);
  margin: 0 15px;
  border-radius: 5px;
  -webkit-box-shadow: 0 3px 12px rgba(13, 9, 50, 0.245);
          box-shadow: 0 3px 12px rgba(13, 9, 50, 0.245);
  min-height: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 35px 10px;
  margin-bottom: 30px;
}
@media (max-width: 567.98px) {
  .service_card {
    margin-bottom: 20px;
    padding: 5px;
  }
}

@media (any-hover: hover) {
  .service_card:hover {
    -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
            transform: translateY(-5px);
    -webkit-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  }
}

.service_icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-item-align: center;
      align-self: center;
  margin-bottom: 20px;
}

.service_icon img {
  height: 100%;
  width: auto;
}

.service_card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #000000;
  line-height: 130%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media (max-width: 567.98px) {
  .service_card h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
}

.service_card p {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 15px;
  line-height: 130%;
  color: #444444;
}
@media (max-width: 567.98px) {
  .service_card p {
    font-size: 14px;
  }
}

.service_slider_controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 30px;
  gap: 15px;
}

.service_slider_dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #bdc3c7;
  cursor: pointer;
  -webkit-transition: background 0.3s, -webkit-transform 0.3s;
  transition: background 0.3s, -webkit-transform 0.3s;
  transition: background 0.3s, transform 0.3s;
  transition: background 0.3s, transform 0.3s, -webkit-transform 0.3s;
  border: none;
}

.service_slider_dot.active {
  background: #0d0932;
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}

@media (any-hover: hover) {
  .service_slider_dot:hover {
    background: #0d0932;
    -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
            transform: scale(1.2);
  }
}

/* Адаптивность */
@media (max-width: 1140px) {
  .service_card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 30px);
            flex: 0 0 calc(50% - 30px);
  }
}
@media (max-width: 991.98px) {
  .service_card {
    min-height: 220px;
    padding: 10px;
  }
  .service_icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
}
@media (max-width: 767.98px) {
  .service_card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% - 30px);
            flex: 0 0 calc(100% - 30px);
  }
}
@media (max-width: 567.98px) {
  .service_card {
    padding: 10px 0px;
    min-height: 220px;
  }
  .service_icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
    margin-bottom: 15px;
  }
  .button white {
    padding: 14px 40px;
    font-size: 16px;
  }
}
.button {
  cursor: pointer;
  position: relative;
  color: #ffffff;
  line-height: 110%;
  border: 2px solid #ffffff;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #0d0932;
  font-size: 20px;
  padding: 15px 35px;
}
@media (max-width: 991.98px) {
  .button {
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  .button {
    font-size: 16px;
    padding: 14px 30px;
  }
}
@media (max-width: 567.98px) {
  .button {
    font-size: 14px;
    padding: 12px 26px;
  }
}

.button:before {
  content: "";
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background-color: #0d0932;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media (any-hover: hover) {
  .button:hover {
    color: #0d0932;
    background-color: #ffffff;
  }
}

.button:hover:before {
  left: 0;
}

.white {
  color: #06041a;
  background-color: #ffffff;
  border: 2px solid #0d0932;
}

@media (any-hover: hover) {
  .white:hover {
    color: #ffffff;
    border: 2px solid #ffffff;
    background-color: #0d0932;
  }
}

.about-section {
  padding: 40px 0px 30px 0px;
  background-color: #0d0932;
}
@media (max-width: 991.98px) {
  .about-section {
    padding: 30px 0px 20px 0px;
  }
}
@media (max-width: 767.98px) {
  .about-section {
    padding: 25px 0px 20px 0px;
  }
}
@media (max-width: 567.98px) {
  .about-section {
    padding: 20px 0px 20px 0px;
  }
}

.section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 100%;
  font-size: 36px;
  margin-bottom: 40px;
  color: #fff;
  position: relative;
  font-weight: 700;
}
@media (max-width: 991.98px) {
  .section-title {
    font-size: 30px;
  }
}
@media (max-width: 767.98px) {
  .section-title {
    font-size: 24px;
  }
}
@media (max-width: 567.98px) {
  .section-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 30px;
  margin-bottom: 40px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767.98px) {
  .content-wrapper {
    gap: 20px;
    margin-bottom: 30px;
  }
}
@media (max-width: 567.98px) {
  .content-wrapper {
    gap: 10px;
    margin-bottom: 15px;
  }
}

.video-content {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60%;
          flex: 0 0 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  max-height: 450px;
  min-height: 300px;
}

.company_video-content {
  max-height: 600px;
  min-height: 500px;
}

.text-content {
  width: 100%;
  text-align: justify;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 40%;
          flex: 0 1 40%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.text-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(13, 9, 50, 0.4)), color-stop(80%, rgba(13, 9, 50, 0.7)), to(rgb(13, 9, 50)));
  background: linear-gradient(to bottom, rgba(13, 9, 50, 0.4) 0%, rgba(13, 9, 50, 0.7) 80%, rgb(13, 9, 50) 100%);
  pointer-events: none;
}

.text-content p {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.7;
  color: #fff;
}
@media (max-width: 767.98px) {
  .text-content p {
    font-size: 14px;
  }
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.company_video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  max-height: 450px;
}
@media (max-width: 567.98px) {
  .video-thumbnail {
    min-height: 300px;
  }
}

.company_video-thumbnail {
  height: 100%;
  max-height: 500px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
@media (max-width: 567.98px) {
  .company_video-thumbnail {
    min-height: 300px;
    max-height: 300px;
  }
}

.video-wrapper:hover .video-thumbnail {
  -webkit-transform: scale(1.01);
      -ms-transform: scale(1.01);
          transform: scale(1.01);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 567.98px) {
  .play-button {
    width: 50px;
    height: 50px;
  }
}

.play-button:before {
  content: "";
  border-style: solid;
  border-width: 15px 0 15px 26px;
  border-color: transparent transparent transparent #0d0932;
  margin-left: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 567.98px) {
  .play-button:before {
    border-width: 10px 0 10px 21px;
  }
}

.video-wrapper:hover .play-button {
  background: rgba(13, 9, 50, 0.95);
  -webkit-transform: translate(-50%, -50%) scale(1.1);
      -ms-transform: translate(-50%, -50%) scale(1.1);
          transform: translate(-50%, -50%) scale(1.1);
}

.video-wrapper:hover .play-button:before {
  border-color: transparent transparent transparent white;
}

.video-iframe {
  width: 100%;
  height: 100%;
  min-height: 250px;
  border: none;
}
@media (max-width: 991.98px) {
  .video-iframe {
    min-height: 450px;
  }
}
@media (max-width: 567.98px) {
  .video-iframe {
    min-height: 300px;
  }
}

.company_video-iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: none;
}
@media (max-width: 567.98px) {
  .company_video-iframe {
    min-height: 300px;
  }
}

.btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* Адаптивность */
@media (max-width: 991.98px) {
  .content-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .text-content,
  .video-content {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .video-content {
    max-height: 400px;
    margin-bottom: 20px;
    min-height: 250px;
  }
  .text-content {
    max-height: 50vh;
    /* Ограничиваем высоту текста на мобильных */
    overflow: hidden;
  }
  .text-content::after {
    display: block;
    /* Показываем градиент для обрезки текста */
  }
}
@media (max-width: 767.98px) {
  .text-content p {
    font-size: 14px;
  }
  .video-content {
    max-height: 350px;
  }
}
@media (max-width: 480px) {
  .video-content {
    max-height: 300px;
    min-height: 200px;
  }
}
/* Добавляем стили для блока последних новостей */
.latest-news {
  padding: 10px 0px 50px;
}
@media (max-width: 991.98px) {
  .latest-news {
    padding: 10px 0px 40px;
  }
}
@media (max-width: 567.98px) {
  .latest-news {
    padding: 10px 0px 30px;
  }
}

.latest-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  padding: 0px 10px;
}

.latest-news-card {
  background: white;
  border-radius: 3px;
  overflow: hidden;
  -webkit-box-shadow: 0 5px 10px rgba(4, 6, 28, 0.3);
          box-shadow: 0 5px 10px rgba(4, 6, 28, 0.3);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  cursor: pointer;
  /* Добавляем курсор указателя для всей карточки */
}

@media (any-hover: hover) {
  .latest-news-card:hover {
    -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
            transform: translateY(-5px);
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }
}

.latest-news-image {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}

.latest-news-content {
  padding: 15px;
}

.latest-news-date {
  color: #747474;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.latest-news-title {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #0d0932;
  font-weight: 700;
  line-height: 120%;
}

.latest-news-summary {
  color: #000;
  font-size: 0.9rem;
  margin-bottom: 15px;
  line-height: 1.5;
}

/* Убираем кнопку "Читать далее" для последних новостей */
.filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 567.98px) {
  .filters {
    margin-bottom: 15px;
  }
}

.filter-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.filter-group label {
  font-weight: bold;
}

select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: white;
  font-size: 14px;
}
@media (max-width: 567.98px) {
  select {
    font-size: 12px;
    padding: 0px 10px;
  }
}

.news__container {
  padding: 35px 0px 30px;
}
@media (max-width: 567.98px) {
  .news__container {
    padding: 10px 0px;
  }
}

@media (max-width: 567.98px) {
  .filter-group {
    font-size: 12px;
    padding: 0px 10px;
  }
}

.__news_none {
  display: none;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 25px;
  margin-bottom: 10px;
  padding: 0px 10px;
}
@media (max-width: 567.98px) {
  .news-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

.news-card {
  background-color: white;
  border-radius: 3px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  cursor: pointer;
  /* Добавляем курсор указателя для всей карточки */
}

@media (any-hover: hover) {
  .news-card:hover:hover {
    -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}

.news-image {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-content {
  padding: 15px 5px;
}

.news-date {
  color: #7f8c8d;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
@media (max-width: 567.98px) {
  .news-date {
    font-size: 13px;
  }
}

.news-title {
  font-size: 20px;
  margin-bottom: 10px;
  color: #000000;
  line-height: 120%;
  font-weight: 900;
}
@media (max-width: 567.98px) {
  .news-title {
    font-size: 16px;
  }
}

.news-summary {
  color: #000000;
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 130%;
}
@media (max-width: 567.98px) {
  .news-summary {
    font-size: 14px;
  }
}

/* Убираем ссылку "Читать далее" для обычных новостей */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  overflow-y: auto;
}

.modal-content {
  background-color: white;
  margin: 30px auto;
  padding: 30px;
  border-radius: 3px;
  max-width: 1000px;
  width: 90%;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 2.5rem;
  cursor: pointer;
  color: #7f8c8d;
  z-index: 10;
}

.modal-title {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #2c3e50;
  line-height: 120%;
  font-weight: 600;
}
@media (max-width: 567.98px) {
  .modal-title {
    font-size: 18px;
    margin-top: 10px;
  }
}

.modal-date {
  color: #7f8c8d;
  margin-bottom: 20px;
}
@media (max-width: 567.98px) {
  .modal-date {
    font-size: 13px;
  }
}

.modal-main-image {
  width: 100%;
  margin-bottom: 25px;
  border-radius: 8px;
  overflow: hidden;
}

.modal-main-image img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}

.modal-text {
  margin-bottom: 25px;
  line-height: 1.5;
}
@media (max-width: 567.98px) {
  .modal-text {
    font-size: 14px;
  }
}

.modal-gallery {
  margin-top: 30px;
}

.news_news_news_slider_container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.news_news_slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.news_slide {
  min-width: 100%;
  position: relative;
}

.news_slide img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.news_news_slider-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  z-index: 5;
}

@media (any-hover: hover) {
  .news_news_slider-arrow:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }
}

.news_news_slider-arrow.prev {
  left: 15px;
}

.news_news_slider-arrow.next {
  right: 15px;
}

.news_news_slider-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 15px;
  gap: 10px;
}

.news_news_slider-news_dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.news_dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #bdc3c7;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.news_dot.active {
  background-color: #0d0932;
}

.fullscreen-image {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.fullscreen-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.fullscreen-image img {
  max-width: 95%;
  height: 85%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.fullscreen-caption {
  color: white;
  margin-top: 15px;
  font-size: 1.1rem;
}

.fullscreen-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  z-index: 5;
}

@media (any-hover: hover) {
  .fullscreen-arrow:hover {
    background-color: rgba(255, 255, 255, 0.4);
  }
}

.fullscreen-arrow.prev {
  left: 30px;
}

.fullscreen-arrow.next {
  right: 30px;
}

.close-fullscreen {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.page-btn {
  padding: 8px 15px;
  border: 1px solid #ddd;
  background-color: white;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.page-btn.active {
  background-color: #0d0932;
  color: white;
  border-color: #0d0932;
}

.page-btn:hover:not(.active) {
  background-color: #f1f1f1;
}

@media (max-width: 767.98px) {
  .latest-news-grid {
    grid-template-columns: 1fr;
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
  .modal-content {
    margin: 20px;
    padding: 20px;
  }
  .modal-main-image img {
    height: 200px;
  }
  .news_slide img {
    height: 200px;
  }
  .news_news_slider-arrow {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
  .fullscreen-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .fullscreen-arrow.prev {
    left: 10px;
  }
  .fullscreen-arrow.next {
    right: 10px;
  }
}
.vacancies_section {
  background-color: #0d0932;
}
@media (max-width: 767.98px) {
  .vacancies_section {
    padding: 25px 0px;
  }
}

.vacancies_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  gap: 10px;
}

.vacancies_left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media (max-width: 810.98px) {
  .vacancies_left {
    padding: 15px 0px;
  }
}
@media (max-width: 767.98px) {
  .vacancies_left {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-item-align: center;
        align-self: center;
    padding: 0px;
  }
}

.vacancies_text {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media (max-width: 767.98px) {
  .vacancies_text {
    gap: 30px;
  }
}

.vacancies_text_title {
  font-size: 32px;
  line-height: 100%;
  position: relative;
}
.vacancies_text_title::after {
  content: "";
  position: absolute;
  display: block;
  width: 40%;
  height: 1px;
  background-color: #fff;
  margin-top: 20px;
}
@media (max-width: 767.98px) {
  .vacancies_text_title::after {
    width: 100%;
    margin-top: 15px;
  }
}
@media (max-width: 1140px) {
  .vacancies_text_title {
    font-size: 28px;
  }
}
@media (max-width: 991.98px) {
  .vacancies_text_title {
    font-size: 24px;
  }
}
@media (max-width: 767.98px) {
  .vacancies_text_title {
    font-size: 18px;
    text-align: center;
  }
}

.vacancies_text_subtitle {
  font-size: 20px;
  line-height: 130%;
  margin-bottom: 10px;
}
@media (max-width: 1140px) {
  .vacancies_text_subtitle {
    font-size: 18px;
  }
}
@media (max-width: 991.98px) {
  .vacancies_text_subtitle {
    font-size: 16px;
  }
}
@media (max-width: 767.98px) {
  .vacancies_text_subtitle {
    font-size: 15px;
    text-align: center;
    margin-bottom: 20px;
    line-height: 150%;
  }
}

.vacancies_right {
  max-height: 480px;
  width: 50%;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .vacancies_right {
    display: none;
  }
}

.vacancies_right img {
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  height: auto;
  width: 100%;
}

.other_section {
  padding: 10px 0px;
}

.other_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 767.98px) {
  .other_block {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.other_block a {
  max-height: 70px;
}

.other_img {
  height: 100%;
  width: auto;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
@media (any-hover: hover) {
  .other_img:hover {
    -webkit-transform: scale(0.97);
        -ms-transform: scale(0.97);
            transform: scale(0.97);
  }
}
@media (max-width: 991.98px) {
  .other_img {
    max-height: 50px;
  }
}
@media (max-width: 767.98px) {
  .other_img {
    max-height: 45px;
  }
}
@media (max-width: 567.98px) {
  .other_img {
    max-height: 35px;
  }
}

.footer {
  padding: 15px 0px 10px 0px;
  background-color: #0d0932;
  color: #fff;
  font-size: 14px;
}
.footer a {
  color: #fff;
}

.footer_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.footer_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin-bottom: 40px;
}
.footer_logo::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  display: block;
  position: absolute;
  left: 0;
  bottom: -20px;
}
@media (max-width: 767.98px) {
  .footer_logo::after {
    bottom: -10px;
  }
}
@media (max-width: 767.98px) {
  .footer_logo {
    margin-bottom: 25px;
  }
}

.footer_logo img {
  max-height: 45px;
  width: auto;
}
@media (max-width: 767.98px) {
  .footer_logo img {
    max-height: 30px;
  }
}

.footer_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 20px;
  gap: 15px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer_ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
}
@media (max-width: 767.98px) {
  .footer_ul {
    display: none;
  }
}

.footer_li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.nav_twu,
.nav_one {
  display: none;
}
@media (max-width: 767.98px) {
  .nav_twu,
  .nav_one {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.footer_li_a {
  color: #fff;
  line-height: 100%;
  text-transform: uppercase;
  font-size: 14px;
  position: relative;
}
.footer_li_a::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  background-color: #fff;
  bottom: 0;
  right: -30%;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.footer_li_a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background-color: #fff;
  bottom: 0;
  left: -30%;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media (any-hover: hover) {
  .footer_li_a:hover::after {
    left: 50%;
    width: 50%;
  }
  .footer_li_a:hover::before {
    right: 50%;
    width: 50%;
  }
}

.footer_midle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}
@media (max-width: 991.98px) {
  .footer_midle {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
  }
}
@media (max-width: 991.98px) and (max-width: 567.98px) {
  .footer_midle {
    font-size: 14px;
    text-align: center;
    margin-bottom: 15px;
  }
}

.footer_midle_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
@media (max-width: 567.98px) {
  .footer_midle_text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}

.footer_midle_text_info {
  text-transform: uppercase;
}

.footer_midle_text_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}

.footer_midle_text_link {
  -webkit-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
}
@media (any-hover: hover) {
  .footer_midle_text_link:hover {
    color: #999;
  }
}

.footer_midle_icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.footer_midle_icons img {
  max-height: 25px;
  width: auto;
  -webkit-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
}
@media (any-hover: hover) {
  .footer_midle_icons img:hover {
    -webkit-transform: scale(1.08);
        -ms-transform: scale(1.08);
            transform: scale(1.08);
  }
}

.footer_bot {
  line-height: 130%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
}
@media (max-width: 991.98px) {
  .footer_bot {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 567.98px) {
  .footer_bot {
    font-size: 14px;
    text-align: center;
    gap: 15px;
  }
}

.footer_bot_adress {
  -webkit-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
}
@media (any-hover: hover) {
  .footer_bot_adress:hover {
    color: #999;
  }
}

.main_margin {
  margin-top: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 767.98px) {
  .main_margin {
    margin-top: 50px;
  }
}

.header_bg {
  background-color: #0d0932;
}

.bread_crumbs {
  line-height: 100%;
  background-color: #0d0932;
  padding: 10px 0px 30px 0px;
}
@media (max-width: 567.98px) {
  .bread_crumbs {
    padding: 10px 0px 20px 0px;
  }
}

.bread_crumbs__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.bread_crumbs_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 26px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 10px;
}
.bread_crumbs_links:not(:last-child) {
  white-space: nowrap;
}
@media (max-width: 567.98px) {
  .bread_crumbs_links {
    gap: 10px;
  }
}

.bread_crumbs_li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.bread_crumbs_li span {
  position: relative;
  display: block;
  font-size: 12px;
  top: 3px;
  right: -13px;
}
@media (max-width: 567.98px) {
  .bread_crumbs_li span {
    right: -5px;
  }
}

.bread_crumbs_link {
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  position: relative;
}
@media (max-width: 567.98px) {
  .bread_crumbs_link {
    font-size: 10px;
  }
}
.bread_crumbs_link::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  background-color: #fff;
  bottom: 0;
  right: -30%;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.bread_crumbs_link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background-color: #fff;
  bottom: 0;
  left: -30%;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media (any-hover: hover) {
  .bread_crumbs_link:hover::after {
    left: 50%;
    width: 50%;
  }
  .bread_crumbs_link:hover::before {
    right: 50%;
    width: 50%;
  }
}

.bread_link_576 {
  display: none;
}
@media (max-width: 567.98px) {
  .bread_link_576 {
    display: block;
  }
}

@media (max-width: 567.98px) {
  .bread_link_576_none {
    display: none;
  }
}

.bread_crumbs_title {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}

.bread_crumbs_text {
  font-size: 28px;
  color: #fff;
  position: relative;
}
@media (max-width: 991.98px) {
  .bread_crumbs_text {
    font-size: 24px;
  }
}
@media (max-width: 767.98px) {
  .bread_crumbs_text {
    font-size: 18px;
  }
}
.bread_crumbs_text::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -15px;
  height: 1px;
  background-color: #fff;
}
@media (max-width: 767.98px) {
  .bread_crumbs_text::after {
    bottom: -10px;
  }
}

.services_page {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 40px 0px 20px 0px;
}
@media (max-width: 991.98px) {
  .services_page {
    padding: 30px 0px 15px 0px;
  }
}
@media (max-width: 567.98px) {
  .services_page {
    padding: 20px 0px 15px 0px;
  }
}

.services_page_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 690px) {
  .services_page_items {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.services_page_item {
  border-radius: 3px;
  padding: 40px 10px 10px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-decoration: none;
  color: #000;
  gap: 10px;
  border: 0.5px solid #ebebeb;
  -webkit-box-shadow: 0 2px 10px rgba(4, 6, 28, 0.3);
          box-shadow: 0 2px 10px rgba(4, 6, 28, 0.3);
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33.33%;
          flex: 0 1 33.33%;
  min-width: 210px;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
@media (max-width: 991.98px) {
  .services_page_item {
    padding: 30px 15px 10px;
  }
}
@media (max-width: 767.98px) {
  .services_page_item {
    padding: 20px 10px 10px;
  }
}
@media (max-width: 690px) {
  .services_page_item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    min-height: 255px;
  }
}
@media (max-width: 536.98px) {
  .services_page_item {
    min-height: 269px;
  }
}
@media (max-width: 400px) {
  .services_page_item {
    min-height: 302px;
  }
}
@media (any-hover: hover) {
  .services_page_item:hover {
    background-color: #0d0932;
    color: #fff;
  }
  .services_page_item:hover .services_page_svg {
    fill: #fff;
  }
  .services_page_item:hover .services_page_link div {
    color: #a00000;
  }
  .services_page_item:hover .services_page_link div::after {
    background-color: #a00000;
  }
}

.services_page_svg {
  fill: #0d0932;
  max-height: 82px;
  width: auto;
  margin-bottom: 40px;
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
@media (max-width: 991.98px) {
  .services_page_svg {
    max-height: 65px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767.98px) {
  .services_page_svg {
    max-height: 50px;
    margin-bottom: 15px;
  }
}

.services_page_title {
  font-size: 20px;
  line-height: 130%;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media (max-width: 991.98px) {
  .services_page_title {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
@media (max-width: 767.98px) {
  .services_page_title {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.services_page_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: start;
  margin-bottom: 10px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-left: 10px;
}
@media (max-width: 690px) {
  .services_page_text {
    padding-left: 0;
  }
}

.services_page_text li {
  list-style: disc;
  list-style-position: inside;
  line-height: 120%;
  font-size: 14px;
}
@media (max-width: 991.98px) {
  .services_page_text li {
    font-size: 13px;
  }
}
@media (max-width: 767.98px) {
  .services_page_text li {
    font-size: 12px;
  }
}
@media (max-width: 690px) {
  .services_page_text li {
    text-align: center;
  }
}
.services_page_link div {
  display: inline-block;
  color: #f50101;
  line-height: 100%;
  font-size: 14px;
  position: relative;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.services_page_link div::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #f50101;
  bottom: -3px;
  left: 0;
}
@media (max-width: 767.98px) {
  .services_page_link div {
    font-size: 12px;
  }
}

.block_flex_grow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.__news_laset_none {
  display: none;
}

.contacts__section {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
}

.contacts__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  padding: 30px 0px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media (max-width: 567.98px) {
  .contacts__block {
    padding: 20px 0px;
    gap: 15px;
  }
}

.contacts__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 300px;
  padding: 10px;
  background-color: #fff;
  border-radius: 3px;
  -webkit-box-shadow: 0 4px 12px rgba(4, 6, 28, 0.1);
          box-shadow: 0 4px 12px rgba(4, 6, 28, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 567.98px) {
  .contacts__info {
    padding-bottom: 5px;
  }
}

.contacts__map {
  -webkit-box-flex: 1.2;
      -ms-flex: 1.2;
          flex: 1.2;
  min-width: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.map-container {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
@media (max-width: 638.98px) {
  .map-container {
    height: 250px;
  }
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.company__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
  text-align: center;
}
@media (max-width: 767.98px) {
  .company__title {
    font-size: 16px;
  }
}

.contact__block {
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5px;
  position: relative;
}
@media (max-width: 567.98px) {
  .contact__block {
    gap: 4px;
  }
}
.contact__block:not(:last-child):after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #0d0932;
  bottom: -10px;
  left: 0;
}

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

.contact__block span {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: bold;
  line-height: 120%;
}
@media (max-width: 567.98px) {
  .contact__block span {
    font-size: 14px;
  }
}

.contact__block a {
  width: auto;
  margin-bottom: 5px;
  font-size: 14px;
  color: #000;
  position: relative;
}

@media (max-width: 767.98px) {
  .contacts__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contacts__info,
  .contacts__map {
    width: 100%;
  }
}
.management_section {
  padding: 15px 0px;
}

.management__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.management__cards {
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.management__card {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 23%;
          flex: 0 1 23%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 3px;
  -webkit-box-shadow: 0 1px 7px rgba(4, 6, 28, 0.2);
          box-shadow: 0 1px 7px rgba(4, 6, 28, 0.2);
  min-width: 250px;
}
@media (max-width: 1140px) {
  .management__card {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 30%;
            flex: 0 1 30%;
  }
}
@media (max-width: 832px) {
  .management__card {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 47%;
            flex: 0 1 47%;
  }
}
@media (max-width: 540.98px) {
  .management__card {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
}

.management__img {
  max-height: 375px;
  width: auto;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .management__img {
    max-height: 320px;
  }
}
@media (max-width: 540.98px) {
  .management__img {
    min-height: 390px;
  }
}
@media (max-width: 336.98px) {
  .management__img {
    min-height: 320px;
  }
}

.management__img img {
  height: auto;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.management__text {
  width: 100%;
  padding: 10px 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 13px;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: center;
      align-self: center;
  max-width: 315px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media (max-width: 567.98px) {
  .management__text {
    gap: 10px;
  }
}

.management__name {
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 140%;
}
@media (max-width: 991.98px) {
  .management__name {
    font-size: 15px;
  }
}

.management__job_title {
  width: 100%;
  line-height: 120%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 14px;
}
@media (max-width: 991.98px) {
  .management__job_title {
    font-size: 13px;
  }
}

.management__tel {
  width: 100%;
}

.management__tel a {
  color: #000;
  font-size: 14px;
}
@media (max-width: 991.98px) {
  .management__tel a {
    font-size: 13px;
  }
}

.vacancy_page {
  padding: 20px 0 0 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media (max-width: 567.98px) {
  .vacancy_page {
    padding: 15px 0 5px 0;
  }
}

.vacancies_page_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.vacancy_page_item {
  background: white;
  border-radius: 3px;
  margin-bottom: 15px;
  -webkit-box-shadow: 0 2px 10px rgba(28, 7, 78, 0.25);
          box-shadow: 0 2px 10px rgba(28, 7, 78, 0.25);
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.vacancy_page_item.active {
  -webkit-box-shadow: 0 5px 15px rgba(28, 7, 78, 0.3);
          box-shadow: 0 5px 15px rgba(28, 7, 78, 0.3);
}

.vacancy_page_header {
  padding: 20px 25px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  position: relative;
}
@media (max-width: 567.98px) {
  .vacancy_page_header {
    padding: 10px;
  }
}
@media (any-hover: hover) {
  .vacancy_page_header:hover {
    background-color: #0d0932;
  }
  .vacancy_page_header:hover .vacancy_page_meta {
    color: #fff;
  }
  .vacancy_page_header:hover .vacancy_page_title {
    color: #fff;
  }
  .vacancy_page_header:hover .vacancy_page_toggle::before {
    background-color: #ffffff;
  }
  .vacancy_page_header:hover .vacancy_page_toggle::after {
    background-color: #ffffff;
  }
}

.vacancy_page_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.vacancy_page_title {
  font-weight: 900;
}

.vacancy_page_meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: #000000;
}
@media (max-width: 567.98px) {
  .vacancy_page_meta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3px;
  }
}

.vacancy_page_meta_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}

@media (max-width: 567.98px) {
  .vacancy_page_meta_item span {
    font-size: 12px;
  }
}

.vacancy_page_toggle {
  width: 20px;
  height: 20px;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.vacancy_page_toggle::before,
.vacancy_page_toggle::after {
  content: "";
  position: absolute;
  background-color: #000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.vacancy_page_toggle::before {
  width: 100%;
  height: 2px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.vacancy_page_toggle::after {
  width: 2px;
  height: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.vacancy_page_item.active .vacancy_page_toggle::after {
  -webkit-transform: translateX(-50%) rotate(90deg);
      -ms-transform: translateX(-50%) rotate(90deg);
          transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.vacancy_page_content {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.4s ease, padding 0.3s ease;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background-color: #f9f9f9;
}

.vacancy_page_item.active .vacancy_page_content {
  max-height: 1000px;
  padding: 10px 25px 25px;
}

.vacancy_page_description {
  margin-bottom: 20px;
  line-height: 1.6;
  color: #000000;
}
@media (max-width: 567.98px) {
  .vacancy_page_description p {
    font-size: 14px;
  }
}

.vacancy_page_requirements,
.vacancy_page_conditions {
  margin-bottom: 20px;
}

.vacancy_page_subtitle {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0d0932;
}
@media (max-width: 567.98px) {
  .vacancy_page_subtitle {
    font-size: 14px;
  }
}

.vacancy_page_list {
  padding-left: 20px;
  margin-bottom: 15px;
}
@media (max-width: 567.98px) {
  .vacancy_page_list {
    font-size: 14px;
  }
}

.vacancy_page_list li {
  list-style-type: disc;
  margin-bottom: 5px;
  line-height: 1.5;
}

/* Стили для показа телефона */
.vacancy_page_contact {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

.show_phone_btn {
  display: inline-block;
  padding: 8px 15px;
  background-color: #0d0932;
  color: white;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  margin-bottom: 15px;
}
@media (max-width: 567.98px) {
  .show_phone_btn {
    font-size: 14px;
  }
}

.show_phone_btn:hover {
  background-color: #2e2679;
}

.phone_container {
  display: none;
  margin-top: 10px;
  padding: 15px;
  background-color: #e8f5e9;
  border-radius: 4px;
  border-left: 4px solid #4caf50;
}

.phone_container.active {
  display: block;
}

.contact_phone {
  font-size: 18px;
  font-weight: 600;
  color: #0d0932;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media (max-width: 567.98px) {
  .contact_phone {
    font-size: 14px;
  }
}

.contact_phone:hover {
  color: #2e2679;
}

.contact_phone::before {
  content: "📞";
  font-size: 20px;
}

/* Отсутствие вакансий */
.no_vacancies {
  text-align: center;
  padding: 40px 20px;
  background: white;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.no_vacancies p {
  font-size: 18px;
  color: #666;
  margin-bottom: 20px;
}

/* Стили для секции скачивания резюме */
.download-resume {
  padding: 40px 0;
  background: #0d0932;
}

.download__columns {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.text__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.download__text {
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
}

.email-link {
  color: #a097f3;
  text-decoration: none;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .email-link:hover {
    color: #68629e;
  }
}

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

.resume_download_file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  background: #0d0932;
  padding: 15px 25px;
  border-radius: 3px;
  border: 1px solid #ffffff;
  min-width: 280px;
}

.resume_file_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

.resume_file_icon {
  font-size: 1.5rem;
}

.resume_file_name {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

.download-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  background: #f1f2f6;
  color: #0d0932;
  padding: 10px 20px;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
@media (any-hover: hover) {
  .download-btn:hover {
    background: #d6d7da;
    -webkit-transform: translateY(-1px);
        -ms-transform: translateY(-1px);
            transform: translateY(-1px);
  }
}

/* Адаптивность */
@media (max-width: 768px) {
  .download-resume {
    padding: 30px 0;
  }
  .download__columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .text__column {
    text-align: center;
  }
  .resume_file_column {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .resume_download_file {
    min-width: auto;
    width: 100%;
    max-width: 400px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }
  .download__text {
    font-size: 0.9rem;
  }
  .resume_download_file {
    padding: 12px 18px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
  .download-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.company_section {
  padding: 10px 0px;
}

/* Верхнее подменю */
.submenu_company {
  padding: 15px 0px;
  margin-bottom: 10px;
}
@media (max-width: 767.98px) {
  .submenu_company {
    padding: 5px 0px;
  }
}

.submenu_company ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 15px;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
@media (max-width: 991.98px) {
  .submenu_company ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.submenu_company a {
  display: block;
  text-decoration: none;
  color: #000;
  font-weight: 600;
  font-size: 16px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  position: relative;
}
.submenu_company a::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  background-color: #000000;
  bottom: 0;
  right: -30%;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.submenu_company a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background-color: #000000;
  bottom: 0;
  left: -30%;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media (any-hover: hover) {
  .submenu_company a:hover::after {
    left: 50%;
    width: 50%;
  }
  .submenu_company a:hover::before {
    right: 50%;
    width: 50%;
  }
}
@media (max-width: 991.98px) {
  .submenu_company a {
    font-size: 15px;
  }
}
.active_company_link {
  border-bottom: 1px solid #000;
}

.active_company_link::before {
  display: none;
}

.active_company_link::after {
  display: none;
}

.submenu_company a:hover {
  color: #0d0932;
}

/* Текстовые блоки с изображениями */
.company_content_section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media (max-width: 991.98px) {
  .company_content_section {
    margin-bottom: 15px;
    gap: 20px;
  }
}
@media (max-width: 767.98px) {
  .company_content_section {
    gap: 20px;
  }
}

.company_content_section.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.company_content_text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.company_content_image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 350px;
  background-color: #e9ecef;
  border-radius: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  margin: 5px 0px;
}

.company_content_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.company_content_text_p {
  font-weight: 400;
  font-size: 17px;
  line-height: 150%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: justify;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.company_content_text_p i {
  font-weight: 700;
}
@media (max-width: 567.98px) {
  .company_content_text_p {
    font-size: 14px;
  }
}

._p1 {
  text-indent: 50px;
  margin-top: 20px;
}
@media (max-width: 567.98px) {
  ._p1 {
    margin-top: 5px;
  }
}

._p2 {
  text-indent: 50px;
}

/* Обновленный слайдер с несколькими изображениями */
.company_slider-container_company {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background-color: rgba(12, 16, 71, 0.05);
  padding: 20px 0;
  margin-top: 30px;
  position: relative;
}
@media (max-width: 567.98px) {
  .company_slider-container_company {
    margin-top: 5px;
  }
}

.company_slider {
  max-width: 1440px;
  margin: 0 auto;
}

.company_slider-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}

.company_slider-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.company_slider-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  /* Показываем 4 изображения одновременно */
  height: 250px;
  position: relative;
  overflow: hidden;
  padding: 0 10px;
}

.company_slider-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 3px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  cursor: pointer;
}

@media (any-hover: hover) {
  .company_slider-item img:hover {
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.company_slider-btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.7);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  z-index: 2;
}

.company_slider-btn.prev {
  left: 20px;
  z-index: 2;
}

.company_slider-btn.next {
  right: 20px;
  z-index: 2;
}

/* Модальное окно для полноэкранного просмотра */
.company_modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.company_modal-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
}

.company_modal-content img {
  width: 100%;
  height: auto;
  max-height: 90vh;
  -o-object-fit: contain;
     object-fit: contain;
}

.company_modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  color: white;
  font-size: 30px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1001;
}

.company_modal-nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  color: white;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  z-index: 1001;
}

.company_modal-nav:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.company_modal-nav.prev {
  left: 20px;
}

.company_modal-nav.next {
  right: 20px;
}

.company_modal-counter {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  color: white;
  font-size: 18px;
}

/* Адаптивность */
@media (max-width: 1200px) {
  .company_slider-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333%;
            flex: 0 0 33.333%;
    /* 3 изображения на экране */
  }
}
@media (max-width: 991.98px) {
  .company_content_section,
  .company_content_section.reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .company_content_image {
    width: 100%;
  }
  .company_slider-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    /* 2 изображения на экране */
    height: 200px;
  }
}
@media (max-width: 767.98px) {
  .company_content_image {
    height: 250px;
  }
  .company_slider-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    /* 1 изображение на экране */
    height: 250px;
  }
  .company_slider-btn {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}
.photo_company {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.photo__container {
  padding: 20px 0px;
}

.photo_years_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 60px;
  margin-bottom: 5px;
}
@media (max-width: 567.98px) {
  .photo_years_container {
    gap: 30px;
  }
}

.photo_year_card {
  background: white;
  border-radius: 3px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 280px;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
}
@media (any-hover: hover) {
  .photo_year_card:hover {
    -webkit-transform: translateY(-3px);
        -ms-transform: translateY(-3px);
            transform: translateY(-3px);
    -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  }
}

.photo_year_header {
  background: #0d0932;
  color: white;
  padding: 15px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.photo_year_preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  padding: 5px;
}

.photo_year_preview img {
  width: 100%;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}

/* Слайдер */
.photogalery_slider {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 1000;
  -ms-touch-action: pan-y pinch-zoom;
      touch-action: pan-y pinch-zoom;
}

.photogalery_slider.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.photogalery_slider-header {
  color: white;
  font-size: 1.8rem;
  text-align: center;
  padding: 15px 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.photogalery_slider-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1001;
}

.photogalery_slider-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin: 0 auto;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 0;
  /* Важно для flex-элементов с overflow */
  padding: 0 10px;
  -ms-touch-action: pan-y pinch-zoom;
      touch-action: pan-y pinch-zoom;
}

.photogalery_slider-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  -ms-touch-action: pan-y pinch-zoom;
      touch-action: pan-y pinch-zoom;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #000;
}

.photogalery_slider-image {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
  /* Легкое увеличение изображения */
}

.photogalery_slider-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 20px 0;
}

.photogalery_slider-nav button {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 15px;
  cursor: pointer;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.photogalery_slider-nav button:hover {
  background: rgba(255, 255, 255, 0.4);
}

.photogalery_slider-thumbnails {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin-top: 20px;
  padding: 10px;
  max-width: 100%;
  overflow-x: auto;
  -ms-touch-action: pan-x pinch-zoom;
      touch-action: pan-x pinch-zoom;
}

.photogalery_slider-thumbnail {
  width: 80px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.6;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.photogalery_slider-thumbnail.active {
  opacity: 1;
  border: 2px solid white;
}

.photogalery_slider-thumbnail:hover {
  opacity: 0.8;
}

.swipe-hint {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  display: none;
}

.photogalery_slider-counter {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

@media (max-width: 768px) {
  .photo_year_card {
    width: 100%;
    max-width: 350px;
  }
  .photogalery_slider-nav button {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    margin: 0 10px;
  }
  .photogalery_slider-thumbnail {
    width: 60px;
    height: 45px;
  }
  .swipe-hint {
    display: block;
  }
  .photogalery_slider-main {
    height: 60vh;
  }
  .slider-header {
    font-size: 1.5rem;
    padding: 10px 0;
  }
  .slider-close {
    top: 10px;
    right: 15px;
    font-size: 1.8rem;
  }
  .slider-main {
    padding: 0 5px;
  }
}
@media (max-width: 480px) {
  .slider-header {
    font-size: 1.3rem;
  }
}
@media (max-width: 480px) {
  .photogalery_slider-main {
    height: 50vh;
  }
}
.documents {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-bottom: 5px;
  margin-bottom: 20px;
}

.documents_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}

.document_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background: white;
  border-radius: 3px;
  padding: 15px;
  -webkit-box-shadow: 0 2px 8px rgba(17, 6, 80, 0.05);
          box-shadow: 0 2px 8px rgba(17, 6, 80, 0.05);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid #eaeaea;
}
@media (any-hover: hover) {
  .document_item:hover {
    -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: #f8f9fa;
  }
}

.doc_icon {
  font-size: 32px;
  margin-right: 15px;
  color: #0d0932;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 15px;
}

.doc_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  min-width: 0;
  /* Для корректной работы с overflow */
}

.doc_text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  /* Для корректной работы с overflow */
  margin-right: 20px;
}

.doc_title {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  font-weight: 600;
  color: #000;
  word-break: break-word;
  line-height: 1.2;
  margin-bottom: 8px;
}

.doc_details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  font-size: 0.9rem;
  color: #5c6464;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.detail_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}

.detail_label {
  margin-right: 5px;
}

.doc_actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 300px;
  /* Фиксированная ширина для кнопок */
}

.doc_btn {
  padding: 10px 30px;
  border: none;
  border-radius: 3px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  font-size: 0.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  min-width: 110px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  white-space: nowrap;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.btn-watch {
  background-color: #0d0932;
  color: white;
}
@media (any-hover: hover) {
  .btn-watch:hover {
    background-color: #1c4d6e;
  }
}

.btn-download {
  background-color: #f1f2f6;
  color: #0d0932;
  border: 1px solid #ddd;
}
@media (any-hover: hover) {
  .btn-download:hover {
    background-color: #e4e5e9;
  }
}

.btn-icon {
  font-size: 1rem;
}

/* Медиа-запросы для адаптации */
@media (max-width: 1024px) {
  .doc_details {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .document_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    padding: 15px;
  }
  .doc_icon {
    margin-right: 0;
    -ms-flex-item-align: center;
        align-self: center;
  }
  .doc_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .doc_text {
    margin-right: 0;
    margin-bottom: 15px;
    width: 100%;
  }
  .doc_title {
    margin-right: 0;
    font-size: 1rem;
  }
  .doc_details {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .doc_actions {
    width: 100%;
    -webkit-box-pack: stretch;
        -ms-flex-pack: stretch;
            justify-content: stretch;
  }
  .doc_btn {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 12px;
  }
}
@media (max-width: 480px) {
  .document_item {
    padding: 12px;
  }
  .doc_details {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
  }
  .detail_item {
    white-space: normal;
  }
  .doc_btn {
    min-width: auto;
    font-size: 0.85rem;
    padding: 10px;
  }
}
@media (max-width: 360px) {
  .doc_actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .doc_btn {
    width: 100%;
  }
}
.certificates {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 10px;
}

.certificates__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.certificate__item {
  background: white;
  border-radius: 3px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 15px rgba(15, 6, 65, 0.1);
          box-shadow: 0 4px 15px rgba(15, 6, 65, 0.1);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
@media (any-hover: hover) {
  .certificate__item:hover {
    -webkit-transform: translateY(-3px);
        -ms-transform: translateY(-3px);
            transform: translateY(-3px);
    -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }
}

.certificate__image_container {
  width: 100%;
  height: 300px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.certificate__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.pages__indicator {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
}

/* Модальное окно */
.certificate__modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  overflow: auto;
}

.certificate__modal-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  min-height: 100%;
  width: 100%;
  padding-top: 30px;
}

.certificate__modal-image-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 90%;
  height: calc(100vh - 100px);
  margin: 0 auto;
}

.certificate__modal-image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.certificate__close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  background: rgba(0, 0, 0, 0.5);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (any-hover: hover) {
  .certificate__close-btn:hover {
    color: #3c2dc7;
    background: rgba(0, 0, 0, 0.7);
  }
}

.certificate__modal-navigation {
  position: fixed;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  z-index: 10;
}

.certificate__nav-btn {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
@media (any-hover: hover) {
  .certificate__nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
  }
}

.certificate__nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.page-indicator {
  color: white;
  font-size: 1.1rem;
  min-width: 80px;
  text-align: center;
}

/* Адаптивность */
@media (max-width: 1024px) {
  .certificates__grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
  }
  .certificate__image_container {
    height: 280px;
  }
}
@media (max-width: 768px) {
  .certificates__grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
  }
  .certificate__image_container {
    height: 240px;
  }
  .certificate__caption {
    padding: 10px;
    font-size: 0.9rem;
    min-height: 50px;
  }
  .certificate__close-btn {
    font-size: 30px;
    top: 15px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
  .certificate__modal-content {
    padding-top: 50px;
    padding-bottom: 90px;
  }
  .certificate__modal-image-container {
    height: calc(100vh - 180px);
    max-width: 95%;
  }
  .certificate__modal-navigation {
    bottom: 20px;
    padding: 12px 15px;
  }
}
@media (max-width: 480px) {
  .certificates__grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
  }
  .certificate__image_container {
    height: 200px;
  }
  .certificate__caption {
    font-size: 0.85rem;
    min-height: 40px;
  }
  .certificate__modal-content {
    padding-top: 40px;
    padding-bottom: 80px;
  }
  .certificate__modal-image-container {
    height: calc(100vh - 160px);
  }
  .certificate__modal-navigation {
    gap: 5px;
    padding: 5px;
    bottom: 5px;
  }
  .certificate__nav-btn {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
  .page-indicator {
    font-size: 1rem;
  }
}
@media (max-width: 360px) {
  .certificates__grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .certificate__image_container {
    height: 250px;
  }
}
/* Анимация появления секций */
.scroll-section {
  opacity: 0;
  -webkit-transform: translateY(50px);
      -ms-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
}

.scroll-section.active {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

/* Улучшаем плавность скролла */
html {
  scroll-behavior: smooth;
}

/* Гарантируем, что секции изначально скрыты */
.services_section,
.company_section,
.about-section,
.news__section,
.vacancies_section,
.photo_company,
.company__main,
.certificates,
.company_content_image,
.services_page,
.contacts__section,
.management_section,
.all-news,
.footer,
.download-resume,
.documents,
.vacancy_page,
.intro_text_crc,
.work_types_crc,
.gallery_crc,
.other_section {
  opacity: 0;
  -webkit-transform: translateY(-30px);
      -ms-transform: translateY(-30px);
          transform: translateY(-30px);
}

.hero_slider {
  opacity: 0;
  -webkit-transform: scale(1.02);
      -ms-transform: scale(1.02);
          transform: scale(1.02);
}

/* Гарантируем, что анимации будут работать на GPU */
.scroll-section {
  will-change: transform, opacity;
}

/* Отключаем анимации для пользователей, которые предпочитают reduced motion */
@media (prefers-reduced-motion: reduce) {
  .scroll-section {
    -webkit-transition: none;
    transition: none;
    opacity: 1;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
  html {
    scroll-behavior: auto;
  }
}
.intro_text_crc {
  padding: 30px 0px 30px;
}
@media (max-width: 567.98px) {
  .intro_text_crc {
    padding: 15px 0px;
    margin-bottom: 0px;
  }
}

.intro_content_crc p {
  font-size: 18px;
  line-height: 140%;
  text-indent: 50px;
  text-align: justify;
}
@media (max-width: 567.98px) {
  .intro_content_crc p {
    font-size: 16px;
    text-indent: 30px;
  }
}

.work_types_crc {
  background-color: #0d0932;
  padding: 40px 0px 10px;
}
@media (max-width: 567.98px) {
  .work_types_crc {
    padding: 20px 0px 0px;
  }
}

.work_list_crc {
  border-radius: 5px;
}
@media (max-width: 567.98px) {
  .work_list_crc {
    padding: 0px 5px;
  }
}

.work_list_crc ul {
  list-style: none;
  -webkit-columns: 1;
     -moz-columns: 1;
          columns: 1;
}

.work_list_crc li {
  color: #fff;
  font-size: 18px;
  line-height: 140%;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(134, 134, 134, 0.2470588235);
  position: relative;
  padding-left: 20px;
}
@media (max-width: 567.98px) {
  .work_list_crc li {
    font-size: 16px;
  }
}

.work_list_crc li::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  font-weight: bold;
  color: #fff;
}

.gallery_crc_container {
  position: relative;
}

.gallery_crc {
  padding: 40px 0px 10px;
}
@media (max-width: 567.98px) {
  .gallery_crc {
    padding: 15px 0px 0px;
  }
}
@media (max-width: 767.98px) {
  .gallery_crc {
    padding: 15px 0px 5px;
  }
}

.gallery_crc_grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding: 1rem 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #0d0932 #f1f1f1;
}
@media (max-width: 567.98px) {
  .gallery_crc_grid {
    padding: 10px 0px;
  }
}

.gallery_crc_grid::-webkit-scrollbar {
  height: 8px;
}

.gallery_crc_grid::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.gallery_crc_grid::-webkit-scrollbar-thumb {
  background: #0d0932;
  border-radius: 10px;
}

.gallery_crc_item {
  border-radius: 5px;
  overflow: hidden;
  height: 250px;
  cursor: pointer;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: calc(25% - 1.125rem);
  /* 4 изображения в ряд с учетом gap */
}

@media (max-width: 1200px) {
  .gallery_crc_item {
    width: calc(33.333% - 1rem);
    /* 3 изображения на планшетах */
  }
}
@media (max-width: 768px) {
  .gallery_crc_item {
    width: calc(50% - 0.75rem);
    /* 2 изображения на мобильных */
    height: 200px;
  }
}
@media (max-width: 567.98px) {
  .gallery_crc_item {
    height: auto;
  }
}
.gallery_crc_item img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (any-hover: hover) {
  .gallery_crc_item img:hover {
    -webkit-transform: translateY(-3px);
        -ms-transform: translateY(-3px);
            transform: translateY(-3px);
  }
}
.gallery_crc_item img:not([data-loaded]) {
  opacity: 0;
}

/* Кнопки навигации для галереи */
.gallery_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.gallery_nav button {
  background-color: #0d0932;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

@media (any-hover: hover) {
  .gallery_nav button:hover {
    background-color: #1a1450;
  }
}
@media (max-width: 567.98px) {
  .gallery_nav {
    display: none;
    /* Скрываем кнопки на мобильных, используем только скролл */
  }
}
.lightbox_crc {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 100;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.lightbox_crc.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.lightbox_crc-img {
  max-width: 90%;
  max-height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 3px;
  -webkit-box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
          box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

.lightbox_crc-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  cursor: pointer;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media (any-hover: hover) {
  .lightbox_crc-close:hover {
    color: #e74c3c;
  }
}

.lightbox_crc-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 90%;
  max-width: 800px;
  margin-top: 20px;
}

.lightbox_crc-prev,
.lightbox_crc-next {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media (any-hover: hover) {
  .lightbox_crc-prev:hover,
  .lightbox_crc-next:hover {
    background-color: #e74c3c;
  }
}

.lightbox_crc-counter {
  color: white;
  font-size: 18px;
  margin-top: 10px;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

img {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

img[data-src] {
  opacity: 0;
}

.news-link-container {
  margin-top: 10px;
  padding-top: 15px;
}

.news-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 8px 16px;
  background-color: #0d0932;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.news-link:hover {
  background-color: #171058;
  text-decoration: none;
  color: white;
}

.news-paragraph {
  text-indent: 30px;
  font-weight: 600;
}