

/* Start:/local/templates/aspro_max/components/bitrix/news/vacancy_new/style.css?178893594214914*/

.features-section * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.features-section {
  padding: 20px 10px;
  display: flex;
  justify-content: center;
  background-color: #004d94;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  overflow: hidden;
  border-radius: 0 0 3px 3px;
}

.features-container {
  width: 100%;
  max-width: 1200px;
  display: grid;
  /* Создает 5 одинаковых колонок */
  grid-template-columns: repeat(5, 1fr); 
  gap: 30px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-number {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  color: #ffffff;
}

.feature-text {
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.75);
  max-width: 160px;
}

.about-section * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.about-section {
  background-color: #f8fafc;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.about-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.about-info {
  flex: 1;
  max-width: 480px;
}

.about-title {
  font-size: 26px;
  font-weight: 700;
  color: #071f3d;
  margin-bottom: 24px;
}

.about-desc p {
  font-size: 15px;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 16px;
}

.about-desc p:last-child {
  margin-bottom: 40px;
}

.about-btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 500;
  color: #0056b3;
  text-decoration: none;
  border: 1px solid #0056b3;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
}

.about-btn:hover {
  background-color: #0056b3;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 86, 179, 0.15);
}

.about-gallery {
  flex: 1.2;
  display: grid;
  /* 12-колоночная сетка для гибкого распределения пропорций */
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 200px 200px; /* Фиксированная базовая высота рядов */
  gap: 12px;
}

/* Свойства для всех картинок внутри карточек */
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Заполняет блок без деформации пропорций */
  transition: transform 0.3s ease;
}

/* Эффект легкого приближения при наведении на фото */
.gallery-item:hover img {
  transform: scale(1.03);
}

/* Распределяем элементы по сетке точь-в-точь как на макете */
.item-building {
  grid-column: span 8; /* Занимает 8 колонок из 12 в 1-м ряду */
}

.item-chip {
  grid-column: span 4; /* Занимает оставшиеся 4 колонки в 1-м ряду */
}

.item-meeting {
  grid-column: span 5; /* Занимает 5 колонок во 2-м ряду */
}

.item-office {
  grid-column: span 7; /* Занимает 7 колонок во 2-м ряду */
}

.vacancies-section {
  margin: 20px auto 0;
}

.vacancies-header {
  background-color: #fff;
  color: #000;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 15px 30px;
  border-radius: 12px;
  border: 1px solid #e1e4e8;
  gap: 20px;
}

.vacancies-title {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
}

.vacancies-tabs {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.tab-btn {
  background: transparent;
  padding: 12px 26px;
  border-radius: 12px;
  border: 1px solid #1e70cd;
  color: #004d94;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.2s ease;
}

.tab-btn:hover {
  border-color: #004d94;
  background-color: #004d94;
  color: #ffffff;
}

.tab-btn.active {
  background-color: #004d94;
  color: #ffffff;
}

.vacancies-content {
  background: transparent;
  padding: 20px 0;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden; /* Предотвращает появление ложных зон для мыши от скрытых стрелок */
}

.vacancies-slider {
  display: none; /* Скрываем все слайдеры по умолчанию */
  gap: 16px;
  overflow-x: auto; /* Нативный горизонтальный скролл */
  padding: 10px 5px;
  scroll-behavior: smooth;
  /* Скрываем скроллбар в Firefox */
  scrollbar-width: none;
  /* Скрываем скроллбар в Internet Explorer и старом Edge */
  -ms-overflow-style: none;
  /* Плавный инерционный скролл на iOS (Safari) */
  -webkit-overflow-scrolling: touch;
}

/* Показываем только активный слайдер */
.vacancies-slider.active {
  display: flex; 
}

/* Скрываем скроллбар в WebKit-браузерах (Chrome, Safari, Opera, новый Edge) */
.vacancies-slider::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  margin-top: -22px;
  width: 44px;
  height: 44px;
  background-color: #fff;
  border: 1px solid #e1e4e8;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  z-index: 10;
  transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s;
  opacity: 1;
}

.slider-arrow svg {
  width: 24px;
  height: 24px;
  fill: #002d67;
}

