.header__list li a,
.header__list li .menu-item__custom-cont,
.header__language-btn,
.header__language-dd-option a,
.footer__list a,
.footer__contacts-item a,
.footer__social-item,
.adv-section__item-text,
.contacts__schedule-item,
.contacts__phones-item,
.contacts__main a {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5px;
}

.hero-section__title {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 48px;
  letter-spacing: 1px;
}

.adv-section__title,
.centre-section__title,
.stuff-section__title,
.news-slider-section__title,
.post-section__title {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 48px;
  letter-spacing: 0.5px;
}

.hero-section__description,
.news-slider-section__item-title,
.news-slider-section__item-date {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 1px;
}

.adv-section__item-title,
.post-section__subtitle,
.news-section__post-title,
.leadership__post-title,
.zmi__post-title,
.structural-units__post-title {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0.5px;
}

.footer__cap {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5px;
}

.stuff-section__name,
.contacts__schedule-title,
.contacts__phones-title,
.list-of-files__title {
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 23px;
  letter-spacing: -0.02em;
}

.stuff-section__position {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
}

@font-face {
  font-family: "eUkraine";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/e-Ukraine-Regular.otf") format("otf");
}

.header {
  top: 0;
  left: 0;
  position: sticky;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  z-index: 10;
  background-color: #ffffff;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  padding: 0 25px;
}
.header__menu {
  display: none;
}
.header__burger {
  width: 20px;
  height: 20px;
  background-image: url("../images/icons/burger.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.header__burger-menu {
  padding: 32px 25px;
  background-color: #235784;
  position: fixed;
  top: 100px;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  transform: translateX(100vw);
  transition: all 0.2s linear;
  overflow-y: auto;
}
.header__burger-menu--active {
  transform: translateX(0);
}
.header__burger-menu ul {
  display: flex;
  flex-direction: column;
}
.header__burger-menu > ul > li {
  padding: 20px 0;
}
.header__burger-menu > ul > li:not(:last-child) {
  border-bottom: 1px solid #e8e8e8;
}
.header__burger-menu > ul > .menu-item-has-children {
  display: flex;
  flex-direction: column;
}
.header__list li {
  list-style: none;
}
.header__list li a,
.header__list li .menu-item__custom-cont {
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s linear;
}
.header__title--no-link .sub-menu {
  display: flex;
  flex-direction: column;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  overflow: hidden;
}
.header__title--no-link .sub-menu--active {
  transition: max-height 0.8s ease-in-out;
  max-height: 1000px;
}
.header__title--no-link .sub-menu > li {
  background-color: #1d486e;
}
.header__title--no-link .sub-menu > li .sub-menu > li {
  background-color: #153754;
}
.header__title--no-link .sub-menu > li > a {
  display: flex !important;
  padding: 20px;
  width: 100%;
  height: 100%;
}
.header__title--no-link .sub-menu > li:not(:last-child) {
  border-bottom: 1px solid black;
}
.header__functional {
  padding-top: 48px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.header__make-appointment-btn {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  border: none;
  border-radius: 4px;
  background-color: #ef504d;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  color: #ffffff;
  padding: 12px 16px;
  cursor: pointer;
  transition: all 0.3s linear;
  width: 100%;
  text-align: center;
}
.header__make-appointment-btn:hover {
  background-color: #be2500;
}
.header__language {
  position: relative;
  display: inline-block;
}
.header__language-dd-content {
  min-width: 118px;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  z-index: 1;
}
.header__language-dd-content.show {
  display: block;
}
.header__language-dd-option .lang--active {
  background-color: #40a8c4;
}
.header__language-btn,
.header__language-dd-option a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 48px;
  padding: 0 32px 0 10px;
  text-transform: uppercase;
  color: #ffffff;
  background-color: #30b8de;
  cursor: pointer;
  transition: all 0.3s linear;
}
.header__language-btn:hover,
.header__language-dd-option a:hover {
  background-color: #40a8c4;
}
.header__language-btn::before,
.header__language-dd-option a::before {
  display: inline-block;
  content: "";
  width: 30px;
  height: 20px;
  margin-right: 10px;
}
.header__language-btn[data-lang="ukr"]::before,
.header__language-dd-option a[data-lang="ukr"]::before {
  background-image: url("../images/icons/uaIcon.svg");
}
.header__language-btn[data-lang="eng"]::before,
.header__language-dd-option a[data-lang="eng"]::before {
  background-image: url("../images/icons/engIcon.svg");
}
.header__language-btn {
  min-width: 118px;
  height: 48px;
  padding: 0 10px;
  border: none;
  cursor: pointer;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
}
.header__language-btn::after {
  display: inline-block;
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("../images/icons/arrow-down.svg");
}
.header__language-btn:focus {
  outline: none;
}
@media (min-width: 1280px) {
  .header__container {
    padding: 0 77px 0 44px;
    max-width: 1800px;
    margin: 0 auto;
  }
  .header__menu {
    display: block;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 50px;
  }
  .header__burger {
    display: none;
  }
  .header__burger-menu {
    display: none;
  }
  .header__list {
    position: relative;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  .header__list li {
    list-style: none;
  }
  .header__list li a,
  .header__list li .menu-item__custom-cont {
    color: #212529;
    cursor: pointer;
    transition: all 0.3s linear;
  }
  .header__list li:hover a,
  .header__list li:hover .menu-item__custom-cont {
    color: #6f6f6f;
  }
  .header__title--no-link .sub-menu {
    display: none;
    position: absolute;
    bottom: 0;
    transform: translateY(100%);
    min-width: 400px;
    background-color: #ffffff;
    width: fit-content;
    flex-direction: column;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    max-height: none;
    transition: none;
    overflow: visible;
  }
  .header__title--no-link .sub-menu--active {
    max-height: none;
    transition: none;
  }
  .header__title--no-link .sub-menu > li {
    background-color: #ffffff;
    transition: all 0.3s linear;
  }
  .header__title--no-link .sub-menu > li .sub-menu > li {
    background-color: #ffffff;
  }
  .header__title--no-link .sub-menu > li > a {
    display: inline-block;
    padding: 20px;
    width: 100%;
    height: 100%;
  }
  .header__title--no-link .sub-menu > li:not(:last-child) {
    border-bottom: 1px solid #a9a9a9;
  }
  .header__title--no-link .sub-menu > li:hover {
    background-color: #e8e8e8 !important;
  }
  .header__functional {
    padding-top: 0;
  }
  .header__make-appointment-btn {
    width: auto;
  }
}

.menu-item-has-children {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  position: relative;
}
.menu-item-has-children .menu-item__custom-cont {
  position: relative;
}
.menu-item-has-children .menu-item__custom-cont::after {
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("../images/icons/arrow-down.svg");
}
@media (min-width: 1280px) {
  .menu-item-has-children {
    cursor: pointer;
  }
  .menu-item-has-children .menu-item__custom-cont {
    display: flex;
    flex-direction: row;
    gap: 5px;
  }
  .menu-item-has-children .menu-item__custom-cont::after {
    display: inline-block;
    position: static;
    content: "";
    transform: translateY(0);
    background-image: url("../images/icons/arrow-down-black.svg");
  }
}

.sub-menu .menu-item-has-children .menu-item__custom-cont {
  padding: 20px 40px 20px 20px;
}

@media (min-width: 1280px) {
  .sub-menu--active {
    display: flex !important;
  }
  .sub-menu .menu-item-has-children .sub-menu--active {
    border-top: none;
  }
  .sub-menu .menu-item-has-children .menu-item__custom-cont {
    padding: 20px;
  }
  .sub-menu .menu-item-has-children .sub-menu {
    max-height: 80vh;
    overflow-y: scroll;
    height: fit-content;
    transform: translateX(100%);
    top: 0;
  }
}

.gtranslate_wrapper {
  display: flex;
  flex-direction: row-reverse;
  gap: 16px;
}

.gt-current-lang {
  position: relative;
}
.gt-current-lang::after {
  display: inline-block;
  content: "";
  position: absolute;
  width: calc(100% + 6px);
  height: 4px;
  bottom: -4px;
  left: -4px;
  border-radius: 8px;
  background-color: #1e80dc;
}

.footer {
  background-color: #235784;
}

.footer__container {
  padding: 90px 25px;
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1440px;
  margin: 0 auto;
}
.footer__logo-cont {
  display: flex;
  align-self: center;
  justify-content: center;
  max-width: 96px;
}
.footer__logo-cont img {
  width: 100%;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__cap {
  color: #ffffff;
  padding: 32px 0 10px;
  width: 80%;
  border-bottom: 2px solid #ffffff;
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__list a {
  color: #ffffff;
  transition: all 0.3s linear;
}
.footer__list a:hover {
  color: #30b8de;
}
.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__contacts-list {
  display: flex;
  max-width: 95%;
  flex-direction: column;
  gap: 10px;
}
.footer__contacts-item {
  display: flex;
  align-items: center;
}
.footer__contacts-item a {
  color: #ffffff;
  transition: all 0.3s linear;
}
.footer__contacts-item a:hover {
  color: #30b8de;
}
.footer__contacts-item--address {
  gap: 12px;
}
.footer__contacts-item--address::before {
  display: inline-block;
  content: url(../images/icons/pin.svg);
}
.footer__contacts-item--phone {
  gap: 13px;
}
.footer__contacts-item--phone::before {
  display: inline-block;
  content: url(../images/icons/phone.svg);
}
.footer__contacts-item--mail {
  gap: 15px;
}
.footer__contacts-item--mail::before {
  display: inline-block;
  content: url(../images/icons/mail.svg);
}
.footer__social-list {
  flex-basis: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__social-link {
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s linear;
}
.footer__social-link:hover {
  color: #30b8de;
}
@media (min-width: 1280px) {
  .footer {
    background-color: #235784;
  }
  .footer__container {
    padding: 90px 120px;
    display: grid;
    grid-template-columns: 0.8fr 1fr 1fr 0.8fr;
    max-width: 1440px;
    margin: 0 auto;
  }

  .footer__logo-cont {
    display: flex;
    align-self: center;
    transform: translateY(-20%);
    justify-content: start;
    max-width: 150px;
  }
}

.hero-section {
  position: relative;
  background: linear-gradient(
    180deg,
    #72d3ee81 0%,
    rgba(188, 219, 223, 0) 100%
  );
}
.hero-section__container {
  display: flex;
  padding: 30px 24px 80px;
}
.hero-section__title {
  margin: 0 0 20px;
  color: #303c86;
  line-height: 120%;
}
.hero-section__description {
  margin: 0 0 30px;
  color: #16224ac7;
}
.hero-section__img-container {
  display: none;
}
.hero-section__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top;
  -webkit-filter: drop-shadow(10px 10px 15px #222);
  filter: drop-shadow(10px 10px 15px #222) brightness(1.15);
}
.hero-section__oval {
  display: none;
  position: absolute;
  z-index: -1;
  height: 150vh;
  top: 0;
  right: 50%;
  transform: translate(70%, -20%);
  opacity: 30%;
}
@media (min-width: 1280px) {
  .hero-section {
    position: relative;
    background-repeat: no-repeat;
    background-position: right;
  }
  .hero-section__container {
    position: relative;
    padding: 0;
    max-width: 1440px;
    margin: 0 auto 140px;
  }
  .hero-section__main {
    max-width: 50%;
    padding: 140px 0 80px 120px;
  }
  .hero-section__title {
    margin: 0 0 20px;
  }
  .hero-section__description {
    margin: 0 0 30px;
    font-size: 17px !important;
  }
  .hero-section__img-container {
    display: block;
  }
  .hero-section__oval {
    display: block;
    max-height: 1400px;
  }
}

.adv-section {
  padding: 40px 25px 120px;
  background-image: url("../images/waves.png");
  /* background-repeat: no-repeat; */
  background-position: bottom;
}

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

.adv-section__title {
  color: #212529;
  text-align: center;
  margin: 0 0 32px;
}
.adv-section__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 22px;
  list-style: none;
}
.adv-section__item {
  position: relative;
  box-sizing: border-box;
  padding: 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 16px 0 rgba(14, 78, 138, 0.37);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: backdrop-filter 0.5s ease-in-out;
}
.adv-section__item-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("../images/icons/clipboard-check.svg");
  margin: 32px 0 16px;
}
.adv-section__item-title {
  color: #212529;
  margin: 0 0 10px;
}
.adv-section__item-text {
  color: #212529;
  text-align: justify;
}
.adv-section__item-blur-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  filter: blur(10px);
  z-index: -1;
  background-color: rgba(255, 255, 255, 0.5);
}
@media (min-width: 768px) {
  .adv-section__list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 22px;
    list-style: none;
  }
  .adv-section__item {
    width: calc(50% - 11px);
  }
}
@media (min-width: 1280px) {
  .adv-section {
    padding: 80px 120px 120px;
  }
  .adv-section__title {
    color: #212529;
    text-align: center;
    margin: 0 0 65px;
  }
  .adv-section__list {
    gap: 22px;
    list-style: none;
  }
  .adv-section__item {
    width: calc(33.3% - 15px);
  }
}

.centre-section {
  padding: 60px 0 60px;
  background-color: #ffffff;
  background-image: url("../images/waves4.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top;
}
.centre-section__title {
  color: #212529;
  text-align: center;
  margin: 0 0 32px;
}
.centre-section__list {
  display: flex;
  align-items: center;
  gap: 24px;
}
.centre-section__item {
  transition: all 0.3s linear;
  height: auto;
  border-radius: 16px;
  overflow: hidden;
}
.centre-section__item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  background-color: #a9d2f1;
  scale: 1.2;
}
@media (min-width: 1280px) {
  .centre-section {
    padding: 120px 0 60px;
    background-color: #ffffff;
  }
  .centre-section__title {
    color: #212529;
    text-align: center;
    margin: 0 0 80px;
  }
  .centre-section__item {
    width: 550px;
    transition: all 0.3s linear;
  }
  .centre-section__item img {
    width: 100%;
    object-fit: contain;
  }
}

.stuff-section {
  background-color: #ffffff;
}
.stuff-section__container {
  padding: 48px 25px 120px;
  max-width: 1440px;
  margin: 0 auto;
}
.stuff-section__title {
  color: #212529;
  text-align: center;
  margin: 0 0 32px;
}
.stuff-section__list {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 22px;
  row-gap: 22px;
  margin: 0 0 95px;
}
.stuff-section__item {
  display: flex;
  flex-direction: column;
  background-color: #f9f9f9;
  gap: 32px;
  padding: 37px 52px 40px;
  border-radius: 10px;
}
.stuff-section__item:hover .stuff-section__image {
  cursor: pointer;
  transform: scale(1.05);
}
.stuff-section__item:hover .stuff-section__name {
  color: #1971c2;
}
.stuff-section__image-cont {
  overflow: hidden;
  border-radius: 24px;
}
.stuff-section__image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: all 0.3s linear;
}
.stuff-section__name {
  color: #212529;
  text-align: center;
  margin: 0 0 15px;
  transition: all 0.3s linear;
}
.stuff-section__position {
  color: #212529;
  text-align: center;
}
.stuff-section__list:hover
  > .stuff-section__item:not(:hover)
  .stuff-section__image {
  filter: brightness(0.95) saturate(0.5) blur(4px);
}
.stuff-section__centred-btn {
  text-align: center;
}
.stuff-section__make-appointment-btn {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  border: none;
  border-radius: 4px;
  background-color: #ef504d;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  color: #ffffff;
  padding: 12px 16px;
  cursor: pointer;
  transition: all 0.3s linear;
}
.stuff-section__make-appointment-btn:hover {
  background-color: #be2500;
}
@media (min-width: 1280px) {
  .stuff-section {
    padding: 48px 120px 110px;
    background-color: #ffffff;
  }
  .stuff-section__title {
    color: #212529;
    text-align: center;
    margin: 0 0 80px;
  }
  .stuff-section__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 22px;
    row-gap: 22px;
    margin: 0 0 95px;
  }
}

