html {
  scroll-behavior: smooth;
}

._container {
  width: 100%;
  padding: 0 var(--wrap);
  margin: 0;
}

._inner__container {
  width: 100%;
  padding: 0 var(--wrap-1);
  margin: 0;
}

.custom-logo-link {
  display: block;
  max-width: 3.5rem;
  width: 100%;
  cursor: pointer;
}

.custom-logo-link img,
.custom-logo-link svg {
  width: 100%;
  height: auto;
}

.custom-form-select {
  position: relative;
  border: unset;
  border-radius: 0;
  -webkit-border-radius: 0;
  -webkit-appearance: none;
  border-bottom: 1px solid var(--color-text-secondary);
  -webkit-transform: unset !important;
  transform: unset !important;
  font-family: "Roboto", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-secondary);
}

.custom-form-select select {
  display: none;
}

.custom-form-select .select-items div,
.custom-form-select .select-selected {
  position: relative;
  padding: 0.5rem 0.3125rem;
  cursor: pointer;
}

.custom-form-select .select-selected {
  background-color: var(--color-text-primary);
}

.custom-form-select .select-selected::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.625rem;
  height: 0.625rem;
  background-image: url(../assets/img/label-arrow-down.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.select-selected.select-arrow-active::before {
  -webkit-transform: translate(0, -50%) rotate(180deg);
  transform: translate(0, -50%) rotate(180deg);
}

.custom-form-select .select-items {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 3;
  background-color: var(--color-text-primary);
  overflow: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.custom-form-select .select-items.select-hide {
  opacity: 0;
  visibility: hidden;
}

.custom-form-select .select-items div {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-transition: border 0.3s ease;
  transition: border 0.3s ease;
}

.custom-form-select .select-items div.same-as-selected {
  border-color: var(--color-text-secondary);
}

.custom-form-select .select-pointer {
  position: absolute;
  top: 0;
  left: 0;
  display: var(--mobile);
  width: 100%;
  height: 2.625rem;
  background-color: var(--color-button);
  will-change: transform;
}

@media (max-width: 1199px) {
  .custom-form-select .select-pointer {
    display: none;
  }
}

.custom-form-select .same-as-selected {
  border-color: var(--color-text-secondary);
}

@media (min-width: 1200px) {
  ._margin-top {
    margin-top: 6.25rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  ._margin-top {
    margin-top: 5rem;
  }
}

@media (max-width: 899px) {
  ._margin-top {
    margin-top: 3.75rem;
  }
}

._inner {
  padding-top: 1.875rem;
}

@-webkit-keyframes loop {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes loop {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

input,
textarea {
  width: 100%;
  border: unset;
  border-radius: 0;
  -webkit-border-radius: 0;
  -webkit-appearance: none;
  border-bottom: 1px solid var(--color-blue-200);
  background-color: transparent;
  padding: unset;
  padding-top: 3px;
  -webkit-transition: border 0.3s ease;
  transition: border 0.3s ease;
  font-weight: 400;
  color: var(--color-black);
  -moz-appearance: none;
  appearance: none;
  outline: none;
}

@media (min-width: 900px) {
  input,
  textarea {
    padding-bottom: 1.0625rem;
    font-size: 1.5rem;
  }
}

@media (max-width: 899px) {
  input,
  textarea {
    padding-bottom: 0.5rem;
    font-size: 1rem;
  }
}

@media (min-width: 900px) {
  input::-webkit-input-placeholder,
  textarea::-webkit-input-placeholder {
    font-size: 1.5rem;
  }

  input::-moz-placeholder,
  textarea::-moz-placeholder {
    font-size: 1.5rem;
  }

  input:-ms-input-placeholder,
  textarea:-ms-input-placeholder {
    font-size: 1.5rem;
  }

  input::-ms-input-placeholder,
  textarea::-ms-input-placeholder {
    font-size: 1.5rem;
  }

  input::placeholder,
  textarea::placeholder {
    font-size: 1.5rem;
  }
}

@media (max-width: 899px) {
  input::-webkit-input-placeholder,
  textarea::-webkit-input-placeholder {
    font-size: 1rem;
  }

  input::-moz-placeholder,
  textarea::-moz-placeholder {
    font-size: 1rem;
  }

  input:-ms-input-placeholder,
  textarea:-ms-input-placeholder {
    font-size: 1rem;
  }

  input::-ms-input-placeholder,
  textarea::-ms-input-placeholder {
    font-size: 1rem;
  }

  input::placeholder,
  textarea::placeholder {
    font-size: 1rem;
  }
}

label.incorrect input {
  border-color: var(--color-error);
}

input[type="search"] {
  -webkit-appearance: none;
}

form label {
  display: block;
}

form div {
  color: var(--color-black);
}

form div span {
  display: block;
  font-weight: 300;
  line-height: 140%;
  font-size: 0.625rem;
}

form div strong {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.625rem;
  color: var(--color-error);
}

form div strong::before {
  content: "";
  -webkit-box-flex: 0;
  -ms-flex: 0 0 0.3125rem;
  flex: 0 0 0.3125rem;
  height: 5px;
  margin-right: 0.25rem;
  background-image: url(../assets/img/label-incorrect-input.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

label.incorrect strong {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

form p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

form p > * + * {
  margin-top: 1.0625rem;
}

form button[type="submit"],
form input[type="submit"] {
  position: relative;
  z-index: 0;
  max-width: 15.625rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 0;
  border-radius: 3.125rem;
  padding: 0.625rem 1.875rem;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  font-size: 1rem;
  line-height: 118.75%;
  font-weight: 400;
  color: var(--color-blue-200);
  background-color: var(--color-white);
}

@media (min-width: 900px) {
  form button[type="submit"],
  form input[type="submit"] {
    padding: 0.9375rem 1.75rem;
  }
}

@media (max-width: 899px) {
  form button[type="submit"],
  form input[type="submit"] {
    padding: 0.9375rem 1.125rem;
  }
}

form .form-group .control-label {
  display: block;
  font-weight: 300;
  line-height: 140%;
  font-size: 0.625rem;
}

form .form-group .ec-error {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: opacity 0.3s ease, visibilty 0.3s ease;
  transition: opacity 0.3s ease, visibilty 0.3s ease;
  font-size: 0.625rem;
  color: var(--color-error);
}

form .form-group .ec-error::before {
  content: "";
  -webkit-box-flex: 0;
  -ms-flex: 0 0 0.3125rem;
  flex: 0 0 0.3125rem;
  height: 5px;
  margin-right: 0.25rem;
  background-image: url(../assets/img/label-incorrect-input.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.form-group.has-error .ec-error {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

._btn {
  position: relative;
  z-index: 0;
  max-width: 15.625rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 0;
  border-radius: 3.125rem;
  padding: 0.625rem 1.875rem;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  font-size: 1rem;
  line-height: 118.75%;
  font-weight: 400;
  color: var(--color-blue-200);
  background-color: var(--color-white);
}

._btn-colored {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  display: inline-block;
  padding: 0.625rem 1.25rem;
  overflow: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  line-height: 150%;
  color: currentColor;
  text-decoration: none;
}
@media (min-width: 900px) {
  ._btn-colored {
    font-size: 1rem;
  }
}
@media (max-width: 899px) {
  ._btn-colored {
    font-size: 0.875rem;
  }
}
html:not(.v-mobile) ._btn-colored:hover {
  text-decoration: none !important;
}
html:not(.v-mobile) ._btn-colored:hover span {
  color: var(--color-white);
}
/* html:not(.v-mobile) ._btn-colored:hover span svg {
-webkit-transform: rotate(180deg);
transform: rotate(180deg);
} */
html:not(.v-mobile) ._btn-colored:hover::after {
  -webkit-transform: translate(0);
  transform: translate(0);
}

._btn-colored:focus-visible span {
  color: var(--color-white);
}
._btn-colored:focus-visible::after {
  -webkit-transform: translate(0);
  transform: translate(0);
}
._btn-colored::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
  border: 1px solid currentColor;
}
._btn-colored::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: currentColor;
  -webkit-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
  -webkit-transform-origin: 0;
  transform-origin: 0;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
._btn-colored span {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  pointer-events: none;
}
._btn-colored span svg {
  width: 100%;
  height: auto;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@media (min-width: 900px) {
  ._btn-colored span svg {
    max-width: 1.5rem;
    margin-left: 0.875rem;
  }
}
@media (max-width: 899px) {
  ._btn-colored span svg {
    max-width: 18px;
    margin-left: 0.625rem;
  }
}
._btn-colored span svg path {
  stroke: currentColor;
  -webkit-transition: stroke 0.3s ease;
  transition: stroke 0.3s ease;
}

/* ._btn-light-blue  */
._btn-colored._btn-light-blue {
  border: 1px solid var(--color-blue-100);
  background-color: var(--color-white);
  color: var(--color-blue-100);
}
html:not(.v-mobile) ._btn-colored._btn-light-blue:hover span {
  color: var(--color-white);
}
._btn-colored._btn-light-blue:before {
  border: 1px solid var(--color-white);
}
._btn-colored._btn-light-blue:after {
  background-color: var(--color-blue-100);
}

/* ._btn-blue  */
._btn-colored._btn-blue {
  border: 1px solid var(--color-blue-200);
  background-color: var(--color-white);
  color: var(--color-blue-200);
}
html:not(.v-mobile) ._btn-colored._btn-blue:hover span {
  color: var(--color-white);
}
._btn-colored._btn-blue:before {
  border: 1px solid var(--color-white);
}
._btn-colored._btn-blue:after {
  background-color: var(--color-blue-200);
}
/* ._btn-green  */
._btn-colored._btn-green {
  border: 1px solid var(--color-green-100);
  background-color: var(--color-white);
  color: var(--color-green-100);
}
html:not(.v-mobile) ._btn-colored._btn-green:hover span {
  color: var(--color-white);
}
._btn-colored._btn-green:before {
  border: 1px solid var(--color-white);
}
._btn-colored._btn-green:after {
  background-color: var(--color-green-100);
}
/* ._btn-orange  */
._btn-colored._btn-orange {
  border: 1px solid var(--color-highlight);
  background-color: var(--color-white);
  color: var(--color-black);
}
html:not(.v-mobile) ._btn-colored._btn-orange:hover span {
  color: var(--color-black);
}
._btn-colored._btn-orange:before {
  border: 1px solid var(--color-highlight);
}
._btn-colored._btn-orange:after {
  background-color: var(--color-highlight);
}

.logo-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  overflow: hidden;
}

@media (min-width: 1200px) {
  .logo-link {
    max-width: 21.625rem;
  }
}

@media (min-width: 1200px) and (min-width: 1600px) {
  .logo-link {
    max-width: 25.5rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .logo-link {
    max-width: 19.75rem;
  }
}

@media (max-width: 899px) {
  .logo-link {
    max-width: 7rem;
  }
}

@media (min-width: 1200px) {
  .logo-link > * + * {
    margin-left: 0.6875rem;
  }
}

@media (max-width: 1199px) {
  .logo-link > * + * {
    margin-left: 0.5rem;
  }
}

.logo-link__label {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-color: var(--color-white);
}

@media (min-width: 1200px) {
  .logo-link__label {
    width: 3.375rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .logo-link__label {
    width: 3rem;
  }
}

@media (max-width: 899px) {
  .logo-link__label {
    width: 3rem;
  }
}

.logo-link__text {
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.6125rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

@media (min-width: 1200px) {
  .logo-link__text {
    width: 13.5rem;
  }
}

@media (min-width: 1200px) and (min-width: 1600px) {
  .logo-link__text {
    width: 16.375rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .logo-link__text {
    width: 12.25rem;
  }
}

@media (max-width: 899px) {
  .logo-link__text {
    display: none;
    width: 11.25rem;
  }
}

.header._scrolled .logo-link__text {
  -webkit-transform: translateX(calc(-100% - 0.6875rem));
  transform: translateX(calc(-100% - 0.6875rem));
}
.logo-link__second {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (min-width: 1200px) {
  .header._scrolled .logo-link__second {
    -webkit-transform: translateX(calc(-100% - 10.6875rem));
    transform: translateX(calc(-100% - 10.6875rem));
  }
}
@media (min-width: 1200px) and (min-width: 1600px) {
  .header._scrolled .logo-link__second {
    -webkit-transform: translateX(calc(-100% - 10.6875rem));
    transform: translateX(calc(-100% - 13rem));
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .header._scrolled .logo-link__second {
    -webkit-transform: translateX(calc(-100% - 9.6875rem));
    transform: translateX(calc(-100% - 9.6875rem));
  }
}

.logo-link img {
  width: 100%;
  height: auto;
}

@media (min-width: 1200px) {
  section {
    margin-top: 13.875rem;
  }

  .section-faculty,
  .section-laboratory,
  .section-worker {
    margin-top: 3rem;
  }
  .section-categories {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .front-section {
    margin-top: 4rem;
  }
  section._grey + section:not(._grey),
  section:not(._grey) + section._grey {
    margin-top: 3.75rem;
    margin-bottom: 3.75rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  section {
    margin-top: 4.75rem;
  }
  section._grey + section:not(._grey),
  section:not(._grey) + section._grey {
    margin-top: 3.75rem;
  }
}

@media (max-width: 899px) {
  section {
    margin-top: 3.25rem;
  }
  section._grey + section:not(._grey),
  section:not(._grey) + section._grey {
    margin-top: 1.5rem;
  }
}

section._first {
  margin-top: var(--header-big);
}

.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 400;
  line-height: 114%;
  color: var(--color-grey-300);
}

@media (min-width: 900px) {
  .breadcrumbs {
    font-size: 0.875rem;
  }
}

@media (max-width: 899px) {
  .breadcrumbs {
    font-size: 0.75rem;
  }
}

.breadcrumbs a {
  position: relative;
  display: inline-block;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  color: inherit;
}

html:not(.v-mobile) .breadcrumbs a:hover {
  color: var(--color-blue-100);
}

.breadcrumbs a:focus-visible {
  color: var(--color-blue-100);
}

.breadcrumbs a::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-blue-100);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}

html:not(.v-mobile) .breadcrumbs a:hover::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.breadcrumbs a:focus-visible::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.breadcrumbs span {
  display: inline-block;
}

._inner-header {
  margin-bottom: 1.25rem;
}

._inner-header > * + * {
  margin-top: 1.25rem;
}

@media (min-width: 900px) {
  ._inner-header__title__container {
    max-width: 94.441%;
  }
}

._inner-header__title {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  line-height: 116%;
  font-weight: 400;
  color: var(--color-blue-200);
}

@media (min-width: 900px) {
  ._inner-header__title {
    font-size: 3rem;
  }
}

@media (max-width: 899px) {
  ._inner-header__title {
    font-size: 1.875rem;
  }
}

._inner-header__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

._inner-header__info > * + * {
  margin-left: 14px;
}

._inner-header__info .share {
  display: flex;
  align-items: center;

  font-weight: 600;
  line-height: 140%;
  color: var(--color-blue-200);

  transition: 0.3s ease;
}
._inner-header__info .share:hover {
  color: var(--color-black);
}

._inner-header__info .share > * + * {
  margin-left: 8px;
}

._inner-header__date {
  display: block;
  font-weight: 600;
  line-height: 140%;
  color: var(--color-blue-200);
  text-transform: lowercase;
}

@media (min-width: 900px) {
  ._inner-header__info .share,
  ._inner-header__date {
    font-size: 1rem;
  }
}

@media (max-width: 899px) {
  ._inner-header__info .share,
  ._inner-header__date {
    font-size: 0.875rem;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background-color: var(--color-white);
}

.header__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (min-width: 1200px) {
  .header__buttons {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media (max-width: 1199px) {
  .header__buttons {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

.header__buttons > * + * {
  margin-left: 1.25rem;
}

.header__btn__search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1.5rem;
  height: 1.5rem;
  border: 0;
  padding: 0;
  background-color: transparent;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__btn__search svg {
  width: 100%;
  height: auto;
}

.header__btn__search svg path,
.header__btn__search svg circle {
  -webkit-transition: stroke 0.3s ease;
  transition: stroke 0.3s ease;
}

html:not(.v-mobile) .header__btn__search:hover svg > * {
  stroke: var(--color-blue-100);
}

.header-top {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1.875rem 0;
  background-color: var(--color-white);
  -webkit-transition: padding 0.3s ease;
  transition: padding 0.3s ease;
  color: var(--color-grey-300);
}

@media (min-width: 1200px) {
  .header-top {
    font-size: 1rem;
    line-height: 130%;
  }
}

@media (min-width: 1200px) and (min-width: 1600px) {
  .header-top {
    font-size: 1.125rem;
    line-height: 1.3125rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .header-top {
    padding: 1.5rem 0;
  }
}

@media (max-width: 899px) {
  .header-top {
    padding: 1rem 0;
  }
}

.header._scrolled .header-top {
  padding: 0.5rem 0;
}

.header-top::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

@media (min-width: 900px) {
  .header-top::before {
    content: "";
  }
}

.header-top > * + * {
  margin-left: 3.125rem;
}

.header-top__item {
  position: relative;
  z-index: 0;
}

.header-top__item:nth-child(1) {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media (min-width: 1200px) {
  .header-top__item:nth-child(2) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

@media (max-width: 1199px) {
  .header-top__item:nth-child(2) {
    display: none;
  }
}

@media (min-width: 1200px) {
  .header-top__item:nth-child(3) {
    width: 6.098%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}

@media (max-width: 1199px) {
  .header-top__item:nth-child(3) {
    max-width: 90%;
    width: 100%;
  }
}

.header-bottom {
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--color-blue-200);
  -webkit-transition: padding 0.3s ease;
  transition: padding 0.3s ease;
  color: var(--color-white);
}

@media (min-width: 1200px) {
  .header-bottom {
    /* 		padding: 1.75rem 0; */
    font-size: 1rem;
    font-weight: 500;
    line-height: 130%;
  }
}

@media (min-width: 1200px) and (min-width: 1600px) {
  .header-bottom {
    font-size: 1.2rem;
    line-height: 1.4375rem;
  }
}

@media (max-width: 1199px) {
  .header-bottom {
    display: none;
  }
}
/* 
.header._scrolled .header-bottom {
padding: 1.125rem 0;
} */

.header-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(-1 * var(--wrap));
  width: 100%;
  height: 100%;
  width: calc(100% + 2 * var(--wrap));
  background-color: var(--color-blue-200);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: height 0.3s ease, -webkit-transform 0.3s ease;
  transition: height 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, height 0.3s ease;
  transition: transform 0.3s ease, height 0.3s ease, -webkit-transform 0.3s ease;
}

.header._scrolled .header-bottom::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.header-bottom__item {
  position: relative;
  width: 100%;
}
.header-bottom__item a {
  padding: 1.75rem 35px;
  display: block;
  transition: background-color 0.2s ease;
}

@media (min-width: 1200px) {
  .header-bottom__item a:hover {
    background-color: var(--color-blue-100);
  }
}

.menu-burger {
  position: relative;
  display: block;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 1.5625rem;
  flex: 0 0 1.5625rem;
  width: 100%;
  height: 1.125rem;
  border: unset;
  padding: unset;
  background-color: transparent;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

@media (min-width: 1200px) {
  .menu-burger {
    display: none;
  }
}

.menu-burger._opened {
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}

.menu-burger::before,
.menu-burger::after,
.menu-burger span {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 0.125rem;
  background-color: var(--color-black);
}

.menu-burger::before:focus-visible,
.menu-burger::after:focus-visible,
.menu-burger span:focus-visible {
  background-color: var(--color-blue-100);
}

html:not(.v-mobile) .menu-burger:hover span {
  background-color: var(--color-blue-100);
}

html:not(.v-mobile) .menu-burger:hover::before {
  background-color: var(--color-blue-100);
}

html:not(.v-mobile) .menu-burger:hover::after {
  background-color: var(--color-blue-100);
}

.menu-burger span {
  top: 50%;
  -webkit-transition: color 0.3s ease, -webkit-transform 0.3s;
  transition: color 0.3s ease, -webkit-transform 0.3s;
  transition: transform 0.3s, color 0.3s ease;
  transition: transform 0.3s, color 0.3s ease, -webkit-transform 0.3s;
}

.menu-burger._opened span {
  -webkit-transform: scale(0);
  transform: scale(0);
}

.menu-burger::before {
  top: 0;
  -webkit-transition: color 0.3s ease, -webkit-transform 0.2s;
  transition: color 0.3s ease, -webkit-transform 0.2s;
  transition: transform 0.2s, color 0.3s ease;
  transition: transform 0.2s, color 0.3s ease, -webkit-transform 0.2s;
}

.menu-burger._opened::before {
  -webkit-transform: translate(0, 9px);
  transform: translate(0, 9px);
}

.menu-burger::after {
  top: 100%;
  -webkit-transition: color 0.3s ease, -webkit-transform 0.2s;
  transition: color 0.3s ease, -webkit-transform 0.2s;
  transition: transform 0.2s, color 0.3s ease;
  transition: transform 0.2s, color 0.3s ease, -webkit-transform 0.2s;
}

.menu-burger._opened::after {
  -webkit-transform: translate(0, -9px) rotate(90deg);
  transform: translate(0, -9px) rotate(90deg);
}

.menu {
  width: 100%;
}

@media (max-width: 1199px) {
  .menu.menu__top,
  .menu.menu__bottom {
    display: none;
  }
}

.menu.menu__mobile {
  background-color: var(--color-blue-200);
  color: var(--color-white);
  font-size: 1.3125rem;
  line-height: 130%;
}

@media (min-width: 1200px) {
  .menu.menu__mobile {
    display: none;
  }
}

@media (min-width: 1200px) {
  .menu__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.menu.menu__top .menu__list {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.menu.menu__bottom .menu__list {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (min-width: 1200px) {
  .menu__list > * + * {
    margin-left: 1rem;
  }
}

@media (max-width: 1199px) {
  .menu__list > * + * {
    margin-top: 1.75rem;
  }
}

.menu__list > * + *._marked {
  padding-bottom: 1.75rem;
  border-bottom: 2px solid var(--color-highlight);
}

@media (min-width: 1200px) {
  /* 	.menu.menu__bottom .menu__list>*+* {
	margin-left: 3.75rem;
} */
}

.menu__item {
  color: inherit;
}

@media (min-width: 1200px) {
  .menu-item {
    display: flex;
    justify-content: center;
  }

  .menu__item {
    position: relative;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
    text-align: center;
  }
}

@media (min-width: 1200px) {
  html:not(.v-mobile) .menu.menu__top .menu__item:hover {
    color: var(--color-black);
  }
}
.menu__item span {
  position: relative;
}
.menu__item span::before {
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  height: 1px;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

@media (min-width: 1200px) {
  .menu__item span::before {
    content: "";
  }
}

.menu.menu__top .menu__item span::before {
  background-color: var(--color-black);
}

.menu.menu__bottom .menu__item span::before {
  background-color: var(--color-white);
}

html:not(.v-mobile) .menu__item:hover span::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.menu__lang {
  position: relative;
}

.menu__lang ul {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  padding-top: 0.3125rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.menu__lang:hover ul {
  opacity: 1;
  visibility: visible;
}

.menu__lang:focus-visible ul {
  opacity: 1;
  visibility: visible;
}

.menu__lang .lang-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 0.9375rem;
  color: var(--color-text-secondary);
}

.menu__lang .lang-item > * + * {
  margin-left: 0.5em;
}

.menu__lang .lang-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.menu__lang .lang-item a img {
  width: 100%;
  height: auto;
}

.menu__lang .lang-item svg {
  width: 0.375rem;
  height: auto;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.menu__lang:hover svg {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.menu__lang:focus-visible svg {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.menu__lang .lang-item-current img {
  max-width: 1.4375rem;
  width: 100%;
  height: auto;
}

textarea[name="textarea-774"] {
  width: 100%;
  height: 150px;
  resize: none;
  border-bottom: 1px solid var(--color-grey-100);
  color: white;
}

.popup {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--color-blue-100--rgb), 0);
  overflow: hidden;
  color: var(--color-white);
  -webkit-transition: background 0.5s ease;
  transition: background 0.5s ease;
}

.popup._opened {
  background-color: rgba(var(--color-blue-100--rgb), 0.88);
}

.popup.popup-burger {
  display: none;
}

@media (min-width: 1200px) {
  .popup.popup-burger {
    display: none !important;
  }
}

.popup__scroll {
  width: 100%;
  height: auto;
  max-height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translate(100%, 0);
  transform: translate(100%, 0);
  -ms-overflow-style: none;
  scrollbar-width: none;
}
._popup-menu._opened .popup__scroll {
  transform: translate(0, 0);
}
.popup__scroll::-webkit-scrollbar {
  display: none;
}

@media (min-width: 1200px) {
  .popup__scroll {
    max-width: 40%;
    margin: 0 0 0 auto;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .popup__scroll {
    max-width: 40%;
    margin: 0 0 0 auto;
  }
}

@media (max-width: 899px) {
  .popup__scroll {
    max-width: 90.347%;
    margin: 0 0 0 auto;
  }
}

.popup__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: var(--color-blue-200);
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup__wrapper {
  padding: 2.5rem 1.5rem 3.25rem;
}

@media (min-width: 900px) {
  .popup__wrapper {
    padding: 3.75rem 4rem 5rem;
  }
}

@media (min-width: 1200px) {
  .popup__wrapper {
    padding: 3.25rem 4.5rem 4.75rem;
  }
}

.popup__close {
  position: absolute;
  width: 2rem;
  height: 2rem;
  padding: unset;
  border: unset;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}

.popup__close:hover {
  transform: rotate(90deg) scale(1.2);
  color: #ff0000;
}

@media (min-width: 900px) {
  .popup__close {
    top: 1.5625rem;
    right: 1.375rem;
  }
}

@media (max-width: 899px) {
  .popup__close {
    top: 0.5rem;
    right: 0.625rem;
  }
}

@media (max-width: 899px) and (max-width: 550px) {
  .popup__close {
    top: 0.625rem;
    right: 0.625rem;
  }
}

.popup__close img {
  width: 100%;
  height: auto;
}

.popup__content {
  width: 100%;
}

@media (min-width: 900px) {
  .popup__content {
    max-width: 66.448%;
    margin-right: auto;
  }
}

@media (max-width: 899px) {
  .popup__content {
    max-width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 899px) and (max-width: 550px) {
  .popup__content {
    max-width: unset;
  }
}

.popup-search {
  position: absolute;
  left: 0;
  width: calc(100% + 2 * var(--wrap));
  margin: 0;
  margin-left: calc(-1 * var(--wrap));
  background-color: var(--color-white);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

@media (min-width: 900px) {
  .popup-search {
    top: 100%;
    z-index: -1;
    padding: 2.25rem 0 5.25rem;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@media (max-width: 899px) {
  .popup-search {
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    left: calc(100% + 2 * var(--wrap) + 5px);
    z-index: 3;
    height: 100%;
    padding: 1rem 0 1rem;
  }
}

@media (min-width: 900px) {
  .popup-search._opened {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@media (max-width: 899px) {
  .popup-search._opened {
    -webkit-transform: translateX(calc(-100% - 5px));
    transform: translateX(calc(-100% - 5px));
  }
}

.popup-search__wrapper {
  position: relative;
  width: 100%;
}

@media (min-width: 900px) {
  .popup-search__wrapper {
    max-width: 51.666%;
    margin: 0 auto;
  }
}

@media (max-width: 899px) {
  .popup-search__wrapper {
    padding: 0 var(--wrap);
  }
}

.popup-search__close {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1.5rem;
  height: 100%;
  padding: unset;
  border: unset;
  border-radius: unset;
  background-color: unset;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (min-width: 900px) {
  .popup-search__close {
    padding-bottom: 1.0625rem;
  }
}

@media (max-width: 899px) {
  .popup-search__close {
    right: var(--wrap);
    padding-bottom: 0.5rem;
  }
}

.popup-search__close img,
.popup-search__close svg {
  width: 100%;
  height: auto;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}

html:not(.v-mobile) .popup-search__close:hover img {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.popup-search__close:focus-visible svg {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

html:not(.v-mobile) .popup-search__close:hover img {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.popup-search__close:focus-visible svg {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.popup-search__form {
  position: relative;
  z-index: 0;
  width: 100%;
}

.popup-search__form button[type="submit"],
.popup-search__form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  width: 1.5rem;
  height: 100%;
  padding: unset;
  border-radius: unset;
  background-color: unset;
  -webkit-transform: translateX(-1.75rem);
  transform: translateX(-1.75rem);
}

@media (min-width: 900px) {
  .popup-search__form button[type="submit"],
  .popup-search__form input[type="submit"] {
    padding-bottom: 1.0625rem;
  }
}

@media (max-width: 899px) {
  .popup-search__form button[type="submit"],
  .popup-search__form input[type="submit"] {
    padding-bottom: 0.5rem;
  }
}

.popup-search__form button[type="submit"] img,
.popup-search__form button[type="submit"] svg,
.popup-search__form input[type="submit"] img,
.popup-search__form input[type="submit"] svg {
  width: 100%;
  height: auto;
}

.popup-search__form button[type="submit"] img path,
.popup-search__form button[type="submit"] img circle,
.popup-search__form button[type="submit"] svg path,
.popup-search__form button[type="submit"] svg circle,
.popup-search__form input[type="submit"] img path,
.popup-search__form input[type="submit"] img circle,
.popup-search__form input[type="submit"] svg path,
.popup-search__form input[type="submit"] svg circle {
  -webkit-transition: stroke 0.3s ease;
  transition: stroke 0.3s ease;
}

button[type="submit"]:focus-visible svg > * {
  stroke: var(--color-blue-100);
}

input[type="submit"]:focus-visible svg > * {
  stroke: var(--color-blue-100);
}

html:not(.v-mobile) button[type="submit"]:hover svg > * {
  stroke: var(--color-blue-100);
}

html:not(.v-mobile) input[type="submit"]:hover svg > * {
  stroke: var(--color-blue-100);
}

.banner {
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100 - var(--header-big) - var(--wrap));
  min-height: 35rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

@media (min-width: 1200px) {
  .banner {
    padding: 9.0625rem 0 10.5625rem;
    margin-top: 165px !important;
    margin-left: var(--wrap);
    margin-right: var(--wrap);
    margin-bottom: var(--wrap);
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .banner {
    padding: 7.25rem 0 9.0625rem;
    margin-left: var(--wrap);
    margin-right: var(--wrap);
    margin-bottom: var(--wrap);
  }
}

@media (max-width: 899px) {
  .banner {
    height: calc(var(--vh, 1vh) * 100 - var(--header-big));
    padding: 5rem 0 7.25rem;
  }
}

.banner__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(2, 0, 36, 0.5)),
    color-stop(45.31%, rgba(9, 9, 121, 0.5)),
    color-stop(97.4%, rgba(0, 212, 255, 0.5))
  );
  background-image: linear-gradient(
    90deg,
    rgba(2, 0, 36, 0.5) 0%,
    rgba(9, 9, 121, 0.5) 45.31%,
    rgba(0, 212, 255, 0.5) 97.4%
  );
}

.banner__container {
  position: relative;
  z-index: 1;
}

@media (min-width: 1200px) {
  .banner__container {
    padding: unset;
  }
}

.banner__wrapper {
  text-align: center;
  color: var(--color-white);
}

@media (min-width: 1200px) {
  .banner__wrapper {
    max-width: 70.692%;
    margin: 0 auto;
  }
}

@media (min-width: 1200px) and (min-width: 1600px) {
  .banner__wrapper {
    max-width: 54.692%;
  }
  .menu__item {
    margin-left: 0rem !important;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .banner__wrapper {
    max-width: 92%;
    margin: 0 auto;
  }
}

@media (min-width: 1200px) {
  .banner__wrapper > * + * {
    margin-top: 2.8125rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .banner__wrapper > * + * {
    margin-top: 2.125rem;
  }
}

@media (max-width: 899px) {
  .banner__wrapper > * + * {
    margin-top: 1.5rem;
  }
}

@media (max-width: 899px) {
  .banner__title__container {
    width: calc(100% + 2 * var(--wrap));
    margin-left: calc(-1 * var(--wrap));
  }
}

.banner__title {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  line-height: 116%;
  font-weight: 400;
  line-height: 100%;
}

@media (min-width: 1200px) {
  .banner__title {
    font-size: 4rem;
  }
}

@media (min-width: 1200px) and (min-width: 1800px) {
  .banner__title {
    font-size: 4.375rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .banner__title {
    font-size: 3.25rem;
  }
}

@media (max-width: 899px) {
  .banner__title {
    font-size: 2rem;
  }
}

@media (max-width: 899px) and (max-width: 410px) {
  .banner__title {
    font-size: 1.75rem;
  }
}

.banner__title span {
  display: block;
}

.banner__description {
  font-weight: 400;
  line-height: 166%;
}

@media (min-width: 1200px) {
  .banner__description {
    font-size: 1.25rem;
  }
}

@media (min-width: 1200px) and (min-width: 1600px) {
  .banner__description {
    font-size: 1.5rem;
  }
}

@media (min-width: 1200px) {
  .banner__description {
    font-size: 1.125rem;
  }
}

@media (min-width: 1200px) {
  .banner__description {
    font-size: 1rem;
    line-height: 130%;
  }
}

.department {
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

@media (min-width: 1200px) {
  .department {
    margin-top: 5rem;
  }
}

.department__container {
  padding: 0 var(--wrap-1);
}

@media (min-width: 1200px) {
  .department__wrapper {
    max-width: 92.432%;
  }
}

@media (min-width: 900px) {
  .department__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 900px) {
  .department__header > * + * {
    margin-left: 1.875rem;
  }
}

@media (max-width: 899px) {
  .department__header > * + * {
    margin-top: 0.9375rem;
  }
}

.department__title {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  line-height: 116%;
  font-weight: 400;
}

.department__title a {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  color: var(--color-blue-200);
  position: relative;
  text-decoration: none;
  transition: color 0.5s ease;
}

.department__title a:hover {
  color: var(--color-blue-100);
}

.department__title a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background-color: currentColor;
  transition: width 0.5s ease;
}

.department__title a:hover::after {
  width: 100%;
}
.department__title a svg {
  flex-shrink: 0;
}

@media (min-width: 1200px) {
  .department__title {
    font-size: 3.5rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .department__title {
    font-size: 3rem;
  }
}

@media (max-width: 899px) {
  .department__title {
    font-size: 1.875rem;
  }
}

.department__description {
  line-height: 140%;
  color: var(--color-grey-300);
}

@media (min-width: 1200px) {
  .department__description {
    max-width: 44.444%;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    margin-top: 0.9375rem;
    font-size: 1rem;
  }
}

@media (min-width: 1200px) and (min-width: 1600px) {
  .department__description {
    font-size: 1.125rem;
    line-height: 1.3125rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .department__description {
    max-width: 60%;
    margin-top: 0.9375rem;
    font-size: 1rem;
  }
}

@media (max-width: 899px) {
  .department__description {
    font-size: 0.875rem;
    line-height: 130%;
  }
}
.department__description a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-blue-100);
  transition: 0.2s ease;
}
.department__description a:hover {
  color: var(--color-blue-200);
}
.department__description a svg {
  transition: 0.2s ease;
  width: 20px;
}
.department__description a:hover svg {
  fill: var(--color-blue-200);
}
.department__main {
  width: 100%;
  overflow: hidden;
}

@media (min-width: 900px) {
  .department__main {
    margin-top: 6.875rem;
  }
}

@media (max-width: 899px) {
  .department__main {
    margin-top: 2.5rem;
  }
}

@media (min-width: 900px) {
  .department__main > * + * {
    margin-top: 2rem;
  }
}

@media (max-width: 899px) {
  .department__main > * + * {
    margin-top: 0.75rem;
  }
}

.department-list {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.department-list._small {
  width: 100%;
}

@media (min-width: 1200px) {
  .department-list > * + * {
    margin-left: 4.375rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .department-list > * + * {
    margin-left: 3.125rem;
  }
}

@media (max-width: 899px) {
  .department-list > * + * {
    margin-left: 1.5rem;
  }
}

.department-list__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}

.department-list._small .department-list__inner {
  min-width: 100%;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

@media (min-width: 1200px) {
  .department-list__inner > * + * {
    margin-left: 4.375rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .department-list__inner > * + * {
    margin-left: 3.125rem;
  }
}

@media (max-width: 899px) {
  .department-list__inner > * + * {
    margin-left: 2.25rem;
  }
}

.department-list__item {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}

.department-list__link {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  font-weight: 400;
  line-height: 166%;
  color: var(--color-grey-100);
}

.department-list._logos .department-list__link {
  display: block;
  max-height: 60px;
}

@media (min-width: 1200px) {
  .department-list__link {
    font-size: 2.25rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .department-list__link {
    font-size: 1.75rem;
  }
}

@media (max-width: 899px) {
  .department-list__link {
    font-size: 1.75rem;
  }
}

@media (max-width: 899px) and (max-width: 550px) {
  .department-list__link {
    font-size: 1.125rem;
  }
}

html:not(.v-mobile) .department-list__link:hover {
  color: var(--color-blue-100);
}

.department-list__link:focus-visible {
  color: var(--color-blue-100);
}

.department-list._logos .department-list__link img {
  display: block;
  width: 100%;
  height: 60px;
  object-fit: contain;
  transition: 0.2s;
}
.department-list._logos .department-list__link:hover img {
  opacity: 0.8;
}

@media (max-width: 899px) {
  .department-list._logos .department-list__link img {
    height: 40px;
  }
}

@media (max-width: 899px) {
  .categories__container {
    padding: 0;
  }
}

.categories__wrapper {
  color: var(--color--white);
  background-color: var(--color-blue-200);
}

@media (min-width: 900px) {
  .categories__wrapper {
    padding: 3.5rem var(--wrap-colored) 3.5rem;
  }
  .categories._custom-block .categories__wrapper {
    padding: 40px;
  }
}

@media (max-width: 899px) {
  .categories__wrapper {
    padding: 3.25rem var(--wrap-colored) 4.25rem;
  }
  .categories._custom-block .categories__wrapper {
    padding: 20px;
  }
}

.categories-list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10.5em, 1fr));
}

@media (min-width: 900px) {
  .categories-list {
    gap: 6.125rem 2rem;
    font-size: 1.25rem;
  }
}

@media (min-width: 900px) and (min-width: 1420px) {
  .categories-list {
    font-size: 1.5rem;
  }
}

@media (min-width: 900px) and (min-width: 1800px) {
  .categories-list {
    font-size: 1.875rem;
  }
}

@media (max-width: 899px) {
  .categories-list {
    gap: 2.5rem 2rem;
    font-size: 1.125rem;
  }
}

.typography a.categories-list__item,
.categories-list__item {
  position: relative;
  display: block;
  height: var(--categories-height);
  border-top: 1px solid var(--color-white);
  padding: 0 0.166em;
  overflow: hidden;
  -webkit-transition: background 0.3s ease, color 0.3s ease, border 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease, border 0.3s ease;
  font-weight: 400;
  font-size: 1em;
  line-height: 166%;
  color: var(--color-white);
}

html:not(.v-mobile) .categories-list__item:hover {
  color: var(--color-blue-200);
  background-color: var(--color-white);
  text-decoration: none !important;
}

.categories-list__item:focus-visible {
  color: var(--color-blue-200);
  background-color: var(--color-white);
}

.categories-list__hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-color: var(--color-white);
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  -webkit-transform: translateY(calc(-100% - 1px));
  transform: translateY(calc(-100% - 1px));
  color: var(--color-blue-200);
}

@media (max-width: 899px) {
  .categories-list__hover {
    display: none;
  }
}

html:not(.v-mobile) .categories-list__item:hover .categories-list__hover {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.categories-list__item:focus-visible .categories-list__hover {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.categories-list__title {
  display: block;
}

.categories-list__hover .categories-list__title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 0.166em;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}

html:not(.v-mobile)
  .categories-list__item:hover
  .categories-list__hover
  .categories-list__title {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.categories-list__item:focus-visible
  .categories-list__hover
  .categories-list__title {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.news {
  overflow: hidden;
}

.news[data-with-separate] .news__container {
  padding: 0 var(--wrap);
}

@media (max-width: 899px) {
  .news[data-with-separate] .news__container {
    padding: 0;
  }
}

.news.news-events .news__container {
  padding: 0 var(--wrap);
}

@media (max-width: 899px) {
  .news.news-events .news__container {
    padding: 0;
  }
}

@media (min-width: 900px) {
  .news.news-events .news__wrapper {
    padding: 0 var(--wrap-colored) 0;
  }
}

@media (max-width: 899px) {
  .news.news-events .news__wrapper {
    padding: 1.5rem var(--wrap-colored) 0;
  }
}

.news[data-with-separate] .news__wrapper {
  background-color: var(--color-blue-200);
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

@media (min-width: 900px) {
  .news[data-with-separate] .news__wrapper {
    padding: 3.5rem var(--wrap-colored) 3.75rem;
  }
}

@media (max-width: 899px) {
  .news[data-with-separate] .news__wrapper {
    padding: 3.25rem var(--wrap-colored) 4.25rem;
  }
}

.news[data-with-separate] .news__wrapper[data-active-slide="even"] {
  background-color: var(--color-blue-200);
}

.news[data-with-separate] .news__wrapper[data-active-slide="odd"] {
  background-color: var(--color-green-100);
}

.news__header {
  width: 100%;
  margin-bottom: 20px;
}

@media (min-width: 900px) {
  .news__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media (min-width: 900px) {
  .news__header > * + * {
    margin-left: 2.25rem;
  }
}

@media (max-width: 899px) {
  .news__header > * + * {
    margin-top: 2rem;
  }
}

@media (min-width: 900px) {
  .news__main {
    margin-top: 0.75rem;
  }
}

@media (max-width: 899px) {
  .news__main {
    margin-top: 1.75rem;
  }
}

.news.news-categories .news__main {
  color: var(--color-white);
}

.news__footer {
  margin-top: 4.3rem;
}

.news__title {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  line-height: 116%;
  font-weight: 400;
  color: var(--color-blue-200);
}

@media (min-width: 1200px) {
  .news__title {
    font-size: 3rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .news__title {
    font-size: 3rem;
  }
}

@media (max-width: 899px) {
  .news__title {
    font-size: 1.875rem;
  }
}

.news.news-categories .news__title {
  color: var(--color-white);
}

.news__buttons__slider__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 5rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.news__buttons__slider__container > * + * {
  margin-left: 1.25rem;
}

.news-slider-prev,
.news-slider-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1.875rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: unset;
  padding: unset;
  background-color: transparent;
}

.news-slider-prev svg,
.news-slider-next svg {
  width: 100%;
  height: auto;
}

.news-slider-prev svg path,
.news-slider-next svg path {
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}

.swiper-button-disabled svg path {
  fill: var(--color-grey-200);
}

html:not(.v-mobile) .news-slider-prev:hover svg path {
  fill: var(--color-green-100);
}

.news-slider-prev:focus-visible svg path {
  fill: var(--color-green-100);
}

html:not(.v-mobile) .news-slider-next:hover svg path {
  fill: var(--color-green-100);
}

.news-slider-next:focus-visible svg path {
  fill: var(--color-green-100);
}

.news-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  line-height: 116%;
  color: var(--color-blue-100);
}

@media (min-width: 1200px) {
  .news-more {
    font-size: 1.5rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .news-more {
    font-size: 1.375rem;
  }
}

@media (max-width: 899px) {
  .news-more {
    font-size: 1.25rem;
  }
}

html:not(.v-mobile) .news-more:hover {
  color: var(--color-green-100);
}

.news-more:focus-visible {
  color: var(--color-green-100);
}

.news.news-categories .news-more {
  color: var(--color-white);
}

html:not(.v-mobile) .news.news-categories .news-more:hover {
  color: var(--color-highlight);
}

.news.news-categories .news-more:focus-visible {
  color: var(--color-highlight);
}

.news-more > * + * {
  margin-left: 0.9375rem;
}

.news-more__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1.875rem;
  height: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.news-more__label svg {
  width: 100%;
  height: auto;
}

.news-more__label svg path {
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}

html:not(.v-mobile) .news-more:hover svg path {
  fill: var(--color-green-100);
}

.news-more:focus-visible svg path {
  fill: var(--color-green-100);
}

.news.news-categories .news-more svg path {
  fill: var(--color-white);
}

html:not(.v-mobile) .news-categories .news-more:hover svg path {
  fill: var(--color-highlight);
}

.news-categories .news-more:focus-visible svg path {
  fill: var(--color-highlight);
}

.news-slider {
  overflow: visible;
}

@media (max-width: 899px) and (max-width: 550px) {
  .news-slider {
    width: calc(100% + 2 * var(--wrap-1));
    margin-left: calc(-1 * var(--wrap-1));
  }
}

.news-slider__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;

  color: var(--color-black);
}

html:not(.v-mobile) .news-slider__item:hover {
  color: var(--color-blue-100);
}

.news-slider__item:focus-visible {
  color: var(--color-blue-100);
}

.news-slider__item > * + * {
  margin-top: 1.1rem;
}

.news-slider__img {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.news-slider__img__container {
  display: block;
  padding-top: 100%;
}

.news-slider__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

html:not(.v-mobile) .news-slider__item:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.news-slider__item:focus-visible img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

@media (max-width: 899px) and (max-width: 550px) {
  .news-slider__title__container {
    padding: 0 var(--wrap-1);
  }
}

.news-slider__title {
  position: relative;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 115%;
  min-height: 72px;
  max-height: 72px;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.news-slider__title:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 30%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgb(255 255 255 / 80%) 100%
  );
  transition: 0.3s ease;
  z-index: 10;
}

.news-slider__item:hover .news-slider__title {
  max-height: 500px;
}
.news-slider__item:hover .news-slider__title:before {
  opacity: 0;
}
@media (min-width: 1200px) {
  .news-slider__title {
    font-size: 1.375rem;
  }
}

@media (min-width: 1200px) and (min-width: 1540px) {
  .news-slider__title {
    font-size: 1.5rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .news-slider__title {
    font-size: 1.375rem;
  }
}

@media (max-width: 899px) {
  .news-slider__title {
    font-size: 1.25rem;
  }
}

.news-slider__description-wrapper {
  max-height: 95px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.5s ease;
}

.news-slider__description {
  line-height: 140%;
  font-size: 0.875rem;
  color: var(--color-grey-300);
  word-break: break-word;
  margin-bottom: 20px;
}

.news-slider__ellipsis {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 2rem;
  color: var(--color-blue-200);
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.news-slider__description-wrapper:hover {
  max-height: 500px;
  padding-bottom: 0;
}

.news-slider__description-wrapper.expanded {
  max-height: 500px;
  padding-bottom: 0;
}

@media (min-width: 1200px) and (min-width: 1540px) {
  .news-slider__description {
    font-size: 1rem;
  }
}

.news-slider__price {
  line-height: 140%;
  font-size: 1rem;
  color: var(--color-grey-300);
  font-weight: 500;
  margin-top: 10px;
}

@media (min-width: 1200px) and (min-width: 1540px) {
  .news-slider__price {
    max-width: 85.714%;
    font-size: 1rem;
  }
}

@media (max-width: 899px) and (max-width: 550px) {
  .news-slider__price {
    padding: 0 var(--wrap-1);
  }

  .news-slider__description-wrapper {
    padding: 0 var(--wrap-1);
  }
}

.separate-header {
  width: calc(100% + 2 * var(--wrap-colored));
  margin-left: calc(-1 * var(--wrap-colored));
  overflow-x: hidden;
  overflow-y: visible;
}

.separate-header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  padding: 0 var(--wrap-colored);
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.separate-header__wrapper::-webkit-scrollbar {
  display: none;
}

html:not(.v-mobile) .separate-header__wrapper {
  width: 100%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  overflow-x: hidden;
  overflow-y: visible;
}

@media (min-width: 1200px) {
  .separate-header__wrapper {
    font-size: 1.25rem;
  }
}

@media (min-width: 1200px) and (min-width: 1600px) {
  .separate-header__wrapper {
    font-size: 1.375rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .separate-header__wrapper {
    font-size: 1.375rem;
  }
}

@media (max-width: 899px) {
  .separate-header__wrapper {
    font-size: 1.125rem;
  }
}

.separate-bullet {
  width: unset;
  height: unset;
  border-radius: unset;
  background: transparent;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  opacity: 0.2;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  line-height: 117%;
  color: var(--color-white);
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: inline-block;
  pointer-events: all;
}

html:not(.v-mobile) .separate-bullet:hover {
  opacity: 1;
}

.separate-bullet:focus-visible {
  opacity: 1;
}

.separate-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

.separate-bullet.swiper-pagination-bullet:only-child {
  display: block !important;
}

@media (min-width: 900px) {
  .separate-bullet {
    padding-bottom: 0.625rem !important;
  }
}

@media (max-width: 899px) {
  .separate-bullet {
    padding-bottom: 0.3125rem !important;
  }
}

.separate-bullet::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--color-white);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

@media (min-width: 900px) {
  .separate-bullet::before {
    height: 3px;
    -webkit-transform: translateY(-0.1875rem) scaleX(0);
    transform: translateY(-0.1875rem) scaleX(0);
  }
}

@media (max-width: 899px) {
  .separate-bullet::before {
    height: 1px;
    -webkit-transform: translateY(-0.0625rem) scaleX(0);
    transform: translateY(-0.0625rem) scaleX(0);
  }
}

@media (min-width: 900px) {
  .separate-bullet.swiper-pagination-bullet-active::before {
    -webkit-transform: translateY(-0.1875rem) scaleX(1);
    transform: translateY(-0.1875rem) scaleX(1);
  }
}

@media (max-width: 899px) {
  .separate-bullet.swiper-pagination-bullet-active::before {
    -webkit-transform: translateY(-0.0625rem) scaleX(1);
    transform: translateY(-0.0625rem) scaleX(1);
  }
}

.swiper-pagination-horizontal.swiper-pagination-bullets .separate-bullet {
  margin: unset;
  margin-right: 1.764em;
  text-align: left;
}

html:not(.v-mobile)
  .swiper-pagination-horizontal.swiper-pagination-bullets
  .separate-bullet {
  margin-top: 0.5rem;
}

.swiper-pagination-horizontal.swiper-pagination-bullets
  .separate-bullet:last-child {
  margin-right: 0;
}

.separate-main {
  margin-top: 1.5rem;
}

.separate-slider.swiper .swiper-slide:not(.swiper-slide-active) {
  opacity: 0 !important;
}

.news-feed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  font-size: 0.875rem;
  color: var(--color-white);
}

@media (min-width: 900px) {
  .news-feed {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media (min-width: 900px) and (min-width: 1540px) {
  .news-feed {
    font-size: 1rem;
  }
}

@media (max-width: 899px) {
  .news-feed {
    max-width: 70%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (max-width: 899px) and (max-width: 550px) {
  .news-feed {
    max-width: unset;
  }
}

@media (min-width: 900px) {
  .news-feed > *:first-child {
    width: 36%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}

@media (min-width: 900px) {
  .news-feed > *:last-child {
    width: 48.6486%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}

.news.news-events .news-feed {
  color: var(--color-black);
}

@media (min-width: 900px) {
  .news.news-events .news-feed {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}

@media (min-width: 900px) {
  .news-feed > * + * {
    margin-left: 3.125rem;
  }
}

@media (max-width: 899px) {
  .news-feed > * + * {
    margin-top: 2.25em;
  }
}

@media (min-width: 900px) {
  .news.news-events .news-feed > * + * {
    margin-left: unset;
    margin-right: 3.125rem;
  }
}

@media (max-width: 899px) {
  .news.news-events .news-feed > * + * {
    margin-top: 1.25em;
  }
}

.news-feed__list > * + * {
  margin-top: 1.25em;
}

.news.news-events .news-feed__list > * + * {
  margin-top: 1.25em;
}

.news-feed__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 1em;
  line-height: 140%;
  color: inherit;
}

.news-feed__item > * + * {
  margin-top: 0.8em;
}

.news.news-events .news-feed__item {
}

.news-feed__big .news-feed__item {
  border-top: unset;
  padding-top: unset;
}

.news.news-events .news-feed__big .news-feed__item {
  padding-top: 0;
}

.news-feed__img {
  position: relative;
}

@media (min-width: 900px) {
  .news-feed__img {
    width: 80%;
  }
}

@media (max-width: 899px) {
  .news-feed__img {
    width: 100%;
  }
}

.news-feed__img__container {
  display: block;
  padding-top: 100%;
}

.news-feed__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.news-feed__title {
  border-top: 3px solid var(--color-grey-050);
  padding-top: 0.6em;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  line-height: 116%;
  font-weight: 400;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

@media (min-width: 1200px) {
  .news-feed__title {
    font-size: 1.375rem;
  }
}

@media (min-width: 1200px) and (min-width: 1540px) {
  .news-feed__title {
    font-size: 1.5rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .news-feed__title {
    font-size: 1.375rem;
  }
}

@media (max-width: 899px) {
  .news-feed__title {
    font-size: 1.25rem;
  }
}

html:not(.v-mobile) .news-feed__item:hover .news-feed__title {
  color: var(--color-highlight);
}

.news-feed__item:focus-visible .news-feed__title {
  color: var(--color-highlight);
}

.news.news-events .news-feed__item:focus-visible .news-feed__title {
  color: var(--color-blue-100);
}

html:not(.v-mobile) .news.news-events .news-feed__item:hover .news-feed__title {
  color: var(--color-blue-100);
}

.news-feed__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.news-feed__info > * + * {
  margin-left: 1em;
}

.news-feed__warning {
  border-radius: 0.3125rem;
  padding: 0 0.625em;
  background-color: var(--color-highlight);
  color: var(--color-black);
}

.news-feed__description {
  opacity: 0.5;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: calc(1.55em * 5);
  margin-top: 20px;
}
.news-feed__description--big {
  -webkit-line-clamp: 10;
  max-height: calc(1.5em * 10);
}

@media (min-width: 2000px) {
  .news-feed__description {
    max-height: calc(1.7em * 6);
    -webkit-line-clamp: 6;
  }
  .news-feed__description--big {
    -webkit-line-clamp: 10;
    max-height: calc(1.6em * 10);
  }
}

.news.news-events .news-feed__description {
  margin-top: 0.625em;
}

@media (min-width: 900px) {
  .instagram > * + * {
    margin-top: 3.25rem;
  }
}

@media (max-width: 899px) {
  .instagram > * + * {
    margin-top: 2.25rem;
  }
}

.instagram__header {
  width: 100%;
  padding: 0 var(--wrap-1);
}

@media (min-width: 900px) {
  .instagram__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media (min-width: 900px) {
  .instagram__header > * + * {
    margin-left: 2.5rem;
  }
}

@media (max-width: 899px) {
  .instagram__header > * + * {
    margin-top: 1.5rem;
  }
}

.instagram__title {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  line-height: 116%;
  font-weight: 400;
  color: var(--color-blue-200);
}

@media (min-width: 1200px) {
  .instagram__title {
    font-size: 3.5rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .instagram__title {
    font-size: 3rem;
  }
}

@media (max-width: 899px) {
  .instagram__title {
    font-size: 1.875rem;
  }
}

.instagram__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  line-height: 116%;
  color: var(--color-blue-100);
}

@media (min-width: 1200px) {
  .instagram__link {
    font-size: 1.5rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .instagram__link {
    font-size: 1.375rem;
  }
}

@media (max-width: 899px) {
  .instagram__link {
    font-size: 1.25rem;
  }
}

html:not(.v-mobile) .instagram__link:hover {
  color: var(--color-green-100);
}

.instagram__link:focus-visible {
  color: var(--color-green-100);
}

.instagram__link > * + * {
  margin-left: 0.9375rem;
}

.instagram__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1.875rem;
  height: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.instagram__label svg {
  width: 100%;
  height: auto;
}

.instagram__label svg path {
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}

html:not(.v-mobile) .instagram__link:hover svg path {
  fill: var(--color-green-100);
}

.instagram__link:focus-visible svg path {
  fill: var(--color-green-100);
}

.instagram-list {
  display: -ms-grid;
  display: grid;
}

@media (min-width: 900px) {
  .instagram-list {
    -ms-grid-columns: 1fr 1.875rem 1fr 1.875rem 1fr 1.875rem 1fr;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.875rem;
  }
}

@media (max-width: 899px) {
  .instagram-list {
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
    -ms-grid-columns: 1fr 1rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 899px) and (max-width: 550px) {
  .instagram-list {
    max-width: unset;
  }
}

.instagram-list__item {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
}

.instagram-list__img {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.instagram-list__img__container {
  display: block;
  padding-top: 100%;
}

.instagram-list__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

html:not(.v-mobile) .instagram-list__item:hover .instagram-list__img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.instagram-list__item:focus-visible .instagram-list__img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.instagram-hover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--color-black--rgb), 0.8);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  text-align: center;
  line-height: 100%;
  color: var(--color-white);
}

@media (min-width: 1200px) {
  .instagram-hover {
    font-size: 1.125rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .instagram-hover {
    font-size: 1rem;
  }
}

@media (max-width: 899px) {
  .instagram-hover {
    font-size: 0.875rem;
  }
}

.instagram-hover > * + * {
  margin-top: 0.8em;
}

html:not(.v-mobile) .instagram-list__item:hover .instagram-hover {
  opacity: 1;
}

.instagram-list__item:focus-visible .instagram-hover {
  opacity: 1;
}

.instagram-hover__label {
  width: 2.5rem;
}

.instagram-hover__label img,
.instagram-hover__label svg {
  width: 100%;
  height: auto;
}

.instagram-hover__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: inherit;
}

.instagram-hover__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1.5em;
  margin-left: 0.5em;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.instagram-hover__arrow img,
.instagram-hover__arrow svg {
  width: 100%;
  height: auto;
}

.footer {
  overflow: hidden;
}

@media (min-width: 1200px) {
  .footer {
    margin-top: 1.375rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .footer {
    margin-top: 2.75rem;
  }
}

@media (max-width: 899px) {
  .footer {
    margin-top: 1.25rem;
  }
}

@media (max-width: 899px) {
  .footer__container {
    padding: unset;
  }
}

@media (min-width: 2000px) {
  .footer__wrapper {
    padding: 5em 12em !important;
  }
}

@media (max-width: 1150px) {
  .footer-contacts {
    gap: 2rem !important;
    flex-wrap: wrap;
  }
}

.footer__wrapper {
  position: relative;
  z-index: 1;
  background-color: var(--color-grey-010);
  padding: 20px;
}

@media (min-width: 1200px) {
  .footer__wrapper {
    padding: 1.375rem 2rem 4.625rem;
  }
}

@media (max-width: 899px) {
  .footer__wrapper {
    padding: 3rem 5rem 4.25rem;
  }
}

.footer__wrapper > * + * {
  margin-top: 2rem;
}

.footer__header {
  position: relative;
  z-index: 1;
}

.footer__main {
  position: relative;
  z-index: 1;
  width: 100%;
}

.footer__bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--color-blue-100);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1400px) {
  .footer__bottom {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
  .footer-contacts {
    justify-content: center;
  }
  .footer-socials--icons,
  .footer-socials--logos {
    justify-content: center;
  }
}

@media (min-width: 900px) {
  .footer__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;

    margin-top: 3.25rem;
    padding-top: 1.75rem;
  }
}

@media (max-width: 899px) {
  .footer__bottom {
    flex-direction: column;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }
}

@media (min-width: 900px) {
  .footer__bottom > * + * {
    margin-left: 3.125rem;
  }
}

@media (max-width: 899px) {
  .footer__bottom > * + * {
    margin-top: 1.5rem;
  }
}

.footer__bg {
  position: absolute;
  margin: 0;
  top: 0;
  right: 0;
  z-index: 0;
}

@media (max-width: 899px) {
  .footer__bg {
    width: 100%;
  }
}

.footer__bg img,
.footer__bg svg {
  width: 100%;
  height: auto;
}

@media (min-width: 900px) {
  .footer__logo {
    max-width: 20.3125rem;
  }
}

@media (max-width: 899px) {
  .footer__logo {
    max-width: 13.3125rem;
  }
}

.footer__logo img {
  width: 100%;
  height: auto;
}

.footer-navigation {
  font-weight: 400;
  line-height: 115.384%;
}

@media (min-width: 900px) {
  .footer-navigation {
    display: grid;
    gap: 2em;
    grid-template-columns: repeat(auto-fit, minmax(18em, 1fr));
    font-size: 0.75rem;
  }
}

@media (min-width: 900px) and (min-width: 1710px) {
  .footer-navigation {
    gap: 0.769em;
    font-size: 0.8125rem;
  }
}

@media (max-width: 899px) {
  .footer-navigation {
    font-size: 0.875rem;
  }
}

@media (max-width: 899px) {
  .footer-navigation > * + * {
    border-top: 1px solid var(--color-blue-200);
    margin-top: 1rem;
    padding-top: 1rem;
  }
}

.footer-navigation__title {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  line-height: 116%;
  font-weight: 400;
  border: unset;
  padding: unset;
  background-color: transparent;
  text-align: left;
  font-weight: 500;
  color: var(--color-blue-100);
}

@media (min-width: 1200px) {
  .footer-navigation__title {
    font-size: 1.375rem;
  }
}

@media (min-width: 1200px) and (min-width: 1540px) {
  .footer-navigation__title {
    font-size: 1.5rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .footer-navigation__title {
    font-size: 1.375rem;
  }
}

@media (max-width: 899px) {
  .footer-navigation__title {
    font-size: 1.25rem;
  }
}

@media (min-width: 900px) {
  .footer-navigation__title {
    cursor: default;
  }
}

@media (max-width: 899px) {
  .footer-navigation__title {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.footer-navigation__title > * + * {
  margin-left: 2.5rem;
}

@media (min-width: 900px) {
  .footer-navigation__arrow {
    display: none;
  }
}

.footer-navigation__arrow svg {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.footer-navigation__arrow svg._active {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

@media (min-width: 900px) {
  .footer-navigation__inner:not(._last) {
    margin-top: 1.75rem;
  }
}

@media (max-width: 899px) {
  .footer-navigation__inner:not(._last) {
    -webkit-transition: margin 0.6s ease;
    transition: margin 0.6s ease;
    opacity: 0;
    height: 0;
    overflow: hidden;
  }
}

@media (max-width: 899px) {
  .footer-navigation__item._active .footer-navigation__inner {
    margin-top: 1.375rem;
  }
}

.footer-list > * + * {
  margin-top: 0.75rem;
}

.footer-list__item {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  color: var(--color-grey-400);
  width: 100%;
}

html:not(.v-mobile) .footer-list__item:hover {
  color: var(--color-blue-100);
}

.footer-list__item:focus-visible {
  color: var(--color-blue-100);
}

@media (min-width: 900px) {
  .footer-contacts {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
  }
}

@media (max-width: 899px) {
  .footer-contacts > * + * {
    margin-top: 1.5rem;
  }
}

.footer-contacts__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 140%;
  width: 280px;
}

.footer-contacts__item > * + * {
  margin-left: 1rem;
}

.footer-contacts__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1.5rem;
  height: 1.5rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-contacts__label svg,
.footer-contacts__label img {
  width: 100%;
  height: auto;
}

.footer-contacts__link {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  color: var(--color-black) !important;
  min-width: 125px;
}

html:not(.v-mobile) .footer-contacts__link:hover {
  color: var(--color-blue-100);
}

.footer-contacts__link:focus-visible {
  color: var(--color-blue-100);
}

.footer-contacts__link span {
  display: block;
}

.footer-contacts-list > * + * {
  margin-top: 0.25em;
}

.footer-contacts-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  min-width: 250px;
  gap: 10px;
}

.footer-contacts-list__item > * + * {
  margin-left: 0.25em;
}

.footer-contacts-list__description {
  color: var(--color-grey-200);
}

.footer-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-socials > * + * {
  margin-left: 1rem;
}

.footer-socials li {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.footer-socials__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 2rem;
  height: 2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.footer-socials__link svg,
.footer-socials__link img {
  width: 100%;
  height: auto;
}

.footer-socials__link svg path,
.footer-socials__link img path {
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}

html:not(.v-mobile) .footer-socials__link:hover svg path {
  fill: var(--color-blue-100);
}

.footer-socials__link:focus-visible svg path {
  fill: var(--color-blue-100);
}

.footer-socials__wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.footer-socials__item--logo {
  width: 75px;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.footer-socials__item--logo:hover {
  transform: scale(1.15);
}

.footer-socials__item--logo a {
  width: 75px;
}

.footer-socials__item--logo img {
  width: 75px;
}

@media (min-width: 900px) {
  .event-article__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

@media (min-width: 900px) {
  .event-article__content > * + * {
    margin-left: 1.875rem;
  }
}

@media (max-width: 899px) {
  .event-article__content > * + * {
    margin-top: 2rem;
  }
}

.event-article__img {
  position: relative;
  width: 50%;
  overflow: hidden;
  float: left;
  margin-right: 50px;
  margin-bottom: 20px;
}

@media (max-width: 899px) {
  .event-article__img {
    max-width: 50%;
  }
}

@media (max-width: 899px) and (max-width: 550px) {
  .event-article__img {
    max-width: unset;
    width: 100%;
    float: none;
    margin-right: 0;
    margin-bottom: 0;
  }
}

.event-article__img__container {
  padding-top: 100%;
}

.event-article__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (min-width: 900px) {
  .event-article__main {
    width: 100%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}

@media (min-width: 900px) {
  .event-article__main > * + * {
    margin-top: 2.625rem;
  }
}

@media (max-width: 899px) {
  .event-article__main > * + * {
    margin-top: 2.25rem;
  }
}

.event-article-details {
  background-color: var(--color-grey-010);
}

@media (min-width: 900px) {
  .event-article-details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 1.25rem 2.25rem 1.625rem;
  }
}

@media (max-width: 899px) {
  .event-article-details {
    padding: 1rem 1.625rem 1.25rem;
  }
}

@media (min-width: 1200px) {
  .event-article-details > * + * {
    margin-left: 3.75rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .event-article-details > * + * {
    margin-left: 2.5rem;
  }
}

@media (max-width: 899px) {
  .event-article-details > * + * {
    margin-top: 1.75rem;
  }
}

.event-article-details__column {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 140%;
  color: var(--color-grey-020);
}

@media (min-width: 900px) {
  .event-article-details__column {
    max-width: 10.25rem;
  }
}

@media (min-width: 900px) {
  .event-article-details__column > * + * {
    margin-top: 0.875rem;
  }
}

@media (max-width: 899px) {
  .event-article-details__column > * + * {
    margin-top: 0.625rem;
  }
}

.event-article-details__value {
  line-height: inherit;
  color: var(--color-blue-200);
}

@media (min-width: 900px) {
  .event-article-details__value {
    font-size: 1.5rem;
  }
}

@media (max-width: 899px) {
  .event-article-details__value {
    font-size: 1.25rem;
  }
}

@media (min-width: 900px) {
  .article__content > * + * {
    margin-top: 3.75rem;
  }
}

@media (max-width: 899px) {
  .article__content > * + * {
    margin-top: 3.25rem;
  }
}

@media (max-width: 899px) {
  .article-grid {
    width: calc(100% + 2 * var(--wrap-1));
    margin-left: calc(-1 * var(--wrap-1));
  }
}

.article-grid > * + * {
  margin-top: 0.5625rem;
}

@media (max-width: 899px) {
  .article-grid._desk {
    display: none;
  }
}

@media (min-width: 900px) {
  .article-grid._mob {
    display: none;
  }
}

.article-grid__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  line-height: 140%;
  font-weight: 500;
  color: var(--color-blue-200);
}

@media (min-width: 900px) {
  .article-grid__row {
    background-color: var(--color-grey-010);
    font-size: 0.75rem;
  }
}

@media (min-width: 900px) and (min-width: 1600px) {
  .article-grid__row {
    font-size: 0.875rem;
  }
}

@media (max-width: 899px) {
  .article-grid__row {
    font-size: 0.875rem;
  }
}

.article-grid__row._title {
  font-weight: 400;
  color: var(--color-black);
}

@media (max-width: 899px) {
  .article-grid__row._big-margin {
    margin-top: 2rem;
  }
}

@media (min-width: 900px) {
  .article-grid__row > * + * {
    margin-left: 1rem;
  }
}

@media (min-width: 900px) and (min-width: 1600px) {
  .article-grid__row > * + * {
    margin-left: 1.875rem;
  }
}

.article-grid__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (min-width: 900px) {
  .article-grid__column {
    padding: 0.875rem 0.5rem;
  }
}

@media (min-width: 900px) and (min-width: 1600px) {
  .article-grid__column {
    padding: 1rem 0.875rem;
  }
}

@media (max-width: 899px) {
  .article-grid__column {
    background-color: var(--color-grey-010);
    padding: 1rem var(--wrap-1);
  }
}

.article-grid__column p span {
  display: block;
}

.file {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--color-grey-010);
  /* 	-webkit-transition: background 0.3s ease;
	transition: background 0.3s ease; */
}

@media (min-width: 900px) {
  .file {
    padding: 1.5rem 2rem;
  }
}

@media (max-width: 899px) {
  .file {
    padding: 1.25rem 1.75rem;
  }
}

html:not(.v-mobile) .file:hover {
  /* 	background-color: var(--color-blue-200); */
}

.file:focus-visible {
  /* 	background-color: var(--color-blue-200); */
}

@media (min-width: 900px) {
  .file > * + * {
    margin-left: 1rem;
  }
}

@media (max-width: 899px) {
  .file > * + * {
    margin-left: 0.75rem;
  }
}

.file__label {
  position: relative;
  max-width: 1.875rem;
  width: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.file__label img,
.file__label svg {
  width: 100%;
  height: auto;
}

.file__label .file__img {
  /* 	-webkit-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease; */
}

html:not(.v-mobile) .file:hover .file__img {
  /* 	opacity: 0; */
}

.file:focus-vidible .file__img {
  /* 	opacity: 0; */
}

.file__label .file__img__hover {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

html:not(.v-mobile) .file:hover .file__img__hover {
  /* 	opacity: 1; */
}

.file:focus-vidible .file__img__hover {
  /* 	opacity: 1; */
}

.file__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  /* 	-webkit-transition: color 0.3s ease;
	transition: color 0.3s ease; */
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 140%;
  color: var(--color-grey-020);
}

.file__text > * + * {
  margin-top: 0.25em;
}

html:not(.v-mobile) .file:hover .file__text {
  text-decoration: unset;
  /* 	color: var(--color-white); */
}

.file:focus-vidible .file__text {
  text-decoration: unset;
  /* 	color: var(--color-white); */
}

.file__value {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  color: var(--color-black);
}

@media (min-width: 900px) {
  .file__value {
    font-size: 0.875rem;
  }
}

@media (max-width: 899px) {
  .file__value {
    font-size: 0.75rem;
  }
}

html:not(.v-mobile) .file:hover .file__value {
  text-decoration: underline;
  color: var(--color-blue-200);
}

.file:focus-vidible .file__value {
  text-decoration: underline;
  color: var(--color-blue-200);
}

.typography {
  font-weight: 400;
  line-height: 140%;
  color: var(--color-black);
}

@media (min-width: 900px) {
  .typography {
    font-size: 1.125rem;
  }
}

@media (max-width: 899px) {
  .typography {
    font-size: 0.875rem;
  }
}
.typography strong {
  font-weight: bold;
}
.typography em {
  font-style: italic;
}
/* @media (min-width: 900px) {
.typography>*+* {
margin-top: 2.5rem;
}
}

@media (max-width: 899px) {
.typography>*+* {
margin-top: 2rem;
}
} */

.typography > * + * {
  margin-top: 1rem;
}

.typography > h2 + * {
  margin-top: 1.625rem;
}

@media (min-width: 900px) {
  .typography > * + ul,
  .typography > * + ol {
    margin-top: 2rem;
  }
}

.typography h2 {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  line-height: 116%;
  font-weight: 400;
  border-bottom: 1px solid var(--color-grey-050);
  padding-bottom: 0.5625rem;
  color: var(--color-blue-200);
}

@media (min-width: 1200px) {
  .typography h2 {
    font-size: 1.375rem;
  }
}

@media (min-width: 1200px) and (min-width: 1540px) {
  .typography h2 {
    font-size: 1.5rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .typography h2 {
    font-size: 1.375rem;
  }
}

@media (min-width: 900px) {
  .typography h2 {
    margin-top: 2.5rem;
  }
}

@media (max-width: 899px) {
  .typography h2 {
    font-size: 1.25rem;
    margin-top: 2rem;
  }
}

.typography h3 {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  line-height: 116%;
  font-weight: 400;
}

@media (min-width: 1200px) {
  .typography h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 1199px) {
  .typography h3 {
    font-size: 1.125rem;
  }
}

.typography h4 {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  line-height: 116%;
  font-weight: 400;
}

@media (min-width: 1200px) {
  .typography h4 {
    font-size: 1.125rem;
  }
}

@media (max-width: 1199px) {
  .typography h4 {
    font-size: 1rem;
  }
}

.typography a {
  display: inline-block;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  color: var(--color-blue-100);
}

.typography a.file {
  display: inline-flex;
}

@media (min-width: 900px) {
  .typography a {
    text-underline-offset: 0.375rem;
  }
}

@media (max-width: 899px) {
  .typography a {
    text-underline-offset: 0.25rem;
  }
}

html:not(.v-mobile) .typography a:hover {
  text-decoration: underline;
  color: var(--color-green-100);
}

html:not(.v-mobile) .typography a.file:hover {
  text-decoration: unset;
}

.typography a:focus-visible {
  text-decoration: underline;
  color: var(--color-green-100);
}

.typography a.file:focus-visible {
  text-decoration: unset;
}

.typography ul {
  list-style: none;
}

@media (min-width: 900px) {
  .typography ul {
    margin-left: 3.75rem;
  }
}

@media (max-width: 899px) {
  .typography ul {
    margin-left: 1.25rem;
  }
}

.typography ul > * + * {
  margin-top: 1.125rem;
}

.typography ul > li {
  position: relative;
}

.typography ul > li::before {
  content: "•";
  position: absolute;
  left: -20px;
  top: 0;
  font-size: 26px;
  color: var(--color-green-100);
}

.typography ol {
  /* 	list-style-type: decimal;
	list-style-position: outside; */
  list-style: none;
  counter-reset: item;
}

@media (min-width: 900px) {
  .typography ol {
    margin-left: 3.75rem;
  }
}

@media (max-width: 899px) {
  .typography ol {
    margin-left: 1.25rem;
  }
}

.typography ol > * + * {
  margin-top: 1.125rem;
}

.typography ol > li {
  position: relative;
  counter-increment: item;
}

.typography ol > li::before {
  content: counter(item) ".";
  position: absolute;
  left: -34px;
  text-align: right;
  top: 0;
  color: var(--color-grey-020);
  width: 25px;
}

summary + .wp-block-list,
.typography li > ol,
.typography li > ul {
  margin-top: 16px;
}

.typography table {
  border-collapse: separate !important;
  border-spacing: 0 0.625rem;
  /* 	text-align: center; */

  font-size: 0.875rem;
  line-height: 140%;
}

@media (max-width: 899px) {
  .typography table {
    display: block;
    /*max-width: 100%;*/
    width: calc(100% + 2 * var(--wrap));
    margin-left: calc(-1 * var(--wrap));
    overflow: auto;
    font-size: 0.75rem;

    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .typography table::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 899px) {
  .typography table tbody {
    width: max-content;
  }

  .typography table tr {
    width: max-content;
  }

  .typography table td,
  .typography table th {
    min-width: 13.5rem;
  }
}

.typography table th {
  padding: 1rem;
}
.typography table td {
  padding: 1rem;
  background-color: var(--color-grey-010);
  color: var(--color-black);
  vertical-align: middle;
  font-weight: 400;
}

.typography._grey table td {
  background-color: var(--color-white);
  color: var(--color-blue-200);
}

@media (max-width: 899px) {
  .typography table td,
  .typography table th {
    padding: 0.5rem var(--wrap);
  }
}

.typography table tbody > * + * {
  /* 	display: inline-flex; */
  /* 	padding-top: 0.625rem; */
}

.typography table tr:first-child td {
  font-weight: 500;
  color: var(--color-blue-200);
}

.typography.hidden-text div {
  max-height: 400px;
  overflow: hidden;
  position: relative;
}

.typography.hidden-text div:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 32.29%,
    rgba(255, 255, 255, 0.8) 100%
  );
}
.typography details summary {
  padding: 20px;
  background-color: var(--color-blue-100);
  color: var(--color-white);
}

.page-nav {
  position: fixed;
  max-width: calc(var(--wrap-1) - 10px);
  padding-top: 1.875rem;
  padding-left: var(--wrap);
  max-height: 400px;
  overflow: auto;
  transition: 0.3s ease;
  opacity: 0.8;
}

@media (max-width: 1199px) {
  .page-nav {
    display: none;
  }
}

.page-nav ul {
  background-color: var(--color-white);
  opacity: 0.35;
  transition: 0.2s;
  /* 	padding: 20px 0; */
}
.page-nav ul:hover {
  opacity: 1;
}

.page-nav ul li {
  padding: 4px 0;
  transition: 0.2s ease;
  cursor: pointer;
  color: var(--color-blue-200);
  font-size: 12px;
  line-height: 110%;
}
.page-nav ul li._active {
  /* 	background-color: var(--color-blue-200); */
  /* 	color: var(--color-white); */
  font-weight: 700;
}

.faculty-info__wrapper {
  width: 100%;
}
@media (min-width: 900px) {
  .faculty-info__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media (min-width: 900px) {
  .faculty-info__wrapper > * + * {
    margin-left: 3rem;
  }
}
@media (max-width: 899px) {
  .faculty-info__wrapper > * + * {
    margin-top: 2rem;
  }
}
.faculty-info__logo {
  max-width: 13.75rem;
  width: 100%;
}
@media (max-width: 899px) {
  .faculty-info__logo {
    margin: 0 auto;
  }
}
.faculty-info__logo img {
  width: 100%;
  height: auto;
}
@media (min-width: 900px) {
  .faculty-info__description {
    max-width: 65.765%;
  }
}

.faculty-compound__title__container {
  border-bottom: 1px solid var(--color-grey-050);
  padding-bottom: 0.5rem;
  margin-bottom: 1.875rem;
}
.faculty-compound__title {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  line-height: 116%;
  font-weight: 400;
  color: var(--color-blue-200);
}
@media (min-width: 1200px) {
  .faculty-compound__title {
    font-size: 1.375rem;
  }
}
@media (min-width: 1200px) and (min-width: 1540px) {
  .faculty-compound__title {
    font-size: 1.5rem;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .faculty-compound__title {
    font-size: 1.375rem;
  }
}
@media (max-width: 899px) {
  .faculty-compound__title {
    font-size: 1.25rem;
  }
}
.faculty-compound-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  row-gap: 1.875rem;
}
@media (min-width: 1200px) and (min-width: 1350px) {
  .faculty-compound-list {
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) and (max-width: 1620px) {
  .faculty-compound-list {
    -webkit-column-gap: 2.625rem;
    -moz-column-gap: 2.625rem;
    column-gap: 2.625rem;
  }
}
@media (min-width: 1200px) and (min-width: 1350px) {
  .faculty-compound-list
    > .faculty-compound-list__item
    + .faculty-compound-list__item:nth-child(2) {
    border-top: unset;
    padding-top: unset;
  }
}
.faculty-compound-list
  > .faculty-compound-list__item
  + .faculty-compound-list__item {
  border-top: 1px solid var(--color-grey-050);
  padding-top: 1.875rem;
}
@media (min-width: 1200px) and (min-width: 1620px) {
  .faculty-compound-list__item {
    margin-right: 4.0625rem;
  }
}

.faculty-compound-list._department:not(._active)
  .faculty-compound-list__item:not(:first-child) {
  display: none;
}
.faculty-compound-list__more {
  grid-column-start: 1;
  width: fit-content;
}
.faculty-compound-list__more:not(._active) .less {
  display: none;
}
.faculty-compound-list__more._active .more {
  display: none;
}

.faculty-worker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-weight: 400;
  line-height: 140%;
  color: var(--color-grey-300);
}
.faculty-worker.ai-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (min-width: 900px) {
  .faculty-worker {
    font-size: 0.875rem;
  }
}
@media (max-width: 899px) {
  .faculty-worker {
    font-size: 0.75rem;
  }
}
@media (min-width: 900px) {
  .faculty-worker > * + * {
    margin-left: 2rem;
  }
}
@media (max-width: 899px) {
  .faculty-worker > * + * {
    margin-left: 1.5rem;
  }
}
.faculty-worker__img {
  position: relative;
  display: block;
  width: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 50%;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  overflow: hidden;
}
@media (min-width: 1200px) {
  .faculty-worker__img {
    max-width: 7.5rem;
  }
}
@media (min-width: 1200px) and (min-width: 1620px) {
  .faculty-worker__img {
    max-width: 10rem;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .faculty-worker__img {
    max-width: 7.5rem;
  }
}
@media (max-width: 899px) {
  .faculty-worker__img {
    max-width: 5rem;
  }
}
.faculty-worker__img__container {
  display: block;
  padding-top: 100%;
}
.faculty-worker__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.faculty-worker__info > * + * {
  margin-top: 0.625rem;
}
.faculty-worker__link {
  position: relative;
  display: block;
  color: var(--color-blue-200);
}
.faculty-worker__title {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  line-height: 116%;
  font-weight: 400;
  text-decoration-color: var(--color-blue-200);
  text-underline-offset: 0.375rem;
}
@media (min-width: 1200px) {
  .faculty-worker__title {
    font-size: 1.125rem;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .faculty-worker__title {
    font-size: 1rem;
  }
}
@media (max-width: 899px) {
  .faculty-worker__title {
    font-size: 1rem;
  }
}
html:not(.v-mobile) .faculty-worker__link:hover .faculty-worker__title {
  text-decoration: underline;
}

.faculty-worker__link:focus-visible .faculty-worker__title {
  text-decoration: underline;
}

.faculty-worker-details {
  margin-top: 1.25rem;
}
.faculty-worker-details > * + * {
  margin-top: 0.9375rem;
}
.faculty-worker-details__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.faculty-worker-details__item > * + * {
  margin-left: 0.625rem;
}
.faculty-worker-details__name {
  width: 100%;
  max-width: 4.5rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.faculty-worker-details__value {
  /* 	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	word-break: break-word; */
  color: var(--color-black);
}
/* @media (min-width: 1200px) and (min-width: 1700px) {
	.faculty-worker-details__value {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}
} */
.faculty-worker-details__value > * + * {
  margin-top: 0.5em;
}
@media (min-width: 1200px) and (min-width: 1700px) {
  .faculty-worker-details__value > * + * {
    margin-top: unset;
    margin-left: 0.25em;
  }
}
.faculty-worker-details__value > *::after {
  content: ";";
  margin-left: -0.15em;
}
.faculty-worker-details__value > *:last-child::after {
  display: none;
}
.faculty-worker-details__value > a {
  color: inherit;
  word-break: break-word;
  text-decoration-color: var(--color-blue-200);
  text-underline-offset: 0.1875rem;
}
html:not(.v-mobile) .faculty-worker-details__value > a:hover {
  text-decoration: underline;
}

.faculty-worker-details__value > a:focus-visible {
  text-decoration: underline;
}

.faculty-structure__container {
  padding: 0 var(--wrap-1);
}
.faculty-structure._grey .faculty-structure__container {
  padding: 0 var(--wrap);
}
@media (max-width: 1199px) {
  .faculty-structure._grey .faculty-structure__container {
    padding: 0;
  }
}
.faculty-structure__container.col_2 {
  display: grid;
  gap: 3.25rem;
}

@media (min-width: 900px) {
  .faculty-structure__container.col_2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}

.faculty-structure._grey .faculty-structure__wrapper {
  background-color: var(--color-grey-010);
}
@media (min-width: 900px) {
  .faculty-structure._grey .faculty-structure__wrapper {
    padding: 3.75rem var(--wrap-colored);
  }
}
@media (max-width: 899px) {
  .faculty-structure._grey .faculty-structure__wrapper {
    padding: 1.5rem var(--wrap-colored);
  }
}
.faculty-structure__image {
  width: 100%;
  height: 100%;
  max-height: 90px;
  object-fit: cover;
}
.faculty-structure__title__container {
  border-bottom: 1px solid var(--color-grey-050);
  padding-bottom: 0.5rem;
  margin-bottom: 1.275rem;
}
.faculty-structure__title {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  line-height: 116%;
  font-weight: 400;
  color: var(--color-blue-200);
}
@media (min-width: 1200px) {
  .faculty-structure__title {
    font-size: 1.375rem;
  }
}
@media (min-width: 1200px) and (min-width: 1540px) {
  .faculty-structure__title {
    font-size: 1.5rem;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .faculty-structure__title {
    font-size: 1.375rem;
  }
}
@media (max-width: 899px) {
  .faculty-structure__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 900px) {
  .faculty-structure-list {
    max-width: 26.25rem;
  }
}
@media (min-width: 900px) {
  .faculty-structure-list > * + * {
    margin-top: 1.625rem;
  }
}
@media (max-width: 899px) {
  .faculty-structure-list > * + * {
    margin-top: 1.25rem;
  }
}
.faculty-structure-list__item > * + * {
  margin-top: 0.625rem;
}
.faculty-structure-list__link {
  color: var(--color-blue-200);
}
.faculty-structure-list__title {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  line-height: 116%;
  font-weight: 400;
  color: inherit;
  text-decoration-color: var(--color-blue-200);
  text-underline-offset: 0.375rem;
}
@media (min-width: 1200px) {
  .faculty-structure-list__title {
    font-size: 1.125rem;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .faculty-structure-list__title {
    font-size: 1rem;
  }
}
@media (max-width: 899px) {
  .faculty-structure-list__title {
    font-size: 1rem;
  }
}
html:not(.v-mobile)
  .faculty-structure-list__link:hover
  .faculty-structure-list__title {
  text-decoration: underline;
}

.faculty-structure-list__link:focus-visible .faculty-structure-list__title {
  text-decoration: underline;
}

.faculty-structure-list__additional {
  font-weight: 400;
  line-height: 140%;
  color: var(--color-grey-300);
}
@media (min-width: 900px) {
  .faculty-structure-list__additional {
    padding-left: 2rem;
    font-size: 1rem;
  }
}
@media (max-width: 899px) {
  .faculty-structure-list__additional {
    padding-left: 1.5rem;
    font-size: 0.75rem;
  }
}
.faculty-structure-list__additional > * + * {
  margin-top: 0.625rem;
}
@media (min-width: 900px) {
  .faculty-structure-list__description > * + * {
    margin-top: 0.25em;
  }
}
@media (max-width: 899px) {
  .faculty-structure-list__description > * + * {
    margin-top: 0.5em;
  }
}

.faculty-structure .typography table {
  width: 100%;
  margin: 0;
}

.worker-structure__container {
  padding: 0 var(--wrap-1);
}
.worker-structure._grey .worker-structure__container {
  padding: 0 var(--wrap);
}
@media (max-width: 1199px) {
  .worker-structure._grey .worker-structure__container {
    padding: 0;
  }
}

.worker-structure._grey .worker-structure__wrapper {
  background-color: var(--color-grey-010);
}
@media (min-width: 900px) {
  .worker-structure._grey .worker-structure__wrapper {
    padding: 3.75rem var(--wrap-colored);
  }
}
@media (max-width: 899px) {
  .worker-structure._grey .worker-structure__wrapper {
    padding: 1.5rem var(--wrap-colored);
  }
}

.worker-structure__title__container {
  border-bottom: 1px solid var(--color-grey-050);
  padding-bottom: 0.5rem;
  margin-bottom: 1.875rem;
}
.worker-structure__title {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  line-height: 116%;
  font-weight: 400;
  color: var(--color-blue-200);
}
@media (min-width: 1200px) {
  .worker-structure__title {
    font-size: 1.375rem;
  }
}
@media (min-width: 1200px) and (min-width: 1540px) {
  .worker-structure__title {
    font-size: 1.5rem;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .worker-structure__title {
    font-size: 1.375rem;
  }
}
@media (max-width: 899px) {
  .worker-structure__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .worker-structure-list {
    max-width: 82.522%;
    margin-left: 3.75rem;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .worker-structure-list {
    margin-left: 3.75rem;
  }
}
@media (max-width: 899px) {
  .worker-structure-list {
    margin-left: 1.25rem;
  }
}
.worker-structure-list._marked {
  list-style-type: disc;
  list-style-position: outside;
}
.worker-structure-list._numeric {
  list-style-type: decimal;
  list-style-position: outside;
}
.worker-structure-list > * + * {
  margin-top: 1.25rem;
}
.worker-structure-list__item {
  color: var(--color-black);
}
.worker-structure-list._marked .worker-structure-list__item::marker {
  color: var(--color-green-100);
}

.worker-structure-list._numeric .worker-structure-list__item {
  padding-left: 0.875rem;
}
.worker-structure-list._numeric .worker-structure-list__item::marker {
  color: var(--color-grey-020);
}

.worker-structure-list__link {
  color: var(--color-blue-200);
}
.worker-structure-list__link > * {
  text-underline-offset: 0.375rem;
}
html:not(.v-mobile) .worker-structure-list__link:hover > * {
  text-decoration: underline;
}

.worker-structure-list__link:focus-visible > * {
  text-decoration: underline;
}

.worker-structure-list__title {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  line-height: 116%;
  font-weight: 400;
  color: inherit;
}
@media (min-width: 1200px) {
  .worker-structure-list__title {
    font-size: 1.125rem;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .worker-structure-list__title {
    font-size: 1rem;
  }
}
@media (max-width: 899px) {
  .worker-structure-list__title {
    font-size: 1rem;
  }
}
.worker-structure-list__title span,
.worker-structure-list__title span a {
  color: var(--color-grey-300);
}
.worker-structure-list__title span a:hover {
  text-decoration: underline;
}
.worker-structure-list__additional {
  margin-top: 0.625rem;
  font-weight: 400;
  line-height: 140%;
  color: var(--color-grey-300);
}
@media (min-width: 1200px) {
  .worker-structure-list__additional {
    padding-left: 3.875rem;
    font-size: 1rem;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .worker-structure-list__additional {
    padding-left: 2.625rem;
    font-size: 1rem;
  }
}
@media (max-width: 899px) {
  .worker-structure-list__additional {
    padding-left: 0.75rem;
    font-size: 0.75rem;
  }
}
@media (min-width: 900px) {
  .worker-structure-list__additional > * + * {
    margin-top: 0.25em;
  }
}
@media (max-width: 899px) {
  .worker-structure-list__additional > * + * {
    margin-top: 0.5em;
  }
}
.worker-structure-list__description {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  line-height: 116%;
  font-weight: 400;
}
@media (min-width: 1200px) {
  .worker-structure-list__description {
    font-size: 1.125rem;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .worker-structure-list__description {
    font-size: 1rem;
  }
}
@media (max-width: 899px) {
  .worker-structure-list__description {
    font-size: 1rem;
  }
}

.faculty-typography__wrapper > * + * {
  margin-top: 1.75rem;
}
.worker-profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-weight: 400;
  line-height: 140%;
  color: var(--color-grey-300);
}
@media (min-width: 1200px) {
  .worker-profile {
    font-size: 1.125rem;
  }
}
@media (min-width: 1200px) and (min-width: 1600px) {
  .worker-profile {
    max-width: 89.639%;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .worker-profile {
    font-size: 1rem;
  }
}
@media (max-width: 899px) {
  .worker-profile {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 0.75rem;
  }
}
@media (min-width: 900px) {
  .worker-profile > * + * {
    margin-left: 2rem;
  }
}
@media (max-width: 899px) {
  .worker-profile > * + * {
    margin-top: 1.5rem;
  }
}
.worker-profile__img {
  width: 100%;
}
@media (min-width: 900px) {
  .worker-profile__img {
    max-width: 35.17%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}
@media (max-width: 899px) {
  .worker-profile__img {
    max-width: 70%;
  }
}
.worker-profile__img img {
  width: 100%;
  height: auto;
}
@media (min-width: 900px) {
  .worker-profile-details > * + * {
    margin-top: 1.75rem;
  }
}
@media (max-width: 899px) {
  .worker-profile-details > * + * {
    margin-top: 1.125rem;
  }
}
.worker-profile-details__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 900px) {
  .worker-profile-details__item > * + * {
    margin-left: 2.25rem;
  }
}
@media (max-width: 899px) {
  .worker-profile-details__item > * + * {
    margin-left: 0.5rem;
  }
}
.worker-profile-details__name {
  width: 100%;
  max-width: 9.6875rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 899px) and (max-width: 550px) {
  .worker-profile-details__name {
    max-width: 5.8125rem;
  }
}
.worker-contacts .worker-profile-details__name {
  max-width: 10.375rem;
}
@media (max-width: 899px) and (max-width: 550px) {
  .worker-contacts .worker-profile-details__name {
    max-width: 5rem;
  }
}

.worker-profile-details__value {
  color: var(--color-black);
}
.worker-profile-details__value p > a {
  color: var(--color-blue-100);
  text-decoration: underline;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
html:not(.v-mobile) .worker-profile-details__value p > a:hover {
  color: var(--color-blue-200);
}

.worker-profile-details__value p > a:focus-visible {
  color: var(--color-blue-200);
}
.worker-profile-details__value > a {
  color: inherit;
  word-break: break-word;
  text-decoration-color: var(--color-blue-200);
  text-underline-offset: 0.1875rem;
}
html:not(.v-mobile) .worker-profile-details__value > a:hover {
  text-decoration: underline;
}

.worker-profile-details__value > a:focus-visible {
  text-decoration: underline;
}
.worker-contacts .worker-profile-details__value {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: var(--color-black);
  word-break: break-word;
}
@media (max-width: 899px) and (max-width: 550px) {
  .worker-contacts .worker-profile-details__value {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.worker-contacts .worker-profile-details__value > * + * {
  margin-left: 0.25em;
}
@media (max-width: 899px) and (max-width: 550px) {
  .worker-contacts .worker-profile-details__value > * + * {
    margin-left: unset;
    margin-top: 0.5em;
  }
}
.worker-contacts .worker-profile-details__value > *::after {
  content: ";";
  margin-left: -0.15em;
}
.worker-contacts .worker-profile-details__value > *:last-child::after {
  display: none;
}

.applicants._grey .applicants__container {
  padding: 0 var(--wrap);
}
@media (max-width: 1199px) {
  .applicants._grey .applicants__container {
    padding: 0;
  }
}

.applicants._grey .applicants__wrapper {
  background-color: var(--color-grey-010);
}
@media (min-width: 1200px) {
  .applicants._grey .applicants__wrapper {
    padding: 6.875rem var(--wrap-colored);
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .applicants._grey .applicants__wrapper {
    padding: 3.25rem var(--wrap-colored);
  }
}
@media (max-width: 899px) {
  .applicants._grey .applicants__wrapper {
    padding: 1.5rem var(--wrap-colored);
  }
}

.applicants__header {
  margin-bottom: 1.875rem;
}
.applicants-info {
  width: 100%;
}
@media (min-width: 900px) {
  .applicants-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media (min-width: 900px) {
  .applicants-info > * + * {
    margin-left: 3.125rem;
  }
}
@media (max-width: 899px) {
  .applicants-info > * + * {
    margin-top: 1.5rem;
  }
}
.applicants-info__item {
  width: 100%;
  border-top: 1px solid var(--color-grey-050);
}
@media (min-width: 1200px) {
  .applicants-info__item {
    padding-top: 1.875rem;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .applicants-info__item {
    max-width: 40%;
    padding-top: 1.875rem;
  }
}
@media (max-width: 899px) {
  .applicants-info__item {
    padding-top: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .applicants-info__item:first-child {
    max-width: 31.351%;
  }
}
@media (min-width: 1200px) {
  .applicants-info__item:last-child {
    max-width: 40%;
  }
}
@media (min-width: 900px) {
  .applicants-info__item > * + * {
    margin-top: 1.875rem;
  }
}
@media (max-width: 899px) {
  .applicants-info__item > * + * {
    margin-top: 1.5rem;
  }
}

.applicants-info__image {
  width: 100%;
  height: 100%;
  max-height: 100px;
  object-fit: cover;
}
.applicants-info__title__container._image {
  display: flex;
  align-items: center;
  gap: 10px;
}
.applicants-info__title__container._image img {
  width: 50px;
  height: 100%;
  max-height: 90px;
  object-fit: cover;
}
.applicants-info__title {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  line-height: 116%;
  font-weight: 400;
  color: var(--color-blue-200);
}
@media (min-width: 1200px) {
  .applicants-info__title {
    font-size: 1.375rem;
  }
}
@media (min-width: 1200px) and (min-width: 1540px) {
  .applicants-info__title {
    font-size: 1.5rem;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .applicants-info__title {
    font-size: 1.375rem;
  }
}
@media (max-width: 899px) {
  .applicants-info__title {
    font-size: 1.25rem;
  }
}
.applicants-info__title a {
  color: inherit;
  text-decoration: none;
}
.applicants-info__item > ul,
.applicants-list {
  line-height: 116%;
  font-weight: 400;
  color: var(--color-blue-100);
}
@media (min-width: 1200px) {
  .applicants-info__item > ul,
  .applicants-list {
    font-size: 1.125rem;
  }
}
.applicants-info__item > ul ul,
.applicants-list._additional {
  margin-left: 1.5rem;
  list-style-position: outside;
  list-style-type: disc;
}
.applicants-info__item ul > * + *,
.applicants-list > * + * {
  margin-top: 1rem;
}
.applicants-info__item ul li > * + *,
.applicants-list li > * + * {
  margin-top: 1rem;
}
.applicants-info__item > ul ul li,
.applicants-list._additional li {
  padding-left: 0.25em;
}
.applicants-info__item > ul ul li::marker,
.applicants-list._additional li::marker {
  content: "—";
}

.applicants-info__item ul li a,
.applicants-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  color: var(--color-blue-100);
  text-underline-offset: 0.1875rem;
}
html:not(.v-mobile) .applicants-info__item ul li a:hover,
html:not(.v-mobile) .applicants-list__item:hover {
  color: var(--color-blue-200);
}

.applicants-info__item ul li a:focus-visible,
.applicants-list__item:focus-visible {
  text-decoration: underline;
  color: var(--color-blue-200);
}
.applicants-info__item ul li strong {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
.applicants-info__item ul li strong:after,
.applicants-list__item._new::after {
  content: "new";
  margin-left: 0.25em;
  padding: 0.125rem 0.375rem;
  background-color: var(--color-highlight);
  -webkit-transform: translateY(-25%);
  transform: translateY(-25%);
  text-decoration: none;
  font-size: 0.75rem;
  line-height: 100%;
  color: var(--color-black);
}

html:not(.v-mobile) .applicants-info__item a:hover,
html:not(.v-mobile) .applicants-list__item:hover .applicants-list__text {
  text-decoration: underline;
}

@media (min-width: 900px) {
  .news-page__main {
    margin-top: 1.875rem;
  }
}
.news-page__button__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (min-width: 900px) {
  .news-page__button__container {
    margin-top: 3.125rem;
  }
}
@media (max-width: 899px) {
  .news-page__button__container {
    margin-top: 2.5rem;
  }
}
.news-page-categories {
  display: flex;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 899px) {
  .news-page-categories {
    width: calc(100% + 2 * var(--wrap-1));
    margin-left: calc(-1 * var(--wrap-1));
  }
}
.news-page-categories__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  padding-bottom: 10px;
  width: max-content;
}
@media (max-width: 899px) {
  .news-page-categories__wrapper {
    padding: 0 var(--wrap-1);
  }
}
@media (min-width: 1200px) {
  .news-page-categories__wrapper > * + * {
    margin-left: 2.875rem;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .news-page-categories__wrapper > * + * {
    margin-left: 2rem;
  }
}
@media (max-width: 899px) {
  .news-page-categories__wrapper > * + * {
    margin-left: 1.375rem;
  }
}
.news-page-categories__item {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  font-weight: 400;
  line-height: 116%;
  color: var(--color-grey-300);
}
@media (min-width: 900px) {
  .news-page-categories__item {
    padding-bottom: 0.625rem;
    font-size: 1.5rem;
  }
}
@media (max-width: 899px) {
  .news-page-categories__item {
    padding-bottom: 0.3125rem;
    font-size: 1.125rem;
  }
}
html:not(.v-mobile) .news-page-categories__item:hover {
  color: var(--color-blue-200);
}

.news-page-categories__item:focus-visible {
  color: var(--color-blue-200);
}
.news-page-categories__item::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: currentColor;
  -webkit-transition: background 0.3s ease, -webkit-transform 0.3s ease;
  transition: background 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, background 0.3s ease;
  transition: transform 0.3s ease, background 0.3s ease,
    -webkit-transform 0.3s ease;
  -webkit-transform-origin: 0;
  transform-origin: 0;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
@media (min-width: 900px) {
  .news-page-categories__item::before {
    height: 2px;
  }
}
@media (max-width: 899px) {
  .news-page-categories__item::before {
    height: 1px;
  }
}
html:not(.v-mobile) .news-page-categories__item:hover::before {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.news-page-categories__item:focus-visible::before {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.news-page-categories__item._active::before {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.news-page-categories__item._active {
  color: var(--color-blue-200);
}
.news-page-list {
  display: -ms-grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  display: grid;
}
@media (min-width: 1200px) {
  /* .news-page-list {
    -ms-grid-columns: 1fr 1.875rem 1fr 1.875rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.125rem 1.875rem;
  } */
}
@media (min-width: 900px) and (max-width: 1199px) {
  /* .news-page-list {
    -ms-grid-columns: 1fr 1.875rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.125rem 1.875rem;
  } */
}
@media (max-width: 899px) {
  /* .news-page-list {
    width: calc(100% + 2 * var(--wrap-1));
    margin-left: calc(-1 * var(--wrap-1));
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 2.25rem;
  } */
}

.not-found__main {
  display: -ms-grid;
  display: grid;
}
@media (min-width: 1200px) {
  .not-found__main {
    -ms-grid-columns: 20.25rem 7.5rem 1fr;
    grid-template-columns: 20.25rem 1fr;
    gap: 7.5rem;
    margin-top: 3.75rem;
  }
}
@media (min-width: 1200px) and (min-width: 1600px) {
  .not-found__main {
    gap: 11.25rem;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .not-found__main {
    -ms-grid-columns: 18.125rem 6.25rem 1fr;
    grid-template-columns: 18.125rem 1fr;
    gap: 6.25rem;
    margin-top: 3.125rem;
  }
}
@media (max-width: 899px) {
  .not-found__main {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 3.125rem;
    margin-top: 1.875rem;
  }
}
@media (max-width: 899px) {
  .not-found__content {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
.not-found__subtitle {
  line-height: 116%;
  color: var(--color-blue-200);
}
@media (min-width: 900px) {
  .not-found__subtitle {
    margin-bottom: 1.875rem;
    font-size: 1.5rem;
  }
}
@media (max-width: 899px) {
  .not-found__subtitle {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
  }
}
.not-found__image {
  width: 100%;
}
.not-found__image img {
  width: 100%;
  height: auto;
}
.not-found-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  line-height: 116%;
  font-weight: 400;
  color: var(--color-black);
}
@media (min-width: 900px) {
  .not-found-list {
    gap: 1.125rem;
    font-size: 1.125rem;
  }
}
@media (max-width: 899px) {
  .not-found-list {
    gap: 0.75rem;
    font-size: 0.875rem;
  }
}
.not-found-list__item {
  position: relative;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  color: currentColor;
}
html:not(.v-mobile) .not-found-list__item:hover {
  color: var(--color-blue-200);
}

.not-found-list__item:focus-visible {
  color: var(--color-blue-200);
}
.not-found-list__item::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  right: 0;
  height: 1px;
  background-color: currentColor;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: 0;
  transform-origin: 0;
  -webkit-transition: background 0.3s ease, -webkit-transform 0.3s ease;
  transition: background 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, background 0.3s ease;
  transition: transform 0.3s ease, background 0.3s ease,
    -webkit-transform 0.3s ease;
}
html:not(.v-mobile) .not-found-list__item:hover::before {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.not-found-list__item:focus-visible::before {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.slider-img-container {
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .slider-img-container {
    max-width: 45.625rem;
  }
}
@media (max-width: 899px) {
  .slider-img-container {
    max-width: 34.375rem;
  }
}
@media (max-width: 899px) and (max-width: 600px) {
  .slider-img-container {
    max-width: unset;
  }
}

.slider-img {
  width: 100%;
}
.slider-img__content {
  position: relative;
  width: 100%;
}
.slider-img__content__container {
  padding-top: 82.191%;
}
.slider-img__content img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.event-article__typography .slider-img__content img {
  -o-object-fit: contain;
  object-fit: contain;
}

@media (min-width: 900px) {
  .slider-img-thumb {
    margin-top: 1.875rem;
  }
}
@media (max-width: 899px) {
  .slider-img-thumb {
    margin-top: 1.5rem;
  }
}
.slider-img-thumb.swiper .swiper-slide {
  opacity: 0.5;
  -webkit-transition: opacity 0.3s ease, border 0.3s ease;
  transition: opacity 0.3s ease, border 0.3s ease;
  border: 1px solid transparent;
}
.slider-img-thumb.swiper .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
  border-color: var(--color-blue-200);
}

.slider-img-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1.875rem;
}
.slider-img-controls .slider-img-pagination {
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--color-grey-200);
}
@media (min-width: 900px) {
  .slider-img-controls .slider-img-pagination {
    font-size: 1.125rem;
  }
}
@media (max-width: 899px) {
  .slider-img-controls .slider-img-pagination {
    font-size: 1rem;
  }
}
.slider-img-controls .slider-img-pagination .swiper-pagination-current {
  color: var(--color-black);
}
.slider-img-controls .slider-img-pagination .swiper-pagination-bullet {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--color-grey-020);
  opacity: 1;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.slider-img-controls
  .slider-img-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--color-blue-100);
}
.slider-img-controls .slider-img-next,
.slider-img-controls .slider-img-prev {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 1.875rem;
}
.slider-img-controls .slider-img-next svg,
.slider-img-controls .slider-img-prev svg {
  width: 100%;
  height: auto;
}
.slider-img-controls .slider-img-next svg path,
.slider-img-controls .slider-img-prev svg path {
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}
html:not(.v-mobile) .slider-img-next:hover svg path {
  fill: var(--color-blue-200);
}

html:not(.v-mobile) .slider-img-prev:hover svg path {
  fill: var(--color-blue-200);
}

.slider-img-next:focus-visible svg path {
  fill: var(--color-blue-200);
}

.slider-img-prev:focus-visible svg path {
  fill: var(--color-blue-200);
}

.slider-img-next.swiper-button-disabled svg path {
  fill: var(--color-grey-200) !important;
}

.slider-img-prev.swiper-button-disabled svg path {
  fill: var(--color-grey-200) !important;
}

@media (min-width: 900px) {
  .two-columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 900px) {
  .two-columns > * + * {
    margin-left: 1.875rem;
  }
}
@media (max-width: 899px) {
  .two-columns > * + * {
    margin-top: 1.875rem;
  }
}
@media (min-width: 900px) {
  .two-columns__item {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 50%;
  }
}
@media (max-width: 899px) {
  .two-columns__item {
    width: 100%;
  }
}

/* Page Donate */

.donate-banner {
  margin-top: 16.875rem;
}
.donate-banner__wrapper {
  background-color: var(--color-blue-200);
  padding: 3.75rem 4.375rem;
}
.donate-banner__title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 3.0625rem;
  color: var(--color-white);
  width: 40%;
}
.donate-banner__text {
  margin-top: 1.875rem;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 21px;
  color: var(--color-white);
  width: 45%;
}
.donate-banner__btn {
  margin-top: 1.875rem;
  background-color: #f8b739;
}
.donate-banner__btn a {
  padding: 17px 60px;
  font-size: 27px;
  font-weight: 500;
  line-height: 31px;
  color: var(--color-white);
}

.front {
  background-color: var(--color-grey-010);
  padding-top: 8.75rem;
  padding-bottom: 11.5625rem;
}
.front__title {
  font-size: 40px;
  font-weight: 600;
  line-height: 49px;
  text-align: center;
  color: var(--color-blue-200);
  margin-bottom: 7.1875rem;
}
.front-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.front-item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.front-item__text {
  font-size: 30px;
  font-weight: 400;
  line-height: 35px;
  color: var(--color-grey-300);
  width: 49%;
}
.front-item__img {
  text-align: right;
}
.front-item + .front-item {
  margin-top: 5.3125rem;
}

.project__title {
  font-size: 40px;
  font-weight: 600;
  line-height: 49px;
  color: var(--color-blue-200);
}
.project__text {
  margin-top: 2.5rem;
}
.project__text p {
  font-size: 30px;
  font-weight: 400;
  line-height: 35px;
  color: var(--color-grey-300);
}
.project-gallery {
  margin-top: 6.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.project-gallery__item {
  position: relative;
  padding-top: 26%;
  width: 23%;
}
.project-gallery__item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.categories-donate__title {
  font-size: 40px;
  font-weight: 600;
  line-height: 49px;
  color: var(--color-blue-200);
  text-align: center;
  margin-bottom: 2.5rem;
}
.categories-donate .categories-list {
  grid-template-columns: repeat(auto-fit, minmax(8em, 1fr));
}

.accounts {
  margin-top: 6.25rem;
}
.accounts-item {
  background-color: var(--color-grey-010);
  padding: 70px 0;
}
.accounts-item__title {
  font-size: 40px;
  font-weight: 600;
  line-height: 49px;
  color: var(--color-blue-200);
  padding-bottom: 50px;
  border-bottom: 1px solid var(--color-grey-050);
  width: 70%;
}
.accounts-item__data {
  margin-top: 3.125rem;
  width: 90%;
}
.accounts-item__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.accounts-item__row + .accounts-item__row {
  margin-top: 1.875rem;
}
.accounts-item__key {
  font-size: 30px;
  font-weight: 600;
  line-height: 42px;
  color: var(--color-grey-300);
  width: 30%;
}
.accounts-item__val {
  font-size: 30px;
  font-weight: 400;
  line-height: 42px;
  color: var(--color-grey-300);
}
.accounts-item + .accounts-item {
  margin-top: 6.25rem;
}

.laboratory-info__wrapper {
  width: 100%;
}
@media (min-width: 900px) {
  .laboratory-info__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    flex-direction: column;
  }
}
@media (min-width: 900px) {
  .laboratory-info__wrapper > * + * {
    margin-top: 1rem;
  }
}
@media (max-width: 899px) {
  .laboratory-info__wrapper > * + * {
    margin-top: 1rem;
  }
}
.laboratory-info__description {
  width: 100%;
}
.laboratory-info__description.hidden {
  display: none;
}
.laboratory-info__more {
  cursor: pointer;
}

.equipment-info__wrapper {
  width: 100%;
}
@media (min-width: 900px) {
  .equipment-info__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    flex-direction: column;
  }
}
@media (min-width: 900px) {
  .equipment-info__wrapper > * + * {
    margin-top: 1rem;
  }
}
@media (max-width: 899px) {
  .equipment-info__wrapper > * + * {
    margin-top: 1rem;
  }
}
.equipment-info__description {
  width: 100%;
}
.equipment-info__description.hidden {
  display: none;
}
.equipment-info__more {
  cursor: pointer;
}

.search {
}

.search-list {
  margin-top: 50px;
}
.search-list > * + * {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #000;
}
.search-item > * + * {
  margin-top: 10px;
}
.search-item__img {
  position: relative;
  display: block;
  width: 100%;
  min-width: 120px;
  max-width: 120px;
  max-height: 120px;
  height: 120px;
}
.search-item__img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
.search-item__title {
  font-size: 20px;
  color: var(--color-black);
}
.search-item__title a {
  font-size: 20px;
  color: var(--color-black);
}
.search-item__title:hover a {
  color: var(--color-blue-100);
  text-decoration: underline;
}

.product-price__title {
  font-weight: 500;
  font-size: 18px;
}
.product-price__value {
  font-weight: 600;
  font-size: 28px;
  margin-top: 6px;
}
.popup.popup-callback:not(._opened),
.popup.popup-product:not(._opened) {
  display: none !important;
}

._popup-callback._opened .popup__scroll,
._popup-product._opened .popup__scroll {
  transform: translate(0, 0);
}
.popup__title {
  font-size: 32px;
  line-height: 114%;
}
.popup__form {
  margin-top: 40px;
}
.popup__form form {
  display: grid;
  gap: 12px;
}
.popup__form input[type="text"],
.popup__form input[type="tel"] {
  border-bottom: 1px solid var(--color-grey-100);
  color: var(--color-white);
}
.popup__form input[type="submit"] {
  margin-top: 20px;
}

.wpcf7-response-output {
  margin: 0 !important;
  color: var(--color-white);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  align-items: center;
  justify-items: center;
  align-items: stretch;
}

.partners-grid__item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.partners-grid__item img {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
}

.partners-grid__item img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.partners-grid__item a {
  color: var(--color-blue-200);
  text-decoration: none;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%;
  height: 100%;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  line-height: 115%;
  transition: 0.3s color ease;
}

.partners-grid__item a:hover {
  color: var(--color-blue-100);
}

.dropdown__toggle {
  cursor: pointer;
  float: right;
  display: flex;
  align-items: center;
  gap: 10px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.dropdown-list {
  list-style: none;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  margin-left: 0 !important;
}

.dropdown-list._open {
  max-height: 1000px;
  opacity: 1;
  margin-top: 1rem;
}

.dropdown-list li {
  position: unset !important;
}

.dropdown__toggle svg {
  transition: transform 0.3s ease;
}

.dropdown__toggle._open svg {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
  }

  .partners-grid__item a {
    font-size: 1rem;
    max-width: 160px;
  }

  .partners-grid__item img {
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .partners-grid {
    gap: 15px;
  }

  .partners-grid__item a {
    font-size: 0.9rem;
    max-width: 140px;
  }

  .partners-grid__item img {
    max-width: 80%;
  }
}

.categories-list__logo {
  max-width: 150px;
  height: auto;
  display: block;
  margin-bottom: 5px;
  background-color: white;
  margin: 0 auto;
}

.specialities-table {
  width: 100%;
  margin: 0 auto;
}

.specialities-table td {
  padding: 8px;
  border-bottom: 1px solid #ddd;
  vertical-align: top;
}

@media (max-width: 768px) {
  .specialities-table tr {
    margin-bottom: 16px;
  }
  .specialities-table td {
    display: block;
    width: 100%;
  }

  .specialities-table td a {
    max-width: 200px;
  }
  .footer {
    margin-top: 0;
  }
}

.extras {
  width: 100%;
  padding: 20px 0;
}

.extras-lists-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}
.extras-list {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.extras-list__item {
  flex: 0 1 400px;
  max-width: 100%;
}

.categories-list__link img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
}

.categories-list__link {
  display: block;
  transition: transform 0.3s ease;
}

.categories-list__link:hover {
  transform: scale(1.1);
}

.categories-list__logo {
  max-width: 100%;
  display: block;
  transition: filter 0.3s ease, transform 0.3s ease;
}

@media (max-width: 767px) {
  .categories-list__logo {
    max-width: 150px;
  }
}

.newspapers-container {
  width: 100%;
  padding: 0 var(--wrap);
  margin: 0 auto;
  margin-top: 220px;
  margin-bottom: 40px;
  border-radius: 12px;
}

.new-breadcrumbs {
  margin-bottom: 10px;
}

@media (max-width: 1199px) {
  .newspapers-container {
    margin-top: 120px;
  }
}

.newspapers-swiper {
  margin-top: 15px;
  padding: 20px;
  background: var(--color-grey-010);
  border-radius: 12px;
}

.newspapers-slide {
  border: 3px solid var(--color-blue-100);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.newspapers-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.newspapers-slide:hover {
  transform: scale(1.05);
}

.newspapers-link {
  text-decoration: none;
  color: #0073aa;
}

.newspapers-button-next,
.newspapers-button-prev {
  color: var(--color-blue-200);
  border: 1px solid var(--color-blue-200);
  background: #fff;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.newspapers-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.newspapers-header__title {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  line-height: 116%;
  font-weight: 500;
  color: var(--color-blue-200);
}
@media (max-width: 480px) {
  .newspapers-header__title {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .newspapers-header__title {
    font-size: 1.6rem;
  }
  .newspapers-header {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}

@media (min-width: 1200px) {
  .newspapers-header__title {
    font-size: 2.4rem;
  }
}

.year-filter select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  padding: 8px 32px 8px 12px;
  font-size: 14px;
  border: 1px solid var((--color-blue-200));
  border-radius: 6px;
  background-color: #fff;
  cursor: pointer;

  font-size: 1.2rem;
  font-weight: 500;

  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6'><path fill='black' d='M0 0l5 6 5-6z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px 6px;
}
.select-button {
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0.675em 1em;
  border: 1px solid #caced1;
  border-radius: 0.25rem;
  background-color: white;
  cursor: pointer;
}

.year-arrow {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #000;
  transition: transform ease-in-out 0.3s;
}

.newspapers-label {
  font-family: "Roboto", sans-serif;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-blue-200);
  color: #fff;
  font-size: 0.85rem;
  font-weight: bold;
  padding: 2px 20px;
  margin-top: 10px;
  margin-left: 10px;
  border-radius: 10px;
  z-index: 10;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

@media (min-width: 1921px) {
  .frontpage__container,
  .news__container {
    padding: 0 50px !important;
  }
  .banner {
    margin: 0;
    margin: 1.875rem 50px;
    margin-bottom: 20px;
  }
  .department__container {
    display: flex;
    justify-content: center;
  }
  .categories-list__title {
    text-align: center;
  }
}

.article__content p {
  margin: 1em 0;
}

/* 404 Page Styles */
.error-404 {
  text-align: center;
  padding: 6rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.error-404 .page-header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.error-404 .page-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-blue-200);
  line-height: 4rem;
}

.error-404 .page-subtitle {
  font-size: 1.2rem;
  color: var(--color-grey-300);
  margin-top: 0.5rem;
}

.error-404 .return-home {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-blue-200);
  color: var(--color-white);
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.error-404 .return-home:hover {
  background-color: var(--color-blue-100);
  color: var(--color-white);
}

.news-feed__description__ellipsis {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: 2rem;
  color: var(--color-grey-300);
  opacity: 0.5;
  margin-top: 0 !important;
  transition: 0.3s color ease;
  cursor: pointer;
}

.news-feed__description a {
  color: inherit !important;
  text-decoration: none !important;
}