.slider-arrow:hover {
  background-color: #f4f6f9;
  transform: scale(1.05);
}

.arrow-left {
  left: 10px;
}

.arrow-right {
  right: 10px;
}

.slider-arrow.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
}

.vacancy-card {
  flex: 0 0 271px;
  background: #fff;
  border: 1px solid #e1e4e8;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.1s ease, outline 0.1s ease, outline-offset 0.1s ease;
  gap: 12px;
  transform-origin: center center;
  outline: 0px solid transparent;
  outline-offset: 0px;
}

.vacancy-card:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  outline: 3px solid #1e70cd;
  outline-offset: -3px;
  z-index: 1;
}

.vacancy-card h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #002d67;
  line-height: 1.3;
  height: 60px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  overflow: hidden;
}

.vacancy-card h3 .title-line {
  flex-shrink: 0;
  width: 3px;
  height: 1em; /* высота равна высоте одной строки текста */
  background: #1e70cd;
  border-radius: 2px;
  margin-top: 2px; /* небольшой отступ сверху для выравнивания */
}

.vacancy-card h3 .title-text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.vacancy-card .city,
.vacancy-card .salary,
.vacancy-card .experience{
  display: flex;
  align-items: center;
  color: #777777;
  font-size: 13px;
  gap: 10px;
}

.vacancy-card svg {
  width: 18px;
  height: auto;
  color: #002d67;
}

.vacancy-card .salary {
  font-weight: 600;
}

.vacancy-card .experience {
  font-weight: 600;
  margin-bottom: 5px;
}

.hidden {
	display: none;
}

.vacancy-btn {
  width: 100%;
  display: flex;
  margin-top: auto;
  border: 1px solid #002d67;
  color: #002d67;
  border-radius: 8px;
  padding: 8px 14px 10px 22px;
  font-weight: 700;
}

.vacancy-card svg {
  min-width: 22px;
  height: auto;
}

.vacancy-btn-text {
  width: 100%;
  text-align: center;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-window {
  background: #fff;
  width: 100%;
  max-width: 550px;
  border-radius: 8px;
  padding: 30px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-62px);
  transition: transform 0.3s ease;
  margin: 20px;
  overflow-y: auto;
  max-height: 70vh;
}

.modal-overlay.is-open .modal-window {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #888;
  cursor: pointer;
  transition: color 0.2s;
}

.modal-close:hover {
  color: #222;
}

.modal-city {
  font-size: 13px;
  color: #888;
  display: block;
  margin-bottom: 8px;
}

.modal-title {
  margin: 0 0 12px 0;
  font-size: 22px;
  color: #002d67;
  line-height: 1.3;
}

.modal-salary {
  font-size: 18px;
  font-weight: bold;
  color: #222;
  margin: 0 0 4px 0;
}

.modal-experience {
  font-size: 13px;
  color: #888;
  margin: 0 0 20px 0;
}

.modal-description p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin: 0 0 25px 0;
}

.benefits-section {
  margin: 0 auto;
  padding: 20px 0;
}

.benefits-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.benefit-card {
  background: #ffffff;
  border: 1px solid #e1e6eb;
  border-radius: 8px;
  padding: 35px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.benefit-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #0052cc;
}

.card-icon {
  height: 48px;
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #0052cc;
}

.card-title {
  font-size: 15px;
  font-weight: 700;
  color: #1c2434;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.card-text {
  font-size: 13px;
  color: #637381;
  margin: 0;
  line-height: 1.4;
}

.career-banner * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.career-banner {
  position: relative;
  background-color: #004d94;
  background-size: cover;
  background-position: center;
  padding: 60px 40px;
  color: #ffffff;
  overflow: hidden;
  border-radius: 3px;
}

.career-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.career-content {
  flex: 1;
  max-width: 650px;
}

.career-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.3;
  color: #ffffff;
}

.career-text {
  font-size: 15px;
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: 30px;
}

.career-buttons {
  display: flex;
  gap: 15px;
}

.career-buttons .btn span {
  padding: 0;
}

.career-contacts {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 320px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #a3b8cc;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-link, .contact-text {
  font-size: 16px;
  color: #ffffff;
  text-decoration: none;
  line-height: 1.4;
}

