@charset "UTF-8";
:root {
  --gap: 24px;
  --font-family: "ProximaNova", sans-serif;
  --accent-family: "ProximaNova", sans-serif;
  --ordinary-family: "Arial", sans-serif;
  --content-width: 100%;
  --container-offset: var(--gap);
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --transition: 0.22s ease;
  --font-size: 1em;
  --burger-line-height: 2px;
  --accent: #00907a;
  --accent2: #1cc5a3;
  --accent-light: #22ebbe;
  --accent-light2: #f0fdf9;
  --accent-light3: #d4f5ed;
  --accent-light4: #d2f5ee;
  --accent-dark: #00907a;
  --text: #000;
  --text-muted: #666;
  --text-gray: #9a9a9a;
  --bg: #ffffff;
  --color-danger: #dc2626;
  --color-surface-subtle: #f5f5f5;
  --color-accent-active: #22ebbe;
  --color-primary-hover: #2d2d2d;
  --color-primary-active: #0d0d0d;
  --burgerColor: #00907a;
  --footer-bg: #404040;
  --footer-text: #fff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  color: var(--text);
  background: var(--bg);
}

.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

.page__body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  font-size: 16px;
  background: var(--color-surface-subtle);
}

img {
  display: block;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: underline;
  transition: color var(--transition);
}
a:hover {
  text-decoration: none;
  color: var(--accent);
}
a.no-transition {
  transition: none;
}

h1 {
  font-size: 2.5rem;
  font-weight: 400;
  margin-block-start: 0.67em;
  margin-block-end: 0.67em;
}

h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 4rem;
  margin-block-end: 0.83em;
}

h3 {
  font-size: 1.5rem;
  font-weight: normal;
  margin-block-start: 1em;
  margin-block-end: 1em;
  color: var(--accent);
}

h4 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-block-start: 1em;
  margin-block-end: 1em;
}

h5 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-block-start: 1em;
  margin-block-end: 1em;
}

h6 {
  font-size: 1rem;
  font-weight: bold;
  margin-block-start: 1em;
  margin-block-end: 1em;
}

p {
  font-size: 1.125rem;
  margin: 0 0 1em;
  line-height: 1.2;
}

p:empty {
  min-height: 1rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: var(--accent-family);
  font-size: 1.5rem;
  margin: 70px 0 50px;
  padding: 0;
}
.breadcrumb li {
  list-style: none;
}
.breadcrumb__sep {
  color: var(--text-muted);
  margin: 0 1rem;
}
.breadcrumb a {
  text-decoration: none;
  color: var(--text-muted);
  transition: color var(--transition);
}
.breadcrumb a:hover {
  color: var(--accent);
}
.breadcrumb__current, .breadcrumb li.active {
  color: var(--accent);
}

.btn-link {
  transition: color var(--transition);
}
.btn-link:hover {
  color: var(--accent);
}

.btn {
  background-color: var(--accent-light);
  color: #fff;
}
.btn:hover {
  background-color: var(--accent);
}

main {
  min-height: 200px;
}

.site-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.is-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

.icon {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

.simplebar-track.simplebar-vertical {
  right: 4px;
  border-radius: 10px;
  width: 4px;
  background: var(--color-neutral-muted);
}

.simplebar-scrollbar::before {
  /* stylelint-disable-next-line declaration-no-important */
  inset: 0 !important;
  border-radius: 10px;
  background: var(--color-secondary);
  /* stylelint-disable-next-line declaration-no-important */
  opacity: 1 !important;
}

.simplebar-content::after,
.simplebar-content::before {
  display: none;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(26, 26, 26, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.overlay--visible {
  opacity: 1;
  visibility: visible;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gap);
}

.table-wrap {
  border: 2px solid var(--accent);
  border-radius: 12px;
  overflow: hidden;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

#tinymce table {
  border: 2px solid var(--accent);
  border-radius: 12px;
  overflow: hidden;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  border-collapse: collapse;
  border: none;
  font-size: 0.9375rem;
}
table th {
  background: var(--accent-light3);
  color: var(--accent);
  font-family: var(--accent-family);
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.4;
  padding: 16px 20px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(0, 144, 122, 0.2);
  border-right: 1px solid rgba(0, 144, 122, 0.2);
}
table th:last-child {
  border-right: none;
}
table td {
  padding: 20px 20px;
  border-bottom: 1px solid rgba(0, 144, 122, 0.15);
  border-right: 1px solid rgba(0, 144, 122, 0.15);
  vertical-align: middle;
}
table td:last-child {
  border-right: none;
}
table td p {
  margin: 0 0 0.5rem;
}
table tbody tr {
  background: #fff;
}
table tbody tr:nth-child(odd) {
  background-color: var(--accent-light2);
}
table tbody tr:last-child td {
  border-bottom: none;
}
table tbody tr:hover {
  background: var(--accent-light3);
}

.table1 th {
  font-size: 1.125rem;
}
.table1 td {
  font-size: 1.125rem;
  font-weight: bold;
}

li::marker {
  color: var(--accent);
}

blockquote {
  margin: 32px 0;
  padding: 20px 28px;
  border-left: 4px solid var(--accent);
  background: var(--accent-light2);
  border-radius: 0 8px 8px 0;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text);
}

blockquote p {
  margin: 0;
}

blockquote cite {
  display: block;
  margin-top: 12px;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: normal;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

.img-left {
  float: left;
  margin-right: 3rem;
  margin-bottom: 3rem;
}

.img-right {
  float: left;
  margin-right: 3rem;
  margin-bottom: 3rem;
}

.img-fluid {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.img-news {
  max-width: 474px;
  height: auto;
  float: left;
  margin-right: 2rem;
  margin-bottom: 2rem;
}

.flex {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.h2-flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-between;
}
.h2-flex a.all {
  margin-top: 4rem;
  margin-bottom: 33px;
}

.gap-1 {
  gap: 1rem;
}

.text-center {
  text-align: center;
}

@media (max-width: 768px) {
  h2 {
    font-size: 2em;
  }
  .breadcrumb {
    gap: 4px;
    font-size: 1rem;
    margin: 30px 0 20px;
  }
  .breadcrumb__sep {
    margin: 0 0.25rem;
  }
  p {
    font-size: 1rem;
    margin: 0 0 1em;
    line-height: 1.2;
  }
  .table1 tr {
    display: block;
  }
  .table1 tr th, .table1 tr td {
    display: block;
    width: 100%;
    border: none;
  }
  .table1 tr:nth-child(odd) {
    background: none !important;
  }
}
/* ===================================================
   Плашка версии для слабовидящих
   Подключение: <link rel="stylesheet" href="a11y-toolbar.css">
   =================================================== */
:root {
  --a11y-bg: #ffffff;
  --a11y-border: #c8c8c8;
  --a11y-text: #1a1a1a;
  --a11y-btn-bg: #f0f0f0;
  --a11y-btn-hover: #e0e0e0;
  --a11y-active: #005b99;
  --a11y-active-text: #ffffff;
  --a11y-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

/* ===================================================
   Кнопка-триггер из HTML (#a11y-trigger)
   Активное состояние когда панель открыта
   =================================================== */
#a11y-trigger.a11y-trigger--active {
  color: var(--accent);
}

/* ===================================================
   Панель (скрыта по умолчанию, открывается триггером)
   =================================================== */
#a11y-bar {
  font-family: Arial, sans-serif;
  background: var(--a11y-bg);
  border-bottom: 2px solid var(--a11y-border);
  padding: 6px 52px 6px 12px; /* правый отступ — под кнопку-глаз */
  display: none; /* скрыта по умолчанию */
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  box-shadow: var(--a11y-shadow);
  position: relative;
  z-index: 9999;
  box-sizing: border-box;
  width: 100%;
}

#a11y-bar.a11y-bar--open {
  display: flex;
}

#a11y-bar .a11y-label {
  font-size: 15px;
  font-weight: bold;
  color: var(--a11y-text);
  margin-right: 6px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

#a11y-bar .a11y-label svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.a11y-divider {
  width: 1px;
  height: 26px;
  background: var(--a11y-border);
  margin: 0 4px;
  flex-shrink: 0;
}

