@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@300;400&display=swap');
html {
  scroll-behavior: smooth;
}

body::after {
  content: '';
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease 0s;
  transition: opacity 0.8s ease 0s;
  pointer-events: none;
  z-index: 149;
}

.popup-show body::after {
  opacity: 1;
}

.popup-showe body::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease 0s;
  transition: opacity 0.8s ease 0s;
  pointer-events: none;
  opacity: 1;
  z-index: 2147887;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px 10px;
  -webkit-transition: visibility 0.8s ease 0s;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 767px) {
  .popup {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .popup_e {
    padding: 0 30px;
  }
}

.popup_show {
  z-index: 2147484;
  visibility: visible;
  overflow: auto;
  pointer-events: auto;
}

.popup_showe {
  z-index: 2147888;
  visibility: visible;
  overflow: auto;
  pointer-events: auto;
}

.popup_show .popup__content {
  visibility: visible;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.popup_showe .popup__content {
  visibility: visible;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.popup__wrapper {
  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;
  min-height: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  align-items: center;
}

.popup__content {
  visibility: hidden;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

.lock .popup__content {
  visibility: visible;
}

.popup-form {
  width: 970px;
  background: #fff;
}

@media (max-width: 992px) {
  .popup-form {
    width: 100%;
  }
}

.popup-form__body {
  text-align: center;
  padding: 60px 75px;
}

@media (max-width: 992px) {
  .popup-form__body {
    padding: 70px 30px;
  }
}

.popup-form__title {
  color: #000;
  font-family: Fira Sans;
  font-size: 50px;
  font-style: normal;
  font-weight: 275;
  margin-bottom: 10px;
}

@media (max-width: 992px) {
  .popup-form__title {
    font-size: 30px;
  }
}

.popup-form__name {
  color: #000;
  font-family: Pragmatica;
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 40px;
}

@media (max-width: 992px) {
  .popup-form__name {
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
  }
}

.popup-form__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
  -webkit-column-gap: 10px;
  column-gap: 10px;
}

.popup-form__thank {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  display: none;
}

.popup-form__clodes {
  border-radius: 5px;
  border: 1px solid #000;
  padding: 12px 20px;
  cursor: pointer;
  width: 92px;
  margin: 0 auto;
  margin-top: 20px;
  font-family: Pragmatica;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
}

.popup-form__input {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(34.6% - 18px);
  flex: 0 1 calc(34.6% - 18px);
  position: relative;
}

@media (max-width: 992px) {
  .popup-form__input {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}

.popup-form__input_b {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
}

.popup-form__input_s {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(50% - 5px);
  flex: 0 1 calc(50% - 5px);
}

@media (max-width: 767px) {
  .popup-form__input {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}

.popup-form__input input {
  padding-left: 20px;
  border-radius: 7px;
  border: 1px solid #ceccd1;
  background: #fff;
  width: calc(100% - 20px);
  height: 65px;
  color: #000;
  font-family: Pragmatica;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
}

.popup-form__input input:focus {
  border: 1px solid #ceccd1;
  outline: none;
}

.popup-form__input p {
  color: #9792a2;
  position: absolute;
  font-family: Pragmatica;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  top: 19px;
  left: 30px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  pointer-events: none;
}

.popup-form__textarea {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
  resize: none;
  height: 170px;
  position: relative;
}

.popup-form__textarea textarea {
  color: #000;
  font-family: Pragmatica;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  width: calc(100% - 20px);
  height: 100%;
  resize: none;
  padding-left: 20px;
  border-radius: 7px;
  border: 1px solid #ceccd1;
  background: #fff;
  padding-top: 25px;
}

.popup-form__textarea textarea:focus {
  border: 1px solid #ceccd1;
  outline: none;
}

.popup-form__textarea p {
  color: #9792a2;
  position: absolute;
  font-family: Pragmatica;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  top: 19px;
  left: 30px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  pointer-events: none;
}

.popup-form__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 20px;
  width: 100%;
  margin-bottom: 10px;
}

.popup-form__btn {
  width: 300px;
  height: 65px;
  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;
  border-radius: 5px;
  background: #f26822;
  color: #ffffff;
  color: #fff;
  cursor: pointer;
  font-family: Pragmatica;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
}

@media (max-width: 767px) {
  .popup-form__btn {
    width: 100%;
  }
}

.popup-form__text {
  font-family: Pragmatica;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
}

@media (max-width: 767px) {
  .popup-form__text {
    font-size: 15px;
  }
}

.popup-form__close {
  cursor: pointer;
  position: absolute;
  right: 30px;
  top: 30px;
}

.popup-error {
  border-radius: 7px;
  border: 1px solid #ceccd1;
  max-width: 420px;
  background: #fff;
  padding: 30px;
}

@media (max-width: 767px) {
  .popup-error {
    width: 85%;
    max-width: 100%;
  }
}

.popup-error__title {
  color: #f22222;
  font-family: Pragmatica;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 7px;
}

.popup-error__text {
  color: #9792a2;
  font-family: Pragmatica;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 15px;
}

.popup-error__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}

.popup-error__link {
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #000;
  color: #000;
  font-family: Pragmatica;
  font-size: 13px;
  font-style: normal;
  cursor: pointer;
  font-weight: 400;
}

.popup-error__button {
  padding: 12px;
  color: #000;
  cursor: pointer;
  font-family: Pragmatica;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: 'pragmatica';
  src: url('../fonts/pragmatica/pragmaticac.otf') format('opentype');
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: 'pragmatica';
  src: url('../fonts/pragmatica/pragmaticalightc.otf') format('opentype');
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: 'pragmaticaBold';
  src: url('../fonts/pragmatica/bold.woff') format('woff');
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: 'MinionPro';
  src: url('../fonts/MinionPro-Regular.otf') format('opentype');
  font-style: normal;
  font-weight: 400;
}

.wrapper {
  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;
  min-height: 100%;
}

.staff input {
  height: auto;
  padding: 0;
  border: 0;
}

html.lock {
  overflow: hidden;
}

body {
  color: #000000;
  font-size: 18px;
}

body._lock {
  overflow: hidden;
}

body.lock {
  overflow: hidden;
}

main {
  -webkit-box-flex: 100%;
  -ms-flex: 100%;
  flex: 100%;
}

.staff {
  font-family: 'pragmatica';
  margin-top: 60px;
  margin-bottom: 150px;
}

@media (max-width: 768px) {
  .staff {
    margin-top: 20px;
    margin-bottom: 70px;
  }
}

.staff__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 15px;
}

.staff__title {
  font-size: 50px;
  font-style: normal;
  font-family: Fira Sans;
  font-weight: 300;
  margin-bottom: 40px;
}

.staff__column:not(:last-child) {
  margin-bottom: 70px;
}

@media (max-width: 768px) {
  .staff__column:not(:last-child) {
    margin-bottom: 50px;
  }
}

.staff__subtitle {
  font-family: Fira Sans;
  font-size: 30px;
  font-style: normal;
  font-weight: 300;
  margin-bottom: 17px;
}

.staff__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
}

.staff__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(33.333% - 20px);
  flex: 0 1 calc(33.333% - 20px);
  position: relative;
  color: #ffffff;
  cursor: pointer;
}

