button {
  padding: 0;
  border: none;
  outline: none;
  background: #fff;
}
.page--main.statement {
  max-width: 100vw;
  padding: 0;
}
.base-header {
  position: relative;
  z-index: 1;
  padding: 110px 0 65px;
  background: linear-gradient(133.84deg, #222343 -16.04%, #212241 9.33%, #21203e 32.02%, #294172 62.06%, #23274b 87.42%, #211f3b 112.12%);
}
.base-header::before {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  display: flex;
  content: '';
  background-image: url(/local/templates/html/img/base-header-svg.svg);
  background-size: cover;
  inset: 0;
}
.base-topics-wrap {
  padding: 60px 0 100px;
  background-color: #fff;
}
.container-custom {
  max-width: 1356px;
  margin: 0 auto;
  padding: 0 15px;
}
.base-header__title {
  text-align: center;
  color: #ff8f50;
  font-size: 56px;
  font-weight: 600;
}
.base-header__descr {
  max-width: 780px;
  margin: 20px auto 40px;
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
}
.base-grid {
  display: flex;
  flex-wrap: wrap;
  padding: 32px;
  gap: 20px;
  border: 1px solid #e1e1e1;
  background-color: #f1f1f1;
}
.base-grid__item {
  width: calc(50% - 10px);
}
.base-grid .pagination__wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 12px 0;
  gap: 8px;
}
.base-grid .pagination__hint {
  font-weight: 400;
}
.base-grid .pagination__hint,
.base-grid .pagination {
  margin: 0;
}
.person-card {
  position: relative;
  z-index: 0;
  height: 100%;
  transition: border .3s ease;
  border: 2px solid #e1e1e1;
  @media (min-width: 1024px) {
    /* cursor: pointer; */
  }
}
.person-card::after {
  position: absolute;
  z-index: 0;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  opacity: 0;
  overflow: hidden;
  content: '';
  transition: opacity .3s ease;
  background: linear-gradient(104.17deg, #ff8f50 0%, rgba(255, 143, 80, 0) 23.93%),
  linear-gradient(108.54deg, rgba(255, 143, 80, 0) 74.27%, #ff8f50 100%),
  linear-gradient(0deg, rgba(255, 143, 80, .2), rgba(255, 143, 80, .2));
  inset: -2px;
}
.person-card:hover {
  border: 2px solid transparent;
}
.person-card:hover::after {
  opacity: 1;
}
.person-card__inner {
  position: relative;
  z-index: 1;
  height: inherit;
  padding: 22px;
  background-color: #fff;
  @media (min-width: 1024px) {
    padding: 22px 22px 22px 132px;
  }
}
.person-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  line-height: 1.5;
}
.person-card__body-item {
  display: flex;
  gap: 8px;
}
.person-card__title {
  max-width: fit-content;
  display: block;
  margin-bottom: 12px;
  transition: color .3s ease;
  color: #3f3559;
  font-size: 18px;
  font-weight: 700;
}
a.person-card__title {
  position: relative;
  z-index: 10;
}
a.person-card__title:hover {
  color: #ff8f50;
}
.person-card__photo {
  position: relative;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
  @media (min-width: 1024px) {
    position: absolute;
    top: 24px;
    left: 22px;
  }
}
.person-card__img-wrap {
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.person-card__photo img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: none;
  height: 100%;
  display: block;
}
.person-card__photo::after {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  content: '';
  border-radius: 50%;
  background: linear-gradient(325.91deg, #ff8f50 13.5%, rgba(255, 143, 80, 0) 77.75%);
  inset: 0;
}
.person-card__control {
  position: absolute;
  top: 10px;
  right: 10px;
}
.person-card.person-card--detail {
  pointer-events: none;
  border: none;
}
.person-card.person-card--detail .person-card__inner {
  padding: 0 0 0 240px;
}
.person-card.person-card--detail .person-card__photo {
  top: 0;
  left: 0;
  @media (min-width: 768px) {
    width: 182px;
    height: 182px;
  }
}
.person-card.person-card--detail .person-card__img-wrap {
  @media (min-width: 768px) {
    width: calc(100% - 10px);
    height: calc(100% - 10px);
  }
}
.person-card.person-card--detail  .person-card__title {
  margin-bottom: 18px;
  @media (min-width: 768px) {
    font-size: 36px;
  }
}
.person-card.person-card--detail .person-card__body {
  @media (min-width: 1024px) {
    display: grid;
    gap: 8px 24px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    /* display: block;
    columns: 2; */
    /* display: flex;
    flex-wrap: wrap;
    flex-direction: row; */
  }
}
.person-card.person-card--detail .person-card__body-item {
  /* margin-right: 16px;
  margin-bottom: 6px;
  @media (min-width: 1024px) {
    width: 45%;
  } */
}
.person-card.person-card--detail .person-card__body-item:first-child {
  grid-row: span 2 / span 2;
}
.icon {
  flex-shrink: 0;
  margin-top: 1px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.i-prof {
  width: 14px;
  height: 14px;
  background-image: url(/local/templates/html/img/i-prof.svg);
}
.i-case {
  width: 14px;
  height: 14px;
  background-image: url(/local/templates/html/img/i-case.svg);
}
.i-pin {
  width: 14px;
  height: 14px;
  background-image: url(/local/templates/html/img/i-pin.svg);
}
.i-arrow-sm {
  width: 20px;
  height: 20px;
  background-image: url(/local/templates/html/img/i-arrow-sm.svg);
}
.i-arrow {
  width: 24px;
  height: 24px;
  transition: background .3s ease;
  background-image: url(/local/templates/html/img/i-arrow.svg);
}
.i-close {
  width: 24px;
  height: 24px;
  transition: background .3s ease;
  background-image: url(/local/templates/html/img/i-close.svg);
  @media (min-width: 1024px) {
    cursor: pointer;
  }
}
.i-close:hover {
  background-image: url(/local/templates/html/img/i-close-orange.svg);
}
.i-submit {
  width: 20px;
  height: 24px;
  transition: background .3s ease;
  background-image: url(/local/templates/html/img/i-submit.svg);
}
.i-submit:hover {
  background-image: url(/local/templates/html/img/i-submit-orange.svg);
}
.person-card:hover .i-arrow {
  background-image: url(/local/templates/html/img/i-arrow-dark.svg);
}
.btn-more {
  display: none;
  flex-shrink: 0;
  margin-top: 10px;
  color: #ff8f50;
  font-weight: 500;
  @media (max-width: 767px) {
    display: flex;
  }
}
.limitheight .modal-pers__block--right {
  @media (max-width: 767px) {
    height: 359px;
    overflow: hidden;
  }
}
.btn-more.active .i-arrow-sm {
  transform: rotate(180deg);
}
.btn-more.active .btn-more--open {
  display: none;
}
.btn-more--close {
  display: none;
}
.btn-more.active .btn-more--close {
  display: block;
}
.modal-pers__top {
  margin-bottom: 24px;
}
.modal-pers__block {
  display: flex;
  padding: 24px 0;
  border-top: 1px solid #e1e1e1;
  line-height: 1.5;
}
.modal-pers__block p {
  line-height: 1.5;
}
.modal-pers__block--left {
  width: 220px;
  flex-shrink: 0;
  margin-right: 20px;
  color: #666;
  line-height: 1.5;
}
.modal-pers__list {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}
.pers-event__title {
  margin-bottom: 2px;
  font-weight: 500;
}
.pers-event__title a {
  transition: color .3s ease;
  text-decoration: underline;
}
.pers-event__title a:hover {
  color: #ff8f50;
}
.pers-event__descr {
  color: #666;
}
body.modal-opened {
  overflow: hidden;
  @media (min-width: 1024px) {
    padding-right: 15px;
  }
}
body.modal-opened:before {
  visibility: visible;
  opacity: 1;
}
body:before {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  visibility: hidden;
  opacity: 0;
  content: '';
  background: #e9e7e636;
}
.modals-wrapper {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: block;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 50px;
  transform: translateZ(0);
  text-align: center;
  white-space: nowrap;
  background-color: rgba(0, 0, 0, .302);
}
.modals-wrapper:before {
  position: relative;
  top: 0;
  width: 0;
  height: 100%;
  display: inline-block;
  content: '';
  vertical-align: middle;
}
.modals-wrapper.active {
  z-index: 1000;
  visibility: visible;
  opacity: 1;
  transition: opacity .5s,visibility 0s 0s;
}
.modals-wrapper:not(.active) {
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transition: opacity .5s,visibility 0s 5s;
}
.modals-wrapper .modal {
  position: relative;
  z-index: 1000;
  width: 100%;
  max-width: 1340px;
  display: none;
  vertical-align: middle;
  white-space: normal;
  background-color: #fff;
}
.modal.in {
  display: inline-block;
}
.container-custom.modal__content {
  width: calc(100% - 32px);
  margin: 60px auto 100px;
  background-color: #fff;
}
.modal__content {
  position: relative;
  width: 100%;
  padding: 50px;
  text-align: left;
}
.modal__content .modal-close {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  padding: 0;
  cursor: pointer;
  border: none;
  background: #fff;
}
.modal__title {
  margin-bottom: 30px;
  white-space: normal;
  font-size: 30px;
}
.modal-pers__top {
  min-height: 182px;
}
.modal-pers__block p {
  font-size: 14px;
}
.base-header__mid {
  max-width: 970px;
  margin: 0 auto;
}
.base-header__form {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 15px 24px;
  gap: 8px;
  border-radius: 4px;
  background-color: #fff;
}
.base-header__input {
  display: flex;
  flex-grow: 1;
  color: #000;
  border: none;
  outline: none;
  font-family: Roboto;
  font-size: 24px;
  font-weight: 300;
  font-style: normal;
  line-height: 1.5;
}
.base-header__input::placeholder {
  color: #666;
  font-family: Roboto;
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  line-height: 1.5;
}
.base-header__search {
  position: relative;
}
.search-close .i-close {
  width: 20px;
  height: 20px;
}
.base-header__form-submit {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  background-color: #f1f1f1;
}
@media (max-width: 1023px) {
  .base-topics-wrap {
    padding: 50px 0 70px;
  }
  .base-header__title {
    font-size: 48px;
  }
  .base-grid {
    padding: 24px;
    gap: 14px;
  }
  .person-card__inner {
    padding: 16px;
  }
  .person-card__head {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    gap: 12px;
    border-bottom: 1px solid #e1e1e1;
  }
  .person-card__control {
    display: none;
  }
  .person-card__descr {
    font-size: 14px;
  }
  .person-card.person-card--detail .person-card__inner {
    padding: 0;
  }
  .modal-pers__block--left {
    width: 120px;
    margin-right: 10px;
  }
  .modal__content {
    padding: 24px;
  }
  .base-header__input {
    font-size: 18px;
  }
  .base-header__input::placeholder {
    font-size: 16px;
  }
  .base-header__form {
    padding: 10px 15px;
  }
}
@media (max-width: 767px) {
  .base-topics-wrap {
    padding: 30px 0 50px;
  }
  .base-header__title {
    font-size: 36px;
  }
  .base-grid {
    padding: 24px 14px;
  }
  .person-card__inner {
    padding: 16px 14px;
  }
  .person-card__head {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    gap: 12px;
    border-bottom: 1px solid #e1e1e1;
  }
  .person-card__title {
    font-size: 16px;
  }
  .person-card__descr {
    font-size: 12px;
  }
  .person-card__photo {
    width: 60px;
    height: 60px;
  }
  .person-card__photo img {
    /* max-width: 56px; */
  }
  .modal__content {
    padding: 16px 14px;
  }
  .modal-pers__block {
    flex-direction: column;
    padding: 16px 0;
  }
  .modal-pers__block--left {
    width: 100%;
    margin-bottom: 10px;
  }
  .modal-pers__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .base-header__input {
    font-size: 16px;
  }
  .base-header__input::placeholder {
    font-size: 14px;
  }
  .base-header__form {
    padding: 8px 10px;
  }
  .container-custom.modal__content {
    margin: 40px auto;
  }
}
@media (max-width: 560px) {
  .base-grid {
    flex-direction: column;
  }
  .base-header {
    padding: 55px 0;
  }
  .base-header__title {
    font-size: 26px;
  }
  .base-header__descr {
    margin: 16px auto 24px;
    font-size: 14px;
  }
  .base-grid__item {
    width: 100%;
  }
  .base-grid .pagination__wrap {
    flex-direction: column;
    margin: 12px 0 0 0;
  }
  .base-header__input {
    font-size: 14px;
  }
  .base-header__input::placeholder {
    font-size: 12px;
  }
}