.a11y-group {
  display: flex;
  align-items: center;
  gap: 4px;
}

.a11y-group-label {
  font-size: 13px;
  color: #666666;
  margin-right: 2px;
  white-space: nowrap;
  font-family: Arial, sans-serif;
}

/* --- Базовая кнопка --- */
.a11y-btn {
  background: var(--a11y-btn-bg);
  border: 1px solid var(--a11y-border);
  color: var(--a11y-text);
  cursor: pointer;
  font-family: Arial, sans-serif;
  border-radius: 3px;
  transition: background 0.15s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  white-space: nowrap;
  user-select: none;
}

.a11y-btn:hover {
  background: var(--a11y-btn-hover);
}

.a11y-btn:focus-visible {
  outline: 2px solid var(--a11y-active);
  outline-offset: 2px;
}

.a11y-btn.active {
  background: var(--a11y-active);
  color: var(--a11y-active-text);
  border-color: var(--a11y-active);
}

/* --- Кнопки размера шрифта --- */
.a11y-font-btn {
  padding: 4px 8px;
  min-width: 28px;
  height: 28px;
}

.a11y-font-btn.size-s {
  font-size: 13px;
}

.a11y-font-btn.size-m {
  font-size: 16px;
}

.a11y-font-btn.size-l {
  font-size: 20px;
  font-weight: bold;
}

/* --- Кнопки цветовой схемы --- */
.a11y-color-btn {
  width: 28px;
  height: 28px;
  font-size: 13px;
  font-weight: bold;
  padding: 0;
  border-width: 1.5px;
}

.a11y-color-btn.scheme-white {
  background: #ffffff;
  color: #000000;
  border-color: #aaaaaa;
}

.a11y-color-btn.scheme-black {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.a11y-color-btn.scheme-blue {
  background: #003399;
  color: #ffffff;
  border-color: #003399;
}

.a11y-color-btn.scheme-yellow {
  background: #ffff00;
  color: #000000;
  border-color: #cca800;
}

.a11y-color-btn.active {
  outline: 3px solid var(--a11y-active);
  outline-offset: 1px;
  /*background: inherit;*/
  color: inherit;
  border-color: inherit;
}

/*.a11y-color-btn.scheme-black.active, .a11y-color-btn.scheme-blue.active  {color: #000000;}*/
/* --- Кнопки-переключатели --- */
.a11y-toggle-btn {
  font-size: 14px;
  padding: 4px 9px;
  height: 28px;
}

/* --- Кнопка «Обычная версия» --- */
.a11y-close-btn {
  font-size: 14px;
  padding: 4px 10px;
  height: 28px;
  margin-left: auto;
  background: #f8f8f8;
  color: #444444;
}

:root {
  --a11y-blue: #003399;
}

html.a11y-font-small {
  font-size: 90% !important;
}

html.a11y-font-medium {
  font-size: 110% !important;
}

html.a11y-font-large {
  font-size: 140% !important;
}

body.a11y-spacing p,
body.a11y-spacing li,
body.a11y-spacing td,
body.a11y-spacing span,
body.a11y-spacing div {
  line-height: 2.2 !important;
  letter-spacing: 0.04em !important;
}

body.a11y-no-images img {
  visibility: hidden !important;
}

body.a11y-no-images button img {
  visibility: visible !important;
}

body.a11y-scheme-black {
  background-color: #000000 !important;
  color: #ffffff !important;
}
body.a11y-scheme-black .footer {
  background-color: #000000;
  border-top: #fff 1px solid;
}

body.a11y-scheme-black a {
  color: #66aaff !important;
}

body.a11y-scheme-blue {
  background-color: var(--a11y-blue) !important;
  color: #ffffff !important;
}
body.a11y-scheme-blue a {
  color: #aaddff !important;
}
body.a11y-scheme-blue footer, body.a11y-scheme-blue .cookies {
  background-color: var(--a11y-blue);
}

body.a11y-scheme-black .vac-table th, body.a11y-scheme-black .vac-table td, body.a11y-scheme-black .vac-table thead tr:last-child th {
  background-color: #000 !important;
  color: #ffffff !important;
}

body.a11y-scheme-black button, body.a11y-scheme-black button span, body.a11y-scheme-blue button, body.a11y-scheme-blue button span {
  color: #ffffff !important;
}
body.a11y-scheme-black #a11y-bar button, body.a11y-scheme-black #a11y-bar button span, body.a11y-scheme-blue #a11y-bar button, body.a11y-scheme-blue #a11y-bar button span {
  color: #444444 !important;
}
body.a11y-scheme-black #a11y-bar .scheme-black, body.a11y-scheme-black #a11y-bar .scheme-blue, body.a11y-scheme-blue #a11y-bar .scheme-black, body.a11y-scheme-blue #a11y-bar .scheme-blue {
  color: #fff !important;
}
body.a11y-scheme-black #a11y-bar .a11y-btn.active, body.a11y-scheme-blue #a11y-bar .a11y-btn.active {
  color: #fff !important;
}
body.a11y-scheme-black img.icon, body.a11y-scheme-black .logo-vd img, body.a11y-scheme-black .logo, body.a11y-scheme-blue img.icon, body.a11y-scheme-blue .logo-vd img, body.a11y-scheme-blue .logo {
  filter: brightness(0) invert(1);
}
body.a11y-scheme-black footer svg rect, body.a11y-scheme-blue footer svg rect {
  fill: #fff;
}
body.a11y-scheme-black .mission-quote, body.a11y-scheme-blue .mission-quote {
  background-color: inherit;
}
body.a11y-scheme-black .mission-quote p, body.a11y-scheme-blue .mission-quote p {
  color: #fff;
}
body.a11y-scheme-black .fh-table, body.a11y-scheme-blue .fh-table {
  border: 1px solid #fff;
}
body.a11y-scheme-black .fh-table th, body.a11y-scheme-black .fh-table td, body.a11y-scheme-black .fh-table tbody tr, body.a11y-scheme-black .fh-table tbody tr:nth-child(odd),
body.a11y-scheme-black .vac-table th, body.a11y-scheme-black .vac-table td, body.a11y-scheme-black .vac-table thead tr:last-child th, body.a11y-scheme-blue .fh-table th, body.a11y-scheme-blue .fh-table td, body.a11y-scheme-blue .fh-table tbody tr, body.a11y-scheme-blue .fh-table tbody tr:nth-child(odd),
body.a11y-scheme-blue .vac-table th, body.a11y-scheme-blue .vac-table td, body.a11y-scheme-blue .vac-table thead tr:last-child th {
  color: #fff;
  background-color: inherit;
  border-color: #fff;
}
body.a11y-scheme-black .fh-table-wrap, body.a11y-scheme-black .fh-table th, body.a11y-scheme-black .fh-table td, body.a11y-scheme-black .dorm-box, body.a11y-scheme-blue .fh-table-wrap, body.a11y-scheme-blue .fh-table th, body.a11y-scheme-blue .fh-table td, body.a11y-scheme-blue .dorm-box {
  border-color: #fff;
}
body.a11y-scheme-black a.page-404__btn, body.a11y-scheme-blue a.page-404__btn {
  color: #000 !important;
  background-color: #fff;
}
body.a11y-scheme-black a.page-404__btn:hover, body.a11y-scheme-blue a.page-404__btn:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
body.a11y-scheme-black .breadcrumb__current, body.a11y-scheme-black .breadcrumb li.active, body.a11y-scheme-black .info-dl dt, body.a11y-scheme-black .info-dl dd, body.a11y-scheme-black .dorm-box__caption, body.a11y-scheme-black .catering__text, body.a11y-scheme-black .page-404__title, body.a11y-scheme-blue .breadcrumb__current, body.a11y-scheme-blue .breadcrumb li.active, body.a11y-scheme-blue .info-dl dt, body.a11y-scheme-blue .info-dl dd, body.a11y-scheme-blue .dorm-box__caption, body.a11y-scheme-blue .catering__text, body.a11y-scheme-blue .page-404__title {
  color: #fff;
}