@media (max-width: 992px) {
  .staff__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(50% - 15px);
    flex: 0 1 calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .staff__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}

.staff__item:hover .staff__image::after {
  opacity: 0.4;
}

.staff__item:hover .staff__post {
  opacity: 0.7;
}

.staff__item:hover .staff__texts p {
  opacity: 0.7;
}

.staff__item:hover .staff__intro {
  opacity: 0;
}

.staff__item:hover .staff__content {
  opacity: 1;
}

.staff__image {
  position: relative;
}

.staff__image img {
  width: 100%;
  border-radius: 10px;
}

.staff__image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: #000000;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  border-radius: 10px;
}

.staff__image::before {
  content: '';
  position: absolute;
  left: 0%;
  right: 0%;
  top: 51%;
  bottom: 0%;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0)),
    to(rgba(0, 0, 0, 0.5))
  );
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  border-radius: 0px 0px 10px 10px;
}

.staff__intro {
  position: absolute;
  z-index: 2;
  left: 30px;
  bottom: 20px;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.staff__content {
  pointer-events: none;
  opacity: 0;
  position: absolute;
  z-index: 2;
  left: 30px;
  bottom: 20px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.staff__post {
  font-size: 13px;
  font-family: 'pragmatica';
  font-weight: 400;
  margin-bottom: 0px;
}

.staff__name {
  font-family: 'pragmaticaBold' !important;
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 12px;
}

.staff__texts {
  margin-bottom: 12px;
  position: relative;
}

.staff__texts:nth-child(1) {
  display: inline-block;
}

.staff__texts p {
  font-size: 13px;
  font-family: 'pragmatica';
  font-weight: 400;
  margin-bottom: 0px;
}

.staff__texts a {
  pointer-events: auto;
  font-family: 'pragmatica';
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  color: #ffffff !important;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.staff__texts a:hover {
  text-decoration: none;
  text-transform: none;
  opacity: 0.7;
}

.staff__button {
  pointer-events: auto;
  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: 200px;
  height: 49.949px;
  border-radius: 7px;
  background: #ff6b01;
  text-align: center;
  font-family: 'pragmatica';
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  margin-top: 44px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.staff__button:hover {
  text-decoration: none;
  text-transform: none;
  opacity: 0.8;
}

.person-staff {
  margin-top: 60px;
  margin-bottom: 150px;
}

@media (max-width: 768px) {
  .person-staff {
    margin-top: 20px;
    margin-bottom: 70px;
  }
}

.person-staff__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 992px) {
  .person-staff__container {
    display: block;
  }
}

.person-staff__name {
  color: #000;
  font-family: Fira Sans;
  font-size: 50px;
  font-style: normal;
  font-weight: 300;
  margin-bottom: 30px;
}

.person-staff__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 70px;
}

@media (max-width: 767px) {
  .person-staff__body {
    -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: start;
    gap: 30px;
  }
}

.person-staff__img {
  max-width: 370px;
}

.person-staff__img img {
  border-radius: 10px;
  width: 100%;
}

@media (max-width: 767px) {
  .person-staff__img {
    max-width: 100%;
    width: 100%;
  }
}

.person-staff__item {
  position: relative;
  margin-bottom: 15px;
}

.person-staff__item:nth-child(2) {
  display: inline-block;
}

.person-staff__item p {
  color: #9792a2;
  font-family: 'pragmatica';
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 0px;
  opacity: 0.7;
}

.person-staff__item a {
  color: #5a64a1 !important;
  font-family: 'pragmatica';
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
}

.person-staff__link {
  padding-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  text-transform: none;
  text-decoration: none !important;
  -webkit-text-decoration-color: #ffffff;
  text-decoration-color: #ffffff;
}

.person-staff__link p {
  margin: 0;
  color: #000;
  font-family: 'pragmatica';
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  text-decoration: none;
  text-transform: none;
  text-decoration: none !important;
  -webkit-text-decoration-color: #ffffff;
  text-decoration-color: #ffffff;
}

@media (max-width: 767px) {
  .person-staff__link {
    padding-top: 50px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

@media (max-width: 767px) {
  .person-staff h1 {
    font-size: 28px !important;
  }
}

@media (min-width: 992px) {
  .menu-relative-sub {
    gap: 30px;
  }
}

.dobnum {
  position: absolute;
  bottom: 2px;
  right: -90px;
}

.dobnum1 {
  position: absolute;
  bottom: 2px;
  right: -77px;
  font-size: 15px;
}

.vacancy {
  margin-top: 60px;
  margin-bottom: 150px;
}

@media (max-width: 768px) {
  .vacancy {
    margin-top: 20px;
    margin-bottom: 70px;
  }
}

.vacancy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 15px;
}

.vacancy__title {
  font-size: 50px;
  font-style: normal;
  font-family: Fira Sans;
  font-weight: 300;
  margin-bottom: 20px;
}

.vacancy__item {
  border: 1px solid #acb1d0;
  background: #fff;
  padding: 40px 100px;
}

.vacancy__item:not(:last-child) {
  margin-bottom: 38px;
}

@media (max-width: 767px) {
  .vacancy__item {
    padding: 40px 20px;
  }
}

.vacancy__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 22px;
}

@media (max-width: 992px) {
  .vacancy__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    margin-bottom: 15px;
  }
}