.contact-link:hover {
  text-decoration: underline;
  color: #1e70cd;
}

.btn.btn-default.special-white,
.btn.btn-secondary.special-blue {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  width: calc((100% - 15px * 1) / 2);
  font-size: 14px;
  font-weight: 600;
  padding: 16px 22px;
  border-radius: 8px;
}

.btn.btn-default.special-white svg,
.btn.btn-secondary.special-blue svg {
  min-width: 22px;
  height: auto;
}

.btn.btn-default.special-white span,
.btn.btn-secondary.special-blue span {
  width: 100%;
}

.btn.btn-default.special-white {
  border: 1px solid #ffffff;
  color: #1e70cd;
  background-color: #ffffff;
}

.btn.btn-secondary.special-blue {
  border: 1px solid #ffffff;
  color: #ffffff;
  background-color: transparent;
}

.btn.btn-secondary.special-blue.long-btn {
  white-space: normal;
  text-align: left;
  line-height: 140%;
}

.btn.btn-default.special-white:hover {
  border: 1px solid #ffffff;
  color: #1e70cd;
  background-color: #ffffff;
  opacity: 0.9;
}

.btn.btn-secondary.special-blue:hover {
  opacity: 0.9;
}

@media (max-width: 1100px) {
  .benefits-container { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {

  .features-container {
    /* Перестраиваем в 3 колонки, оставшиеся переносятся ниже */
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px;
  }
  
  .about-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .about-info {
    max-width: 100%;
  }

  .about-gallery {
    width: 100%;
    grid-template-rows: 180px 180px;
  }
  
  .career-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
  }
  
  .career-content, .career-contacts {
    max-width: 100%;
    width: 100%;
  }
  
}

@media (max-width: 768px) {
  .features-container {
    /* Перестраиваем в сетку 2 колонки */
    grid-template-columns: repeat(2, 1fr);
  }
  
  .slider-arrow {
    display: none; /* Скрываем стрелки на смартфонах, свайпы работают нативно */
  }
  .vacancies-header {
    padding: 15px 20px;
  }
  .modal-window {
    padding: 20px;
  }
  
  .benefits-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
.about-section {
    padding: 40px 15px;
  }

  .about-title {
    font-size: 22px;
  }

  .about-btn {
    width: 100%;
    text-align: center;
  }

  .about-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 8px;
  }

  .gallery-item {
    grid-column: span 1 !important;
    aspect-ratio: 4 / 3;
  }
  
  .career-banner {
    padding: 40px 15px;
  }
  
  .career-title {
    font-size: 22px;
  }
  
  .career-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .career-contacts {
    min-width: auto;
  }

  .btn.btn-default.special-white,
  .btn.btn-secondary.special-blue {
    width: 100%;
  }

  .btn.btn-secondary.special-blue.long-btn {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .features-section {
    padding: 40px 15px;
  }

  .features-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .feature-number {
    font-size: 32px;
    margin-bottom: 8px;
  }
  
  .feature-text {
    font-size: 13px;
    max-width: 100%;
  }
  
  .benefits-container { grid-template-columns: 1fr; gap: 12px; }
  .benefit-card { padding: 25px 16px; }
}
/* End */


/* Start:/include/vacancy_page_new/hero-banner.css?17889359423812*/
.hero-banner * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.hero-banner {
  overflow: hidden;
  position: relative;
  border-radius: 0 0 0 0;
  background-size: cover;
  background-position: right top;
  background-repeat: no-repeat;
}

.hero-container {
  max-width: 1348px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 500px;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  padding: 40px 0 40px 45px;
  color: #313131;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  border: 2px solid #0153a9;
  border-radius: 8px;
  padding: 14px 24px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 30px;
}

.hero-text {
  font-size: 16px;
  line-height: 1.5;
  color: #313131;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: flex-start;
}

/* Правая часть — блок с картинкой и полукруглым вырезом */
.hero-image-wrapper {
  flex: 1;
  height: 500px;
  position: relative;
  /* clip-path создает идеальный овальный/круглый срез слева */
  clip-path: ellipse(90% 100% at 95% 50%);
  display: none;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center left;
}

.hero-banner .btn.btn-default.special-white,
.hero-banner .btn.btn-secondary.special-transparent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  width: calc((100% - 15px * 1) / 2);
  font-size: 14px;
  font-weight: 600;
  padding: 16px 22px;
  border-radius: 8px;
}