.container {
  padding: 0px 15px;
  margin: 0 auto;
  max-width: 1300px;
  width: 100%;
}

.container:after, header:after, footer:after, #podbor:after {
  clear: both;
  display: table;
  content: " ";
}

.container:before, header:before, footer:before, #podbor:before {
  clear: both;
  display: table;
  content: " ";
}

h1, h2, h3, h4, h5 {
  font-family: var(--accent-family);
}

h2 {
  font-weight: 400;
}

.burger {
  position: relative;
  width: 36px;
  height: 26px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.burger span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background: #00907a;
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.burger span:nth-child(1) {
  top: 0;
  background-color: var(--accent-light);
}

.burger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  background-color: #1cc5a3;
}

.burger span:nth-child(3) {
  bottom: 0;
  background-color: var(--accent-dark);
}

.burger--active {
  position: fixed;
}

.burger--active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  background-color: var(--accent);
}

.burger--active span:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%) scaleX(0);
  background-color: var(--accent);
}

.burger--active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
  background-color: var(--accent);
}

@media (max-width: 768px) {
  .burger {
    position: absolute;
    top: 14px;
  }
  .burger--active {
    position: fixed;
  }
}
.header {
  font-family: var(--accent-family);
  margin-top: 45px;
  margin-bottom: 70px;
  /********/
}
.header a {
  text-decoration: none;
}
.header .header-lang {
  font-weight: 700;
  display: flex;
  gap: 10px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  white-space: nowrap;
  margin-left: auto;
}
.header .header-lang a, .header .header-lang span {
  display: block;
  padding: 2px 4px;
}
.header .header-lang a:hover {
  color: var(--accent);
}
.header .icon {
  width: auto;
  height: 17px;
}
.header .header-search .icon {
  height: 19px;
}
.header .header-btns {
  display: flex;
  gap: 30px;
}
.header .header-btns button {
  font-family: var(--accent-family);
  font-weight: 700;
  display: flex;
  font-size: 1.125rem;
}
.header .header-btns button img {
  margin-right: 10px;
}
.header .logo-vd {
  width: 160px;
  white-space: nowrap;
}
.header .header-logos {
  display: flex;
  gap: 58px;
  align-items: flex-end;
}
.header .header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 26px;
}
.header .header__main {
  margin-top: 60px;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.header .logo {
  font-weight: 800;
  font-size: 1.875rem;
}
.header .logo:hover {
  color: inherit;
}

@media (max-width: 1200px) {
  .header .logo {
    font-size: 1.5rem;
  }
  .header .logo-vd {
    width: 140px;
  }
}
@media (max-width: 1000px) {
  .header .header-btns {
    gap: 10px;
  }
  .header .header-btns button span {
    display: none;
  }
}
@media (max-width: 768px) {
  .header {
    margin-bottom: 20px;
  }
  .header .header__main {
    position: static;
  }
  .header .header-btns {
    position: absolute;
    top: 10px;
    right: 5px;
  }
  .header .header-lang {
    position: absolute;
    top: 45px;
    right: 15px;
  }
  .header .header__main {
    margin-top: 50px;
  }
  .header .header-logos {
    gap: 20px;
    justify-content: space-between;
    width: 100%;
  }
}
.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 68px 0 32px;
  margin-top: 30px;
}
.footer p {
  font-size: 1rem;
}
.footer a {
  text-decoration: none;
}
.footer .logo-vd-footer {
  width: 220px;
  height: auto;
}
.footer ul {
  padding-left: 0;
  font-family: var(--ordinary-family);
}
.footer ul li {
  list-style: none;
}
.footer .social-icon {
  width: auto;
  height: 16px;
}
.footer .social-icon.social-icon-telegram {
  height: 17px;
}
.footer .social-icon.social-icon-max {
  height: 17px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

/* Contact column */
.footer-contact {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 242px;
}

.footer-phone a:hover {
  color: #fff;
}

.footer-contact > p > a {
  color: var(--footer-text);
  font-family: var(--ordinary-family);
}

.footer-contact > p > a:hover {
  color: var(--accent);
}

.footer-contact p.footer-phone {
  margin: 0;
}

.footer-contact p.footer-phone > a {
  font-size: 1.875rem;
  line-height: 1;
  font-weight: 700;
  color: var(--accent-light);
  transition: color var(--transition);
}

.footer-phones {
  margin-bottom: 36px;
}

.footer-socials {
  display: flex;
  gap: 21px;
  margin: 1rem 0;
}

.footer-socials a {
  color: var(--footer-text);
  transition: color var(--transition);
}

.footer-socials a:hover {
  color: var(--accent);
}

.footer-mail {
  margin: 1rem 0;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 1rem 0 27px 0;
}

.footer-fond-name {
  display: block;
  font-weight: 900;
  font-size: 14px;
  color: #fff;
}

.footer-fond-sub {
  display: block;
  font-size: 10px;
  color: var(--footer-text);
}

.footer-copy {
  font-size: 0.875rem;
  font-family: var(--ordinary-family);
  color: var(--footer-text);
  margin-top: 6px;
  margin-bottom: 0;
}

.footer-policy {
  margin-top: 0.5rem;
}
.footer-policy a {
  font-size: 0.875rem;
  font-family: var(--ordinary-family);
  color: #999;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-policy a::hover {
  color: var(--accent);
}

/* Nav block */
.footer-nav-block {
  max-width: 863px;
}

.footer-nav-block > h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--accent2);
  margin-bottom: 20px;
  padding-bottom: 39px;
  margin: 0;
}
.footer-nav-block > h4 a {
  text-decoration: underline;
}
.footer-nav-block > h4 a:hover {
  text-decoration: none;
}