.vacancy__name {
  color: #000;
  font-family: Pragmatica;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 10px;
}

.vacancy__price {
  font-family: Pragmatica;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 20px;
}

.vacancy__experience {
  font-family: Pragmatica;
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  margin-bottom: 7px;
}

.vacancy__time {
  font-family: Pragmatica;
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
}

.vacancy__right {
  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;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

@media (max-width: 992px) {
  .vacancy__right {
    display: block;
  }
}

.vacancy__button {
  width: 123px;
  height: 40px;
  background: #ff6b01;
  border-radius: 5px;
  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;
  color: #fff;
  cursor: pointer;
  text-align: center;
  font-family: Pragmatica;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

@media (max-width: 992px) {
  .vacancy__button {
    margin-bottom: 30px;
  }
}

.vacancy__button:hover {
  text-decoration: none;
  text-transform: none;
  opacity: 0.8;
}

.vacancy__adres {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 9px;
}

.vacancy__adres p {
  margin: 0;
  padding: 0;
  color: #000;
  font-family: Pragmatica;
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
}

.vacancy__label {
  width: 100%;
  height: 40px;
  border-radius: 5px;
  border: 1px solid #5a64a1;
  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;
  cursor: pointer;
  color: #5a64a1;
  text-align: center;
  font-family: Pragmatica;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}

.vacancy__contents {
  margin-top: 10px;
  max-height: 0px;
  overflow: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  line-height: 150%;
}

.vacancy__contents p:not(:last-child) {
  margin-bottom: 7.5px;
}

.__lk-fileInput {
  cursor: pointer;
}

.__lk-fileInput input {
  display: none;
}

.__lk-fileInput span {
  color: #fff;
  gap: 10px;
  text-decoration: none;
  border-radius: 2px;
  font: normal 14px/1.412 Helvetica;
  color: #5a64a1;
  font-family: Pragmatica;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.__lk-fileInput p {
  margin: 0 !important;
}

.error-button {
  display: none;
  opacity: 0;
}

.staff-slider {
  margin-top: 60px;
  border-bottom: 1px solid #dcdcdc;
  padding-bottom: 50px;
}

@media (max-width: 768px) {
  .staff-slider {
    margin-top: 20px;
  }
}

.staff-slider__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 15px;
}

.staff-slider__title {
  font-size: 50px;
  font-style: normal;
  font-family: Fira Sans;
  font-weight: 300;
  margin-bottom: 20px;
  text-align: center;
}

.staff-slider__text {
  text-align: center;
  color: #9792a2;
  text-align: center;
  font-family: Pragmatica;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  max-width: 825px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.staff-slider__body {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 40px;
}

.staff-slider__block {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  width: 93%;
}

.staff-slider__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
}

@media (max-width: 767px) {
  .staff-slider__wrapper {
    gap: 0;
  }
}

.staff-slider__item {
  padding: 0px 15px;
  border-radius: 10px;
}

.staff-slider__slide {
  border-radius: 10px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.333%;
  flex: 0 0 33.333%;
}

.staff-slider__slide .staff__item {
  border-radius: 10px;
  width: 100%;
}

.staff-slider__slide .staff__item:hover .staff__image::after {
  display: none;
}

.staff-slider__slide .staff__item:hover .staff__post {
  opacity: 1;
}

.staff-slider__slide .staff__item:hover .staff__texts p {
  opacity: 1;
}

.staff-slider__slide .staff__item:hover .staff__intro {
  opacity: 1;
}

.staff-slider__slide .staff__item:hover .staff__content {
  opacity: 0;
}

@media (max-width: 767px) {
  .staff-slider__slide {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}

.staff-slider__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.staff-slider__link {
  color: #3a089c;
  text-align: center;
  font-family: Pragmatica;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  border-radius: 5px;
  border: 1px solid #3a089c;
  padding: 18px 55px;
  text-decoration: none;
  text-transform: none;
  margin: 0 auto;
  text-align: center;
}

.staff-slider__link:hover {
  text-decoration: none;
  text-transform: none;
}

.swiper__container {
  margin: 0;
}

.staff-slider__pagination_left {
  position: absolute;
  top: 50%;
  left: 0;
  cursor: pointer;
}

@media (max-width: 767px) {
  .staff-slider__pagination_left {
    left: -10px;
  }
}

.staff-slider__pagination_right {
  position: absolute;
  top: 50%;
  right: 0;
  cursor: pointer;
}

@media (max-width: 767px) {
  .staff-slider__pagination_right {
    right: -10px;
  }
}

.banner24 {
  background-color: #eef1f6;
  position: relative;
  overflow: hidden;
}

@media (max-width: 992px) {
  .banner24 {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.banner24:hover {
  text-decoration: none !important;
  text-transform: none !important;
}

.banner24__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 2;
}

.banner24__left {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 60%;
  flex: 0 1 60%;
  padding: 60px 0px;
  position: relative;
}

@media (max-width: 992px) {
  .banner24__left {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    padding: 40px 0px;
  }
}

.banner24__date {
  font-family: 'Fira Sans';
  font-size: 24px;
  line-height: 1.2;
  font-weight: 400;
  color: #1a1a1a;
}

@media (max-width: 992px) {
  .banner24__date {
    font-size: 16px;
  }
}

.banner24__suptitle {
  font-weight: 300;
  font-family: 'Fira Sans';
  font-size: 24px;
  line-height: 1.2;
  font-weight: 400;
  color: #787a7c;
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  .banner24__suptitle {
    font-size: 16px;
  }
}

.banner24__title {
  font-family: 'Fira Sans';
  font-size: 45px;
  line-height: 1.2;
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  .banner24__title {
    font-size: 25px;
  }
}

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

@media (max-width: 992px) {
  .banner24__icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
  }
  .banner24__icon img {
    width: 100%;
  }
}

.banner24__right {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 40%;
  flex: 0 1 40%;
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.banner24__right img {
  width: 85%;
}

@media (max-width: 1250px) {
  .banner24__right {
    display: none;
  }
}

.banner24__image {
  position: absolute;
  top: 0;
  right: 0;
}

@media (max-width: 1250px) {
  .banner24__image {
    max-width: 50vw;
    opacity: 0.8;
  }
}

@media (max-width: 992px) {
  .banner24__image {
    display: none;
  }
}

.damian-block4 {
  display: none;
}