.hero-banner .btn.btn-default.special-white svg,
.hero-banner .btn.btn-secondary.special-transparent svg {
  min-width: 22px;
  height: auto;
}

.hero-banner .btn.btn-default.special-white span,
.hero-banner .btn.btn-secondary.special-transparent span {
  width: 100%;
}

.hero-banner .btn.btn-default.special-white {
  border: 1px solid #0153a9;
  color: #ffffff;
  background-color: #0153a9;
}

.hero-banner .btn.btn-secondary.special-transparent {
  border: 1px solid #0153a9;
  color: #0153a9;
  background-color: transparent;
}

.hero-banner .btn.btn-secondary.special-transparent.long-btn {
  white-space: normal;
  text-align: left;
  line-height: 140%;
  display: none;
}

.hero-banner .btn.btn-default.special-white:hover {
  border: 1px solid #0153a9;
  color: #0153a9;
  background-color: #ffffff;
  opacity: 0.9;
}

.hero-banner .btn.btn-secondary.special-transparent:hover {
  opacity: 0.9;
}

@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    order: 2; /* Текст опускаем вниз */
    padding: 30px 20px 50px;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
    width: 100%;
  }

  /* Картинку сверху обрезаем снизу мягкой дугой */
  .hero-image-wrapper {
    width: 100%;
    height: 300px;
    order: 1; /* Картинка теперь сверху */
    clip-path: ellipse(100% 85% at 50% 15%);
  }
}

@media (max-width: 576px) {
  .hero-badge {
    font-size: 16px;
    padding: 10px 15px;
  }
  
  .hero-image-wrapper {
    height: 220px;
  }

  .hero-banner .btn.btn-default.special-white,
  .hero-banner .btn.btn-secondary.special-transparent {
    width: 100%;
  }

  .hero-banner .btn.btn-secondary.special-transparent.long-btn {
    text-align: center;
  }
}

/* End */


/* Start:/local/components/custom/img.slider/templates/.default/style.css?178904425412105*/
/* =========================================================
   MT-SYSTEMS — СЛАЙДЕР ВАКАНСИЙ
   3 ФОТО: ЛЕВОЕ + ЦЕНТРАЛЬНОЕ + ПРАВОЕ
   ========================================================= */


/* =========================================================
   ОСНОВНОЙ КОНТЕЙНЕР
   ========================================================= */

.img-slider {
    position: relative !important;

    width: 100% !important;
    max-width: 1500px !important;

    height: 430px !important;

    margin: 20px auto 45px !important;

    overflow: visible !important;

    box-sizing: border-box;
}


/* =========================================================
   СЦЕНА
   ========================================================= */

.img-slider-stage {
    position: absolute !important;

    top: 0;
    left: 0;

    width: 100% !important;
    height: 100% !important;

    overflow: visible !important;

    z-index: 1;
}


/* =========================================================
   WRAPPER
   ========================================================= */

.img-slider-wrapper {
    position: absolute !important;

    top: 0;
    left: 0;

    width: 100% !important;
    height: 100% !important;

    overflow: visible !important;

    box-sizing: border-box;
}


/* =========================================================
   КАЖДЫЙ SLIDE
   ========================================================= */

.img-slider-slide {
    position: absolute !important;

    top: 50%;
    left: 50%;

    width: 700px !important;
    height: 350px !important;

    margin: 0 !important;
    padding: 0 !important;

    transform:
        translate(-50%, -50%)
        scale(.68);

    opacity: 0;

    visibility: hidden;

    z-index: 1;

    pointer-events: none;

    transition:
        transform .7s cubic-bezier(.22,.61,.36,1),
        opacity .55s ease,
        filter .55s ease,
        visibility .55s ease;

    box-sizing: border-box;
}


/* =========================================================
   САМА КАРТИНКА
   ========================================================= */