.menu-nav-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.menu-nav-cols nav h5 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-top: 17px;
  margin-bottom: 50px;
  text-transform: uppercase;
}

.menu-nav-cols ul li {
  margin-bottom: 15px;
}

.menu-nav-cols a {
  color: var(--footer-text);
  line-height: 1.2;
  transition: color var(--transition);
}

.menu-nav-cols a:hover {
  color: var(--accent);
}

.menu-nav-cols nav:nth-child(2) svg rect {
  fill: #1cc5a3;
}
.menu-nav-cols nav:nth-child(3) svg rect {
  fill: #00907a;
}

@media (max-width: 1200px) {
  .menu-nav-cols {
    display: block;
  }
  .menu-nav-cols nav h5 {
    margin-bottom: 30px;
  }
  .footer nav {
    margin-bottom: 50px;
  }
  .footer-contact {
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column-reverse;
    gap: 40px;
  }
}
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  z-index: 100;
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.main-nav.menu--active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.main-nav__list {
  list-style: none;
  margin: 0;
  padding: 0 0 0 100px;
  display: flex;
  align-items: center;
  gap: 56px;
  height: 112px;
  font-family: var(--accent-family);
}
.main-nav__list a {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  transition: color var(--transition);
}
.main-nav__list a:hover {
  color: var(--accent);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 10;
}

.menu-overlay.menu-overlay--active {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 768px) {
  .main-nav__list {
    flex-direction: column;
    align-items: baseline;
    padding-left: 64px;
    gap: 24px;
    font-size: 0.9375rem;
    flex-wrap: wrap;
    height: auto;
    padding-top: 20px;
    padding-bottom: 14px;
  }
}
.article {
  font-family: var(--accent-family);
  font-size: 1.25rem;
  margin: 0 auto 80px;
  line-height: 1.1;
}
.article p {
  font-size: 1.25rem;
}
.article__date {
  font-family: var(--accent-family);
  font-size: 0.9375rem;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
}
.article__title {
  margin: 0 0 40px;
}
.article__intro {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 40px;
  margin-bottom: 48px;
  align-items: start;
}
.article__intro figure {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
}
.article__intro figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.article__intro-text p {
  margin: 0 0 30px;
}
.article__intro-text p:last-child {
  margin-bottom: 0;
}
.article__body p {
  margin: 0 0 24px;
}
.article__body p:last-child {
  margin-bottom: 0;
}

.article-interview {
  margin-top: 48px;
  padding-top: 40px;
}
.article-interview__head {
  margin-bottom: 28px;
}
.article-interview__head svg {
  margin-bottom: 20px;
}
.article-interview__intro {
  font-family: var(--accent-family);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0;
}

.article-qa {
  margin: 0;
}
.article-qa dt {
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 12px;
}
.article-qa dd {
  margin: 0 0 40px;
  line-height: 1.7;
}
.article-qa dd:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .article__title {
    font-size: 1.625rem;
  }
  .article__intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.search-overlay.search-overlay--active {
  opacity: 1;
  pointer-events: auto;
}

.search-modal-wrapper {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
  padding: 24px;
  width: 100%;
  max-width: 780px;
  margin: 0 16px;
  transform: translateY(-16px);
  transition: transform 0.2s ease;
}

.search-modal {
  width: 100%;
  display: flex;
  gap: 16px;
  align-items: center;
}
.search-overlay--active .search-modal {
  transform: translateY(0);
}
.search-modal__input {
  flex: 1;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  padding: 16px 20px;
  font-family: var(--font-family);
  font-size: 1rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.15s;
}
.search-modal__input::placeholder {
  color: var(--accent);
}
.search-modal__input:focus {
  border-color: var(--accent);
}
.search-modal__btn {
  flex-shrink: 0;
  background: var(--accent);
  color: #fff;
  font-family: var(--accent-family);
  font-weight: 700;
  font-size: 1.125rem;
  padding: 16px 40px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background var(--transition);
}
.search-modal__btn:hover {
  background: var(--accent2);
}

