@charset "UTF-8";
/**
needs bootstrap function str-replace()
 */
/**
* Метод дополняет svg-sprite.scss.
* Позволяет получить чистый урл элемента спрайта для использования в псевдоэлементах или background-image
* Example: content: url(get-svg-url('checkmark', $user-variables: (fill: 'tomato')));
* Example: background-image: url(get-svg-url('heart', $user-variables: (stroke: 'red', fill: 'pink')));
*/
/**
вертикальные отступы
для каждого цвета указываются в порядке как в $grid-breakpoints
 */
.leadership {
  display: flex;
  flex-direction: column;
}
.leadership__top {
  display: flex;
  order: 1;
}
@media (min-width: 1800px) {
  .leadership__top {
    order: -1;
    margin: 0 -18px;
    margin-bottom: 40px;
  }
}
.leadership__top-item {
  width: 100%;
}
@media (min-width: 1800px) {
  .leadership__top-item {
    width: 50%;
    padding: 0 18px;
  }
}
.leadership__top-item--director {
  display: none;
}
@media (min-width: 1800px) {
  .leadership__top-item--director {
    display: block;
  }
}
.leadership__top-item-inner {
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
}
.leadership__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 24px;
  margin-bottom: 32px;
}
@media (min-width: 576px) {
  .leadership__bottom {
    row-gap: 32px;
  }
}
@media (min-width: 768px) {
  .leadership__bottom {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 1800px) {
  .leadership__bottom {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    -moz-column-gap: 36px;
         column-gap: 36px;
  }
}
.leadership__bottom-item--main-boss {
  order: -1;
}
@media (min-width: 1800px) {
  .leadership__bottom-item--main-boss {
    display: none;
  }
}
.leadership__photo-wrap {
  background: #f3f3f3;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 16px;
}
@media (min-width: 1800px) {
  .leadership__photo-wrap {
    margin-bottom: 20px;
  }
}
.leadership__photo-wrap img {
  width: 100%;
}
.leadership__item-name {
  color: #000;
  font-size: 16px;
  line-height: 130%;
  font-weight: 700;
  margin-bottom: 6px;
}
@media (min-width: 992px) {
  .leadership__item-name {
    font-size: 20px;
  }
}
.leadership__item-post {
  color: #afafaf;
  font-size: 14px;
  line-height: 150%;
  font-weight: 400;
}
@media (min-width: 992px) {
  .leadership__item-post {
    font-size: 16px;
    line-height: 160%;
  }
}

.leadership-form {
  padding: 20px 16px;
  background: #f3f3f3;
}
@media (min-width: 576px) {
  .leadership-form {
    padding: 26px 24px;
  }
}
@media (min-width: 992px) {
  .leadership-form {
    padding: 40px 24px;
  }
}
@media (min-width: 1800px) {
  .leadership-form {
    padding: 40px 48px;
  }
}
.leadership-form__title {
  color: #000;
  font-size: 26px;
  line-height: 120%;
  font-weight: 700;
  margin-bottom: 16px;
}
@media (min-width: 992px) {
  .leadership-form__title {
    font-size: 36px;
    margin-bottom: 24px;
  }
}
.leadership-form__description {
  color: #666;
  font-size: 14px;
  line-height: 150%;
  font-weight: 400;
  margin-bottom: 16px;
}
@media (min-width: 992px) {
  .leadership-form__description {
    font-size: 16px;
    line-height: 160%;
    margin-bottom: 28px;
  }
}
.leadership-form form {
  padding-top: 0;
}
.leadership-form .form-content {
  max-width: unset;
}
.leadership-form .form__footer {
  margin-top: 10px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .leadership-form .form__footer {
    margin-top: 22px;
    margin-bottom: 32px;
  }
}
.leadership-form .form__files {
  display: none;
}

.leadership-director {
  position: relative;
  height: 100%;
}
.leadership-director__description {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 40px;
  z-index: 1;
}
.leadership-director__name {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 8px;
}
.leadership-director__post {
  color: #e4e4e4;
  font-size: 16px;
  font-weight: 500;
  line-height: 160%;
}
.leadership-director__gradient {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(131, 131, 131, 0.31) 48.52%, rgba(0, 0, 0, 0.68) 118.34%);
}
