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

body {
  /* Основные цвета */
  --blue500: #4370b7;
  --blue200: #d9e8ff;
  --blue250: #d9e8ff66;
  --gray500: #7f8287;
  --gray550: #7f8287a6;
  --gray600: #55595d;
  --gray300: #eceff2;
  --gray200: #d8dfea;
  --black400: #231f20;
  --black500: #212121;
  --white100: #fff;
  /* Конец основного цвета */

  --main-text-color: var(--black500);
  --main-link-text-color: var(--blue500);
  --button-bg: var(--blue500);
  --button-bg--hover: var(--white100);
  --button-bg--active: var(--blue200);
  --button-bg--disabled: var(--gray200);
  --button-text: var(--white100);
  --button-text--hover: var(--blue500);
  --button-text--active: var(--blue500);
  --button-text--disabled: var(--gray550);
  --button-border-color: var(--blue500);
  --button-border-color--hover: var(--blue500);
  --button-border-color--active: var(--blue200);
  --button-border-color--disabled: var(--gray200);
  --button-small-bg: var(--white100);
  --button-small-bg--hover: var(--blue250);
  --button-small-bg--active: var(--blue200);
  --button-small-bg--has: var(--blue200);
  --button-small-bg--disabled: var(--blue200);
  --button-small-border-color: var(--blue200);
  --button-small-border-color--hover: var(--blue200);
  --button-small-border-color--active: var(--blue200);
  --button-small-border-color--has: var(--blue500);
  --button-small-border-color--disabled: var(--gray200);
}

body {
  font-family: "Inter", sans-serif;
  color: var(--main-text-color);
  line-height: normal;
  background: #f4f8fb;
}

html:has(body.font-2) {
  font-size: clamp(28px, calc(32px + 0.15 * (100vw - 1920px)), 40px);
}

html:has(body.font-175) {
  font-size: clamp(24px, calc(28px + 0.15 * (100vw - 1920px)), 35px);
}

html:has(body.font-1) {
  font-size: clamp(14px, calc(16px + 0.15 * (100vw - 1920px)), 20px);
}

html:has(body.font-075) {
  font-size: clamp(10px, calc(12px + 0.15 * (100vw - 1920px)), 15px);
}

body.high-contrast--black,
body.high-contrast--black p,
body.high-contrast--black div:has(p) {
  background: black !important;
  --main-text-color: #fff;
  color: var(--main-text-color) !important;
}

body.high-contrast--white,
body.high-contrast--white p,
body.high-contrast--white div:has(p) {
  background: white !important;
  --main-text-color: #000;
  color: var(--main-text-color) !important;
}

body.high-contrast--blue,
body.high-contrast--blue p,
body.high-contrast--blue div:has(p) {
  background: #a7d9f7 !important;
  --main-text-color: #000;
  color: var(--main-text-color) !important;
}

body.highlight-links a {
  border-bottom: 2px dashed red;
  color: red !important;
}

body.hide-images img {
  display: none !important;
}

body.hide-images div[uk-img] {
  background-image: none;
}

body h1 {
  font-family: var(--font-family);
  font-size: 2.5rem;
  color: var(--main-text-color);
  font-weight: 500;

  grid-column: span 12;
  margin: 0;
}

h2 {
  font-family: var(--font-family);
  font-size: 1.625rem !important;
  color: var(--main-text-color);
  font-weight: 500 !important;

  grid-column: span 12;
  margin: 0;
}

h3 {
  font-family: var(--font-family);
  font-size: 1.25rem;
  color: var(--main-text-color);
  font-weight: 400;

  grid-column: span 12;
  margin: 0;
}

h4 {
  font-family: var(--font-family);
  font-size: 1.125rem;
  color: var(--main-text-color);
  font-weight: 400;

  grid-column: span 12;
  margin: 0;
}

p {
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
}

span {
  font-size: 0.875rem;
}

a {
  text-decoration: none;
  color: #231f20;
}

.page-padding {
  padding: 3.125rem 10.625rem 4.0625rem !important;
}

.page-padding .full_width .header-slider {
  margin-top: -50px;
}

.page-container-center {
  display: flex;
  justify-content: center;
}
.full_width {
  margin: 0 -170px;
}

.logo_prosvet {
  /*min-width: 9.375rem;*/
  height: 5.625rem;
  margin: 0 !important;
  /* margin-right: 3.0625rem; */
}

.header-page-padding .logo_prosvet_text {
  display: none;
  height: 60%;
}

.events_logo_mobile {
  height: 80%;
  display: none;
}

.uk-dotnav > * > * {
  border: none;
}