@media (max-width: 600px) {
  .search-overlay {
    padding-top: 80px;
  }
  .search-modal__input {
    width: 100%;
  }
  .search-modal {
    flex-direction: column;
  }
  .search-modal__btn {
    width: 100%;
  }
}
.simplesearch-search-form {
  margin: 24px 0 48px;
}
.simplesearch-search-form fieldset {
  border: none;
  padding: 20px 24px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
}
.simplesearch-search-form label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.simplesearch-search-form input[type=text],
.simplesearch-search-form input[type=search] {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  font-family: var(--font-family);
  font-size: 1rem;
  color: var(--text);
  background: transparent;
}
.simplesearch-search-form input[type=text]::placeholder,
.simplesearch-search-form input[type=search]::placeholder {
  color: #bbb;
}
.simplesearch-search-form input[type=submit] {
  flex-shrink: 0;
  background: var(--accent);
  color: #fff;
  font-family: var(--accent-family);
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 40px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background var(--transition);
}
.simplesearch-search-form input[type=submit]:hover {
  background: var(--accent2);
}

.search-results-wrap {
  margin-bottom: 60px;
}

.search-results__info {
  font-family: var(--font-family);
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.simplesearch-result {
  padding: 24px 0;
  border-bottom: 1px solid rgba(0, 144, 122, 0.15);
}
.simplesearch-result:first-of-type {
  border-top: 1px solid rgba(0, 144, 122, 0.15);
}
.simplesearch-result h3 {
  font-family: var(--accent-family);
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.4;
}
.simplesearch-result h3 a {
  color: var(--accent);
  text-decoration: none;
}
.simplesearch-result h3 a:hover {
  text-decoration: underline;
}
.simplesearch-result .extract p {
  font-family: var(--font-family);
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.65;
  margin: 0;
}

.search-highlight {
  background: rgba(34, 235, 190, 0.28);
  color: inherit;
  padding: 1px 3px;
  border-radius: 3px;
}

.search-pagination {
  display: flex;
  gap: 8px;
  margin-top: 40px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.simplesearch-page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 6px;
  font-family: var(--accent-family);
  font-size: 0.9375rem;
  border: 1px solid rgba(0, 144, 122, 0.3);
  color: var(--accent);
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition);
}
.simplesearch-page:hover {
  background: #f0fdf9;
}
.simplesearch-page.simplesearch-current-page {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

@media (max-width: 600px) {
  .simplesearch-search-form fieldset {
    flex-direction: column;
    align-items: stretch;
  }
  .simplesearch-search-form fieldset input[type=submit] {
    text-align: center;
  }
}
.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.cookies.cookies--visible {
  transform: translateY(0);
}
.cookies__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 20px 0;
}
.cookies__text {
  flex: 1;
  font-family: var(--font-family);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}
.cookies__expand {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  color: var(--accent-light);
  text-decoration: underline;
  cursor: pointer;
  white-space: nowrap;
}
.cookies__expand:hover {
  color: #fff;
}
.cookies__full {
  display: none;
}
.cookies__full.cookies__full--open {
  display: inline;
}
.cookies__accept {
  flex-shrink: 0;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  color: #fff;
  font-family: var(--accent-family);
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 36px;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition), border-color var(--transition);
}
.cookies__accept:hover {
  background: var(--accent);
  border-color: var(--accent);
}

@media (max-width: 768px) {
  .cookies__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .cookies__accept {
    text-align: center;
  }
}
.mission {
  margin: 40px 0 60px;
}

.mission-border {
  border: 4px solid var(--accent-light);
  border-radius: 14px;
}

.mission-quote {
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  padding: 19px 63px;
  margin-bottom: 60px;
  background: #f0fdfa;
}

.mission-quote p {
  font-family: var(--accent-family);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0;
  line-height: 1;
}

.mission-tracks {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin: 0 20px;
  padding-top: 40px;
  padding-bottom: 36px;
}

.mission-track {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.mission-track__icon {
  width: 125px;
  height: 150px;
  background: var(--accent);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
  flex-shrink: 0;
}
.mission-track__icon img {
  max-width: 73px;
}

.mission-track__icon i {
  font-size: 3rem;
  color: #fff;
}

.mission-track__name {
  font-family: var(--accent-family);
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1;
  margin: 0;
}

.mission-levels {
  font-family: var(--accent-family);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 100;
  padding: 30px;
}

.mission-levels__label {
  font-weight: 100;
  margin-right: 4px;
  color: var(--accent);
}

@media (max-width: 1200px) {
  .mission-track__name {
    font-size: 1.4rem;
  }
}
@media (max-width: 900px) {
  .mission-tracks {
    flex-wrap: wrap;
    justify-content: center;
  }
  .mission-track {
    flex: 0 1 calc(33% - 20px);
  }
}
@media (max-width: 768px) {
  .mission-track {
    margin-top: 15px;
  }
  .mission-quote {
    padding: 20px 20px;
  }
  .mission-quote p {
    font-size: 1.15rem;
  }
  .mission-track {
    flex: 0 1 calc(50% - 20px);
  }
  .mission-track__icon {
    width: 100px;
    height: 125px;
    margin-bottom: 20px;
  }
  .mission-track__icon i {
    font-size: 2.4rem;
  }
  .mission-track__name {
    font-size: 1.125rem;
  }
  .mission-quote {
    margin-bottom: 30px;
  }
  .mission-levels {
    font-size: 1.125rem;
  }
  .mission-tracks {
    padding-top: 20px;
    margin: 0;
    gap: 10px;
  }
}
.news {
  margin: 40px 0 60px;
}

.news h2 {
  color: var(--accent-light);
  margin-bottom: 42px;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 80px;
}

.news-item__meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}

.news-item__date {
  color: var(--accent2);
  font-size: 1.125rem;
  margin: 0 0 0 32px;
}

.news-item__title {
  font-family: var(--accent-family);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
  margin: 38px 0 14px 0;
}

.news-item__title a {
  color: var(--text);
  transition: color var(--transition);
}

.news-item__title a:hover {
  color: var(--accent);
}