.contacts {
  padding: 120px 20px;
  display: flex;
  flex-direction: column;
  grid-template-columns: 1fr;
  column-gap: 20px;
  row-gap: 25px;
}
.contacts__schedule {
  order: 0;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 6px 0 rgba(14, 78, 138, 0.37);
  border-radius: 16px;
  padding: 55px 54px 62px 54px;
}
.contacts__schedule-title {
  margin: 0 0 32px;
  display: flex;
  gap: 16px;
  color: #212529;
  justify-content: center;
}
.contacts__schedule-title::before {
  display: inline-block;
  content: url("../images/icons/clock.svg");
  height: 20px;
  width: 20px;
}
.contacts__schedule-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contacts__schedule-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #212529;
}
.contacts__map {
  order: 1;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 6px 0 rgba(14, 78, 138, 0.37);
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  height: 100%;
}
.contacts__map-frame {
  border-radius: 16px;
  width: 100%;
  height: 100%;
}
.contacts__map-no-text {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: #ef504d;
}
.contacts__map-no-text::before {
  display: inline-block;
  content: url("../images/icons/circle-exclamation-solid.svg");
  height: 20px;
  width: 20px;
}
.contacts__phones {
  order: 0;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 6px 0 rgba(14, 78, 138, 0.37);
  border-radius: 16px;
  padding: 53px 20px 32px 35px;
}
.contacts__phones-title {
  margin: 0 0 32px;
  display: flex;
  gap: 16px;
  color: #212529;
  justify-content: center;
  transform: translateX(-18px);
}
.contacts__phones-title::before {
  display: inline-block;
  content: url("../images/icons/phone-black.svg");
  height: 20px;
  width: 20px;
}
.contacts__phones-item {
  color: #212529;
}
.contacts__phones-item:not(:first-child) {
  padding-top: 5px;
}
.contacts__phones-item:not(:last-child) {
  border-bottom: 1px solid black;
  padding-bottom: 9px;
}
.contacts__phones-name {
  margin: 0 0 5px;
}
.contacts__make-appointment-btn {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  border: none;
  border-radius: 4px;
  background-color: #ef504d;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  color: #ffffff !important;
  padding: 12px 16px;
  cursor: pointer;
  transition: all 0.3s linear;
}
.contacts__make-appointment-btn:hover {
  background-color: #be2500;
}
.contacts__main {
  order: 1;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 6px 0 rgba(14, 78, 138, 0.37);
  border-radius: 16px;
  padding: 53px 20px 32px 35px;
}
.contacts__main a {
  color: #212529;
}
.contacts__main-address {
  display: flex;
  gap: 10px;
  margin: 0 0 24px;
}
.contacts__main-address::before {
  display: inline-block;
  content: url("../images/icons/pin-black.svg");
  height: 24px;
  width: 24px;
}
.contacts__main-tel {
  display: flex;
  gap: 10px;
  margin: 0 0 22px;
}
.contacts__main-tel::before {
  display: inline-block;
  content: url("../images/icons/phone-black.svg");
  height: 24px;
  width: 24px;
}
.contacts__main-mail {
  display: flex;
  gap: 10px;
  margin: 0 0 39px;
}
.contacts__main-mail::before {
  display: inline-block;
  content: url("../images/icons/mail-black.svg");
  height: 24px;
  width: 24px;
}
.contacts__schedule-unit {
  display: flex;
  justify-content: space-between;
  margin: 0 0 32px;
}
.contacts__schedule-unit-title {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 500;
}
.contacts__schedule-unit-title--mb24 {
  margin-bottom: 24px;
}
.contacts__schedule-unit-time {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
}
@media (min-width: 1280px) {
  .contacts {
    padding: 120px;
    display: grid;
    grid-template-columns: 380px 1fr;
  }
  .contacts__map {
    order: 0;
  }
  .contacts__main {
    order: 0;
  }
}