/* Доступность Начало */
.accessibility-panel {
  border-bottom: 2px solid black;
  height: 50px;
  padding: 0 170px 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.accessibility-settings__container {
  display: flex;
  align-items: center;
  gap: 0.75vw;
}

.accessibility-settings__block {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: 1px solid #000;
  padding-top: 4px;
  border: none;
  border-bottom: 4px solid transparent;
  /* box-sizing: border-box; */
  width: 1.75vw;
  height: 1.75vw;
  cursor: pointer;
  background: transparent;
  color: var(--main-text-color);
  font-size: 1rem;
}

.accessibility-settings__block--active {
  border-bottom-color: #000;
}

.accessibility-settings__font--12 {
  font-size: clamp(10px, calc(12px + 0.15 * (100vw - 1920px)), 15px);
}

.accessibility-settings__font--16 {
  font-size: clamp(14px, calc(16px + 0.15 * (100vw - 1920px)), 20px);
}

.accessibility-settings__font--28 {
  font-size: clamp(24px, calc(28px + 0.15 * (100vw - 1920px)), 35px);
}

.accessibility-settings__font--32 {
  font-size: clamp(28px, calc(32px + 0.15 * (100vw - 1920px)), 40px);
}

.accessibility-settings__highcontrast--white {
  background-color: #fff;
  color: #000 !important;
}
.accessibility-settings__highcontrast--blue {
  background-color: #a7d9f7;
  color: #000 !important;
}
.accessibility-settings__highcontrast--black {
  background-color: #000;
  color: #fff !important;
}

.accessibility-settings__highcontrast--black.accessibility-settings__block--active {
  border-bottom-color: #fff;
  outline-color: #fff;
}

body.high-contrast--black .accessibility-settings__block {
  outline-color: #fff;
}

body.high-contrast--black .accessibility-settings__block--active {
  border-color: #fff;
}

/* Доступность конец */

/* HEADER НАЧАЛО*/
header {
  width: 100%;
  height: clamp(3.125rem, 7.5vw, 7.5rem);
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.left-menu {
  width: 100%;
  height: 2.625rem;
  margin-bottom: 0px !important;

  display: flex;
  align-items: center;
  gap: 1.45rem !important;
}

.left-menu li {
  background: none !important;
  padding: 0 !important;
}

.left-menu > li a {
  color: #231f20 !important;
  font-weight: 400 !important;
  font-size: 0.9375rem !important;
}

.left-menu > li a:hover {
  color: #4370b7 !important;
}

.header-menu {
  min-width: 11.185rem;
  height: 1.625rem;
  margin-left: 1rem;

  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header-page-padding {
  padding: 0 10.625rem 0 0.875rem;
}

.header-logos-container {
  display: flex;
  align-items: center;
  gap: 14px;
  height: auto;
  z-index: 1;
}

.header-menu__language {
  height: 1.3125rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.header-menu__language p {
  margin: 0;
}

.icon_victory {
  position: absolute;
  z-index: 1;
  left: 2.875rem;
  height: 7.5rem;
  margin-top: 20px;
}

.accessibility-btn {
  height: 2.5rem;
  width: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
}

/* HEADER КОНЕЦ*/

/* КОМПОНЕНТ ЛИЧНОСТЬ НАЧАЛО */
.component_person_text_block {
  width: 65%;
  padding: 15px;
  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}

.person_info_line {
  background-color: #4370b7;
  width: 2px;
  height: 48px;
}

.component_person_text_block_line {
}
.component_person_text_block_line::after {
  content: "";
  position: absolute;
  left: 2.5%;
  bottom: 0;
  width: 95%;
  border-bottom: 2px solid #d9e8ff;
}

.component_person_text_block p,
.component_person_description_block p {
  color: #7f8287;
}
.component_person_description_block {
  padding: 20px;
}
/* КОМПОНЕНТ ЛИЧНОСТЬ КОНЕЦ */

/* FOOTER НАЧАЛО */

footer .h3_large {
  color: var(--main-text-color);
  font-family: "Inter", sans-serif;
}

.footer-head__container {
  width: 100%;
  height: 86px;
  background-color: #4370b7;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.footer-head__container a {
  width: 33%;
  color: #fff;
  font-weight: 500;
  font-size: 1.25rem;
}

.footer-foot__container {
  width: 100%;
  height: 549px;
}

.footer-foot__container a {
  color: var(--main-text-color);
}

.footer-foot__wrapper {
  height: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.foot-column1,
.foot-column2,
.foot-column3 {
  width: 33%;
}

.foot-column1__menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.foot-column1__menu a {
  font-weight: 400;
  font-size: 0.875rem;
}

.foot-column2 small {
  padding-top: 20px;
}

.foot-column2 a {
  font-size: 0.875rem;
  display: block;
}

.foot-column3 a {
  padding-top: 20px;
  display: block;
}

.foot-column1__menu a:hover,
.foot-column2 a:hover,
.foot-column3 a:hover {
  color: #4370b7;
  text-decoration: none;
}
/* FOOTER КОНЕЦ */

/* Хлебные крошки */
.breadcramb {
  display: flex;
  align-items: center;
  margin-top: -40px;
  margin-bottom: 10px;
}
.breadcramb > img {
  margin: 4px 10px;
}
.site-section {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #7f8287;
}
.site-section:last-child {
  color: #4370b7;
}
/* Конец крошкам */

.displayN {
  display: none !important;
}

/* Адаптив начало */

@media screen and (max-width: 1440px) {
  body h1 {
    font-size: 1.625rem;
  }

  body h2 {
    font-size: 1.5rem;
  }

  body h3{
    font-size: 1.25rem;
  }

  body .page-padding {
    padding: 3.125rem 1.125rem 4.0625rem !important;
  }

  .wrapper{
    gap: 40px 0;
  }

  .full_width {
    margin: 0 -1.125rem;
  }

  .header-page-padding {
    padding: 0 1.125rem !important;
  }

  .header-page-padding .logo_prosvet_text {
    display: block;
  }

  .header-logos-container {
    height: 100%;
  }

  .header-logos-container img {
    height: 80%;
  }

  #multimenu-btn {
    margin-right: 0px;
  }

  .events_logo_mobile {
    display: block;
  }

  .icon_victory__container {
    display: none;
  }
}

@media screen and (max-width: 768px) {
}

@media screen and (max-width: 480px) {
}

/* Адаптив конец */