.news-item__excerpt {
  color: var(--text-gray);
  font-size: 1.125rem;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 768px) {
  .news-list {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .news-item__title {
    font-size: 1.25rem;
  }
  .news-item__excerpt {
    font-size: 1rem;
    line-height: 1.2;
  }
  .news-item__date {
    font-size: 1rem;
    margin: 0;
  }
}
.common-info {
  font-size: 1.5rem;
}

.info-block {
  margin-bottom: 56px;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.info-item__label {
  color: var(--accent);
  font-weight: 400;
  line-height: 1.4;
}
.info-item__value {
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
}

.info-dl {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 64px;
}
.info-grid > div {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 0;
}

.info-block2 .info-item__label, .info-block2 .info-item__value {
  line-height: 1;
}

.info-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info-links a {
  color: var(--accent);
  line-height: 1.45;
  transition: color var(--transition);
}
.info-pdf {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
}
.info-pdf__icon {
  width: 44px;
  flex-shrink: 0;
}
.info-pdf a {
  transition: color var(--transition);
  text-decoration: underline;
}
.info-pdf a:hover {
  text-decoration: none;
}

@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.fh-year {
  font-weight: 700;
  font-size: 1rem;
}

.fh-amount {
  font-weight: 700;
  font-size: 1rem;
}

.finhoz h1 {
  margin-bottom: 32px;
}

.fh-doc {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.fh-doc__label {
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.4;
  flex: 1;
}
.fh-doc__pdf {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.fh-doc__icon {
  width: 40px;
}
.fh-doc__link {
  font-size: 0.9375rem;
  transition: color var(--transition);
}
.fh-doc__link:hover {
  text-decoration: underline;
}

.inter h1 {
  margin-bottom: 20px;
}
.inter__intro {
  color: var(--text);
  margin: 0 0 12px;
}
.inter__intro:last-of-type {
  margin-bottom: 36px;
}
.inter .fh-table th:first-child,
.inter .fh-table td:first-child {
  width: 48px;
}
.inter .fh-table tbody td {
  height: 64px;
  vertical-align: top;
  padding-top: 20px;
}

.catering h1 {
  margin-bottom: 48px;
}
.catering__section {
  margin-bottom: 56px;
}
.catering__text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}
.catering .fh-table th:first-child,
.catering .fh-table td:first-child {
  min-width: 160px;
}
.catering .fh-table tbody td {
  height: 60px;
  vertical-align: middle;
}
.catering .fh-table .catering__row-label {
  font-weight: 700;
  font-size: 0.9375rem;
}

.grants-group {
  margin-bottom: 40px;
}
.grants-group__label {
  font-weight: 700;
  font-size: 1.5rem;
  margin: 18px 0 12px;
  display: block;
}

.dorm-section {
  margin-bottom: 40px;
}
.dorm-section .fh-table-wrap {
  margin-bottom: 50px;
}

.dorm-box .table-wrap {
  margin-bottom: 0px;
  border: none;
}

.dorm-download {
  margin-top: 32px;
}
.dorm-download__label {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.4;
  margin: 0 0 16px;
  display: block;
}
.dorm-download__pdf {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dorm-download__pdf-icon {
  width: 40px;
}
.dorm-download__pdf-link {
  font-size: 1.25rem;
  transition: color var(--transition);
}
.dorm-download__pdf-link:hover {
  text-decoration: underline;
}

.dorm-box {
  border: 2px solid var(--accent);
  border-radius: 12px;
  overflow: hidden;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 32px;
}
.dorm-box__caption {
  color: var(--accent);
  font-size: 1.25rem;
  line-height: 1.5;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(0, 144, 122, 0.2);
  margin: 0;
}
.dorm-box .fh-table th {
  background: transparent;
  border-top: none;
}
.dorm-box .fh-table tbody td {
  height: 56px;
  vertical-align: top;
  padding-top: 18px;
}

.struct-doc {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.struct-doc__label {
  font-size: 1rem;
  color: var(--text);
}
.struct-doc__pdf {
  display: flex;
  align-items: center;
  gap: 8px;
}
.struct-doc__icon {
  width: 36px;
  flex-shrink: 0;
}
.struct-doc__link {
  font-size: 1rem;
  transition: color var(--transition);
  text-decoration: underline;
}
.struct-doc__link:hover {
  text-decoration: none;
}

.vacancies {
  margin: 40px 0 80px;
}
.vacancies h2 {
  margin-bottom: 32px;
}

.vac-table {
  width: 100%;
  border-collapse: collapse;
  border: none;
  font-size: 0.875rem;
  line-height: 1.35;
}
.vac-table th, .vac-table td {
  padding: 12px 14px;
  vertical-align: middle;
  border: 1px solid rgba(0, 144, 122, 0.25);
}
.vac-table thead tr:first-child th {
  background: var(--accent);
  color: #fff;
  font-family: var(--accent-family);
  font-weight: 700;
  vertical-align: middle;
  text-align: left;
  border-color: rgba(255, 255, 255, 0.2);
}
.vac-table thead tr:first-child th.vac-table__count-head {
  color: #000;
  text-align: left;
}
.vac-table thead tr:last-child th {
  background: #d4f5ed;
  color: var(--text);
  font-family: var(--accent-family);
  font-weight: 400;
  font-size: 0.8125rem;
  text-align: left;
  vertical-align: top;
  border-color: rgba(0, 144, 122, 0.25);
}
.vac-table__group td {
  background: #e5f7f3;
  font-family: var(--accent-family);
  font-size: 0.8rem;
  padding: 16px 14px;
  border-color: rgba(0, 144, 122, 0.2);
}
.vac-table__group td.vac-table__group-name {
  font-size: 1.2rem;
}
.vac-table__spacer td {
  background: #f5fdfb;
  padding: 6px;
  border: none;
}
.vac-table tbody tr:not(.vac-table__group):not(.vac-table__spacer) {
  background: #fff;
}
.vac-table tbody tr:not(.vac-table__group):not(.vac-table__spacer):hover {
  background: #f5fdfb;
}
.vac-table tbody tr:not(.vac-table__group):not(.vac-table__spacer) .vac-num {
  background: vaR(--accent-light2);
  text-align: center;
  font-weight: 700;
}
.vac-table td[rowspan] {
  vertical-align: middle;
}
.vac-table th:nth-child(1), .vac-table td:nth-child(1) {
  min-width: 50px;
}
.vac-table th:nth-child(2), .vac-table td:nth-child(2) {
  min-width: 100px;
}
.vac-table th:nth-child(3), .vac-table td:nth-child(3) {
  max-width: 110px;
}
.vac-table th:nth-child(4), .vac-table td:nth-child(4) {
  min-width: 110px;
}
.vac-table th:nth-child(5), .vac-table td:nth-child(5) {
  max-width: 106px;
}
.vac-table th:nth-child(6), .vac-table td:nth-child(6) {
  min-width: 50px;
}
.vac-table th:nth-child(7), .vac-table td:nth-child(7) {
  min-width: 80px;
}
.vac-table th:nth-child(n+8), .vac-table td:nth-child(n+8) {
  min-width: 110px;
}

@media (max-width: 768px) {
  .vac-table {
    font-size: 0.8125rem;
  }
  .vac-table th, .vac-table td {
    padding: 8px 10px;
  }
}
.education h2, .education h3, .education h4, .education h5 {
  margin-top: 4rem;
}
.education h3 {
  margin-top: 5rem;
  margin-bottom: 12px;
}

.education table, .education__table-levels,
.education__table-programs {
  font-size: 0.8125rem;
}
.education table th, .education__table-levels th,
.education__table-programs th {
  font-size: 0.8125rem;
}

.education__empty {
  color: var(--text);
  font-style: italic;
  text-align: center;
  padding: 24px 20px;
}

.inner-page {
  margin: 40px 0 80px;
  font-size: 1.125rem;
}

.page-block {
  margin-bottom: 56px;
}

.page-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 12px;
}

.doc-group {
  margin-bottom: 40px;
}
.doc-group__pill {
  display: block;
  margin-bottom: 16px;
}
.doc-group__label {
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 0 12px;
  display: block;
}

.doc-list {
  display: flex;
  flex-direction: column;
}

.doc-item {
  display: flex;
  align-items: flex-end;
  gap: 0;
  padding: 9px 0;
}
.doc-item__name {
  font-size: 1.25rem;
  line-height: 1.35;
  flex-shrink: 0;
  max-width: 62%;
  transition: color var(--transition);
  text-decoration: none;
}
.doc-item__name:hover {
  text-decoration: underline;
}
.doc-item__dots {
  flex: 1;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.2);
  min-width: 16px;
  margin: 0 12px 4px;
  align-self: flex-end;
}
.doc-item__pdf {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.doc-item__pdf-icon {
  width: 36px;
}
.doc-item__pdf-link {
  color: var(--text);
  font-size: 1.25rem;
  white-space: nowrap;
  transition: color var(--transition);
}
.doc-item__pdf-link:hover {
  text-decoration: underline;
}

.doc-download {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.doc-download__label {
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.4;
  flex: 1;
}
.doc-download__pdf {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.doc-download__icon {
  width: 40px;
}
.doc-download__link {
  color: var(--accent);
  font-size: 0.9375rem;
  transition: color var(--transition);
}
.doc-download__link:hover {
  text-decoration: underline;
}

.a-files {
  text-decoration: underline;
}
.a-files:hover {
  text-decoration: none;
}

.a-files__flex {
  display: inline-flex;
  align-items: center;
}
.a-files__flex img {
  margin-right: 1rem;
}

.fh-table-wrap {
  border: 1px solid var(--accent);
  border-radius: 12px;
  overflow: hidden;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.fh-table-wrap-light-accent {
  border: 3px solid var(--accent-light);
}
.fh-table-wrap-light-accent .table-wrap {
  border: none;
}
.fh-table-wrap-light-accent .fh-table td {
  padding: 30px 20px;
}
.fh-table-wrap-light-accent .fh-table td:first-child, .fh-table-wrap-light-accent .fh-table td:last-child {
  font-size: 1.25rem;
}
.fh-table-wrap-light-accent .fh-table tr:nth-child(3n) {
  background-color: #fff;
}
.fh-table-wrap-light-accent .fh-table tr:nth-child(3n+1) {
  background-color: var(--accent-light4);
}
.fh-table-wrap-light-accent .fh-table tr:nth-child(3n+2) {
  background-color: var(--accent-light2);
}

.fh-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
.fh-table th {
  background: var(--accent-light3);
  color: var(--accent);
  font-family: var(--accent-family);
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.4;
  padding: 16px 20px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(0, 144, 122, 0.2);
  border-right: 1px solid rgba(0, 144, 122, 0.2);
}
.fh-table th:last-child {
  border-right: none;
}
.fh-table td {
  padding: 20px 20px;
  border-bottom: 1px solid rgba(0, 144, 122, 0.15);
  border-right: 1px solid rgba(0, 144, 122, 0.15);
  vertical-align: middle;
}
.fh-table td:last-child {
  border-right: none;
}
.fh-table tbody tr {
  background: #fff;
}
.fh-table tbody tr:nth-child(odd) {
  background-color: var(--accent-light2);
}
.fh-table tbody tr:last-child td {
  border-bottom: none;
}
.fh-table tbody tr:hover {
  background: var(--accent-light3);
}
.fh-table__year-col {
  width: 140px;
}

.inner-page.struct table a[itemprop] {
  background-image: url("/assets/i/icons/pdf.svg");
  padding: 0 0 0 39px;
  background-size: 30px;
  background-repeat: no-repeat;
  min-height: 43px;
  display: inline-flex;
  align-items: center;
}

@media (max-width: 768px) {
  .inner-page h1 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  .inner-page h2 {
    font-size: 1.25rem;
  }
  .doc-item {
    flex-wrap: wrap;
    align-items: flex-start;
    flex-direction: column;
  }
  .doc-item__name {
    max-width: 100%;
  }
  .doc-item__dots {
    display: none;
  }
  .doc-item__pdf {
    margin-top: 6px;
  }
}
.page-404 {
  padding: 48px 0 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.page-404__visual {
  width: 100%;
  max-width: 560px;
  margin: 0 auto 40px;
}
.page-404__visual svg {
  width: 100%;
  height: auto;
  display: block;
}
.page-404__title {
  font-family: var(--accent-family);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--accent);
  margin: 0 0 36px;
  line-height: 1.2;
}
.page-404__btn {
  display: inline-block;
  background: var(--accent-light);
  color: #fff;
  font-family: var(--accent-family);
  font-weight: 700;
  font-size: 1.125rem;
  padding: 18px 64px;
  border-radius: 4px;
  text-decoration: none;
  transition: background var(--transition);
}
.page-404__btn:hover {
  background: var(--accent);
  color: #fff;
}

@media (max-width: 768px) {
  .page-404__title {
    font-size: 1.75rem;
  }
  .page-404__visual {
    max-width: 340px;
  }
  .page-404__btn {
    padding: 16px 40px;
  }
}
.hero {
  margin-top: 50px;
}

.hero-wrap {
  width: 100%;
  overflow: hidden;
}

.hero-wrap svg {
  display: block;
  width: 100%;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-80px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInRight {
  from {
    transform: translateX(80px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeUp {
  from {
    transform: translateY(24px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.hero-wrap .bl-1 {
  animation: slideInLeft 0.5s ease both;
  animation-delay: 0.05s;
  opacity: 0;
}
.hero-wrap .bl-2 {
  animation: slideInLeft 0.5s ease both;
  animation-delay: 0.12s;
  opacity: 0;
}
.hero-wrap .bl-3 {
  animation: slideInLeft 0.5s ease both;
  animation-delay: 0.19s;
  opacity: 0;
}
.hero-wrap .bl-4 {
  animation: slideInLeft 0.5s ease both;
  animation-delay: 0.1s;
  opacity: 0;
}
.hero-wrap .bl-5 {
  animation: slideInLeft 0.5s ease both;
  animation-delay: 0.17s;
  opacity: 0;
}
.hero-wrap .bl-6 {
  animation: slideInLeft 0.5s ease both;
  animation-delay: 0.24s;
  opacity: 0;
}
.hero-wrap .bl-7 {
  animation: slideInLeft 0.5s ease both;
  animation-delay: 0.08s;
  opacity: 0;
}
.hero-wrap .bl-8 {
  animation: slideInLeft 0.5s ease both;
  animation-delay: 0.14s;
  opacity: 0;
}
.hero-wrap .bl-9 {
  animation: slideInLeft 0.5s ease both;
  animation-delay: 0.21s;
  opacity: 0;
}
.hero-wrap .tr-1 {
  animation: slideInRight 0.5s ease both;
  animation-delay: 0.05s;
  opacity: 0;
}
.hero-wrap .tr-2 {
  animation: slideInRight 0.5s ease both;
  animation-delay: 0.12s;
  opacity: 0;
}
.hero-wrap .tr-3 {
  animation: slideInRight 0.5s ease both;
  animation-delay: 0.19s;
  opacity: 0;
}
.hero-wrap .tr-4 {
  animation: slideInRight 0.5s ease both;
  animation-delay: 0.1s;
  opacity: 0;
}
.hero-wrap .tr-5 {
  animation: slideInRight 0.5s ease both;
  animation-delay: 0.17s;
  opacity: 0;
}
.hero-wrap .tr-6 {
  animation: slideInRight 0.5s ease both;
  animation-delay: 0.08s;
  opacity: 0;
}
.hero-wrap .tr-7 {
  animation: slideInRight 0.5s ease both;
  animation-delay: 0.24s;
  opacity: 0;
}
.hero-wrap .tr-8 {
  animation: slideInRight 0.5s ease both;
  animation-delay: 0.15s;
  opacity: 0;
}
.hero-wrap .main-text {
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.3s;
  opacity: 0;
}
.hero-wrap .sub-text {
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.45s;
  opacity: 0;
}
.hero-wrap .bottom-text {
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.55s;
  opacity: 0;
}

.sveden {
  margin: 40px 0 80px;
}
.sveden h2 {
  margin-bottom: 40px;
}
.sveden a {
  text-decoration: none;
}
.sveden a:hover {
  text-decoration: underline;
}

.sveden-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sveden-card {
  border: 2px solid var(--accent-light);
  border-radius: 14px;
  padding: 49px 57px 48px;
}
.sveden-card:nth-child(2) svg rect {
  fill: #1cc5a3;
}
.sveden-card:nth-child(3) svg rect {
  fill: #00907a;
}
.sveden-card svg {
  display: block;
  margin-bottom: 20px;
}
.sveden-card__title {
  font-family: var(--accent-family);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 28px;
}
.sveden-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sveden-card li {
  line-height: 1.45;
  margin-bottom: 16px;
}
.sveden-card li:last-child {
  margin-bottom: 0;
}
.sveden-card a {
  color: var(--text);
  transition: color var(--transition);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}
.sveden-card a:hover {
  color: var(--accent);
}

@media (max-width: 900px) {
  .sveden-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .sveden-card {
    padding: 25px 25px 25px;
  }
}
.contacts {
  font-size: 1.25rem;
}
.contacts .info-item__label {
  font-size: 1.25rem;
}
.contacts .info-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 64px;
  align-items: start;
}
.contacts .info-item-col {
  grid-template-columns: 1fr;
  gap: 22px 64px;
}
.contacts .info-item__in {
  margin-bottom: 5px;
}
.contacts a {
  text-decoration: none;
}
.contacts a:hover {
  text-decoration: underline;
}
.contacts .contacts__map {
  height: 100%;
}
.contacts__title {
  font-family: var(--accent-family);
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.25;
  color: var(--accent);
  margin: 20px 0 24px;
}
.contacts .contacts__office-info .contacts__title {
  margin-bottom: 0;
}
.contacts .info-item__value a {
  color: var(--text);
  transition: color var(--transition);
}
.contacts .info-item__value a:hover {
  color: var(--accent);
  text-decoration: underline;
}
.contacts__socials {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 4px;
}
.contacts__socials a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 700;
  transition: color var(--transition);
}
.contacts__socials a:hover {
  color: var(--accent2);
  text-decoration: underline;
}
.contacts__socials img {
  width: 28px;
  flex-shrink: 0;
}
.contacts__office {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 64px;
  align-items: start;
  margin-top: 60px;
  margin-bottom: 100px;
}
.contacts__office-info {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.contacts__map-wrap {
  height: 100%;
}
.contacts__map {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

@media (max-width: 1024px) {
  .contacts {
    font-size: 1.125rem;
  }
  .contacts .info-item__label {
    font-size: 1.125rem;
  }
}
@media (max-width: 768px) {
  .contacts .contacts__title {
    font-size: 1.5rem;
    margin: 10px 0 10px;
  }
  .contacts__office {
    margin-top: 25px;
    grid-template-columns: 1fr;
  }
  .contacts__map-wrap {
    height: 400px;
  }
  .contacts .info-item {
    grid-template-columns: 1fr;
    gap: 8px 64px;
  }
  .contacts .contacts__office-info {
    gap: 30px;
  }
}
.dpo-program {
  margin-bottom: 48px;
}
.dpo-program__name {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 20px;
}
.dpo-program__name h2 {
  font-family: var(--accent-family);
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.25;
  margin: 1.5rem 0 0 0;
}
.dpo-program__name a {
  color: var(--accent);
  font-size: 1.125rem;
  transition: color var(--transition);
}
.dpo-program__name a:hover {
  text-decoration: underline;
}
.dpo-program__desc {
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 3rem;
  margin-bottom: 4rem;
}
.dpo-program .fh-table td:first-child {
  width: 50%;
  text-align: center;
}
.dpo-program .fh-table td:last-child {
  font-weight: 700;
  text-align: center;
}
.dpo-program .fh-table tr:last-child td {
  border-bottom: none;
}

@media (max-width: 900px) {
  .dpo-program .fh-table tbody tr {
    display: flex;
    flex-direction: column;
    padding: 15px 0;
  }
  .dpo-program .fh-table tbody tr td {
    border: none;
    padding: 5px 20px;
  }
  .dpo-program .fh-table tbody tr td:first-child {
    width: 100%;
  }
  .dpo-program__name {
    flex-direction: column;
    gap: 5px;
  }
  .dpo-program__name h2 {
    margin-top: 0.5rem;
  }
  .dpo-program .dpo-program__desc {
    font-size: 1.25rem;
  }
}

/*# sourceMappingURL=main.css.map */