.img-slider .img-for-slider {
    display: block !important;

    width: 100% !important;
    height: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;

    border-radius: 27px !important;

    object-fit: cover;

    opacity: 1 !important;

    filter: brightness(.62);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .10);

    box-sizing: border-box;

    transition:
        filter .55s ease,
        box-shadow .55s ease;
}


/* =========================================================
   FIT
   ========================================================= */

.img-slider .img-for-slider.fit-cover {
    object-fit: cover !important;
}

.img-slider .img-for-slider.fit-contain {
    object-fit: contain !important;
}


/* =========================================================
   ЦЕНТРАЛЬНАЯ ФОТОГРАФИЯ
   ========================================================= */

.img-slider-slide.slider-center {

    transform:
        translate(-50%, -50%)
        translateX(0)
        scale(1) !important;

    opacity: 1 !important;

    visibility: visible !important;

    z-index: 10 !important;

    pointer-events: auto !important;
}


.img-slider-slide.slider-center .img-for-slider {

    filter: brightness(1) !important;

    box-shadow:
        0 22px 45px rgba(0, 77, 148, .18) !important;
}


/* =========================================================
   ЛЕВАЯ ФОТОГРАФИЯ
   ========================================================= */

.img-slider-slide.slider-left {

    transform:
        translate(-50%, -50%)
        translateX(-430px)
        rotate(-4deg)
        scale(.72) !important;

    opacity: .72 !important;

    visibility: visible !important;

    z-index: 5 !important;

    pointer-events: auto !important;
}


/* =========================================================
   ПРАВАЯ ФОТОГРАФИЯ
   ========================================================= */

.img-slider-slide.slider-right {

    transform:
        translate(-50%, -50%)
        translateX(430px)
        rotate(4deg)
        scale(.72) !important;

    opacity: .72 !important;

    visibility: visible !important;

    z-index: 5 !important;

    pointer-events: auto !important;
}


/* =========================================================
   ЗАТЕМНЕНИЕ БОКОВЫХ
   ========================================================= */

.img-slider-slide.slider-left .img-for-slider,
.img-slider-slide.slider-right .img-for-slider {

    filter: brightness(.65) !important;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .10) !important;
}


/* =========================================================
   ОСТАЛЬНЫЕ ФОТОГРАФИИ
   ========================================================= */

.img-slider-slide.slider-hidden {

    transform:
        translate(-50%, -50%)
        scale(.55) !important;

    opacity: 0 !important;

    visibility: hidden !important;

    z-index: 1 !important;

    pointer-events: none !important;
}


/* =========================================================
   СТРЕЛКИ
   ========================================================= */

.img-slider-buttons {

    position: absolute !important;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    pointer-events: none;

    z-index: 30;
}


/* =========================================================
   ОБЩАЯ КНОПКА
   ========================================================= */

.img-slider .img-slider-btn {

    position: absolute !important;

    top: 50%;

    width: 50px !important;
    height: 50px !important;

    margin: -25px 0 0 !important;
    padding: 0 !important;

    border: 0 !important;

    border-radius: 50% !important;

    background: rgba(255, 255, 255, .88) !important;

    box-shadow:
        0 5px 18px rgba(0, 0, 0, .10) !important;

    color: #3978b5 !important;

    font-size: 0 !important;
    line-height: 1 !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    cursor: pointer;

    pointer-events: auto;

    outline: none !important;

    transition:
        transform .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}


/* =========================================================
   ЛЕВАЯ СТРЕЛКА
   ========================================================= */

.img-slider .img-slider-btn-left {

    left: calc(50% - 630px) !important;
}


.img-slider .img-slider-btn-left::before {

    content: "‹";

    font-family: Arial, sans-serif;

    font-size: 39px;

    font-weight: 300;

    line-height: 1;

    color: #3978b5;

    margin-top: -4px;
}


/* =========================================================
   ПРАВАЯ СТРЕЛКА
   ========================================================= */

.img-slider .img-slider-btn-right {

    right: calc(50% - 630px) !important;
}


.img-slider .img-slider-btn-right::before {

    content: "›";

    font-family: Arial, sans-serif;

    font-size: 39px;

    font-weight: 300;

    line-height: 1;

    color: #3978b5;

    margin-top: -4px;
}