.news-slider-section {
  font-family: Arial, Helvetica, sans-serif;
  position: relative;
  padding: 60px 0 60px;
}
.news-slider-section__title {
  color: #212529;
  text-align: center;
  margin: 0 0 48px;
}
.news-slider-section__swiper .swiper-wrapper {
  margin: 0 0 32px;
}
.news-slider-section__list {
  display: flex;
  align-items: center;
  gap: 24px;
}
.news-slider-section__item {
  transition: all 0.3s linear;
  height: auto;
  min-height: 300px;
  position: relative;
  box-shadow: 0 6px 10px 0 rgba(14, 78, 138, 0.121);
  border-radius: 16px;
  overflow: hidden;
}
.news-slider-section__item-top {
  position: relative;
  min-height: 300px;
}
.news-slider-section__item-bottom {
  background-color: #c8e3f8;
  padding: 20px;
  height: 100%;
  text-decoration: none;
  color: #171717;
}
.news-slider-section__item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  height: 300px;
}
.news-slider-section__item-title {
  position: absolute;
  color: #171717;
  z-index: 2;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: rgba(213, 235, 250, 0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.news-slider-section__item-date {
  position: absolute;
  color: #171717;
  z-index: 2;
  top: 0;
  right: 0;
  padding: 10px 10px;
  border-radius: 4px 0 0 4px;
  background: rgba(213, 235, 250, 0.6);
  box-shadow: 0 8px 16px 0 rgba(14, 78, 138, 0.37);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
@media (min-width: 1280px) {
  .news-slider-section {
    padding: 60px 0;
  }
  .news-slider-section__title {
    text-align: center;
  }
  .news-slider-section__item {
    width: 550px;
    transition: all 0.3s linear;
  }
  .news-slider-section__item:hover .news-slider-section__item-img {
    cursor: pointer;
    transform: scale(102%);
  }
  .news-slider-section__item-img {
    transition: all 0.2s linear;
    width: 100%;
    object-fit: cover;
  }
}

.post-section__capture-cont-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  object-position: center;
}

.post-section__container {
  position: relative;
  padding: 30px 24px 80px;
}

.post-section__title {
  color: #212529;
  margin: 0 0 18px;
  text-align: center;
}

.post-section__subtitle {
  color: #212529;
  margin: 0 0 24px;
  text-align: center;
}

@media (min-width: 1280px) {
  .post-section__container {
    position: relative;
    padding: 32px 120px 150px;
  }
}

.vision-helper {
  position: fixed;
  z-index: 1000;
  bottom: 0;
  right: 0;
  transform: translate(calc(100% - 46px), -35%);
  transition: all 0.2s linear;
}
.vision-helper__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.vision-helper__item button,
.vision-helper__item a {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 40px;
  background-color: #ef504d;
  color: #ffffff;
  padding: 0 12px 0 6px;
  border: 0;
  transition: all 0.3s linear;
}
.vision-helper__item button:hover,
.vision-helper__item a:hover {
  background-color: #be2500;
}
.vision-helper__item--appoint a:before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background-image: url("../images/icons/book-medical-solid.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px 24px;
}
.vision-helper__item--grayscale button:before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background-image: url("../images/icons/eye-off.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}
.vision-helper__item--up-font button:before,
.vision-helper__item--down-font button:before {
  content: "+aA";
  font-size: 20px;
  line-height: 40px;
  color: #ffffff;
}
.vision-helper__item--down-font button:before {
  content: "-aA";
}
.vision-helper__item .button--disabled {
  pointer-events: none;
  background-color: #6f6f6f;
}
.vision-helper__item .button--disabled:hover {
  background-color: #6f6f6f;
}
@media (min-width: 1280px) {
  .vision-helper:hover {
    transform: translate(0, -35%);
  }
}

.gov-links__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 16px;
}

.gov-links__item {
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 8px 0 rgba(14, 78, 138, 0.37);
  border-radius: 24px;
  overflow: hidden;
}

.gov-links__link {
  cursor: pointer;
}

.gov-links__img {
  width: 100%;
  max-height: 300px;
}

@media (min-width: 1280px) {
  .gov-links__list {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 16px 120px;
  }
}

.askform {
  padding: 60px 20px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.askform__container {
  font-family: "Roboto", sans-serif;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 6px 0 rgba(14, 78, 138, 0.37);
}
.askform__title {
  font-size: 18px;
  font-weight: bold;
  color: #212529;
  text-align: center;
  margin: 0 0 24px;
}
.askform form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.askform__group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.askform__label {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.askform__label input,
.askform__label select {
  width: 100%;
  padding: 8px 12px;
  border-radius: 4px;
  border: 1px solid black;
}
.askform__label textarea {
  width: 100%;
  padding: 8px 12px;
  resize: none;
  border-radius: 4px;
  border: 1px solid black;
}
.askform__submit {
  display: flex;
}
.askform__submit input {
  width: 100%;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  border: none;
  border-radius: 4px;
  background-color: #ef504d;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  color: #ffffff !important;
  padding: 12px 16px;
  cursor: pointer;
  transition: all 0.3s linear;
}
.askform__submit input:hover {
  background-color: #be2500;
}
.askform__submit .wpcf7-spinner {
  display: none;
}
@media (min-width: 1280px) {
  .askform {
    padding: 60px 120px 120px;
  }
  .askform__container {
    padding: 48px;
  }
  .askform__title {
    font-size: 32px;
    margin: 0 0 48px;
  }
  .askform__group {
    flex-direction: row;
  }
  .askform__submit input {
    width: 25%;
    min-width: 200px;
  }
}

.news-section {
  padding: 40px 20px 70px;
}
.news-section__container {
  display: flex;
  gap: 16px;
  flex-direction: column-reverse;
  justify-content: space-between;
}
.news-section__main {
  width: 100%;
}
.news-section__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 0 16px;
}
.news-section__item {
  border-radius: 16px;
  overflow: hidden;
}
.news-section__item-link {
  display: flex;
  background-color: #e8e8e8;
  padding: 16px;
  gap: 32px;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  color: #000000;
}
.news-section__post-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}
.news-section__post-cap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.news-section__post-preview {
  max-width: 200px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.news-section__post-preview img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.news-section__post-details {
  display: flex;
  align-items: center;
  font-weight: 500;
  gap: 6px;
  color: #212529;
}
.news-section__post-details::after {
  display: inline-block;
  content: url("../images/icons/arrow-down-black.svg");
  transform: rotate(-90deg) translateX(-2px);
  height: 20px;
  width: 20px;
}
.news-section__search {
  padding: 16px;
  width: 100%;
  height: fit-content;
  border-radius: 16px;
  min-width: 300px;
  background-color: #e8e8e8;
}
.news-section__search-input {
  font-size: 16px;
  padding: 14px 19px 14px 32px;
  border: 1px solid #c1c1c1;
  background-color: white;
  width: 100%;
  border-radius: 4px;
  transition: 0.2s;
  background-image: url("../images/icons/magnifying-glass-solid.svg");
  background-size: 16px;
  background-position: 8px 50%;
  background-repeat: no-repeat;
  margin: 0 0 24px;
}
.news-section__category-block {
  font-family: "Roboto", sans-serif;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 24px;
}
.news-section__category-list {
  font-size: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.news-section__category-label {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 6px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.news-section__category-label .news-section__category-radio {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.news-section__category-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #eee;
  border-radius: 50%;
}
.news-section__category-label
  .news-section__category-radio
  ~ .news-section__category-checkmark {
  background-color: #ccc;
}
.news-section__category-label:hover
  .news-section__category-radio
  ~ .news-section__category-checkmark {
  background-color: #ccc;
}
.news-section__category-label
  .news-section__category-radio:checked
  ~ .news-section__category-checkmark {
  background-color: #ef504d;
}
.news-section .news-section__category-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.news-section__category-label
  .news-section__category-radio:checked
  ~ .news-section__category-checkmark:after {
  display: block;
}
.news-section__category-label .news-section__category-checkmark:after {
  top: 4px;
  left: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: white;
}
.news-section__search-btn {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  border: none;
  border-radius: 4px;
  background-color: #ef504d;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  color: #ffffff !important;
  padding: 12px 16px;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s linear;
}
.news-section__search-btn:hover {
  background-color: #be2500;
}
.news-section__pagination {
  display: flex;
  gap: 8px;
}
.news-section__pagination .page-numbers {
  font-family: "Roboto", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  height: 32px;
  width: 32px;
  background-color: #ef504d;
  border: 2px solid #ef504d;
  border-radius: 4px;
  transition: all 0.3s linear;
}
.news-section__pagination .page-numbers:hover {
  background-color: #be2500;
  border: 2px solid #be2500;
}
.news-section__pagination .page-numbers.current {
  background-color: #ffffff;
  border: 2px solid #ef504d;
  color: #ef504d;
}
.news-section__pagination .prev {
  font-size: 0;
}
.news-section__pagination .prev::after {
  display: inline-block;
  content: url("../images/icons/arrow-down.svg");
  transform: rotate(90deg) translateX(-2px);
  height: 20px;
  width: 20px;
}
.news-section__pagination .next {
  font-size: 0;
}
.news-section__pagination .next::after {
  display: inline-block;
  content: url("../images/icons/arrow-down.svg");
  transform: rotate(-90deg) translateX(-2px);
  height: 20px;
  width: 20px;
}
.news-section__no-results {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: #ef504d;
}
.news-section__no-results::before {
  display: inline-block;
  content: url("../images/icons/circle-exclamation-solid.svg");
  height: 20px;
  width: 20px;
}
@media (min-width: 1280px) {
  .news-section {
    padding: 70px 120px;
  }
  .news-section__container {
    max-width: 1440px;
    margin: 0 auto;
    gap: 60px;
    flex-direction: row;
  }
  .news-section__item-link {
    padding: 32px;
  }
  .news-section__search {
    padding: 32px;
    width: 40%;
    min-width: 300px;
    background-color: #e8e8e8;
  }
}

.list-of-files {
  padding: 40px 20px 70px;
}
.list-of-files__container {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 6px 0 rgba(14, 78, 138, 0.37);
}
.list-of-files__title {
  margin: 0 0 32px;
  display: flex;
  gap: 16px;
  color: #212529;
  justify-content: center;
}
.list-of-files__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.list-of-files__item {
  width: 100%;
}
.list-of-files__link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  font-size: 16px;
  color: #000000;
  transition: all 0.2s linear;
  cursor: pointer;
}
.list-of-files__link:hover {
  color: #1971c2;
}
.list-of-files__icon {
  width: 16px;
}
@media (min-width: 1280px) {
  .list-of-files {
    padding: 70px 120px 120px;
  }
  .list-of-files__container {
    padding: 48px;
  }
}

.speech {
  padding: 40px 20px 70px;
}
.speech__container {
  font-family: "Roboto", sans-serif;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 6px 0 rgba(14, 78, 138, 0.37);
}
.speech__title {
  font-size: 18px;
  font-weight: bold;
  color: #212529;
  text-align: center;
  margin: 0 0 24px;
}
.speech__photo {
  max-height: 350px;
  border-radius: 8px;
  width: 100%;
  margin-bottom: 24px;
}
.speech__context > p:not(:last-child) {
  margin-bottom: 8px;
}
@media (min-width: 1280px) {
  .speech {
    padding: 70px 120px 120px;
  }
  .speech__container {
    padding: 48px;
  }
  .speech__title {
    font-size: 32px;
    margin: 0 0 48px;
  }
  .speech__photo {
    width: auto;
    max-height: 350px;
    float: left;
    margin-right: 16px;
    margin-bottom: 8px;
  }
}

.history {
  padding: 40px 20px 70px;
}
.history__container {
  font-family: "Roboto", sans-serif;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 6px 0 rgba(14, 78, 138, 0.37);
}
.history__title {
  font-size: 18px;
  font-weight: bold;
  color: #212529;
  text-align: center;
  margin: 0 0 24px;
}
.history__photo {
  max-height: 350px;
  border-radius: 8px;
  width: 100%;
  margin-bottom: 24px;
}
.history__context > p:not(:last-child) {
  font-size: 16px;
  margin-bottom: 8px;
}
.history__context ul {
  margin-bottom: 12px;
}
.history__context ul > li {
  padding-left: 8px;
  font-size: 16px;
}
.history__context ul > li:before {
  content: "";
  position: relative;
  top: 4px;
  display: inline-block;
  background-image: url(../images/icons/star-of-life-solid.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  width: 18px;
  height: 18px;
  margin: 0 16px 0 0;
}
.history__context ul > li:not(:last-child) {
  margin-bottom: 8px;
}
@media (min-width: 1280px) {
  .history {
    padding: 70px 120px 120px;
  }
  .history__container {
    padding: 48px;
  }
  .history__title {
    font-size: 32px;
    margin: 0 0 48px;
  }
  .history__photo {
    width: auto;
    max-height: 350px;
    object-fit: cover;
    object-position: center center;
    width: 100%;
    margin-right: 16px;
    margin-bottom: 8px;
  }
}

.content {
  padding: 40px 20px 70px;
}
.content a {
  text-decoration: none;
  color: black;
  transition: all 0.3s linear;
}
.content a:hover {
  color: #30b8de;
}
.content__container {
  font-family: "Roboto", sans-serif;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 6px 0 rgba(14, 78, 138, 0.37);
  overflow-x: scroll;
}
.content__title {
  font-size: 18px;
  font-weight: bold;
  color: #212529;
  text-align: center;
  margin: 0 0 24px;
}
.content__photo-cont {
  overflow-x: scroll !important;
}
.content__photo {
  max-height: 350px;
  border-radius: 8px;
  width: 100%;
  margin-bottom: 24px;
}
.content__photo--full {
  max-height: none !important;
  min-width: 600px !important;
}
.content__context {
  font-family: "Roboto", sans-serif;
}
.content__context p:not(:last-child) {
  font-size: 16px;
  margin-bottom: 8px;
}
.content__context h1,
.content__context h2,
.content__context h3,
.content__context h4,
.content__context h5,
.content__context h6 {
  margin-bottom: 12px;
}
.content__context p:not(:last-child) {
  margin-bottom: 8px;
}
.content__context p:has(img) {
  display: flex;
  justify-content: center;
  padding: 32px 0;
}
.content__context ul {
  margin-bottom: 12px;
}
.content__context ul > li {
  padding-left: 8px;
  font-size: 16px;
}
.content__context ul > li:before {
  content: "";
  position: relative;
  top: 4px;
  display: inline-block;
  background-image: url(../images/icons/star-of-life-solid.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  width: 18px;
  height: 18px;
  margin: 0 16px 0 0;
}
.content__context ul > li:not(:last-child) {
  margin-bottom: 8px;
}
@media (min-width: 1280px) {
  .content {
    padding: 70px 120px 120px;
  }
  .content__container {
    padding: 48px;
  }
  .content__title {
    font-size: 32px;
    margin: 0 0 48px;
  }
  .content__photo {
    width: auto;
    max-height: 350px;
    object-fit: cover;
    object-position: center center;
    width: 100%;
    margin-right: 16px;
    margin-bottom: 8px;
  }
  .content__photo--full {
    max-height: none !important;
  }
}

.leadership {
  padding: 40px 20px 70px;
}
.leadership__container {
  display: flex;
  gap: 16px;
  flex-direction: column-reverse;
  justify-content: space-between;
}
.leadership__main {
  width: 100%;
}
.leadership__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 0 16px;
}
.leadership__item {
  border-radius: 16px;
  overflow: hidden;
}
.leadership__item-link {
  display: flex;
  background-color: #e8e8e8;
  padding: 16px;
  gap: 32px;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  color: #000000;
}
.leadership__post-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}
.leadership__post-cap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.leadership__post-preview {
  max-width: 200px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.leadership__post-preview img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.leadership__post-details {
  display: flex;
  align-items: center;
  font-weight: 500;
  gap: 6px;
  color: #212529;
}
.leadership__post-details::after {
  display: inline-block;
  content: url("../images/icons/arrow-down-black.svg");
  transform: rotate(-90deg) translateX(-2px);
  height: 20px;
  width: 20px;
}
.leadership__search {
  padding: 16px;
  width: 100%;
  height: fit-content;
  border-radius: 16px;
  min-width: 300px;
  background-color: #e8e8e8;
}
.leadership__search-input {
  font-size: 16px;
  padding: 14px 19px 14px 32px;
  border: 1px solid #c1c1c1;
  background-color: white;
  width: 100%;
  border-radius: 4px;
  transition: 0.2s;
  background-image: url("../images/icons/magnifying-glass-solid.svg");
  background-size: 16px;
  background-position: 8px 50%;
  background-repeat: no-repeat;
  margin: 0 0 24px;
}
.leadership__category-block {
  font-family: "Roboto", sans-serif;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 24px;
}
.leadership__category-list {
  font-size: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.leadership__category-label {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 6px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.leadership__category-label .leadership__category-radio {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.leadership__category-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #eee;
  border-radius: 50%;
}
.leadership__category-label
  .leadership__category-radio
  ~ .leadership__category-checkmark {
  background-color: #ccc;
}
.leadership__category-label:hover
  .leadership__category-radio
  ~ .leadership__category-checkmark {
  background-color: #ccc;
}
.leadership__category-label
  .leadership__category-radio:checked
  ~ .leadership__category-checkmark {
  background-color: #ef504d;
}
.leadership .leadership__category-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.leadership__category-label
  .leadership__category-radio:checked
  ~ .leadership__category-checkmark:after {
  display: block;
}
.leadership__category-label .leadership__category-checkmark:after {
  top: 4px;
  left: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: white;
}
.leadership__search-btn {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  border: none;
  border-radius: 4px;
  background-color: #ef504d;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  color: #ffffff !important;
  padding: 12px 16px;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s linear;
}
.leadership__search-btn:hover {
  background-color: #be2500;
}
.leadership__pagination ul {
  display: flex;
  gap: 8px;
}
.leadership__pagination ul .page-numbers {
  font-family: "Roboto", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  height: 32px;
  width: 32px;
  background-color: #ef504d;
  border: 2px solid #ef504d;
  border-radius: 4px;
  transition: all 0.3s linear;
}
.leadership__pagination ul .page-numbers:hover {
  background-color: #be2500;
  border: 2px solid #be2500;
}
.leadership__pagination .page-numbers.current {
  background-color: #ffffff;
  border: 2px solid #ef504d;
  color: #ef504d;
}
.leadership__pagination .prev {
  font-size: 0;
}
.leadership__pagination .prev::after {
  display: inline-block;
  content: url("../images/icons/arrow-down.svg");
  transform: rotate(90deg) translateX(-2px);
  height: 20px;
  width: 20px;
}
.leadership__pagination .next {
  font-size: 0;
}
.leadership__pagination .next::after {
  display: inline-block;
  content: url("../images/icons/arrow-down.svg");
  transform: rotate(-90deg) translateX(-2px);
  height: 20px;
  width: 20px;
}
.leadership__no-results {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: #ef504d;
}
.leadership__no-results::before {
  display: inline-block;
  content: url("../images/icons/circle-exclamation-solid.svg");
  height: 20px;
  width: 20px;
}
@media (min-width: 1280px) {
  .leadership {
    padding: 70px 120px;
  }
  .leadership__container {
    max-width: 1440px;
    margin: 0 auto;
    gap: 60px;
    flex-direction: row;
  }
  .leadership__item-link {
    padding: 32px;
  }
  .leadership__search {
    padding: 32px;
    width: 40%;
    min-width: 300px;
    background-color: #e8e8e8;
  }
}

.accordion {
  padding: 24px 0px;
}

.accordion__item {
  box-shadow: 0 0 5px #e1e1e1;
  overflow: hidden;
  transition: height 0.3s ease;
  margin-bottom: 12px;
}

.accordion__item .accordion__tab {
  padding: 20px;
  cursor: pointer;
  user-select: none;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  transition: all 0.3s linear;
}
.accordion__item .accordion__tab:hover {
  color: #be2500;
}

.accordion__item .accordion__tab .accordion__arrow {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 12px;
  height: 12px;
  transition: all 0.3s ease;
  transform: translateY(-100%);
}

.accordion__item .accordion__tab .accordion__arrow img {
  width: 100%;
  height: 100%;
}

.accordion__item .accordion__tab.active .accordion__arrow {
  transform: rotate(180deg);
}

.accordion__item .accordion__content {
  height: 0;
  padding: 0 20px;
  border-top: 1px solid #e9e9e9;
}

.accordion__item.active .accordion__content {
  height: auto;
  padding: 20px;
}

.accordion-files__list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-files__item {
  width: 100%;
}

.accordion-files__link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  font-size: 16px;
  color: #000000;
  transition: all 0.2s linear;
  cursor: pointer;
}
.accordion-files__link:hover {
  color: #1971c2;
}

.accordion-files__icon {
  width: 16px;
}

@media (min-width: 1280px) {
  .accordion-files__list {
    margin-top: 32px;
  }
}

.zmi {
  padding: 40px 20px 70px;
  display: flex;
  gap: 16px;
  flex-direction: column-reverse;
  justify-content: space-between;
}
.zmi__main {
  width: 100%;
}
.zmi__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 0 16px;
}
.zmi__item {
  border-radius: 16px;
  overflow: hidden;
}
.zmi__item-link {
  display: flex;
  flex-direction: column;
  background-color: #e8e8e8;
  padding: 16px;
  gap: 32px;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  color: #000000;
}
.zmi__post-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}
.zmi__post-cap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.zmi__post-preview {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.zmi__post-preview img {
  width: 100%;
  object-fit: cover;
}
.zmi__post-details {
  display: flex;
  align-items: center;
  font-weight: 500;
  gap: 6px;
  color: #212529;
}
.zmi__post-details::after {
  display: inline-block;
  content: url("../images/icons/arrow-down-black.svg");
  transform: rotate(-90deg) translateX(-2px);
  height: 20px;
  width: 20px;
}
.zmi__pagination ul {
  display: flex;
  gap: 8px;
}
.zmi__pagination ul .page-numbers {
  font-family: "Roboto", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  height: 32px;
  width: 32px;
  background-color: #ef504d;
  border: 2px solid #ef504d;
  border-radius: 4px;
  transition: all 0.3s linear;
}
.zmi__pagination ul .page-numbers:hover {
  background-color: #be2500;
  border: 2px solid #be2500;
}
.zmi__pagination .page-numbers.current {
  background-color: #ffffff;
  border: 2px solid #ef504d;
  color: #ef504d;
}
.zmi__pagination .prev {
  font-size: 0;
}
.zmi__pagination .prev::after {
  display: inline-block;
  content: url("../images/icons/arrow-down.svg");
  transform: rotate(90deg) translateX(-2px);
  height: 20px;
  width: 20px;
}
.zmi__pagination .next {
  font-size: 0;
}
.zmi__pagination .next::after {
  display: inline-block;
  content: url("../images/icons/arrow-down.svg");
  transform: rotate(-90deg) translateX(-2px);
  height: 20px;
  width: 20px;
}
.zmi__no-results {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: #ef504d;
}
.zmi__no-results::before {
  display: inline-block;
  content: url("../images/icons/circle-exclamation-solid.svg");
  height: 20px;
  width: 20px;
}
@media (min-width: 768px) {
  .zmi__item-link {
    flex-direction: row;
  }
  .zmi__post-preview {
    min-width: 300px;
    max-width: 300px;
  }
}
@media (min-width: 1280px) {
  .zmi {
    padding: 70px 120px;
    gap: 60px;
    flex-direction: row;
  }
  .zmi__main {
    max-width: 1440px;
    margin: 0 auto;
  }
  .zmi__item-link {
    padding: 32px;
  }
  .zmi__post-preview {
    min-width: 400px;
    max-width: 400px;
  }
  .zmi__search {
    padding: 32px;
    width: 40%;
    min-width: 300px;
    background-color: #e8e8e8;
  }
}

.structural-units {
  padding: 40px 20px 70px;
  display: flex;
  gap: 16px;
  flex-direction: column-reverse;
  justify-content: space-between;
}
.structural-units__main {
  width: 100%;
}
.structural-units__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 0 16px;
}
.structural-units__item {
  border-radius: 16px;
  overflow: hidden;
}
.structural-units__item-link {
  display: flex;
  flex-direction: column;
  background-color: #e8e8e8;
  padding: 16px;
  gap: 32px;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  color: #000000;
}
.structural-units__post-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}
.structural-units__post-cap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.structural-units__post-preview {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.structural-units__post-preview img {
  width: 100%;
  object-fit: cover;
}
.structural-units__post-details {
  display: flex;
  align-items: center;
  font-weight: 500;
  gap: 6px;
  color: #212529;
}
.structural-units__post-details::after {
  display: inline-block;
  content: url("../images/icons/arrow-down-black.svg");
  transform: rotate(-90deg) translateX(-2px);
  height: 20px;
  width: 20px;
}
.structural-units__pagination ul {
  display: flex;
  gap: 8px;
}
.structural-units__pagination ul .page-numbers {
  font-family: "Roboto", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  height: 32px;
  width: 32px;
  background-color: #ef504d;
  border: 2px solid #ef504d;
  border-radius: 4px;
  transition: all 0.3s linear;
}
.structural-units__pagination ul .page-numbers:hover {
  background-color: #be2500;
  border: 2px solid #be2500;
}
.structural-units__pagination .page-numbers.current {
  background-color: #ffffff;
  border: 2px solid #ef504d;
  color: #ef504d;
}
.structural-units__pagination .prev {
  font-size: 0;
}
.structural-units__pagination .prev::after {
  display: inline-block;
  content: url("../images/icons/arrow-down.svg");
  transform: rotate(90deg) translateX(-2px);
  height: 20px;
  width: 20px;
}
.structural-units__pagination .next {
  font-size: 0;
}
.structural-units__pagination .next::after {
  display: inline-block;
  content: url("../images/icons/arrow-down.svg");
  transform: rotate(-90deg) translateX(-2px);
  height: 20px;
  width: 20px;
}
.structural-units__no-results {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: #ef504d;
}
.structural-units__no-results::before {
  display: inline-block;
  content: url("../images/icons/circle-exclamation-solid.svg");
  height: 20px;
  width: 20px;
}
@media (min-width: 768px) {
  .structural-units__item-link {
    flex-direction: row;
  }
  .structural-units__post-preview {
    min-width: 300px;
  }
}
@media (min-width: 1280px) {
  .structural-units {
    padding: 70px 120px;
    gap: 60px;
    flex-direction: row;
  }

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

  .structural-units__item-link {
    padding: 32px;
  }
  .structural-units__post-preview {
    min-width: 400px;
    max-width: 400px;
  }
  .structural-units__search {
    padding: 32px;
    width: 40%;
    min-width: 300px;
    background-color: #e8e8e8;
  }
}

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

html {
  height: 100%;
}

body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background-color: #f9f9f9;
  overflow-x: hidden;
  position: relative;
}

.main {
  flex: 1 1 auto;
}

.body--grayscale *:not(.stuff-section__image) {
  filter: grayscale(100%);
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  cursor: pointer;
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
}

.custom-slider__btn-group {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 24px 0 0;
}
.custom-slider__btn-group--nopd {
  padding: 0 !important;
}

.custom-slider__btn {
  cursor: pointer;
  background-color: transparent;
  border: none;
  width: 48px;
  height: 48px;
  background-image: url("../images/icons/arrow-down-black.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  transition: all 0.2s linear;
}
.custom-slider__btn:hover {
  opacity: 50%;
}
.custom-slider__btn--prev {
  transform: rotate(90deg);
}
.custom-slider__btn--next {
  transform: rotate(-90deg);
}

.custom-richtext__group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 auto 24px;
}
.custom-richtext__group > div {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
}
@media (min-width: 1280px) {
  .custom-richtext__group {
    flex-direction: row;
  }
}

table {
  overflow-x: scroll;
  background-color: #010000;
}

table tr {
  background-color: white;
}
table tr td {
  padding: 4px 6px;
}