/* =========================================================
   HOVER СТРЕЛОК
   ========================================================= */

.img-slider .img-slider-btn:hover {

    background: rgba(255, 255, 255, .98) !important;

    transform: scale(1.08);

    box-shadow:
        0 7px 22px rgba(0, 0, 0, .13) !important;
}


/* =========================================================
   ТОЧКИ
   ========================================================= */

.img-slider-dots-wrapper {

    position: absolute !important;

    left: 50% !important;
    bottom: -12px !important;

    transform: translateX(-50%) !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    gap: 9px !important;

    width: auto !important;

    height: auto !important;

    z-index: 40 !important;
}


/* =========================================================
   ОДНА ТОЧКА
   ========================================================= */

.img-slider .img-dot {

    display: block !important;

    width: 20px !important;
    height: 9px !important;

    min-width: 20px !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;

    border-radius: 10px !important;

    background: #e8edf3 !important;

    cursor: pointer;

    outline: none !important;

    transition:
        width .3s ease,
        background .3s ease,
        transform .3s ease;
}


/* =========================================================
   АКТИВНАЯ ТОЧКА
   ========================================================= */

.img-slider .img-dot.img-dot-active {

    width: 54px !important;

    background: #377bd4 !important;
}


/* =========================================================
   ЗАГОЛОВОК
   ========================================================= */

.img-slider-title {

    position: absolute !important;

    left: 0;
    right: 0;

    bottom: -50px;

    width: 100%;

    text-align: center;

    margin: 0 !important;

    color: #004d94;

    font-size: 26px;
    font-weight: 600;

    z-index: 40;
}


/* =========================================================
   МОБИЛЬНАЯ / ПЛАНШЕТ
   ========================================================= */

@media (max-width: 1100px) {

    .img-slider {

        height: 370px !important;
    }


    .img-slider-slide {

        width: 600px !important;
        height: 300px !important;
    }


    .img-slider-slide.slider-left {

        transform:
            translate(-50%, -50%)
            translateX(-340px)
            rotate(-4deg)
            scale(.68) !important;
    }


    .img-slider-slide.slider-right {

        transform:
            translate(-50%, -50%)
            translateX(340px)
            rotate(4deg)
            scale(.68) !important;
    }


    .img-slider .img-slider-btn-left {

        left: 20px !important;
    }


    .img-slider .img-slider-btn-right {

        right: 20px !important;
    }
}


/* =========================================================
   МОБИЛЬНАЯ ВЕРСИЯ
   ========================================================= */

@media (max-width: 768px) {

    .img-slider {

        height: 310px !important;

        margin-bottom: 55px !important;
    }


    .img-slider-slide {

        width: 78% !important;
        height: 250px !important;
    }


    .img-slider-slide.slider-center {

        transform:
            translate(-50%, -50%)
            scale(1) !important;
    }


    .img-slider-slide.slider-left {

        transform:
            translate(-50%, -50%)
            translateX(-45%)
            rotate(-4deg)
            scale(.72) !important;

        opacity: .45 !important;
    }


    .img-slider-slide.slider-right {

        transform:
            translate(-50%, -50%)
            translateX(45%)
            rotate(4deg)
            scale(.72) !important;

        opacity: .45 !important;
    }


    .img-slider .img-for-slider {

        border-radius: 18px !important;
    }


    .img-slider .img-slider-btn {

        width: 42px !important;
        height: 42px !important;

        margin-top: -21px !important;
    }


    .img-slider .img-slider-btn-left {

        left: 8px !important;
    }


    .img-slider .img-slider-btn-right {

        right: 8px !important;
    }


    .img-slider .img-dot {

        width: 12px !important;
        min-width: 12px !important;

        height: 7px !important;
    }


    .img-slider .img-dot.img-dot-active {

        width: 32px !important;
    }


    .img-slider-title {

        bottom: -42px;

        font-size: 20px;
    }
}
/* End */
/* /local/templates/aspro_max/components/bitrix/news/vacancy_new/style.css?178893594214914 */
/* /include/vacancy_page_new/hero-banner.css?17889359423812 */
/* /local/components/custom/img.slider/templates/.default/style.css?178904425412105 */
