

/* Start:/local/templates/tmh_new/styles.css?177124461132467*/
@font-face {
  font-family: "Golos Text";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/Golos/GolosText-Regular.woff2") format("woff2"),
    url("/assets/fonts/Golos/GolosText-Regular.ttf") format("ttf");
}
@font-face {
  font-family: "Golos Text";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/Golos/GolosText-Medium.woff2") format("woff2"),
    url("/assets/fonts/Golos/GolosText-Medium.ttf") format("ttf");
}
@font-face {
  font-family: "Golos Text";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/Golos/GolosText-SemiBold.woff2") format("woff2"),
    url("/assets/fonts/Golos/GolosText-SemiBold.ttf") format("ttf");
}
@font-face {
  font-family: "Golos Text";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/Golos/GolosText-Bold.woff2") format("woff2"),
    url("/assets/fonts/Golos/GolosText-Bold.ttf") format("ttf");
}
@font-face {
  font-family: "Golos Text";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/assets/fonts/Golos/GolosText-ExtraBold.woff2") format("woff2"),
    url("/assets/fonts/Golos/GolosText-ExtraBold.ttf") format("ttf");
}
@font-face {
  font-family: "Golos Text";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("/assets/fonts/Golos/GolosText-Black.woff2") format("woff2"),
    url("/assets/fonts/Golos/GolosText-Black.ttf") format("ttf");
}
@import url(/assets/css/normalize.css);

:root {
  --main-blue: #00509d;
  --main-dark-blue: #1f3464;
  --main-white-blue: #6dc8f2;
  --sec-gray-blue: #e8f6fe;
  --sec-dark-gray-blue: #84a1c8;
  --sec-black: #21252e;
  --g-dark-gray: #8c98a3;
  --g-gray: #cccccc;
  --g-light-gray: #e8ebf0;
  --error: #ff4e4e;
  --main-very-dark-blue: #141F28;
}

body {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  font-family: "Golos Text", Arial, Helvetica, sans-serif;
  color: var(--sec-black);
  margin: 0;
  padding: 0;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.body::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 1px;
  height: 1px;
  z-index: -1;
  background-image: url(/assets/img/ui/arrow_left.svg),
    url(/assets/img/ui/arrow_left_dark.svg),
    url(/assets/img/ui/arrow_left_white.svg),
    url(/assets/img/ui/cross_white.svg),
    url(/assets/img/ui/arrow_left_dark_grey_blue.svg),
    url(/assets/img/ui/arrow_left_white_blue.svg),
    url(/assets/img/ui/arrow_down_black.svg),
    url(/assets/img/ui/arrow_up_black.svg),
    url(/assets//img/ui/burger_close.svg), url(/assets/img/ui/cross_white.svg),
    url(/assets/img/ui/arrow_up_small.svg),
    url(/assets/img/ui/vk_d-blue_hover.svg),
    url(/assets/img/ui/wa_d-blue_hover.svg),
    url(/assets/img/ui/tg_d-blue_hover.svg);
}

/* TYPO */

h1,
h2,
h3,
p,
li {
  margin: 0;
}

h1 {
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
}

h2 {
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
}

h3 {
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
}

p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

hr {
  width: 100%;
  background-color: var(--g-gray);
  height: 0;
  margin: 0;
  border: none;
  border-bottom: 1px solid var(--g-gray);
  box-sizing: border-box;
}

/* BUTTONS AND LINKS */

.button {
  background-color: var(--main-blue);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  padding: 10px 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid transparent;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  color: white;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  display: inline-block;
  cursor: pointer;
  min-width: 125px;
  text-decoration: none;
  z-index: 1;
}

.button:hover {
  border: 1px solid var(--main-blue);
  background-color: white;
  color: var(--sec-black);
}

.button_transparent-white {
  background-color: unset;
  color: white;
  border: 1px solid white;
}

.button_transparent-white:hover {
  background-color: white;
  color: var(--main-dark-blue);
  border: 1px solid var(--main-dark-blue);
}

.button_white-blue {
  background-color: var(--main-white-blue);
  color: var(--sec-black);
}

.button_white-blue:hover {
  background-color: var(--main-blue);
  color: white;
  border: 1px solid transparent;
}

.button_white {
  background-color: white;
  color: var(--main-dark-blue);
  border: 1px solid var(--main-dark-blue);
}

.button_white:hover {
  background-color: var(--main-blue);
  color: white;
  border: 1px solid transparent;
}

.button_blue {
  background-color: var(--main-blue);
  color: white;
}

.button_blue:hover {
  background-color: white;
  color: var(--main-dark-blue);
  border: 1px solid var(--main-dark-blue);
}

.study__content .button_white {
  background-color: #6DC8F2;
  color: #00509D;
  border: 1px solid #6DC8F2;
}

.study__content .button_white:hover {
  background-color: var(--main-blue);
  color: white;
  border: 1px solid transparent;
}

.arrow {
  display: inline-block;
  width: 44px;
  height: 44px;
  background-color: transparent;
  border: 1px solid var(--main-blue);
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-image: url(/assets/img/ui/arrow_left.svg);
  background-position: center;
  background-size: 24px 24px;
  background-repeat: no-repeat;
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.arrow.disabled {
  opacity: 0.5;
  cursor: default;
}

.arrow_right {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.arrow_dark {
  border: 1px solid var(--main-dark-blue);
  background-image: url(/assets/img/ui/arrow_left_dark.svg);
}

.arrow:not(.disabled):hover {
  border: 1px solid white;
  background-color: var(--main-blue);
  background-image: url(/assets/img/ui/arrow_left_white.svg);
}

.arrow_blue {
  border: 1px solid white;
  background-image: url(/assets/img/ui/arrow_left_white.svg);
  background-color: var(--main-blue);
  opacity: .8;
}
.arrow_blue:not(.disabled):hover {
  background-color: var(--main-dark-blue);
}

.arrow_dark:hover {
  border: 1px solid white;
  background-color: var(--main-dark-blue);
  background-image: url(/assets/img/ui/arrow_left_white.svg);
}

.arrow_white {
  border: 1px solid white;
  background-color: transparent;
  background-image: url(/assets/img/ui/arrow_left_white.svg);
}

.arrow_white:hover {
  border: 1px solid white;
  background-color: var(--main-blue);
  background-image: url(/assets/img/ui/arrow_left_white.svg);
}

a {
  color: var(--main-blue);
  text-decoration: underline;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

a:hover {
  color: var(--main-dark-blue);
}

a:disabled {
  color: var(--g-gray);
  cursor: default;
  pointer-events: none;
}

.breadcrumbs__link {
  text-decoration: none;
}

.breadcrumbs__link:hover {
  text-decoration: underline;
}

.breadcrumbs__link_disabled {
  color: var(--g-gray);
  cursor: default;
  pointer-events: none;
}

.breadcrumbs__divider {
  color: var(--g-gray);
}

.tag-item {
  display: inline-block;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  padding: 3px 8px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: var(--g-light-gray);
  cursor: pointer;
  text-decoration: none;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  white-space: nowrap;
  color: var(--sec-black);
}

.tag-item:hover {
  background-color: var(--main-blue);
  color: white;
}

.tag-item_active {
  background-color: var(--main-blue);
  color: white;
  position: relative;
  padding-right: 28px;
}

.tag-item_active:hover {
  background-color: var(--main-dark-blue);
}

.tag-item_active::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: url(/assets/img/ui/cross_white.svg) center/contain no-repeat;
  right: 6px;
  top: 50%;
  -webkit-transform: rotate(0) translateY(-50%);
  -ms-transform: rotate(0) translateY(-50%);
  transform: rotate(0) translateY(-50%);
}

.all-link {
  display: inline-block;
  position: relative;
  color: var(--sec-dark-gray-blue);
  padding-right: 28px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  cursor: pointer;
  width: fit-content;
}

.all-link:hover {
  color: var(--main-white-blue);
}

.all-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  width: 20px;
  height: 20px;
  background-image: url(/assets/img/ui/arrow_left_dark_grey_blue.svg);
  background-size: contain;
  background-position: bottom center;
  background-repeat: no-repeat;
}

.all-link:hover::after {
  background-image: url(/assets/img/ui/arrow_left_white_blue.svg);
}

.more-link {
  display: inline-block;
  position: relative;
  padding-right: 40px;
  text-decoration: none;
  font-size: 16px;
  line-height: 24px;
  color: var(--sec-black);
  cursor: pointer;
  white-space: nowrap;
}

.more-link::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  top: 0;
  right: 0;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: var(--main-blue);
  background-image: url(/assets/img/ui/arrow_left_white.svg);
  background-size: 16px 16px;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.more-link:hover::after {
  background-color: var(--main-dark-blue);
}

.more-link_light {
  color: white;
}

.more-link_light:hover {
  color: white;
}

.more-link_light::after {
  background-color: white;
  background-image: url(/assets/img/ui/arrow_left_dark.svg);
}

.more-link_light:hover::after {
  background-color: var(--sec-gray-blue);
  background-image: url(/assets/img/ui/arrow_left_dark.svg);
}

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

.file__link {
  display: inline-block;
  padding-left: 32px;
  position: relative;
  height: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.file__link::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  top: 0;
  left: 0;
  background-image: url(/assets/img/ui/file_icon.svg);
  background-size: 24px 24px;
  background-position: center;
  background-repeat: no-repeat;
}

.file__size {
  padding: 3px 8px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  font-size: 12px;
  line-height: 16px;
  color: white;
  background-color: var(--main-blue);
}

.file__link_size-md {
  color: var(--main-blue);
  font-size: 16px;
  line-height: 24px;
}

@media screen and (min-width: 1024px) {
  .file__link_size-md {
    color: var(--main-blue);
    font-size: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .file__size {
    padding: 4px 12px;
    font-size: 16px;
    line-height: 24px;
  }
}

@media screen and (min-width: 1280px) {
  .all-link {
    font-size: 20px;
    line-height: 25px;
    padding-right: 32px;
  }
  .all-link::after {
    bottom: 0;
    width: 24px;
    height: 24px;
  }
}

/* TEXT FIELDS */

.icon-text {
  display: inline-block;
  padding-left: 24px;
  position: relative;
  height: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--main-blue);
  white-space: nowrap;
}

.icon-text::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  background-size: 16px 16px;
  background-position: center;
  background-repeat: no-repeat;
}

.icon-text_calendar::after {
  background-image: url(/assets/img/ui/calendar.svg);
}

.icon-text_clock::after {
  background-image: url(/assets/img/ui/clock.svg);
}

.icon-text_online::after {
  background-image: url(/assets/img/ui/monitor.svg);
}

.icon-text_offline::after {
  background-image: url(/assets/img/ui/location.svg);
}

.chips {
  font-size: 12px;
  line-height: 16px;
  padding: 3px 8px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  color: white;
  background-color: transparent;
  border: 1px solid var(--g-dark-gray);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  margin-bottom: 16px;
}

.chips_white {
  color: var(--sec-black);
  background-color: white;
  border: 1px solid var(--sec-dark-gray-blue);
}

.chips_trans {
  color: var(--sec-black);
  background-color: transparent;
  border: 1px solid var(--sec-dark-gray-blue);
}

.chips_blue {
  background-color: var(--main-blue);
  border: 1px solid transparent;
}

.chips_dark-blue {
  background-color: var(--main-dark-blue);
  border: 1px solid transparent;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

ul,
ol {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

.ul-marked li,
.item-detail__text-block ul li,
.admin-editor ul li {
  display: block;
  background: url(/assets/img/ui/marker.svg) 0 8px no-repeat;
  background-size: 9px 9px;
  padding-left: 20px;
  font-size: 18px;
  line-height: 26px;
  color: var(--sec-black);
}

ol {
  padding: 0;
  counter-reset: item;
  list-style-type: none;
}
ol li {
  display: block;
  font-size: 18px;
  line-height: 26px;
}
ol li:before {
  content: counter(item) "  ";
  counter-increment: item;
  color: var(--main-blue);
  margin-right: 8px;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
}

.media-tag {
  background-image: url(/assets/img/ui/photo_icon_white.svg);
  background-color: var(--main-blue);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 32px 32px;
  width: 48px;
  height: 48px;
  -webkit-border-radius: 12px;
  border-radius: 12px;
}

.media-tag_video {
  background-image: url(/assets/img/ui/video_icon_white.svg);
}

.social-service {
  background-image: url(/assets/img/ui/photo_icon_white.svg);
  background-color: var(--main-blue);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 32px 32px;
  width: 48px;
  height: 48px;
  -webkit-border-radius: 12px;
  border-radius: 12px;
}

.social-service_vk {
  background-image: url(/assets/img/ui/vk.svg);
}

.social-service_wa {
  background-image: url(/assets/img/ui/wa.svg);
}

.social-service_tg {
  background-image: url(/assets/img/ui/tg.svg);
}

.circle-icon {
  background-color: var(--main-blue);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 32px 32px;
  width: 60px;
  height: 60px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.circle-icon_vk {
  background-image: url(/assets/img/ui/vk.svg);
}

/* INPUTS */

.form__fieldset {
  border: 0;
  padding: 0;
  background-color: var(--main-blue);
  padding: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.form__input-wrapper {
  position: relative;
}

.form__captcha-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form__captcha-wrapper .form__input-wrapper {
  width: 100%;
}

.form__input-wrapper_textarea {
  position: relative;
  padding-top: 31px;
}

.form__input-wrapper_textarea::before {
  content: "";
  position: absolute;
  top: 0;
  height: 100px;
  right: 0;
  left: 0;
  background-color: white;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

.form__input-wrapper_textarea textarea {
  border: none;
  outline: none;
  padding-top: 0;
  position: relative;
  z-index: 0;
}

.form__input-wrapper_textarea textarea:hover,
.form__input-wrapper_textarea textarea:focus {
  border: none;
  outline: none;
}

input,
textarea,
label,
fieldset {
  font-family: inherit;
}

textarea {
  resize: none;
}

.form__input {
  background-color: white;
  border: 1px solid var(--main-white-blue);
  padding: 31px 60px 9px 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: var(--sec-black);
  -webkit-border-radius: 8px;
  border-radius: 8px;
  font-size: 16px;
  line-height: 24px;
  width: 100%;
}

.form__input:focus {
  outline: none;
}

.form__input:hover {
  outline: 3px solid var(--main-white-blue);
  outline-offset: -3px;
}

.form__input_text:focus + .form__label,
.form__input_text:not(:placeholder-shown) + .form__label {
  color: var(--main-blue);
  -webkit-transform: translateY(-11px);
  -ms-transform: translateY(-11px);
  transform: translateY(-11px);
}

.form__label {
  position: absolute;
  left: 20px;
  top: 20px;
  font-size: 16px;
  line-height: 24px;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  pointer-events: none;
}

.form__label span {
  color: var(--main-blue);
}

.form__label_active {
  color: var(--g-dark-gray);
  -webkit-transform: translateY(-11px);
  -ms-transform: translateY(-11px);
  transform: translateY(-11px);
}

.form__error-message {
  display: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--g-gray);
  margin-top: 8px;
}

.form__clear-btn {
  width: 32px;
  height: 32px;
  background-image: url(/assets/img/ui/cross_gray.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 20px;
  top: 18px;
  cursor: pointer;
  display: none;
}

.form__clear-btn_active {
  display: inline-block;
}

.error .form__error-message {
  display: block;
}

.error .form__input {
  border-color: var(--error);
}

.error .form__label_active {
  color: var(--error);
}

/* SELECT */

.field-select {
  cursor: pointer;
}

.form__select::before {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(/assets/img/ui/arrow_up_black.svg);
  background-position: center;
  background-size: 24px 24px;
  background-repeat: no-repeat;
  position: absolute;
  top: 20px;
  right: 20px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: all 300ms ease-out;
  -o-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  cursor: pointer;
  pointer-events: none;
}

.form__select_active::before {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}

.form__options-block {
  position: absolute;
  z-index: 20;
  top: 72px;
  display: block;
  background: #fff;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  overflow: hidden;
}

.form__options-block_active {
  opacity: 1;
  visibility: visible;
}

.form__options {
  font-size: 16px;
  line-height: 24px;
  background: #fff;
  padding: 0;
  border: none;
  display: block;
  list-style-type: none;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 256px;
}

.form__options::-webkit-scrollbar,
html .form__options::-webkit-scrollbar {
  height: 12px;
  width: 12px;
}
.form__options::-webkit-scrollbar-track,
html .form__options::-webkit-scrollbar-track {
  background: transparent;
}
.form__options::-webkit-scrollbar-thumb,
html .form__options::-webkit-scrollbar-thumb {
  background-color: var(--main-blue);
  -webkit-border-radius: 6px;
  border-radius: 6px;
  border: 3px solid white;
}

.form__options li {
  cursor: pointer;
  margin: 0;
  padding: 20px 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.form__options li:hover {
  color: var(--main-blue);
  font-weight: 500;
  background-color: var(--sec-gray-blue);
}

.form__option_selected {
  background-color: var(--sec-gray-blue);
}

.form__options_active {
  opacity: 1;
  visibility: visible;
}

.form__button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.form__input_valid {
  display: none;
}

.input-file {
  position: relative;
  display: inline-block;
}
.input-file input[type=file] {
  position: absolute;
  z-index: -1;
  opacity: 0;
  display: block;
  width: 0;
  height: 0;
}

@media screen and (min-width: 768px) {
  h1 {
    font-size: 48px;
    line-height: 54px;
  }
  h2 {
    font-size: 24px;
    line-height: 32px;
  }
  h3 {
    font-size: 20px;
    line-height: 25px;
  }
  p {
    font-size: 18px;
    line-height: 26px;
  }
  .form__captcha-wrapper {
    flex-direction: row;
  }
}

@media screen and (min-width: 1024px) {
  .more-link {
    font-size: 20px;
    line-height: 25px;
    padding-right: 60px;
    height: 44px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .more-link::after {
    width: 44px;
    height: 44px;
    background-size: 24px 24px;
  }
  h2 {
    font-size: 40px;
    line-height: 44px;
  }
  .popup-form .form__captcha {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 2;
    grid-column-end: 3;
  }
  .question-form .form__captcha {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 2;
    grid-column-end: 3;
  }
}

@media screen and (min-width: 1280px) {
  h1 {
    font-size: 48px;
    line-height: 54px;
  }
  p {
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
  }
  .tag-item {
    font-size: 16px;
    line-height: 24px;
    padding: 6px 16px;
  }
  .tag-item_active {
    padding-right: 37px;
  }
  .tag-item_active::after {
    right: 11px;
  }
  .icon-text {
    font-size: 18px;
    line-height: 26px;
    height: 26px;
    padding-left: 32px;
  }
  .icon-text::after {
    width: 24px;
    height: 24px;
    background-size: 24px 24px;
  }
  .chips {
    font-size: 16px;
    line-height: 24px;
    padding: 4px 12px;
  }
}

@media screen and (min-width: 1440px) {
  h1 {
    font-size: 60px;
    line-height: 60px;
  }
  h2 {
    font-size: 48px;
    line-height: 54px;
  }
}

@media  screen and (min-width: 1900px) {
  .chips {
    margin-bottom: 24px;
  }
}

.section {
  padding: 60px 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}

.section.partners {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 60px;
  margin-bottom: 60px;
}

#partners {
  margin-bottom: 0;
}

#education_partners {
  margin-top: 0;
}

.section.news {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #E8F6FE;
}

.section_inner {
  padding-top: 0;
}

.content {
  margin: 0 auto;
}

.section__title {
  font-weight: 500;
}

.section__description {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  margin-top: 16px;
}

.section__description_md-size {
  font-size: 16px;
  line-height: 24px;
}

.section__buttons {
  margin-top: 16px;
}

.content__more-link {
  display: none;
}

.content__more-link_bottom {
  margin-top: 24px;
}

.brandbook-content__header {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.brandbook-section {
  padding-top: 0;
  padding-bottom: 60px;
}

.about-values__mission {
  padding: 60px 16px;
}

.about-values__elements {
  padding: 60px 16px;
}
.about-values__main-title {
  padding: 0 16px 60px ;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .content__more-link_bottom {
    display: none;
  }
  .content__more-link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .content__header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
    -webkit-box-align: start;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 24px;
  }
  .content__header_study {
    margin-bottom: 0;
    align-items: center;
  }

  .brandbook-content__header {
    -webkit-justify-content: left;
    -ms-flex-pack: justify;
    justify-content: left;
    -webkit-box-align: end;
    -webkit-align-items: end;
    -ms-flex-align: end;
    align-items: end;
    margin-bottom: 40px;
  }

  .brandbook-content__header {
    flex-direction: row;
  }

  .brandbook-section {
    padding-top: 0;
    padding-bottom: 100px;
  }
}

@media screen and (min-width: 1024px) {
  .section {
    padding: 60px 48px;
  }
  .section.partners {
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 60px;
    margin-bottom: 60px;
  }
  #partners {
    margin-bottom: 0;
  }

  #education_partners {
    margin-top: 0;
  }
  .section_inner {
    padding-top: 0;
  }
  .section__description {
    max-width: 600px;
    font-size: 20px;
    line-height: 26px;
  }
  .section__description_md-size {
    font-size: 18px;
    line-height: 26px;
  }
  .section__buttons {
    margin-top: 24px;
  }
  .content__header {
    margin-bottom: 40px;
  }
  .content__header_study {
    margin-bottom: 0;
  }
  .about-values__mission {
    padding: 60px 48px;
  }

  .about-values__elements {
    padding: 60px 48px;
  }
  .about-values__main-title {
    padding: 0 48px 60px;
  }
}

@media screen and (min-width: 1280px) {
  .section {
    padding: 100px 48px;
  }
  .section.partners {
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 100px;
    margin-bottom: 100px;
  }
  #partners {
    margin-bottom: 0;
  }

  #education_partners {
    margin-top: 0;
  }
  .section_inner {
    padding-top: 0;
  }
  .section__buttons {
    margin-top: 40px;
  }
  .brandbook-content__header {
    margin-bottom: 60px;
  }
  .brandbook-section {
    padding-top: 0;
    padding-bottom: 140px;
  }
  .section__description {
    font-size: 24px;
    line-height: 32px;
  }
  .section__description_md-size {
    font-size: 20px;
    line-height: 26px;
  }
  .brandbook__preview-text {
    width: 57%;
  }

  .about-values__mission {
    padding: 100px 48px;
  }

  .about-values__elements {
    padding: 100px 48px;
  }
  .about-values__main-title {
    padding: 0 48px 100px;
  }
}

@media screen and (min-width: 1440px) {
  .section {
    padding: 120px 60px;
  }
  .section.partners {
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 120px;
    margin-bottom: 120px;
  }
  #partners {
    margin-bottom: 0;
  }

  #education_partners {
    margin-top: 0;
  }
  .section.study {
    padding: 60px;
  }
  .brandbook-section {
    padding-top: 0;
    padding-bottom: 140px;
  }
  .about-values__mission {
    padding: 120px 60px;
  }

  .about-values__elements {
    padding: 90px 60px;
  }
.about-values__main-title {
    padding: 0 60px 120px;
  }
}

@media screen and (min-width: 1600px) {
  .about-values__elements {
    padding: 120px 60px;
  }
}

@media screen and (min-width: 1900px) {
  .section {
    padding: 140px 0;
  }
  .section.partners {
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 140px;
    margin-bottom: 140px;
  }
  #partners {
    margin-bottom: 0;
  }

  #education_partners {
    margin-top: 0;
  }
  .section.study {
    padding: 70px 0;
  }
  .brandbook-section {
    padding-top: 0;
    padding-bottom: 140px;
  }
  .section_inner {
    padding-top: 0;
  }
  .content {
    max-width: 1800px;
  }
  .main-slider__content {
    max-width: 1920px;
  }

  .about-values__mission {
    padding: 140px 0;
  }

  .about-values__elements {
    padding: 140px 0;
  }

  .about-values__main-title {
    padding: 0 0 140px;
  }
}

@media screen and (min-width: 1440px) {
  .section__description {
    max-width: 888px;
  }
}

.breadcrumbs {
  padding-top: 0;
  padding-bottom: 0;
}

.filter__container {
  margin-top: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
  overflow: hidden;
  height: 53px;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.filter__container_active {
  height: unset;
}

.filter__show-more {
  display: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  position: relative;
  color: var(--main-blue);
  text-decoration: underline;
  margin-top: 16px;
}

.filter__show-more::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background-image: url(/assets/img/ui/arrow_down_small.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  right: -20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.filter__show-more_open,
.filter__show-more_close {
  display: inline-block;
}

.filter__show-more_close::after {
  background-image: url(/assets/img/ui/arrow_up_small.svg);
}

@media screen and (min-width: 768px) {
  .filter__container {
    margin-top: 24px;
    height: unset;
  }
}

@media screen and (min-width: 1280px) {
  .filter__container {
    margin-top: 40px;
  }
}

.pagination {
  margin-top: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 16px;
}

@media screen and (min-width: 768px) {
  .pagination {
    margin-top: 24px;
    gap: 24px;
  }
}

@media screen and (min-width: 1280px) {
  .pagination {
    margin-top: 40px;
  }
}

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

.pagination__page {
  display: inline-block;
  width: 44px;
  height: 44px;
  border: none;
  text-align: center;
  font-size: 14px;
  line-height: 44px;
  color: var(--sec-black);
  text-decoration: none;
  background-color: var(--sec-gray-blue);
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.pagination__page:not(.pagination__page_active):hover {
  color: var(--main-blue);
}

.pagination__page_active {
  background-color: var(--main-blue);
  color: white;
}

.map {
  width: 100%;
  height: 482px;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .map {
    margin-top: 40px;
  }
}
@media screen and (min-width: 1280px) {
  .map {
    margin-top: 60px;
  }
}

.admin-editor ul li,
.admin-editor ol li {
  list-style-type: initial;
  font-size: 16px;
  line-height: 24px;
  /* margin-top: 16px; */
}

.admin-editor {
  font-size: 16px;
  line-height: 24px;
}

.admin-editor p,
.admin-editor b,
.admin-editor i {
  font-size: 16px;
  line-height: 24px;
  /* margin-top: 16px; */
}

.admin-editor h1 {
  color: red;
}

.admin-editor h2,
.admin-editor h3 {
  /* margin-top: 16px; */
}

.w-50 {
  width: 50%;
}

.w-100 {
  width: 100%;
}

.font-item__font_brutal-type {
  font-size: 66px;
  line-height: 76px;
  color: var(--sec-black);
}

html body .bvi-body .bvi-link-fixed-top {
  top: 5.5rem !important;
}

/* End */


/* Start:/local/templates/tmh_new/template_styles.css?1771244691189451*/
/* .atwinta {
  display: inline-block;
  width: 58px;
  height: 18px;
  background-image: url(/assets/img/atwinta_logo.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
} */
.atwinta {
    color: white;
    display: inline-block;
    left: 5px;
    position: relative;
    transition-duration: 0.15s;
    transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke;
    transition-timing-function: linear;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
}

.footer__info a.atwinta {
    color: white;
}

.footer__info a.atwinta:hover {
    color: #ffffff80;
}

.atwinta::before {
    background-color: rgb(255 60 212 / 1);
    bottom: -2px;
    content: "";
    height: 2px;
    left: 50%;
    position: absolute;
    transform: translate(-50%, 0) rotate(0) skew(0) skewY(0) scaleX(1) scaleY(1);
    transition-duration: 0.3s;
    transition-timing-function: linear;
    width: 10px;
}

.atwinta:hover::before {
    width: 40px;
}

.nav-open {
    /* overflow: hidden; */
}

.overflow {
    overflow: hidden;
}

.header {
    padding: 16px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.overlay {
    display: none;
}

.nav-open .overlay {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: transparent;
}

.nav-open .header {
    -webkit-border-bottom-left-radius: 0;
    border-bottom-left-radius: 0;
    -webkit-border-bottom-right-radius: 0;
    border-bottom-right-radius: 0;
    position: relative;
    z-index: 103;
}

.header__wrapper {
    background-color: var(--sec-gray-blue);
    -webkit-border-radius: 8px;
    border-radius: 8px;
    padding: 20px 16px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 3;
}

.nav-open .header__wrapper::after {
    content: "";
    position: absolute;
    z-index: 4;
    width: -webkit-calc(100% - 32px);
    width: calc(100% - 32px);
    height: 1px;
    background-color: var(--main-white-blue);
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
}

.logo {
    height: 28px;
    width: 147px;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: left center;
    object-position: left center;
    user-select: none;
}

.logo_footer {
    width: 100%;
    height: 53px;
    -webkit-filter: grayscale(1) brightness(1000%);
    filter: grayscale(1) brightness(1000%);
}

.logo-link {
    font-size: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.header__burger-menu {
    width: 44px;
    height: 28px;
    padding: 0;
    background-color: var(--main-blue);
    background-image: url(/assets/img/ui/burger.svg);
    background-size: 16px 16px;
    background-position: center;
    background-repeat: no-repeat;
    min-width: unset;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    border: none;
}

.nav-open .header__burger-menu {
    background-image: url(/assets/img/ui/burger_close.svg);
}

button.header__burger-menu:hover {
    background-color: var(--main-dark-blue);
    border: none;
}

.header__link {
    color: var(--main-blue);
    text-decoration: none;
    min-width: 24px;
    height: 24px;
    text-transform: uppercase;
    display: inline-block;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
}

.header__link_search {
    background-image: url(/assets/img/ui/search_blue.svg);
    background-position: center;
    background-size: 24px 24px;
    background-repeat: no-repeat;
}

.header__link_eye {
    background-image: url(/assets/img/ui/eye_blue.svg);
    background-position: center;
    background-size: 24px 24px;
    background-repeat: no-repeat;
}

.header__link_lang {
    opacity: 0;
    visibility: hidden;
    display: none;
}

.m-menu {
    position: absolute;
    top: 80px;
    width: -webkit-calc(100% - 32px);
    width: calc(100% - 32px);
    background-color: var(--sec-gray-blue);
    padding: 16px 16px 24px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-bottom-left-radius: 8px;
    border-bottom-left-radius: 8px;
    -webkit-border-bottom-right-radius: 8px;
    border-bottom-right-radius: 8px;
    display: none;
    max-width: 1800px;
    left: 0;
    right: 0;
    margin: auto;
}

.nav-open .m-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.m-menu__container {
    height: 100%;
    overflow-y: scroll;
    width: 100%;
}

.m-menu__container::-webkit-scrollbar,
html .form__options::-webkit-scrollbar {
    height: 12px;
    width: 12px;
}

.m-menu__container::-webkit-scrollbar-track,
html .m-menu__container::-webkit-scrollbar-track {
    background: transparent;
}

.m-menu__container::-webkit-scrollbar-thumb,
html .m-menu__container::-webkit-scrollbar-thumb {
    background-color: var(--main-white-blue);
    -webkit-border-radius: 6px;
    border-radius: 6px;
    border: 3px solid var(--sec-gray-blue);
}

.m-menu__bottom {
    margin: 24px 0 0;
}

.m-menu__add-button {
    width: 100%;
    white-space: nowrap;
    max-width: 375px;
}

.m-menu__bottom-links {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 30px 0 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 28px 0 0;
    border-top: 1px solid var(--main-white-blue);
}

.m-menu__links {
    margin: 16px 0 0;
    list-style-type: none;
}

.m-menu__item {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.m-menu__item:last-of-type {
    margin: 0;
}

.m-menu__link {
    text-decoration: none;
    color: var(--sec-black);
}

.m-menu__link_dropdown,
.main-menu__link_dropdown {
    padding-right: 24px;
    position: relative;
}

.m-menu__link_dropdown::after,
.main-menu__link_dropdown::after {
    content: "";
    background-image: url(/assets/img/ui/arrow_left.svg);
    background-position: center;
    background-size: 16px 16px;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.js-drop-menu_active::after {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.js-drop-menu {
    cursor: pointer;
}

.js-drop-field {
    display: none;
}

.js-drop-menu_active + .js-drop-field {
    display: block;
}

.m-menu .m-menu__dropdown {
    margin-top: 8px;
}

.m-menu__dropdown .m-menu__item {
    margin-bottom: 8px;
}

.m-menu__dropdown .m-menu__link {
    color: var(--sec-dark-gray-blue);
    font-size: 14px;
    line-height: 20px;
}

.main-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.main-menu__container {
    display: none;
    margin: auto;
}

.main-menu__side .header__link,
.main-menu__add-button {
    display: none;
}

.main-menu__links {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 8px;
}

.main-menu__dropdown {
    background-color: white;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    border: 1px solid var(--sec-gray-blue);
    padding: 12px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.m-menu__links > .m-menu__item > .m-menu__link {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

.footer {
    margin: 0 auto;
    padding: 0 16px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: var(--main-very-dark-blue);
}

.footer__wrapper {
    padding: 24px 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.footer__main-info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.footer__link {
    color: white;
    text-decoration: none;
}

.footer__link:hover {
    color: var(--main-white-blue);
    text-decoration: underline;
}

.footer__link_gray {
    color: var(--sec-dark-gray-blue);
}

.footer__link_gray:hover {
    color: var(--main-white-blue);
}

.social {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 0;
}

.social__link {
    display: inline-block;
    width: 40px;
    height: 40px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: white;
    background-position: center;
    background-repeat: no-repeat;
}

.social__link:hover {
    background-color: var(--main-dark-blue);
}

.social__link_wa {
    background-image: url(/assets/img/ui/wa_d-blue.svg);
    background-size: 20px 20px;
}

.social__link_wa:hover {
    background-image: url(/assets/img/ui/wa_d-blue_hover.svg);
}

.social__link_vk {
    background-image: url(/assets/img/ui/vk_d-blue.svg);
    background-size: 20px 12px;
}

.social__link_vk:hover {
    background-image: url(/assets/img/ui/vk_d-blue_hover.svg);
}

.social__link_tg {
    background-image: url(/assets/img/ui/tg_d-blue.svg);
    background-size: 20px;
    background-position: left 9px center;
}

.social__link_tg:hover {
    background-image: url(/assets/img/ui/tg_d-blue_hover.svg);
}

.footer-menu {
    margin-top: 24px;
    padding-top: 24px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-menu__item {
    margin-bottom: 8px;
}

.footer-menu__item:last-of-type {
    margin: 0;
}

.footer-menu__dropdown {
    margin-top: 8px;
}

.footer-menu__dropdown .footer-menu__item {
    margin-bottom: 8px;
}

.footer-menu__dropdown .footer-menu__item:last-of-type {
    margin: 0;
}

.footer-menu__link {
    color: white;
    text-decoration: none;
}

.footer-menu__link:hover {
    color: var(--main-white-blue);
    text-decoration: underline;
}

.footer-menu__link_dropdown {
    cursor: default;
    text-decoration: none;
    color: white;
}

.footer-menu__link_dropdown:hover {
    cursor: default;
    text-decoration: none;
    color: white;
}

.footer-menu__dropdown .footer-menu__link {
    color: var(--sec-dark-gray-blue);
    font-size: 14px;
    line-height: 20px;
}

.footer-menu__dropdown .footer-menu__link:hover {
    color: var(--main-white-blue);
}

.footer__info {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 14px;
    line-height: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
}

.footer__info p {
    font-size: 14px;
    line-height: 20px;
}

.footer__info a {
    color: var(--sec-dark-gray-blue);
    text-decoration: none;
}

.footer__info a:hover {
    color: var(--main-white-blue);
    text-decoration: underline;
}

.footer__policy,
.footer__copy,
.footer__policy-links {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
}

.footer__copy {
    color: var(--sec-dark-gray-blue);
}

.footer__creator a {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: white;
    text-decoration: none;
}

.footer__creator span {
    margin-left: 4px;
}

.footer__creator-link {
    display: inline-block;
    color: var(--sec-dark-gray-blue);
    line-height: 20px;
}

.footer__policy .footer__creator-link {
    display: none;
}

.main {
    width: 100%;
    min-height: 300px;
}

.bottom-menu {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 9;
    display: block;
    transition: all 300ms ease;
}

.bottom-menu__main-button {
    background-color: var(--main-blue);
    background-image: url(/assets/img/ui/question_white.svg);
    background-size: 24px 24px;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    z-index: 10;
    width: 44px;
    height: 44px;
}

.bottom-menu__main-button:hover {
    background-color: var(--main-dark-blue);
}

.bottom-menu__main-button_active {
    background-image: url(/assets/img/ui/cross_white.svg);
}

.bottom-menu__link {
    display: block;
    position: absolute;
    z-index: 1;
    bottom: 0;
    width: 44px;
    height: 44px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: var(--main-blue);
    background-size: 24px 24px;
    background-position: center;
    background-repeat: no-repeat;
}

.bottom-menu__link_wa {
    background-image: url(/assets/img/ui/wa.svg);
}

.bottom-menu__link_tg {
    background-image: url(/assets/img/ui/tg.svg);
}

.bottom-menu__link_vk {
    background-image: url(/assets/img/ui/vk.svg);
}

.bottom-menu__link_question {
    background-image: url(/assets/img/ui/feedback_icon.svg);
}

.bottom-menu__link:hover {
    background-color: var(--main-dark-blue);
}

.bottom-menu__link_active:nth-child(1) {
    -webkit-transform: translateY(-52px);
    -ms-transform: translateY(-52px);
    transform: translateY(-52px);
}

.bottom-menu__link_active:nth-child(2) {
    -webkit-transform: translateY(-104px);
    -ms-transform: translateY(-104px);
    transform: translateY(-104px);
}

.bottom-menu__link_active:nth-child(3) {
    -webkit-transform: translateY(-156px);
    -ms-transform: translateY(-156px);
    transform: translateY(-156px);
}

.bottom-menu__link_active:nth-child(4) {
    -webkit-transform: translateY(-208px);
    -ms-transform: translateY(-208px);
    transform: translateY(-208px);
}

.bottom-menu__link_active:nth-child(5) {
    -webkit-transform: translateY(-260px);
    -ms-transform: translateY(-260px);
    transform: translateY(-260px);
}

@media screen and (min-width: 1440px) {
    .bottom-menu__main-button {
        width: 60px;
        height: 60px;
        background-size: 32px 32px;
    }

    .bottom-menu__link {
        width: 60px;
        height: 60px;
        background-size: 32px 32px;
    }

    .bottom-menu__link_active:nth-child(1) {
        -webkit-transform: translateY(-76px);
        -ms-transform: translateY(-76px);
        transform: translateY(-76px);
    }

    .bottom-menu__link_active:nth-child(2) {
        -webkit-transform: translateY(-152px);
        -ms-transform: translateY(-152px);
        transform: translateY(-152px);
    }

    .bottom-menu__link_active:nth-child(3) {
        -webkit-transform: translateY(-228px);
        -ms-transform: translateY(-228px);
        transform: translateY(-228px);
    }

    .bottom-menu__link_active:nth-child(4) {
        -webkit-transform: translateY(-304px);
        -ms-transform: translateY(-304px);
        transform: translateY(-304px);
    }

    .bottom-menu__link_active:nth-child(5) {
        -webkit-transform: translateY(-380px);
        -ms-transform: translateY(-380px);
        transform: translateY(-380px);
    }

    .bottom-menu {
        right: 24px;
        bottom: 24px;
    }
}

.popup-form,
.popup-form_resume {
    opacity: 0;
    visibility: visible;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.popup-form__wrapper {
    position: absolute;
    right: -100vw;
    top: 0;
    bottom: 0;
    background-color: var(--main-blue);
    height: 100%;
    width: 100%;
    max-width: 527px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    padding: 24px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow-y: auto;
}

.popup-form_active {
    opacity: 1;
    visibility: visible;
    z-index: 100;
}

.popup-form_active .popup-form__wrapper {
    -webkit-transform: translateX(-100vw);
    -ms-transform: translateX(-100vw);
    transform: translateX(-100vw);
    display: block;
}

.popup-form__close {
    background-image: url(/assets/img/ui/cross_white.svg);
    display: block;
    width: 50px;
    height: 50px;
    background-size: 32px 32px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    position: absolute;
    right: 24px;
    top: 24px;
    z-index: 5;
}

.popup-form__title {
    color: white;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    max-width: 261px;
}

.popup-form__subtitle {
    color: white;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-top: 8px;
    max-width: 261px;
}

.popup-form__info {
    color: white;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}

.popup-form__info a {
    font-weight: 500;
    color: white;
}

.popup-form__info a:hover {
    color: var(--sec-dark-gray-blue);
}

.popup-form form,
.popup-form_resume form {
    margin-top: 24px;
}

.popup-form .form__fieldset,
.popup-form_resume .form__fieldset {
    padding: 0;
    gap: 16px;
}

.popup-form .form__input_textarea,
.popup-form_resume .form__input_textarea {
    height: 128px;
    resize: none;
}

.popup-form__message {
    margin-top: 200px;
}

.popup-form__close-button {
    margin-top: 24px;
    min-width: 174px;
}

.popup-form .form__button,
.popup-form_resume .form__button {
    margin-top: 16px;
}

@media screen and (min-width: 768px) {
    .nav-open .m-menu {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        height: unset;
        background-color: white;
        box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.05);
        padding: 24px 16px;
    }

    .m-menu__bottom {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        padding-top: 16px;
        position: relative;
    }

    .m-menu__bottom::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 1px;
        background-color: var(--main-white-blue);
        left: 0;
        right: 0;
        top: 0;
        margin: 0 auto;
    }

    .m-menu__bottom-links {
        margin: 0;
        padding: 0;
        border: none;
        gap: 40px;
    }

    .m-menu__container {
        overflow: unset;
        height: unset;
    }

    .m-menu__add-button {
        max-width: -webkit-fit-content;
        max-width: -moz-fit-content;
        max-width: fit-content;
    }

    .m-menu__links {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 24px 1fr;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .m-menu__links_hided {
        gap: 16px;
    }

    .m-menu__item {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
        margin: 0;
    }

    .m-menu__item:has(> .m-menu__link_dropdown) {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }

    .m-menu__bottom-links .header__link_lang {
        display: none;
    }

    .footer-menu {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 24px 1fr;
        grid-template-columns: repeat(2, 1fr);
        gap: 0 24px;
    }

    .footer__info {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 24px 1fr;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media screen and (min-width: 1024px) {
    .header {
        padding: 24px 0;
    }

    .header__wrapper {
        padding: 22px 40px;
    }

    .nav-open .header__wrapper::after {
        width: -webkit-calc(100% - 80px);
        width: calc(100% - 80px);
    }

    .logo {
        width: 189px;
        height: 36px;
    }

    .logo_footer {
        width: 100%;
        height: 53px;
        margin-bottom: 8px;
    }

    .m-menu {
        width: -webkit-calc(100% - 48px);
        width: calc(100% - 48px);
        top: 96px;
        padding: 16px 40px;
    }

    .footer {
        padding: 0 24px;
    }

    .footer__wrapper {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 40% 24px 60%;
        grid-template-columns: 40% 60%;
        gap: 24px;
    }

    .footer-menu {
        border: none;
        margin: 0;
        padding: 0;
    }

    .popup-form .form__button,
    .popup-form_resume .form__button {
        margin-top: 24px;
    }

    .popup-form__title {
        font-size: 40px;
        line-height: 44px;
        max-width: 340px;
    }

    .popup-form__subtitle {
        font-size: 18px;
        line-height: 26px;
        max-width: 340px;
    }

    .popup-form__info {
        font-size: 16px;
        line-height: 24px;
    }

    .popup-form__wrapper {
        right: -527px;
        padding: 40px;
    }

    .popup-form__close {
        right: 40px;
        top: 40px;
    }

    .popup-form__close-button {
        margin-top: 40px;
    }

    .popup-form_active .popup-form__wrapper {
        -webkit-transform: translateX(-527px);
        -ms-transform: translateX(-527px);
        transform: translateX(-527px);
    }

    .popup-form .form__fieldset,
    .popup-form_resume .form__fieldset {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 24px 1fr;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .popup-form .form__fieldset .form__input-wrapper:nth-child(n + 3),
    .popup-form_resume .form__fieldset .form__input-wrapper:nth-child(n + 3) {
        -ms-grid-column: 1;
        grid-column-start: 1;
        -ms-grid-column-span: 2;
        grid-column-end: 3;
    }

    .popup-form .form__fieldset .popup-form__info,
    .popup-form_resume .form__fieldset .popup-form__info {
        -ms-grid-column: 1;
        grid-column-start: 1;
        -ms-grid-column-span: 2;
        grid-column-end: 3;
    }

    .m-menu__links_hided {
        gap: 24px;
    }
}

@media screen and (min-width: 1280px) {
    .header {
        padding: 24px 0;
    }

    .m-menu {
        width: -webkit-calc(100% - 96px);
        width: calc(100% - 96px);
    }

    .m-menu__dropdown .m-menu__item {
        max-width: 236px;
    }

    .m-menu__links {
        position: relative;
    }

    /* .m-menu__dropdown {
      position: absolute;
      top: 24px;
      transform: translateX(24px);
      background-color: white;
      border: 1px solid var(--sec-gray-blue);
      box-sizing: border-box;
      border-radius: 8px;
      overflow: hidden;
      max-width: 236px;
      z-index: 4;
    }
    .m-menu__dropdown .m-menu__item {
      margin: 0;
    }
    .m-menu__dropdown .m-menu__link {
      color: var(--sec-black);
      padding: 12px;
      box-sizing: border-box;
      display: inline-block;
    }
    .m-menu__dropdown .m-menu__item:hover {
      background-color: var(--sec-gray-blue);
    }
     */
    .footer {
        padding: 0 48px;
    }

    .footer__wrapper {
        padding: 40px 0;
    }

    .footer__policy {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 24px 1fr;
        grid-template-columns: repeat(2, 1fr);
        gap: 0 24px;
    }

    .footer__copy {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }

    .footer__policy .footer__creator-link {
        display: block;
    }

    .footer__creator {
        display: none;
    }

    .footer__main {
        padding-bottom: 24px;
    }

    .footer__info {
        padding-top: 24px;
    }

    .popup-form .form__button,
    .popup-form_resume .form__button {
        margin-top: 40px;
    }

    .popup-form__title {
        font-size: 48px;
        line-height: 54px;
        max-width: 550px;
    }

    .popup-form__subtitle {
        font-size: 20px;
        line-height: 25px;
        max-width: 550px;
    }

    .popup-form__wrapper {
        right: -796px;
        padding: 60px;
        max-width: 796px;
    }

    .popup-form__close {
        right: 60px;
        top: 60px;
    }

    .popup-form__close-button {
        margin-top: 60px;
    }

    .popup-form_active .popup-form__wrapper {
        -webkit-transform: translateX(-796px);
        -ms-transform: translateX(-796px);
        transform: translateX(-796px);
    }
}

@media screen and (min-width: 1900px) {
    .m-menu__links > .m-menu__item > .m-menu__link {
        font-size: 18px;
        line-height: 26px;
    }
}

@media screen and (min-width: 768px) {
    .main-menu__side-links {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        gap: 24px;
    }

    .main-menu__side-links .header__link_lang {
        display: none;
    }
}

@media screen and (min-width: 1024px) {
    .nav-open .m-menu {
        padding: 24px;
    }
}

@media screen and (min-width: 1280px) {
    .nav-open .m-menu {
        padding: 24px 48px;
    }
}

@media screen and (min-width: 1440px) {
    .nav-open .m-menu {
        padding: 40px 48px;
    }
}

@media screen and (min-width: 1900px) {
    .nav-open .m-menu {
        padding: 40px 202px;
    }
}

@media screen and (min-width: 1440px) {
    .main-menu__side-links {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        gap: 40px;
    }

    .main-menu__side-links .header__link {
        display: inline-block;
    }

    .m-menu__bottom-links {
        display: none;
    }

    .main-menu__side-links .header__link_lang {
        display: none;
    }

    .m-menu__container {
        width: 100%;
    }

    .m-menu__links {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: baseline;
        -webkit-align-items: baseline;
        -ms-flex-align: baseline;
        align-items: baseline;
        position: relative;
        gap: 20px;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin: 0;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .m-menu__links_hided {
        gap: 58px;
    }

    .m-menu__item {
        -webkit-box-ordinal-group: unset;
        -webkit-order: unset;
        -ms-flex-order: unset;
        order: unset;
        margin: 0;
    }

    .m-menu__item:has(> .m-menu__link_dropdown) {
        -webkit-box-ordinal-group: unset;
        -webkit-order: unset;
        -ms-flex-order: unset;
        order: unset;
    }

    .m-menu__dropdown {
        position: absolute;
        top: -webkit-calc(100%);
        top: calc(100%);
        background-color: white;
        border: 1px solid var(--sec-gray-blue);
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-border-radius: 8px;
        border-radius: 8px;
        overflow: hidden;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        z-index: 5;
    }

    .m-menu__dropdown .m-menu__item {
        margin: 0;
        max-width: 266px;
    }

    .m-menu__dropdown .m-menu__link {
        padding: 12px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        display: inline-block;
        width: 100%;
        font-size: 16px;
        line-height: 26px;
    }

    .m-menu__dropdown .m-menu__link {
        color: var(--sec-black);
    }

    .m-menu__dropdown .m-menu__item:hover {
        background-color: var(--sec-gray-blue);
    }

    .footer__main {
        padding-bottom: 24px;
    }

    .footer__info {
        padding-top: 24px;
    }
}

@media screen and (min-width: 1700px) {
    .header__wrapper {
        padding: 16px 60px;
    }

    .footer__wrapper {
        -ms-grid-columns: (1fr) [ 2 ];
        grid-template-columns: repeat(2, 1fr);
    }

    .main-menu {
        width: 100%;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        margin-left: 40px;
        gap: 45px;
    }

    .main-menu__container {
        display: block;
    }

    .header__burger-menu {
        display: none;
    }

    .main-menu__add-button {
        display: inline-block;
    }

    .main-menu__side {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 40px;
    }

    .footer__main {
        padding-bottom: 40px;
    }

    .footer__info {
        padding-top: 40px;
    }
}

@media screen and (min-width: 1900px) {
    .header {
        margin: 0 auto;
    }

    .header__wrapper {
        max-width: 1920px;
        margin: 0 auto;
    }

    .footer {
        padding: 0;
    }

    .footer__wrapper {
        max-width: 1800px;
        margin: 0 auto;
        padding: 60px 0;
    }

    .main-menu {
        margin-left: 45px;
    }

    .main-menu__side {
        gap: 45px;
    }

    .m-menu__links_hided {
        gap: 125px;
    }
}

/* MAIN SLIDER */

.main-slider {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
}

.main-slider__swiper {
    position: relative;
}

.main-slider__slide-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.main-slider__slide-container aside {
    overflow: hidden;
}

.main-slider__text-block {
    background-color: var(--main-very-dark-blue);
    padding: 24px 16px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    min-height: 326px;
    max-height: 326px;
    /*background-image: url(/assets/img/pattern_dark.svg);
    background-repeat: no-repeat;
    background-size: 300px;
    background-position: right -78px bottom;*/
    background-size: 500px;
    background-repeat: no-repeat;
    background-position: right -240px bottom;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.main-slider__text-block:after {
    position: absolute;
    display: block;
    content: '';
    background: url(/local/templates/tmh_new/images/main/bg1_1.svg) 0 no-repeat;
    background-size: 200%;
    bottom: -25px;
    left: 0;
    height: 100%;
    width: 120%;
    z-index: 0;
}

.main-slider__media-block {
    background-color: var(--main-very-dark-blue);
}

.main-slider__media-block video {
    width: 100%;
    height: 100%;
}

.main-slider__btn {
    z-index: 1;
}

.main-slider__tag {
    border: 1px solid var(--g-dark-gray);
    -webkit-border-radius: 20px;
    border-radius: 20px;
    padding: 3px 8px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: white;
    font-size: 12px;
    line-height: 16px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.main-slider__title {
    color: white;
    font-weight: 500;
    font-size: 32px;
    line-height: 40px;
    margin-top: 16px;
}

.main-slider__title span {
    color: var(--main-white-blue);
}

.main-slider__subtitle {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.main-slider__button {
    display: none;
}

.main-slider__pagination {
    display: none;
}

.main-slider__controls {
    position: absolute;
    right: 16px;
    bottom: -webkit-calc(32px + 51.47vw);
    bottom: calc(32px + 51.47vw);
}

.main-slider__buttons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.swiper-button-prev.arrow,
.swiper-button-next.arrow {
    position: unset;
    margin: 0;
}

.swiper-button-prev.arrow::after,
.swiper-button-next.arrow::after {
    content: unset;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    pointer-events: unset;
}

.main-slider__media-block {
    height: 51.47vw;
    position: relative;
}

.main-slider__media-block .main-slider__media {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.main-slider__yt-cover {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
    opacity: 1;
    visibility: visible;
    transition: all 300ms ease-in;
}

.main-slider__yt-cover_inactive {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    z-index: -1;
}

.main-slider__yt-cover::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    pointer-events: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    background-color: white;
    background-image: url(/assets/img/ui/play.svg);
    background-position: 22px center;
    background-repeat: no-repeat;
    transition: all 300ms ease-in;
}

.main-slider__yt-cover:hover::after {
    transform: scale(1.1);
}

@media screen and (min-width: 768px) {
    .main-slider__title,
    .main-slider__subtitle {
        max-width: 440px;
    }

    .main-slider__text-block {
        padding: 24px;
    }
}

@media screen and (min-width: 1024px) {
    .main-slider__swiper .swiper-slide {
        height: unset;
    }

    .main-slider__slide-container {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
        height: 100%;
    }

    .main-slider__text-block {
        height: 384px;
        max-height: 384px;
        padding: 40px 48px;
    }

    .main-slider__media-block {
        width: 100%;
        height: 384px;
    }

    .main-slider__controls {
        position: absolute;
        right: -webkit-calc(100% - 34.2773vw + 16px);
        right: calc(100% - 34.2773vw + 16px);
        bottom: 16px;
    }

    .main-slider__title,
    .main-slider__subtitle {
        max-width: unset;
    }
}

@media screen and (min-width: 1280px) {
    .main-slider__slide-container {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    }

    .main-slider__text-block {
        height: 435px;
        max-height: 435px;
        padding: 48px 48px 48px 60px;
    }

    .main-slider__media-block {
        height: 435px;
    }

    .main-slider__controls {
        right: -webkit-calc(100% - 37.422vw + 24px);
        right: calc(100% - 37.422vw + 24px);
        bottom: 24px;
    }

    .main-slider__extra-btn {
        left: 24px;
        bottom: 24px;
    }

    .main-slider__tag {
        font-size: 16px;
        line-height: 24px;
        padding: 4px 12px;
    }

    .main-slider__title {
        font-size: 62px;
        line-height: 65px;
    }

    .main-slider__subtitle {
        font-size: 18px;
        line-height: 26px;
    }
}

@media screen and (min-width: 1440px) {
    .main-slider__slide-container {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    }

    .main-slider__text-block {
        height: 435px;
        background-size: 800px;
        background-position: right -380px bottom;
    }

    .main-slider__media-block {
        height: 435px;
    }

    .main-slider__controls {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        width: -webkit-calc(37.9167vw - 48px);
        width: calc(37.9167vw - 48px);
        right: -webkit-calc(100% - 37.9167vw + 24px);
        right: calc(100% - 37.9167vw + 24px);
        bottom: 24px;
    }

    .main-slider__extra-btn {
        display: none;
    }

    .main-slider__button {
        display: inline-block;
        margin-top: 16px;
    }

    .main-slider__pagination {
        display: inline-block;
        position: unset;
        margin: 0;
        font-weight: 500;
        font-size: 20px;
        line-height: 25px;
        color: white;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }
}

@media screen and (min-width: 1900px) {
    .main-slider__slide-container {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    }

    .main-slider__text-block {
        height: 670px;
        max-height: 670px;
        padding: 60px 60px 124px;
        background-size: 1064px;
        background-position: left 161px bottom -10px;
    }

    .main-slider__media-block {
        height: 670px;
    }

    .main-slider__controls {
        width: -webkit-calc(584px - 80px);
        width: calc(584px - 80px);
        right: -webkit-calc(100% - 584px + 40px);
        right: calc(100% - 584px + 40px);
        bottom: 40px;
    }

    .main-slider__title {
        font-size: 94px;
        line-height: 100px;
        margin-top: 24px;
    }

    .main-slider__subtitle {
        font-size: 20px;
        line-height: 25px;
        margin-top: 24px;
    }

    .main-slider__button {
        margin-top: 24px;
    }

    .main-slider__pagination {
        font-size: 24px;
        line-height: 32px;
    }
}

/* POPUP MESSAGE */

.popup-message {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 16px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.popup-message__body {
    background-color: var(--main-blue);
    padding: 24px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
}

.popup-message__title {
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    color: white;
    text-align: center;
}

.popup-message__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: white;
    text-align: center;
}

.popup-message__close {
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    right: 6px;
    top: 6px;
    background-image: url(/assets/img/ui/cross_white.svg);
    background-size: 24px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.popup-message {
    opacity: 0;
    visibility: hidden;
    z-index: -1;
}

.popup-message_active {
    opacity: 1;
    visibility: visible;
    z-index: 102;
}

@media screen and (min-width: 1280px) {
    .popup-message__body {
        padding: 40px;
        gap: 24px;
    }

    .popup-message__title {
        font-size: 40px;
        line-height: 44px;
    }

    .popup-message__text {
        font-size: 18px;
        line-height: 26px;
    }

    .popup-message__close {
        width: 40px;
        height: 40px;
        background-size: 32px;
    }
}

@media screen and (min-width: 1900px) {
    .popup-message__body {
        padding: 60px;
    }

    .popup-message__title {
        font-size: 48px;
        line-height: 54px;
    }

    .popup-message__text {
        font-size: 20px;
        line-height: 25px;
    }
}

/* EVENTS */

.events {
    background-color: var(--sec-gray-blue);
    padding-top: 40px;
    padding-bottom: 40px;
}

.events__swiper {
    margin-top: 24px;
}

.events .swiper-slide {
    height: unset;
}

.events__element {
    text-decoration: none;
    background-color: white;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
    padding-bottom: 16px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.events__element:hover {
    background-color: var(--main-blue);
}

.events__element:hover .events__tag {
    background-color: white;
    color: var(--main-blue);
}

.events__element:hover .events__title {
    color: white;
}

.events__element:hover .events__footer {
    -webkit-filter: grayscale(1) brightness(1000%);
    filter: grayscale(1) brightness(1000%);
}

.events__tags {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 8px;
    margin: 16px 16px 0;
}

.events__tag {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    background-color: var(--main-blue);
    -webkit-border-radius: 20px;
    border-radius: 20px;
    padding: 3px 8px;
    color: white;
}

.events__tag:nth-child(n + 4) {
    display: none;
}

.events__title {
    margin: 8px 16px 0;
    font-size: 18px;
    line-height: 26px;
    color: var(--sec-black);
}

.events__preview-container {
    position: relative;
    font-size: 0;
    height: 51.46vw;
    max-height: 329px;
}

.events__preview-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.events__preview-container:not(:has(.no-image))::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: -webkit-gradient(
            linear,
            left top,
            left bottom,
            from(rgba(20, 70, 147, 0)),
            to(rgba(20, 70, 147, 0.5))
    );
    background: -o-linear-gradient(
            top,
            rgba(20, 70, 147, 0) 0%,
            rgba(20, 70, 147, 0.5) 100%
    );
    background: linear-gradient(
            180deg,
            rgba(20, 70, 147, 0) 0%,
            rgba(20, 70, 147, 0.5) 100%
    );
}

.events__footer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 16px 0;
}

.events__footer span {
    border-right: 1px solid rgba(0, 80, 157, 0.3);
    padding-right: 8px;
    height: 20px;
    opacity: 0.7;
}

.events__footer span:last-child {
    border: none;
    padding-right: 0;
}

.swiper-controls {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px;
    margin-top: 24px;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
    position: absolute;
    bottom: -40px;
}

.swiper-pagination-bullet {
    background-color: var(--main-dark-blue);
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    width: 68px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background-color: var(--main-white-blue);
}

.event-button {
    margin-top: 16px;
}

@media screen and (min-width: 768px) {
    .events__tags {
        gap: 16px;
    }

    .events__footer {
        gap: 16px;
    }

    .events__title {
        margin: 16px 16px 0;
    }

    .events__preview-container {
        height: 26.3021vw;
    }

    .events__element {
        max-width: 47vw;
    }

    .events__footer span {
        padding-right: 16px;
    }
}

@media screen and (min-width: 1024px) {
    .events__preview-container {
        height: 26.1719vw;
    }

    .event-button {
        margin-top: 24px;
    }
}

@media screen and (min-width: 1280px) {
    .events {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .events__swiper {
        margin-top: 40px;
    }

    .swiper-controls {
        margin-top: 40px;
    }

    .events__title {
        font-size: 20px;
        line-height: 25px;
    }

    .events__preview-container {
        height: 25.5469vw;
    }

    .events__element {
        max-width: 46vw;
    }

    .event-button {
        margin-top: 40px;
    }
}

@media screen and (min-width: 1440px) {
    .events__title {
        font-size: 20px;
        line-height: 25px;
    }

    .events__preview-container {
        height: 16.875vw;
    }

    .events__element {
        max-width: 31vw;
        padding-bottom: 24px;
    }
}

@media screen and (min-width: 1900px) {
    .events {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .events__title {
        font-size: 24px;
        line-height: 32px;
        margin: 24px 24px 0;
    }

    .events__tags {
        margin: 24px 24px 0;
    }

    .events__tag {
        font-size: 16px;
        line-height: 24px;
        padding: 4px 12px;
    }

    .events__footer {
        margin: 24px 24px 0;
    }

    .events__footer span {
        height: 26px;
    }

    .events__preview-container {
        height: 329px;
    }
}

/* EVENTS PAGE */

.events__container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.events_page {
    background-color: transparent;
    padding-top: 0;
}

.events_page .events__element {
    background-color: var(--sec-gray-blue);
    width: 100%;
}

.events_page .events__element:hover {
    background-color: var(--main-blue);
}

@media screen and (min-width: 768px) {
    .events__container {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 24px 1fr;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-top: 24px;
    }
}

@media screen and (min-width: 1280px) {
    .events__container {
        -ms-grid-columns: (1fr) [ 3 ];
        grid-template-columns: repeat(3, 1fr);
        margin-top: 40px;
    }

    .events_page .events__preview-container {
        height: 220px;
    }
}

@media screen and (min-width: 1440px) {
    .events_page .events__preview-container {
        height: 17.1354vw;
        max-height: 329px;
    }
}

/* ABOUT */

.about {
    position: relative;
    overflow: hidden;
    padding-top: 0;
}

.about::before {
    content: "";
    position: absolute;
    height: -webkit-calc(100% - 20px);
    height: calc(100% - 20px);
    width: 100%;
    background-image: url(/assets/img/patterns/pattern_gray-blue.svg);
    background-position: right center;
    background-size: contain;
    background-repeat: no-repeat;
    bottom: -45%;
    z-index: -1;
}

.about__color-title,
.about-values__color-title {
    color: var(--g-gray);
    font-weight: 500;
    font-size: 32px;
    line-height: 40px;
}

.about__desc {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: var(--g-dark-gray);
    margin-top: 16px;
    max-width: 726px;
}

.about__buttons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}

.single-letter {
    color: var(--g-gray);
}

.single-letter_colored {
    color: var(--main-blue);
}

.about-values {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.about-values__mission::before {
    content: "";
    position: absolute;
    /*height: -webkit-calc(100% - 20px);*/
    /*height: calc(100% - 20px);*/
    height: 506px;
    width: 100%;
    background-image: url(/assets/img/patterns/pattern_gray-blue.svg);
    background-position: right center;
    background-size: contain;
    background-repeat: no-repeat;
    bottom: -45%;
    z-index: -1;
}

.about-values__train {
    position: relative;
    display: none;
}

.about-values__train img {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    border-bottom: 1px solid #00509D;
    line-height: 0;
    top: -225px;
}

@media screen and (min-width: 768px) {
    .about {
        background-position: right 24px center;
        background-size: 410px;
    }

    .about__buttons {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        gap: 20px;
        margin-top: 24px;
    }

    .about::before {
        height: -webkit-calc(100% - 88px);
        height: calc(100% - 88px);
        bottom: unset;
        top: 44px;
        right: 24px;
    }

    .about-values__mission::before {
        height: -webkit-calc(100% - 88px);
        height: calc(100% - 88px);
        bottom: unset;
        top: 44px;
        right: 24px;
    }
}

@media screen and (min-width: 1024px) {
    .about__color-title,
    .about-values__color-title {
        font-size: 64px;
        line-height: 1;
        width: 70%;
    }

    .about__desc {
        font-size: 20px;
        line-height: 25px;
    }
}

@media screen and (min-width: 1280px) {
    .about::before {
        height: -webkit-calc(100% - 160px);
        height: calc(100% - 160px);
        bottom: unset;
        top: 80px;
        right: 48px;
    }

    .about-values__mission::before {
        height: 506px;
        bottom: unset;
        top: 30%;
        right: 48px;
    }

    .about-values__train {
        display: block;
    }
}

@media screen and (min-width: 1440px) {
    .about::before {
        right: 60px;
    }

    .about-values__mission::before {
        right: 60px;
    }

    .about__desc {
        max-width: 983px;
    }
}

@media screen and (min-width: 1900px) {
    .about::before {
        height: -webkit-calc(100% - 230px);
        height: calc(100% - 230px);
        bottom: unset;
        top: 115px;
        right: 3.157vw;
    }

    .about-values__mission::before {
        height: 506px;
        bottom: unset;
        top: 30%;
        right: 3.157vw;
    }

    .about__color-title,
    .about-values__color-title {
        font-size: 64px;
        line-height: 1;
    }

    .about__desc {
        font-size: 24px;
        line-height: 32px;
        margin-top: 24px;
        max-width: 1000px;
    }

    .about__buttons {
        margin-top: 40px;
    }

    .about {
        background-position: right 60px center;
        background-size: 700px;
    }

    .about-values {
        background-position: right 60px center;
        background-size: 700px;
    }

    .about-values__train img {
        top: -259px;
        width: auto;
        left: -3%;
    }
}

/* STUDY */

.study {
    background-color: var(--sec-black);
}

.study .section__title {
    color: white;
}

.study .section__description {
    color: white;
    opacity: 0.7;
}

.study__pict {
    width: 50%;
    display: none;
}

.study__controls {
    margin-top: 40px;
}

.study .swiper-slide {
    height: unset;
}

.study__element {
    display: block;
    min-height: 219px;
    padding: 24px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-decoration: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: white;
    height: 100%;
    background-repeat: no-repeat;
    background-position: 100% 110%;
}

.service-page .study__element {
    background-color: var(--sec-gray-blue);
    background-image: url(/assets/img/service_item_bg.svg);
}

.study__element_add-border {
    border: 1px solid var(--main-white-blue);
}

.study__title {
    font-size: 20px;
    font-weight: 500;
    line-height: 25px;
    color: var(--main-dark-blue);
    margin-bottom: 24px;
    overflow-wrap: anywhere;
}

.service-page .study__title {
    margin-top: 0;
}

.study__desc {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: var(--sec-black);
    margin-top: 12px;
}

.study-page .study__footer {
    display: flex;
    justify-content: space-between;
}

.study__price {
    font-weight: 500;
    font-size: 20px;
    line-height: 25px;
    color: var(--main-dark-blue);
}

.study__price span {
    color: var(--main-dark-blue);
}

.study__info {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--g-dark-gray);
    margin-top: 8px;
}

.study__tags {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.study__swiper {
    margin-top: 40px;
}

.study__element:hover {
    background-color: var(--main-blue);
}

.study__element:hover .chips_blue {
    background-color: var(--main-dark-blue);
}

.study__element:hover .study__title,
.study__element:hover .study__desc,
.study__element:hover .study__price span,
.study__element:hover .study__info {
    color: white;
}

.study__element:hover .study__price {
    color: var(--main-white-blue);
}

.chip-text {
    font-size: 16px;
    line-height: 24px;
    color: var(--sec-black);
}

@media screen and (min-width: 768px) {
    .study__element {
        padding: 24px;
        min-height: 251px;
    }

    .study__tags {
        gap: 16px;
    }

    .study__title {
        font-size: 32px;
        line-height: 40px;
    }

    .study__price {
        font-size: 32px;
        line-height: 40px;
        margin-top: 24px;
    }

    .study__desc {
        font-size: 20px;
        line-height: 25px;
    }

    .study__pict {
        display: inline;
    }
}

@media screen and (min-width: 1280px) {
    .study__element {
        min-height: 380px;
    }

    .study__title {
        font-size: 40px;
        line-height: 44px;
    }

    .study__desc {
        font-size: 24px;
        line-height: 32px;
    }

    .study__price {
        font-size: 40px;
        line-height: 44px;
    }

    .study__info {
        font-size: 18px;
        line-height: 26px;
    }
}

@media screen and (min-width: 1440px) {
}

@media screen and (min-width: 1900px) {
    .study__element {
        padding: 40px;
    }

    .study__title {
        font-size: 40px;
        line-height: 44px;
    }

    .study__price {
        font-size: 48px;
        line-height: 54px;
    }
}

/* NEWS */

.news_page {
    padding-top: 0;
}

.news__swiper {
    margin-top: 24px;
}

.news .swiper-slide {
    height: unset;
}

.main .news .section__title {
    border: 1px solid #84A1C8;
    border-radius: 20px;
    padding: 5px 13px;
    color: #21252E;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    position: absolute;
    top: -55px;
    left: 0;
}

.news_page .news__main-container {
    margin-top: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
}

.news__main-container-2 {
    display: grid;
    /*display: flex;*/
    /*grid-template-rows: 1fr 1fr 1fr;*/
    grid-template-columns: 1fr;
    gap: 20px;
    height: 100%;
    padding: 80px 0 30px;
}

.news__element {
    text-decoration: none;
    background-color: var(--sec-gray-blue);
    -webkit-border-radius: 8px;
    border-radius: 8px;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
    padding-bottom: 16px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    max-width: 91.5vw;
}

.news__element-2 {
    text-decoration: none;
    position: relative;
    display: grid;
    align-items: center;
}

.news__element-2 a {
    display: grid;
    align-items: center;
    text-decoration: none;
}

.news__preview-image-2 {
    object-fit: cover;
    height: 100%;
    width: 100%;
    min-height: 277px;
    /*display: block;*/
    margin-top: 20px;
}


.news__element-2 .news__title {
    margin: 0;
    font-weight: 500;
    color: #00509D;
    text-decoration: none;
    font-size: 20px;
    line-height: 1.1;
}

@media screen and (min-width: 768px) {
    .news__main-container-2 {
        grid-template-columns: 1fr 1fr 1fr;
        padding: 80px 0 30px;
        gap: 0;
    }

    .news__element-2 .news__title {
        font-size: 20px;
    }

    .main .news .section__title {
        top: -52px;
    }

    .news__preview-image-2 {
        display: none;
    }

}

@media screen and (min-width: 1280px) {

    .news__element-2 .news__title {
        font-size: 24px;
    }

    .main .news .section__title {
        top: -52px;
        font-size: 16px;
        line-height: 24px;
    }

    .news__main-container-2 {
        padding: 80px 0 30px;
    }

    .news__preview-image-2 {
        display: none;
    }
}

@media screen and (min-width: 1024px) {
    /*.news__main-container-2 {*/
    /*    grid-template-columns: repeat(2, 1fr);*/
    /*    grid-template-rows: repeat(2, 1fr);*/
    /*}*/

    /*.news__element-2:first-of-type {*/
    /*    grid-area: 1 / 1 / 2 / 3;*/
    /*}*/

    /*.news__element-2:nth-of-type(2) {*/
    /*    grid-area: 2 / 1 / 3 / 2;*/
    /*    padding-left: 0;*/
    /*}*/

    /*.news__element-2:nth-of-type(3) {*/
    /*    grid-area: 2 / 2 / 3 / 3;*/
    /*    padding-left: 24px;*/
    /*}*/

}

@media screen and (min-width: 1440px) {
    .news__main-container-2 {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 1fr;
    }

    .news__element-2:first-of-type {
        grid-area: 1 / 1 / 2 / 3;
    }

    .news__element-2:nth-of-type(2) {
        grid-area: 1 / 3 / 2 / 4;
        padding-left: 24px;
    }

    .news__element-2:nth-of-type(3) {
        grid-area: 1 / 4 / 2 / 5;
        padding-left: 24px;
    }

    .news__element-2:first-of-type a {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 13px;
    }


    .news__element-2 .news__title {
        font-size: 24px;
    }

    .main .news .section__title {
        top: 45px;
    }

    .news__main-container-2 {
        padding: 0;
    }

    .news__preview-image-2 {
        display: block;
        margin-top: 0;
    }
}

.news__element-2:before {
    transition: all 300ms ease;
}

.news__element-2_container-data {

}

.news__title {
    color: var(--sec-black);
}

.news__element-2 .news__subtitle {
    color: var(--sec-black);
}

.news__element-container:nth-child(1) .news__element,
.news_page:not(:has(.filter__container_active)) .news__element:nth-child(1) {
    background-color: var(--main-blue);
}

.news__element-container:nth-child(1) .news__element:hover,
.news_page:not(:has(.filter__container_active))
.news__element:nth-child(1):hover {
    background-color: var(--main-dark-blue);
}

.news__element-container:nth-child(1) .news__element .news__tag,
.news_page:not(:has(.filter__container_active))
.news__element:nth-child(1)
.news__tag,
.news__element-2_n-2 .news__tag {
    background-color: white;
    color: var(--sec-black);
}

.news__element-container:nth-child(1) .news__element .news__title,
.news_page:not(:has(.filter__container_active))
.news__element:nth-child(1)
.news__title,
.news__element-2_n-2 .news__title {
    color: white;
}

.news__element-2_n-2 .news__subtitle {
    color: white;
}

.news__element-container:nth-child(1) .news__element .news__date,
.news_page:not(:has(.filter__container_active))
.news__element:nth-child(1)
.news__date,
.news__element-2_n-2 .news__date {
    color: white;
}

.news__element:hover {
    background-color: var(--main-blue);
}

.news__element:hover .news__tag,
.news__element-2:hover .news__tag {
    background-color: white;
    color: var(--sec-black);
}

.news__element:hover .news__title {
    color: white;
}

.news__element-2:hover .news__title,
.news__element-2:hover .news__subtitle {
    /*border-bottom: 1px solid;*/
    /*opacity: 0.8;*/
    color: var(--sec-black);
}

.news__element:hover .news__date,
.news__element-2:hover .news__date {
    color: white;
}

.news__element-2 {
    background-color: var(--sec-gray-blue);
}

.news__element-2:hover {
    /*background-color: var(--main-dark-blue);*/
}

.news__element-2_n-2 {
    background-color: var(--main-blue);
}

.news__element-2_n-2:hover {
    background-color: var(--main-dark-blue);
}



.news__tags {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 8px;
}

.news__element .news__tags {
    margin: 16px 16px 0;
}

.news__element-2 .news__tags {
    margin: 24px 24px 0;
}

.news__tag {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    background-color: var(--main-blue);
    -webkit-border-radius: 20px;
    border-radius: 20px;
    padding: 3px 8px;
    color: white;
}

.news__tag:nth-child(n + 4) {
    display: none;
}

.news__title {
    margin: 8px 16px 0;
    font-size: 18px;
    line-height: 26px;
    overflow-wrap: anywhere;
}

.news__preview-container {
    position: relative;
    font-size: 0;
    height: 51.46vw;
    max-height: 329px;
}

.news__preview-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.news__preview-container:not(:has(.no-image))::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: -webkit-gradient(
            linear,
            left top,
            left bottom,
            from(rgba(20, 70, 147, 0)),
            to(rgba(20, 70, 147, 0.5))
    );
    background: -o-linear-gradient(
            top,
            rgba(20, 70, 147, 0) 0%,
            rgba(20, 70, 147, 0.5) 100%
    );
    background: linear-gradient(
            180deg,
            rgba(20, 70, 147, 0) 0%,
            rgba(20, 70, 147, 0.5) 100%
    );
}

.swiper-controls {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px;
    margin-top: 24px;
}

.news__date {
    margin: 16px 16px 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--main-blue);
    opacity: 0.7;
}

.news__element-2 .news__date {
    margin: 24px 24px 0;
}

.news__block {
    display: none;
}

.news__subtitle {
    display: none;
}

.news__element-2 .news__subtitle {
    display: block;
    margin: 24px 24px 0;
}

@media screen and (min-width: 768px) {
    .news__tags {
        gap: 16px;
    }

    .news__title {
        margin: 16px 16px 0;
    }

    .news__preview-container {
        height: 26.3021vw;
        min-height: 26.3021vw;
    }

    .news__element {
        max-width: 47vw;
    }

    .news_page .news__main-container {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 24px 1fr;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .news_page .news__element {
        max-width: unset;
    }

    .news__element-2_container-data {
        /*padding-bottom: 40px;*/
    }

    .news__element-2 .news__tags {
        margin: 40px 40px 0;
    }

    .news__element-2 .news__title {
        margin: 0;
    }

    .news__element-2 .news__subtitle {
        margin: 40px 40px 0;
    }

    .news__element-2 .news__date {
        margin: 40px 40px 0;
    }
}

@media screen and (min-width: 1024px) {
    .news__preview-container {
        height: 26.1719vw;
        min-height: 26.1719vw;
    }
}

@media screen and (min-width: 1280px) {
    .news__swiper.swiper {
        display: none;
    }

    .news__block {
        display: block;
        margin-top: 40px;
    }

    .news__main-container {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 24px 0.5fr 24px 0.5fr;
        grid-template-columns: 1fr 0.5fr 0.5fr;
        gap: 24px;
    }

    .news_page .news__main-container {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 24px 1fr 24px 1fr 24px 1fr;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .news__element-container:nth-child(1) {
        -ms-grid-row: 1;
        grid-row-start: 1;
        -ms-grid-row-span: 2;
        grid-row-end: 3;
    }

    .news_page:not(:has(.filter__container_active)) .news__element:nth-child(1) {
        -ms-grid-row: 1;
        grid-row-start: 1;
        -ms-grid-row-span: 2;
        grid-row-end: 3;
        -ms-grid-column: 1;
        grid-column-start: 1;
        -ms-grid-column-span: 2;
        grid-column-end: 3;
    }

    .news__element {
        padding-bottom: 24px;
    }

    .news__element-container:nth-child(1) .news__element {
        max-width: unset;
    }

    .news__element-container:nth-child(1) .news__title,
    .news__element-2_n-2 .news__title {
        font-size: 32px;
        line-height: 40px;
        margin: 16px 24px 0;
        font-weight: 400;
    }

    .news_page:not(:has(.filter__container_active))
    .news__element:nth-child(1)
    .news__title {
        font-size: 32px;
        line-height: 40px;
        margin: 16px 24px 0;
    }

    .news__element-container:nth-child(1) .news__tags,
    .news__element-container:nth-child(1) .news__date,
    .news__element-2_n-2 .news__tags,
    .news__element-2_n-2 .news__date {
        margin: 24px 24px 0;
    }

    .news_page:not(:has(.filter__container_active))
    .news__element:nth-child(1)
    .news__tags,
    .news_page:not(:has(.filter__container_active))
    .news__element:nth-child(1)
    .news__date {
        margin: 24px 24px 0;
    }

    .news__element-container:nth-child(1) .news__preview-container {
        height: 371px;
        min-height: 371px;
    }

    .news_page:not(:has(.filter__container_active))
    .news__element:nth-child(1)
    .news__preview-container {
        height: 371px;
        min-height: 371px;
    }

    .news__preview-container {
        height: 179px;
        min-height: 179px;
    }

    .news__title {
        font-size: 16px;
        line-height: 26px;
    }

    .news__date {
        font-size: 14px;
        line-height: 20px;
    }

    .news__tags {
        gap: 8px;
    }

    .news__element-container:nth-child(n + 6) {
        display: none;
    }

    .news__controls {
        display: none;
    }

    .news .news__element:nth-child(1) .news__subtitle,
    .news_page:not(:has(.filter__container_active))
    .news__element:nth-child(1)
    .news__subtitle,
    .news__element-2_n-2 .news__subtitle {
        display: block;
        font-size: 16px;
        line-height: 24px;
        font-weight: 400;
        color: white;
        margin: 16px 24px 0;
    }
}

@media screen and (min-width: 1440px) {
    .news_page:not(:has(.filter__container_active))
    .news__element:nth-child(1)
    .news__title {
        font-size: 40px;
        line-height: 44px;
        margin: 24px 40px 0;
    }

    .news__element-container:nth-child(1) .news__element {
        padding-bottom: 40px;
    }

    .news__element-container:nth-child(1) .news__tags,
    .news__element-2_n-2 .news__tags {
        margin: 40px 40px 0;
    }

    .news_page:not(:has(.filter__container_active))
    .news__element:nth-child(1)
    .news__tags,
    .news_page:not(:has(.filter__container_active))
    .news__element:nth-child(1)
    .news__date {
        margin: 40px 40px 0;
    }

    .news_page:not(:has(.filter__container_active)) .news__element:nth-child(1) {
        padding-bottom: 40px;
    }

    .news__element-container:nth-child(1) .news__title,
    .news__element-2_n-2 .news__title {
        font-size: 40px;
        line-height: 44px;
        margin: 24px 40px 0;
    }

    .news__element-container:nth-child(1) .news__date,
    .news__element-2_n-2 .news__date {
        margin: 40px 40px 0;
        font-size: 20px;
        line-height: 25px;
    }

    .news_page:not(:has(.filter__container_active))
    .news__element:nth-child(1)
    .news__date {
        margin: 40px 40px 0;
        font-size: 20px;
        line-height: 25px;
    }

    .news__element-container:nth-child(1) .news__preview-container {
        height: 500px;
        min-height: 500px;
    }

    .news_page:not(:has(.filter__container_active))
    .news__element:nth-child(1)
    .news__preview-container {
        height: 500px;
        min-height: 500px;
    }

    .news__preview-container {
        height: 243px;
        min-height: 243px;
    }

    .news__element .news__tags {
        margin: 24px 24px 0;
    }

    .news__title {
        font-size: 20px;
        line-height: 25px;
        margin: 16px 24px 0;
    }

    .news__date {
        margin: 24px 24px 0;
    }

    .news__tags {
        gap: 16px;
    }

    .news__tag {
        font-size: 16px;
        line-height: 24px;
        padding: 4px 12px;
    }

    .news__element-container:nth-child(n + 6) {
        display: none;
    }

    .news .news__element:nth-child(1) .news__subtitle,
    .news_page:not(:has(.filter__container_active))
    .news__element:nth-child(1)
    .news__subtitle,
    .news__element-2_n-2 .news__subtitle {
        margin: 16px 40px 0;
    }
}

/* PARTNERS */

.partners {
    overflow: hidden;
    position: relative;
}

.partners::after {
    position: absolute;
    content: "";
    height: -webkit-calc(100% - 20px);
    height: calc(100% - 20px);
    width: 100%;
    background-image: url(/assets/img/patterns/pattern_main.svg);
    opacity: 0.05;
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    right: -190px;
    top: 10px;
    z-index: -1;
}

.partners__controls {
    margin-top: 40px;
}

.partners .swiper-slide {
    height: unset;
}

.partners__element {
    display: block;
    text-decoration: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: center;
    background-color: transparent;
    height: 100%;
    user-select: none;
}

.partners__more-button {
    display: none;
}

@media (max-width: 768px) {
    .partners__more-button {
        display: block;
        margin: 24px auto 0 auto;
    }

    .partners__element {
        display: none;
    }

    .partners__element.show {
        display: block;
    }
}

.partners__title {
    font-weight: 400;
    font-size: 10px;
    line-height: 20px;
    color: var(--g-dark-gray);
    text-align: center;
    margin-top: 24px;
}

.partners__logo {
    height: 75px;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    -webkit-filter: grayscale(1) brightness(100%);
    filter: grayscale(1) brightness(22%);
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    z-index: 1;
}

.partners__logo:hover {
    -webkit-filter: unset;
    filter: unset;
}

.partners__swiper {
    margin-top: 40px;
}

.partners__list {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

@media screen and (min-width: 768px) {
    .partners__list {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px;
    }
}

@media screen and (min-width: 1024px) {
    .partners__list {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }
}

@media screen and (min-width: 1280px) {
    .partners__list {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    }
}

@media screen and (min-width: 1440px) {
    .partners__list {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }
}

.partners .partners__swiper {
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
}

@media screen and (min-width: 768px) {
    .partners::after {
        right: 10px;
        top: 10px;
    }

    .partners__logo {
        height: 75px;
    }

    .partners .content__header {
        display: block;
    }

    .partners__title {
        font-size: 12px;
        line-height: 24px;
        margin: 24px 0 0;
        min-height: 72px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    .partners__swiper {
        margin-top: 60px;
    }
}

@media screen and (min-width: 1024px) {
    .partners__logo {
        height: 75px;
    }

    .partners .partners__swiper {
        margin-left: -24px;
        margin-right: -24px;
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media screen and (min-width: 1280px) {
    .partners__logo {
        height: 75px;
    }

    .partners .partners__swiper {
        margin-left: -48px;
        margin-right: -48px;
        padding-left: 48px;
        padding-right: 48px;
    }
}

@media screen and (min-width: 1440px) {
    .partners__logo {
        height: 75px;
    }

    .partners__controls {
        margin-top: 0;
    }

    .partners .content__header {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .partners__swiper {
        margin-top: 100px;
    }

    .partners::after {
        height: -webkit-calc(100% - 80px);
        height: calc(100% - 80px);
        right: 60px;
        top: 40px;
    }

    .partners .partners__swiper {
        margin-left: -60px;
        margin-right: -60px;
        padding-left: 60px;
        padding-right: 60px;
    }
}

@media screen and (min-width: 1900px) {
    .partners__logo {
        height: 75px;
    }

    .partners .partners__swiper {
        margin-left: -3.158vw;
        margin-right: -3.158vw;
        padding-left: 3.158vw;
        padding-right: 3.158vw;
    }
}

/* ABOUT PAGE */

.about-header {
    padding: 0 !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 500px;
}

.about-header__content {
    background: -webkit-gradient(
            linear,
            left top,
            left bottom,
            from(rgba(20, 70, 147, 0)),
            to(#144693)
    );
    background: -o-linear-gradient(top, rgba(20, 70, 147, 0) 0%, #144693 100%);
    background: linear-gradient(180deg, rgba(20, 70, 147, 0) 0%, #144693 100%);
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    height: 100%;
    padding: 24px 16px;
    max-width: unset;
    gap: 16px;
}

.about-header__title {
    color: white;
    font-size: 32px;
    font-weight: 500;
    line-height: 40px;
    text-align: left;
}

.about-header__description {
    color: white;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
}

@media screen and (min-width: 768px) {
    .about-header__content {
        padding: 24px 16px;
    }

    .about-header__title {
        font-size: 48px;
        line-height: 54px;
    }

    .about-header__description {
        font-size: 16px;
        line-height: 24px;
        max-width: 681px;
    }
}

@media screen and (min-width: 1024px) {
    .about-header__content {
        padding: 24px 24px;
    }
}

@media screen and (min-width: 1280px) {
    .about-header__content {
        padding: 40px 48px;
    }

    .about-header__title {
        font-size: 60px;
        line-height: 60px;
    }

    .about-header__description {
        font-size: 16px;
        line-height: 24px;
        max-width: 736px;
    }
}

@media screen and (min-width: 1440px) {
    .about-header__content {
        padding: 60px 48px;
    }
}

@media screen and (min-width: 1900px) {
    .about-header__content {
        padding: 60px 3.158vw;
    }
}

/* NUMBERS */
.numbers {
    position: relative;
    overflow: hidden;
}

.numbers::after {
    position: absolute;
    content: "";
    height: 100%;
    width: -webkit-calc(100% - 40px);
    width: calc(100% - 40px);
    background-image: url(/assets/img/patterns/pattern_main.svg);
    opacity: 0.05;
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
    top: 160px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.numbers:before {
    position: absolute;
    /*display: block;*/
    content: '';
    /*background: url(/local/templates/tmh_new/images/main/bg4_1.svg) 0 no-repeat;*/
    background: #00509D;
    background-size: 100%;
    bottom: 19px;
    /* top: 0; */
    right: 0;
    width: 120%;
    /*height: 100%;*/
    height: 1px;
    display: none;
}

.numbers .section__title {
    color: var(--main-dark-blue);
}

.numbers .section__description {
    font-size: 18px;
    line-height: 26px;
}

.targets .section__description {
    font-size: 18px;
    line-height: 26px;
}

.numbers__container {
    margin-top: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.numbers__container_projects {
    margin-top: 0;
}

.numbers__container-item {
    padding: 16px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    z-index: 1;
    /*overflow: hidden;*/
    min-height: 197px;
    text-decoration: none;
    border: 1px solid #00509D;
    border-radius: 28px 28px 28px 0;
    background-color: #fff;
}

.numbers__container__bottom-line {
    position: absolute;
    width: 1px;
    left: -1px;
    right: 0;
    bottom: -137px;
    height: 137px;
    background: #00509D;
    display: none;
}

.numbers__container__bottom-line:after {
    position: absolute;
    content: '';
    width: 30px;
    height: 30px;
    left: -15px;
    bottom: -15px;
    background: url(/local/templates/tmh_new/images/main/circle_white.svg) 50% no-repeat;
    background-size: 100%;
}

.numbers__container-item:hover .numbers__container__bottom-line:after {
    background: url(/local/templates/tmh_new/images/main/circle_blue.svg) 50% no-repeat;

}

.numbers__element {
    text-decoration: none;
}

.numbers__container-item:hover {
    background-color: #E8F6FE;
}

.numbers__container-item:hover .numbers__title {
    color: var(--main-dark-blue);
}

.numbers__container-item:hover .numbers__desc {
    color: var(--main-dark-blue);
}


.numbers__container-item::after {
    content: "";
    width: 13px;
    height: 15px;
    background-image: url("/assets/img/arrow_tip_dark.svg");
    position: absolute;
    right: 16px;
    bottom: 16px;
}

.numbers__container-item:hover::after {
    background-image: url("/assets/img/arrow_tip_dark.svg");
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.numbers__element_unset-link-style::after {
    content: unset;
}

.numbers__count {
    color: white;
    background-color: var(--main-dark-blue);
    border: 1px solid var(--main-dark-blue);
    -webkit-border-radius: 20px;
    border-radius: 20px;
    padding: 3px 8px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    min-width: 32px;
    text-align: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 24px;
}

.numbers__title {
    color: var(--main-dark-blue);
    font-size: 32px;
    font-weight: 500;
    line-height: 40px;
    text-align: left;
    margin-top: 16px;
}

.numbers__desc {
    color: var(--main-dark-blue);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    margin-top: 8px;
}

@media screen and (min-width: 500px) {
    .numbers__container {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 16px 1fr;
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media screen and (min-width: 768px) {
    .numbers .content__header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .numbers__element .numbers__count {
        margin-bottom: 40px;
    }
}

@media screen and (min-width: 1024px) {
    .numbers .section__description {
        max-width: -webkit-calc(50% - 12px);
        max-width: calc(50% - 12px);
        margin: 0;
        font-size: 20px;
        line-height: 26px;
    }

    .numbers .content__header {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        gap: 24px;
    }

    .numbers .section__title {
        max-width: 379px;
    }

    .numbers__container {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 24px 1fr 24px 1fr 24px 1fr;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-top: 60px;
    }

    .numbers__container_projects {
        margin-top: 0;
    }

    .numbers::after {
        width: 512px;
        top: 82px;
    }

    .targets .section__description {
        font-size: 20px;
        line-height: 26px;
    }
}

@media screen and (min-width: 1280px) {
    .numbers .section__title {
        max-width: 432px;
        padding-left: 90px;
    }

    .numbers .section__description {
        max-width: -webkit-calc(50% - 60px);
        max-width: calc(50% - 60px);
    }

    .numbers__container {
        margin-top: 100px;
        grid-template-columns: repeat(4, 1fr);
        padding-bottom: 130px;
    }

    .numbers__container__bottom-line {
        display: block;
    }

    .numbers__container_culture {
        margin-top: 60px;
    }

    .numbers__container_projects {
        margin-top: 0;
    }

    .numbers__container-item {
        padding: 24px;
    }

    .numbers__container-item:after {
        bottom: 24px;
        right: 24px;
    }

    .numbers__title {
        font-size: 48px;
        line-height: 54px;
        margin-top: 40px;
    }

    .numbers__desc {
        font-size: 18px;
        line-height: 26px;
        margin-top: 16px;
        max-width: 240px;
    }

    .numbers__element .numbers__count {
        margin-bottom: 60px;
    }

    .numbers__container__bottom-line {
        display: block;
    }

    .numbers:before {
        display: block;
        bottom: 92px;
    }
}

@media screen and (min-width: 1440px) {
    .numbers .section__description {
        font-size: 24px;
        line-height: 32px;
    }

    .numbers__container-item {
        padding: 40px;
    }

    .numbers__container-item:after {
        bottom: 40px;
        right: 40px;
    }

    .numbers__count {
        font-size: 16px;
        line-height: 24px;
        padding: 4px 12px;
        min-width: 44px;
    }

    .numbers__title {
        font-size: 58px;
        line-height: 60px;
        margin-top: 60px;
    }

    .numbers__desc {
        font-size: 20px;
        line-height: 25px;
    }

    .numbers::after {
        width: 770px;
        height: 640px;
        top: 93px;
    }

    .targets .section__description {
        font-size: 24px;
        line-height: 32px;
    }

    .numbers:before {
        bottom: 111px;
        width: 120%;
    }
}

@media (min-width: 1800px) {
    .numbers:before {
        bottom: -10.5%;
        background: url(/local/templates/tmh_new/images/main/bg4_1.svg) 0 no-repeat;
        height: 100%;
        background-size: 100%;
        width: 100%;
    }
}

@media (min-width: 1900px) {
    .numbers:before {
        bottom: 19px;
        width: 120%;
    }

}

@media (min-width: 1930px) {
    .numbers__title {
        font-size: 60px;
        line-height: 60px;
        margin-top: 60px;
    }

    .numbers:before {
        bottom: 6%;
        width: 120%;
    }

}

@media (min-width: 2150px) {
    .numbers:before {
        bottom: 11.5%;
    }

}

/* MISSION */

.mission {
    padding-top: 0;
}

.mission__content {
    height: 700px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 16px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.mission__text-block {
    background-color: white;
    padding: 24px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.mission__title {
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    text-align: left;
    color: var(--main-blue);
}

.mission__description {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    text-align: left;
    margin-top: 16px;
}

@media screen and (min-width: 768px) {
    .mission__content {
        -webkit-box-align: end;
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        align-items: flex-end;
    }

    .mission__text-block {
        width: 100%;
        padding: 40px;
    }

    .mission__title {
        font-size: 40px;
        line-height: 44px;
    }

    .mission__description {
        font-size: 20px;
        line-height: 25px;
    }
}

@media screen and (min-width: 1024px) {
    .mission__text-block {
        max-width: 75%;
    }
}

@media screen and (min-width: 1280px) {
    .mission__content {
        padding: 24px;
    }

    .mission__text-block {
        padding: 60px;
        max-width: 50%;
    }

    .mission__title {
        font-size: 40px;
        line-height: 44px;
    }

    .mission__description {
        font-size: 20px;
        line-height: 25px;
    }
}

@media screen and (min-width: 1900px) {
}

/* VALUES */
.section.about-values {
    position: relative;
    overflow: hidden;
}

.about-values__mission {
    position: relative;
}

.about-values__mission:after {
    position: absolute;
    display: block;
    content: '';
    background: url(/local/templates/tmh_new/images/main/bg2_1.svg) 0 no-repeat;
    background-size: 100%;
    top: 0;
    left: -50px;
    right: 0;
    height: 100%;
    width: 120%;
}

.about-values__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    padding-top: 60px;
}

.about-values__header {
    background-color: var(--main-blue);
    padding: 24px 16px;
    position: relative;
    overflow: hidden;
    min-height: 224px;
}

.about-values__header::after {
    content: "";
    position: absolute;
    /* background-image: url(/assets/img/patterns/pattern2-375_white.svg); */
    background-image: url(/assets/img/patterns/pattern_white-big.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    bottom: 0;   */
    right: -320px;
    width: 700px;
    height: 700px;
    opacity: 0.05;
}

.about-values .section__title {
    color: white;
}

.about-values .section__description {
    color: white;
    font-size: 18px;
    line-height: 26px;
}

.about-values__elements {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.about-values__pic img {
    max-width: 100%;
}

.about-values__element {
    padding: 0;
    justify-content: space-between;
}

.about-values__count {
    color: white;
    background-color: var(--main-blue);
    -webkit-border-radius: 20px;
    border-radius: 20px;
    padding: 3px 8px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    max-width: 44px;
    width: 100%;
    text-align: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.about-values__title {
    font-weight: 500;
    font-size: 24px;
    line-height: 1;
    /*margin-top: 16px;*/
    color: #00509D;
    border-left: 1px solid #00509D;
    padding: 42px 28px 33px;
    /*height: 100%;*/
    position: relative;
}

.about-values__title::before {
    display: block;
    position: absolute;
    content: '';
    background: url(/local/templates/tmh_new/images/main/blue_circle.svg) 50% no-repeat;
    background-size: cover;
    width: 35px;
    height: 34px;
    top: -17px;
    left: -17px;
}

.about-values__pic {
    border: 1px solid #00509D;
    border-radius: 0 28px 28px 28px;
    padding: 27px 72px 27px 24px;
    position: relative;
}

.about-values__pic::after {
    position: absolute;
    content: '';
    display: block;
    width: 106px;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(232, 246, 254, 1);
    background-image: url(/local/templates/tmh_new/images/main/arrow-right.svg);
    background-size: 28px;
    background-repeat: no-repeat;
    background-position: top 24px right 24px;
    border-radius: 0 28px 28px 0;
    z-index: -1;
    cursor: pointer;
}

@media screen and (min-width: 768px) {
    .about-values .section__description {
        margin-top: 40px;
    }

    .about-values__elements {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* .about-values__header::after {
    background-image: url(/assets/img/patterns/pattern2-768_white.svg);
    position: absolute;
    left: 0;
    background-size: contain;
    } */
}

@media screen and (min-width: 1024px) {
    .about-values__content {
        padding-top: 100px;
    }

    .about-values__header::after {
        left: unset;
        right: -150px;
    }

    .about-values__elements {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (min-width: 1280px) {
    .about-values__content {
        gap: 24px;
        padding-top: 100px;
    }

    .about-values__header {
        padding: 40px 24px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .about-values__header::after {
        /* background-image: url(/assets/img/patterns/pattern2_white.svg);
      left: 0;
      background-size: cover; */
    }

    .about-values__header::after {
        left: 0;
        width: 1064px;
        height: 1064px;
        right: -500px;
    }

    .about-values .section__title {
        font-size: 40px;
        line-height: 44px;
    }

    .about-values .section__description {
        font-size: 20px;
        line-height: 25px;
    }

    .about-values__element {
        padding: 0;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        gap: 0;
        flex-direction: column;
    }

    .about-values__title {
        font-size: 20px;
        line-height: 25px;
        margin: 0;
    }
}

@media screen and (min-width: 1440px) {
    .about-values .section__title {
        font-size: 48px;
        line-height: 54px;
    }

    .about-values .section__description {
        font-size: 24px;
        line-height: 32px;
    }

    .about-values__title {
        font-size: 24px;
        line-height: 32px;
        height: 100%;
    }

    .about-values__header {
        padding: 60px 40px;
    }

    .about-values__element {
        padding: 0;
    }

    .about-values__count {
        font-size: 16px;
        line-height: 24px;
        padding: 4px 12px;
    }

    .about-values__header::after {
        /* left: 0; */
    }

    .about-values__elements {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* TARGETS */

.targets {
    background-color: var(--main-very-dark-blue);
    overflow: hidden;
}

.targets .swiper-slide {
    height: unset;
}

.targets .section__title {
    color: white;
}

.targets .section__description {
    color: white;
}

.targets__elements {
    margin-top: 40px;
    height: 100%;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.targets__element {
    background-color: white;
    height: 100%;
}

.targets__preview-image {
    width: 100%;
    height: 51.46vw;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.targets__desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    margin: 16px;
}

.targets__pagination {
    display: inline-block;
    position: unset;
    margin: 0;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: var(--main-blue);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.targets__controls {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.targets__buttons {
    margin: 0;
}

@media screen and (min-width: 768px) {
    .targets .content__header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

@media screen and (min-width: 1024px) {
    .targets .section__description {
        max-width: 50%;
        margin: 0;
    }

    .targets .content__header {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        gap: 24px;
    }

    .targets__container {
        margin-top: 60px;
    }

    .targets__desc {
        font-size: 20px;
        line-height: 25px;
        margin: 24px;
    }

    .targets__preview-image {
        height: 333px;
    }

    .targets__controls {
        width: -webkit-calc(50% - 48px);
        width: calc(50% - 48px);
        left: unset;
        right: 24px;
        bottom: 24px;
    }

    .targets__pagination {
        font-size: 20px;
        line-height: 26px;
    }

    .targets .section__description {
        font-size: 20px;
        line-height: 26px;
    }
}

@media screen and (min-width: 1280px) {
    .targets .section__title {
        max-width: -webkit-calc(50% - 12px);
        max-width: calc(50% - 12px);
        font-size: 40px;
        line-height: 44px;
    }

    .targets .section__description {
        max-width: -webkit-calc(50% - 12px);
        max-width: calc(50% - 12px);
    }

    .targets__elements {
        margin-top: 60px;
    }
}

@media screen and (min-width: 1440px) {
    .targets__desc {
        font-size: 24px;
        line-height: 32px;
        margin: 40px;
    }

    .targets__elements {
        margin-top: 100px;
    }

    .targets__controls {
        width: -webkit-calc(50% - 80px);
        width: calc(50% - 80px);
        right: 40px;
        bottom: 40px;
    }

    .targets__preview-image {
        height: 506px;
    }

    .targets .section__description {
        font-size: 24px;
        line-height: 32px;
    }
}

/* REWARDS */

.rewards {
    background-color: var(--sec-gray-blue);
    overflow: hidden;
    position: relative;
}

.rewards::after {
    position: absolute;
    content: "";
    height: -webkit-calc(100% - 20px);
    height: calc(100% - 20px);
    width: 100%;
    background-image: url(/assets/img/patterns/pattern_main.svg);
    opacity: 0.05;
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    right: -190px;
    top: 10px;
}

.rewards__controls {
    margin-top: 40px;
}

.rewards .swiper-slide {
    height: unset;
}

.rewards__element {
    display: block;
    text-decoration: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: transparent;
    height: 100%;
}

.rewards__link {
    font-size: 0;
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
}

.rewards__title {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--g-dark-gray);
    margin: 24px 16px 0;
    text-align: center;
}

.rewards__image {
    height: 254.61px;
    width: 254.61px;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.rewards__swiper {
    margin-top: 40px;
}

.rewards .rewards__swiper {
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
}

@media screen and (min-width: 768px) {
    .rewards::after {
        right: 10px;
        top: 10px;
    }

    .rewards .content__header {
        display: block;
    }

    .rewards__title {
        font-size: 16px;
        line-height: 24px;
        margin: 40px 16px 0;
    }

    .rewards__swiper {
        margin-top: 60px;
    }

    .rewards__image {
        height: 258.45px;
        width: 258.45px;
    }
}

@media screen and (min-width: 1024px) {
    .rewards__image {
        height: 267.88px;
        width: 267.88px;
    }

    .rewards .rewards__swiper {
        margin-left: -24px;
        margin-right: -24px;
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media screen and (min-width: 1280px) {
    .rewards__image {
        height: 266px;
        width: 266px;
    }

    .rewards .rewards__swiper {
        margin-left: -48px;
        margin-right: -48px;
        padding-left: 48px;
        padding-right: 48px;
    }
}

@media screen and (min-width: 1440px) {
    .rewards__image {
        height: 16.42vw;
        max-height: 312px;
        width: 16.42vw;
        max-width: 312px;
    }

    .rewards__controls {
        margin-top: 0;
    }

    .rewards .content__header {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .rewards__swiper {
        margin-top: 100px;
    }

    .rewards::after {
        height: -webkit-calc(100% - 80px);
        height: calc(100% - 80px);
        right: 60px;
        top: 40px;
    }

    .rewards .rewards__swiper {
        margin-left: -60px;
        margin-right: -60px;
        padding-left: 60px;
        padding-right: 60px;
    }
}

@media screen and (min-width: 1900px) {
    .rewards__image {
        height: 312px;
        width: 312px;
    }

    .rewards .rewards__swiper {
        margin-left: -3.158vw;
        margin-right: -3.158vw;
        padding-left: 3.158vw;
        padding-right: 3.158vw;
    }
}

/* FORMS */

.event-form .form__container,
.question-form .form__container {
    background-color: var(--main-blue);
    margin-top: 24px;
    padding: 16px;
}

.study__content .question-form .form__container {
    background-color: #00509D;
    border-radius: 46px;
    position: relative;
}

.study__content .question-form .form__container:after {
    position: absolute;
    display: block;
    content: '';
    background: url(/local/templates/tmh_new/images/form_image.png) 0 100% no-repeat;
    background-size: contain;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 100%;
    z-index: 0;
}

.study__content .form__description {
    z-index: 1;
}

.event-form .form__title,
.question-form .form__title {
    color: white;
    margin: 0;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    text-align: left;
}

.event-form .form__subtitle,
.question-form .form__subtitle {
    color: white;
    margin: 8px 0 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: left;
}

.event-form .form__info,
.question-form .form__info {
    color: white;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.form__info a {
    font-weight: 500;
    color: inherit;
}

.event-form .form__fieldset,
.question-form .form__fieldset {
    margin-top: 24px;
    padding: 0;
}

.event-form .form__button,
.question-form .form__button {
    margin: 16px 0 0;
}

.event-form .form__input_textarea,
.question-form .form__input_textarea {
    height: 200px;
}

@media screen and (min-width: 768px) {
    .event-form .form__container {
        margin-top: 40px;
        padding: 24px;
    }

    .event-form .form__title,
    .question-form .form__title {
        font-size: 40px;
        line-height: 44px;
    }

    .event-form .form__subtitle,
    .question-form .form__subtitle {
        margin: 16px 0 0;
        font-size: 18px;
        line-height: 26px;
    }

    .event-form .form__button,
    .question-form .form__button {
        margin: 24px 0 0;
    }
}

@media screen and (min-width: 1024px) {
    .question-form .form__container {
        margin-top: 40px;
        padding: 24px;
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 24px 1fr;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .question-form .form__fieldset,
    .event-form .form__fieldset {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 24px 1fr;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 24px;
    }

    .question-form .form__fieldset .form__input-wrapper:nth-child(n + 5),
    .event-form .form__fieldset .form__input-wrapper:nth-child(n + 5) {
        -ms-grid-column: 1;
        grid-column-start: 1;
        -ms-grid-column-span: 2;
        grid-column-end: 3;
    }

    .question-form .form__fieldset .form__info,
    .event-form .form__fieldset .form__info {
        -ms-grid-column: 1;
        grid-column-start: 1;
        -ms-grid-column-span: 2;
        grid-column-end: 3;
    }
}

@media screen and (min-width: 1280px) {
    .question-form .form__container,
    .event-form .form__container {
        margin-top: 60px;
    }

    .event-form .form__fieldset {
        margin-top: 24px;
    }
}

@media screen and (min-width: 1440px) {
    .question-form .form__container {
        margin-top: 100px;
        padding: 40px;
    }

    .event-form .form__container {
        margin-top: 100px;
        padding: 40px;
    }

    .question-form .form__fieldset,
    .event-form .form__fieldset {
        gap: 24px;
    }

    .event-form .form__title,
    .question-form .form__title {
        font-size: 48px;
        line-height: 54px;
    }

    .event-form .form__subtitle,
    .question-form .form__subtitle {
        font-size: 20px;
        line-height: 25px;
    }

    .event-form .form__button,
    .question-form .form__button {
        margin: 40px 0 0;
    }
}

/* CONTACTS */

.contacts {
    padding-top: 0;
}

.contacts__list-prop {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}

.contacts__col-prop {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
}

.contact-prop {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
}

.contact-prop__title {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: var(--g-gray);
}

a.contact-prop__val {
    text-decoration: none;
}

a.contact-prop__val:hover {
    text-decoration: underline;
}

.contact-prop__val {
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    color: var(--main-dark-blue);
}

.contacts__work-hours {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: -webkit-max-content 16px auto;
    -ms-grid-columns: max-content 16px auto;
    grid-template-columns: -webkit-max-content auto;
    grid-template-columns: max-content auto;
    gap: 8px 16px;
}

.contacts__work-time {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 10px;
}

.contacts__work-hours span {
    white-space: nowrap;
}

.contacts__work-time span {
    font-size: 14px;
    line-height: 20px;
}

.contact-prop__val_social-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
}

.filials-slide__prop-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: var(--g-gray);
}

.filials-slide__prop-val {
    color: var(--sec-black);
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
}

.filials-slide__city-name {
    color: var(--main-blue);
    font-size: 20px;
    line-height: 25px;
    font-weight: 500;
}

@media screen and (min-width: 768px) {
    .contacts__list-prop {
        max-width: 65vw;
    }
}

@media screen and (min-width: 1024px) {
    .contacts__list-prop {
        gap: 24px;
        margin-top: 24px;
    }

    .contact-prop__title {
        font-size: 16px;
        line-height: 24px;
    }

    .contact-prop__val {
        font-size: 32px;
        line-height: 40px;
        font-weight: 500;
    }

    .filials-slide__prop-title {
        font-size: 16px;
        line-height: 24px;
    }

    .filials-slide__prop-val {
        font-size: 18px;
        line-height: 26px;
    }

    .filials-slide__city-name {
        font-size: 32px;
        line-height: 40px;
    }

    .contacts__work-time span {
        font-size: 16px;
        line-height: 24px;
    }
}

@media screen and (min-width: 1280px) {
    .contacts__list-prop {
        max-width: unset;
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: (1fr) [ 3 ];
        grid-template-columns: repeat(3, 1fr);
        margin-top: 40px;
    }

    .filials-slide__prop-val {
        font-size: 20px;
        line-height: 24px;
    }

    .filials-slide__city-name {
        font-size: 40px;
        line-height: 44px;
    }
}

@media screen and (min-width: 1600px) {
    .contact-prop__val {
        font-size: 40px;
        line-height: 44px;
        font-weight: 500;
    }
}

/* ITEM DETAIL */

.content_item-detail {
    max-width: 900px;
}

.item-detail {
    padding-top: 0;
    margin: auto;
}

.item-detail__chips {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-bottom: 16px;
}

.item-detail__preview-text {
    margin-top: 16px;
    font-size: 16px;
    line-height: 24px;
}

.item-detail__meta {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 16px;
    color: var(--main-blue);
    font-size: 16px;
    gap: 16px;
}

.item-detail__intro {
    margin-top: 16px;
}

.item-detail__meta > span {
    border-right: 1px solid rgba(0, 80, 157, 0.3);
    padding-right: 16px;
}

.item-detail__meta > span:last-child {
    border: none;
    padding-right: 0;
}

.item-detail__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 16px;
    gap: 24px;
}

.item-detail__all-link {
    margin-top: 24px;
}

.item-detail__media-block {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0;
}

.item-detail__media {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.item-detail__text-block {
    font-size: 16px;
    line-height: 24px;
}

.item-detail__text-block img,
.item-detail__text-block video,
.item-detail__text-block iframe {
    width: 100%;
    margin: 24px auto;
    height: auto;
}

.item-detail__text-block p,
.item-detail__text-block i,
.item-detail__text-block b,
.item-detail__text-block ul,
.item-detail__text-block ol,
.item-detail__text-block ul li,
.item-detail__text-block ol li {
    font-size: 16px;
    line-height: 24px;
}

@media screen and (min-width: 769px) {
    .item-detail__meta {
        margin-top: 16px;
        color: var(--main-blue);
        font-size: 18px;
    }

    .item-detail__chips {
        margin-bottom: 24px;
    }

    .item-detail__all-link {
        margin-top: 40px;
    }
}

@media screen and (min-width: 1024px) {
    .item-detail {
        max-width: 782px;
    }

    .item-detail__preview-text {
        font-size: 18px;
        line-height: 26px;
    }
}

@media screen and (min-width: 1280px) {
    .item-detail__intro {
        margin-top: 24px;
    }

    .item-detail {
        max-width: 1192px;
    }

    .item-detail__content {
        margin-top: 40px;
        gap: 40px;
    }

    .item-detail__meta {
        margin-top: 24px;
        font-size: 20px;
    }

    .item-detail__all-link {
        margin-top: 60px;
    }

    .item-detail__text-block {
        /* padding: 0 12.75%; */
    }

    .item-detail__preview-text {
        margin-top: 24px;
        font-size: 20px;
        line-height: 26px;
    }

    .item-detail__text-block {
        font-size: 18px;
        line-height: 26px;
    }

    .item-detail__text-block p,
    .item-detail__text-block i,
    .item-detail__text-block b,
    .item-detail__text-block ul,
    .item-detail__text-block ol,
    .item-detail__text-block ol li,
    .item-detail__text-block ul li {
        font-size: 18px;
        line-height: 26px;
    }
}

/* STUDY PROGRAMS */

.study-page {
    padding-top: 0;
}

.study-page__top {
    position: relative;
    padding-bottom: 37px;
}

.study-page__top:after {
    position: absolute;
    display: block;
    content: '';
    background: url(/local/templates/tmh_new/images/study/study_top_bg.png) 100% no-repeat;
    background-size: contain;
    bottom: 12%;
    right: 5%;
    width: 33%;
    height: 100%;
    z-index: 0;
}

.study-page__top-block {
    background: linear-gradient(121.29deg, #141F28 17.27%, #00509D 68.9%);
    margin-top: -130px;
}

.study-page__top-block .breadcrumbs {
    padding-top: 130px;
}

.study-page__programs-list {
    background: linear-gradient(180deg, #141F28 0%, #00509D 100%);
}

.study-page_list {
    padding: 0;
}

.study-page .section__title {
    color: #fff;
}

.study-page .section__description {
    color: #fff;
}

.study-page .study__main-container {
    margin-top: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
}

.service-page .study__main-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

.study-page .study__main-container_list {
    margin-top: 0;
}

@media screen and (min-width: 768px) {
    .study-page .study__main-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .service-page .study__main-container {
        gap: 16px;
    }
}

@media screen and (min-width: 1280px) {
    .study-page .study__main-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .study-page .study__main-container_list {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-page .study__main-container {
        gap: 40px;
    }
}

@media screen and (min-width: 1440px) {
    .content_item-detail {
        max-width: 1192px;
    }
}

/* SERVICE DETAIL */

.service-detail {
    padding-top: 0;
}

.service-detail__content {
    width: 100%;
}

.service-detail__preview-text {
    margin-top: 16px;
}

.service-sidebar {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    background-color: var(--sec-gray-blue);
    padding: 24px;
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
    width: 100%;
}

.service-sidebar__prop {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
}

.service-sidebar__prop-name {
    color: var(--g-dark-gray);
    font-size: 14px;
}

.service-sidebar__prop-val {
    color: var(--sec-black);
    font-weight: 500;
}

.service-sidebar__prop-price {
    color: var(--main-blue);
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
}

.service-sidebar__prop-price-info {
    color: var(--sec-dark-gray-blue);
    font-size: 14px;
    line-height: 20px;
}

.service-sidebar__prop-currency {
    color: var(--main-white-blue);
}

.content_service-detail {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
}

.service-detail__accordion {
    margin-top: 16px;
}

.service-detail__about {
    margin-top: 24px;
}

.accordion {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
}

.accordion-item__head {
    position: relative;
    background-color: var(--sec-gray-blue);
    cursor: pointer;
    min-height: 56px;
    padding: 16px 50px 16px 16px;
    font-size: 16px;
    font-weight: 500;
}

.accordion-item__content {
    padding: 16px;
    display: none;
    background-color: var(--sec-gray-blue);
    font-size: 16px;
}

.accordion-item__list-file {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
}

.accordion-item__content_open {
    display: block;
}

.accordion-item__arrow {
    position: absolute;
    right: 16px;
    top: 16px;
    width: 24px;
    height: 24px;
    background-image: url("/assets/img/ui/arrow_down_black.svg");
    background-size: 19px;
    background-position: center;
    background-repeat: no-repeat;
}

.accordion-item__arrow_open {
    /* Для Firefox */
    -ms-transform: rotate(180deg); /* Для IE */
    -webkit-transform: rotate(
            180deg
    ); /* Для Safari, Chrome, iOS */ /* Для Opera */
    transform: rotate(180deg);
}

.accordion-item__content > * {
    font-size: 14px;
    line-height: 20px;
}


.service-detail-n .service-detail__top {
    display: flex;
    justify-content: space-between;
    margin: 0 40px 40px 40px;
}

.service-detail-n .service-detail__top .service-detail__top__prop {
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-detail-n .service-detail__top .service-detail__top__prop .service-detail__top__prop-val {
    color: var(--main-blue);
    font-variant-numeric: lining-nums proportional-nums;
    font-size: 90px;
    font-style: normal;
    font-weight: 500;
    line-height: 90px;
}

.service-detail-n .service-detail__top .service-detail__top__prop .service-detail__top__prop-name {
    color: var(--g-dark-gray);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
}

.service-detail-n .service-sidebar {
    background: var(--main-blue);
    background-image: url(/assets/img/study/service-detail-sidebar-bg.png);
    background-repeat: no-repeat;
    background-position: bottom right;
    min-height: 200px;
}

.service-detail-n .service-sidebar-name {
    margin-bottom: 20px;
}

.service-detail-n .service-sidebar-name .section__title {
    color: white;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px;
}

.service-detail-n .content_service-detail .service-detail__content {
    background: var(--sec-gray-blue);
    padding: 40px 40px 40px 336px;
    background-image: url(/assets/img/study/service-detail__content-bg.png);
    background-repeat: repeat-y;
    background-position: left;
}

.service-detail-n .service-detail__preview-text {
    font-size: 24px;
    line-height: 32px;
    margin-top: 0;
    margin-bottom: 16px;
    font-weight: 500;
}

.service-detail-n .service-detail__head {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.service-detail-n .service-detail__content_bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
}

.service-detail-n .service-sidebar .service-sidebar__prop-name {
    color: var(--sec-gray-blue);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.service-detail-n .service-sidebar .service-sidebar__prop-val {
    color: white;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
}

.service-detail-n .files {
    background: var(--main-white-blue);
    padding: 12px 0;
    display: flex;
    justify-content: center;
}

.service-detail-n .files .files-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-detail-n .files .file:nth-of-type(2) {
    /* justify-content: center; */
    margin-top: 12px;
}

.service-detail-n .service-detail__content_bottom .service-sidebar__prop-name {
    color: var(--main-blue);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.suitable-for {
    background: var(--main-very-dark-blue);
    color: white;
    /* padding: 140px 0;
    margin-top: 140px; */
}

.suitable {
    background: var(--main-very-dark-blue);
    margin-bottom: 140px;
}

.suitable-for h2 {
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 54px;
}

.suitable-for .h2-sup {
    margin-top: 40px;
    color: var(--main-white-blue);
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
}

.suitable-for__num-block {
    display: flex;
    justify-content: space-between;
    margin: 64px 40px 60px 40px;
}

.suitable-for__num-block_item {
    display: flex;
    gap: 24px;
    align-items: center;
}

.suitable-for__content {
    display: flex;
    gap: 21px;
}

.suitable-for__content_col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}

.suitable-for__num-block_item p {
    color: white;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
    max-width: 230px;
}

.suitable-for__num-block_item p:first-of-type {
    color: var(--sec-dark-gray-blue);
    font-size: 65px;
    font-style: normal;
    font-weight: 500;
    line-height: 78px;
    opacity: 0.5;
}

.suitable-for__content_text {
    padding: 40px;
    background: var(--main-white-blue);
    color: var(--sec-black);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.suitable-for__content_text p {
    color: var(--sec-black);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.suitable-for__content_text:first-of-type {
    color: var(--main-dark-blue);
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
}

.suitable-for__content_text ul {
    list-style-type: disc;
    padding-left: 2.5em;
    gap: 0px;
}


.suitable-for__content_col:first-child,
.suitable-for__content_col:last-child {
    flex: 1 1 584px; /* могут сжиматься, но стараются быть 200px */
    min-width: 100px; /* чтобы совсем не скукожились */
}

/* Центральный блок: получает всё остальное пространство */
.suitable-for__content_col:nth-child(2) {
    flex: 2 1 584px; /* более приоритетный, гибкий */
    min-width: 500px;
}

.suitable-for__content_col img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.suitable-for__content_col:first-child img:first-of-type {
    height: 60%;
    width: 100%;
    object-fit: cover;
}

.suitable-for__content_col:last-child img:last-of-type {
    height: 60%;
    width: 100%;
    object-fit: cover;
}

@media screen and (max-width: 768px) {
    .service-detail-n .service-detail__top {
        margin: 20px 0 20px 0;
        flex-direction: column;
        gap: 8px;
    }

    .service-detail-n .service-detail__top .service-detail__top__prop .service-detail__top__prop-val {
        font-size: 40px;
        line-height: 40px;
    }

    .service-detail-n .content_service-detail .service-detail__content {
        padding: 40px 40px 40px 40px;
        background-image: none;
    }

    .service-detail-n .service-detail__content_bottom {
        margin-top: 24px;
        flex-wrap: wrap;
    }

    .suitable-for__num-block {
        flex-wrap: wrap;
        margin: 44px 0 40px 0;
    }

    .suitable-for__num-block_item p {
        font-size: 18px;
        line-height: 23px;
    }

    .suitable-for__num-block_item p:first-of-type {
        font-size: 55px;
        line-height: 68px;
    }

    .suitable-for__content {
        flex-wrap: wrap;
    }

    .suitable-for__content_col:nth-child(2) {
        min-width: 100%;
    }

    .suitable-for h2 {
        font-size: 42px;
        line-height: 48px;
    }
}


@media screen and (min-width: 1024px) {
    .content_service-detail {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        gap: 24px;
    }

    .service-detail__sidebar {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 379px;
        -ms-flex: 0 0 379px;
        flex: 0 0 379px;
    }

    .service-sidebar__prop-price {
        font-size: 40px;
        line-height: 44px;
    }

    .service-sidebar__prop-price-info {
        font-size: 16px;
        line-height: 24px;
    }

    .service-sidebar__prop-name {
        font-size: 16px;
    }

    .service-detail__accordion {
        margin-top: 24px;
    }

    .service-detail__about {
        margin-top: 40px;
    }

    .accordion-item__head {
        font-size: 18px;
        line-height: 24px;
    }

    .accordion-item__content > * {
        font-size: 16px;
        line-height: 24px;
    }

    .accordion-item__content ol li,
    .accordion-item__content ul li {
        font-size: 16px;
        line-height: 24px;
    }
}

@media screen and (min-width: 1700px) {
    .content_service-detail {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .service-detail__sidebar {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 584px;
        -ms-flex: 0 0 584px;
        flex: 0 0 584px;
    }

    .service-sidebar__prop-price {
        font-size: 48px;
        line-height: 54px;
    }

    .service-detail__accordion {
        margin-top: 40px;
    }

    .service-detail__about {
        margin-top: 60px;
    }

    .accordion-item__head {
        font-size: 20px;
        line-height: 25px;
        padding: 24px 60px 24px 24px;
    }

    .accordion-item__arrow {
        right: 24px;
        top: 24px;
    }

    .accordion-item__content {
        padding: 24px;
    }
}

/* MEDIA INDEX */
.media_page {
    padding-top: 0;
}

.media__main-container {
    margin-top: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
}

.media-element {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    overflow: hidden;
    min-height: 309px;
    text-decoration: none;
}

.media-element__date {
    margin-top: 8px;
}

.media-element__wrap-image {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
}

.media-element__wrap-image:after {
    content: " ";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: -webkit-gradient(
            linear,
            left top,
            left bottom,
            from(rgba(30, 87, 153, 0)),
            to(rgba(20, 70, 147, 0.5))
    );
    background: -o-linear-gradient(
            top,
            rgba(30, 87, 153, 0) 0%,
            rgba(20, 70, 147, 0.5) 100%
    );
    background: linear-gradient(
            to bottom,
            rgba(30, 87, 153, 0) 0%,
            rgba(20, 70, 147, 0.5) 100%
    ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.media-element__image {
    width: 100%;
    height: 100%;
    max-height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.media-element__title {
    color: var(--sec-black);
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    overflow-wrap: anywhere;
}

.media-element__date {
    font-size: 16px;
    line-height: 24px;
}

.media-element__tag {
    position: absolute;
    top: 16px;
    left: 16px;
}

.media-element__footer {
    padding: 16px;
}

@media screen and (min-width: 768px) {
    .media-element__image {
        /* width: unset; */
        width: 100%;
        max-height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }

    .media-element__date {
        margin-top: 16px;
    }

    .media__main-container {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 24px 1fr;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .media-element__wrap-image {
        height: 328px;
        min-height: 328px;
    }

    .media-element__footer {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        height: 100%;
    }
}

@media screen and (min-width: 1280px) {
    .media__main-container {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 24px 1fr 24px 1fr;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .media-element__title {
        font-size: 20px;
        line-height: 26px;
    }

    .media-element__date {
        font-size: 18px;
        line-height: 26px;
    }
}

@media screen and (min-width: 1700px) {
    .media-element__title {
        font-size: 24px;
        line-height: 32px;
    }
}

/* MEDIA DETAIL */
.media-detail__container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.media-detail__container img {
    margin: 0;
}

.media-detail {
    padding-top: 0;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.media-detail .swiper-slide {
    margin-top: auto;
    margin-bottom: auto;
}

.media-detail img {
    width: 100%;
    height: 100%;
}

.media-detail__controls {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    justify-content: space-between;
    padding: 0 15px;
}

.media-detail__albom {
    width: 100%;
    overflow: hidden;
}

.media-detail__albom img {
    width: 100%;
    height: 100%;
}

.media-detail__albom .swiper-slide {
    cursor: pointer;
}

.media-detail__albom .swiper-slide:not(.swiper-slide-thumb-active):after {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(77, 94, 132, 0) 0%, #4d5e84 100%);
    position: absolute;
    left: 0;
    bottom: 0;
}

.media-detail__albom img {
    margin: 0;
}

.media-detail__main-media {
    width: 100%;
    margin-bottom: 16px;
    display: block;
    height: 51.47vw;
    background-color: var(--sec-black);
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
}

img.media-detail__main-media {
    -o-object-fit: cover;
    object-fit: cover;
}

.media-detail__albom {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
}

.media-detail__albom_culture {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.albom-item {
    width: 100%;
}

.media-detail__albom .albom-item > * {
    width: 100%;
    height: 52.47vw;
    -o-object-fit: cover;
    object-fit: cover;
}

.play {
    position: relative;
    display: block;
}

.play::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 60px;
    height: 60px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: white;
    background-image: url("/assets/img/ui/play.svg");
    background-repeat: no-repeat;
    background-position: 22px center;
}

.media-detail__meta {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 16px;
    color: var(--main-blue);
    font-size: 16px;
    gap: 16px;
}

.media-detail__preview-text {
    margin-top: 16px;
    font-size: 16px;
    line-height: 24px;
}

.media-detail__meta {
    margin-top: 24px;
    margin-bottom: 24px;
}

.media-detail__all-link {
    margin-top: 24px;
}

@media screen and (min-width: 768px) {
    .media-detail__albom {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 24px 1fr;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .media-detail__albom_culture {
        grid-template-columns: repeat(4, 1fr);
    }

    .media-detail__all-link {
        margin-top: 40px;
    }

    .media-detail__albom .albom-item > * {
        height: 213px;
    }
}

@media screen and (min-width: 1024px) {
    .media-detail__albom {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 24px 1fr 24px 1fr;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .media-detail__albom_culture {
        grid-template-columns: repeat(4, 1fr);
    }

    .media-detail__preview-text {
        font-size: 18px;
        line-height: 26px;
    }

    .media-detail__meta {
        margin-bottom: 40px;
    }
}

@media screen and (min-width: 1280px) {
    .media-detail__main-media {
        max-height: 666px;
        margin-bottom: 24px;
    }

    .media-detail__preview-text {
        margin-top: 24px;
        font-size: 20px;
        line-height: 24px;
    }

    .media-detail__meta {
        margin-bottom: 60px;
        font-size: 20px;
    }

    .media-detail__all-link {
        margin-top: 60px;
    }

    .media-detail__albom .albom-item > * {
        height: 215px;
    }
}

/* USEFULL PAGE */

.usefull__container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.usefull_page {
    background-color: transparent;
    padding-top: 0;
}

.usefull_page .usefull-element {
    background-color: var(--sec-gray-blue);
}

.usefull_page .usefull-element:hover {
    background-color: var(--main-blue);
}

.usefull-element {
    text-decoration: none;
    background-color: white;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 16px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.usefull-element:hover {
    background-color: var(--main-blue);
}

.usefull-element:hover .usefull-element__tag {
    background-color: white;
    color: var(--main-blue);
}

.usefull-element:hover .usefull-element__title,
.usefull-element:hover .usefull-element__preview-text,
.usefull-element:hover .usefull-element__preview-text span {
    color: white !important;
}

.usefull-element:hover .usefull-element__date {
    color: white;
    opacity: 1;
}

.usefull-element:hover .usefull-element__footer {
    -webkit-filter: grayscale(1) brightness(1000%);
    filter: grayscale(1) brightness(1000%);
}

.usefull-element__tags {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 8px;
}

.usefull-element__tag {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    background-color: var(--main-blue);
    -webkit-border-radius: 20px;
    border-radius: 20px;
    padding: 3px 8px;
    color: white;
}

.usefull-element__tag:nth-child(n + 4) {
    display: none;
}

.usefull-element__title {
    margin: 16px 0 0 0;
    font-size: 18px;
    line-height: 26px;
    color: var(--sec-black);
    font-weight: 500;
    overflow-wrap: anywhere;
}

.usefull-element__preview-text {
    margin: 8px 0 0 0;
    font-size: 14px;
    line-height: 20px;
    color: var(--g-dark-gray);
}

.usefull-element__footer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0 0 0;
}

.usefull-element__footer span {
    border-right: 1px solid rgba(0, 80, 157, 0.3);
    padding-right: 8px;
    height: 20px;
    opacity: 0.7;
}

.usefull-element__footer span:last-child {
    border: none;
    padding-right: 0;
}

.usefull-element__date {
    font-size: 16px;
    line-height: 24px;
}

@media screen and (min-width: 768px) {
    .usefull__container {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 24px 1fr;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-top: 24px;
    }
}

@media screen and (min-width: 1024px) {
    .usefull-element__title {
        font-size: 20px;
        line-height: 25px;
    }

    .usefull-element__preview-text {
        font-size: 16px;
        line-height: 24px;
    }
}

@media screen and (min-width: 1280px) {
    .usefull-element {
        padding: 24px;
    }

    .usefull__container {
        -ms-grid-columns: (1fr) [ 3 ];
        grid-template-columns: repeat(3, 1fr);
        margin-top: 40px;
    }

    .usefull-element__title {
        font-size: 24px;
        line-height: 32px;
    }

    .usefull-element__date {
        font-size: 18px;
        line-height: 26px;
    }
}

/* 404 */

.not-found {
    padding-top: 24px;
    position: relative;
    overflow: hidden;
}

.not-found::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -162px;
    background-image: url(/assets/img/patterns/pattern_gray-blue.svg);
    background-position: top center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 343px;
    height: 286px;
    z-index: -1;
    margin: 0 auto;
}

.not-found__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.not-found__title {
    color: var(--main-white-blue);
    font-size: 60px;
    font-weight: 500;
    line-height: 60px;
    text-align: center;
}

.not-found__subtitle {
    font-weight: 500;
    font-size: 32px;
    line-height: 40px;
    text-align: center;
    color: var(--main-blue);
}

.not-found__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    margin-top: 16px;
    max-width: 350px;
}

.not-found__button {
    margin: 16px auto 0;
}

@media screen and (min-width: 768px) {
    .not-found {
        padding-top: 44px;
        padding-bottom: 100px;
    }

    .not-found::after {
        left: unset;
        right: -256px;
        bottom: unset;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        background-position: left center;
        width: 513px;
        height: 428px;
        z-index: -1;
        margin: unset;
    }

    .not-found::before {
        content: "";
        position: absolute;
        left: -256px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        background-image: url(/assets/img/patterns/pattern_gray-blue.svg);
        background-position: right center;
        background-size: contain;
        background-repeat: no-repeat;
        width: 513px;
        height: 428px;
        z-index: -1;
    }

    .not-found__title {
        font-size: 96px;
        line-height: 100px;
    }

    .not-found__subtitle {
        font-size: 48px;
        line-height: 54px;
    }

    .not-found__text {
        font-size: 18px;
        line-height: 26px;
        margin-top: 24px;
    }

    .not-found__button {
        margin: 24px auto 0;
    }
}

@media screen and (min-width: 1280px) {
    .not-found {
        padding-top: 84px;
        padding-bottom: 160px;
    }

    .not-found::after {
        right: -293px;
        width: 586px;
        height: 489px;
    }

    .not-found::before {
        left: -293px;
        width: 586px;
        height: 489px;
    }

    .not-found__title {
        font-size: 150px;
        line-height: 180px;
    }

    .not-found__subtitle {
        font-size: 60px;
        line-height: 60px;
    }

    .not-found__text {
        font-size: 20px;
        line-height: 25px;
        margin-top: 40px;
        max-width: 450px;
    }

    .not-found__button {
        margin: 40px auto 0;
    }
}

/* SEARCH */

.section.search {
    padding-top: 0;
}

.search__form input {
    background-color: var(--sec-gray-blue);
}

.search__button {
    width: 100%;
    margin-top: 16px;
}

.form__search-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    background-image: url(/assets/img/ui/search_blue.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.form__search-icon_disabled {
    display: none;
}

.search__results-container {
    margin-top: 16px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
}

.search__result-item {
    padding: 16px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: var(--sec-gray-blue);
}

.search__result-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    text-decoration: none;
    color: var(--sec-black);
    margin-top: 8px;
    display: inline-block;
}

.search__result-title:hover {
    text-decoration: underline;
}

.search__result-title b {
    color: var(--main-blue);
}

.search__section-name {
    color: var(--sec-dark-gray-blue);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 3px 12px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.search__section-name a {
    color: var(--sec-dark-gray-blue);
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.search__section-name a:hover {
    text-decoration: underline;
}

.search__section-name a:first-child {
    color: var(--sec-black);
}

.search__result-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-top: 8px;
}

.search__info-text {
    color: var(--sec-dark-gray-blue);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 8px;
}

.search__form {
    max-width: 882px;
    margin-top: 16px;
}

.search__results {
    max-width: 882px;
}

@media screen and (min-width: 768px) {
    .search__form {
        margin-top: 24px;
    }

    .search__form .form {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: auto 24px 177px;
        grid-template-columns: auto 177px;
        -webkit-column-gap: 24px;
        -moz-column-gap: 24px;
        column-gap: 24px;
    }

    .search__form .form .search__info-text {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
        -ms-grid-column: 1;
        grid-column-start: 1;
        -ms-grid-column-span: 2;
        grid-column-end: 3;
    }

    .search__button {
        margin: 0;
    }

    .search__results-container {
        margin-top: 24px;
    }

    .search__result-title {
        font-size: 20px;
        line-height: 25px;
        margin-top: 16px;
    }

    .search__section-name {
        font-size: 16px;
        line-height: 24px;
    }

    .search__result-text {
        font-size: 16px;
        line-height: 24px;
        margin-top: 16px;
    }
}

@media screen and (min-width: 1024px) {
}

@media screen and (min-width: 1280px) {
    .search__form {
        margin-top: 40px;
    }

    .search__form .form {
        -ms-grid-columns: auto 128px;
        grid-template-columns: auto 128px;
    }

    .search__result-item {
        padding: 24px;
    }

    .search__results-container {
        margin-top: 40px;
    }

    .search__result-title {
        font-size: 24px;
        line-height: 32px;
    }
}

@media screen and (min-width: 1440px) {
    .search__form {
        max-width: 1192px;
    }

    .search__results {
        max-width: 1192px;
    }
}

.section.policy {
    padding-top: 0;
}

/* SITE MAP */

.sitemap {
    padding-top: 0;
    overflow: hidden;
    position: relative;
}

.sitemap__level-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
}

.sitemap__columns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
}

.sitemap__level-container_sub {
    padding-left: 16px;
}

.sitemap__columns {
    margin-top: 16px;
}

.sitemap__level a {
    text-decoration: none;
}

.sitemap__level a:hover {
    text-decoration: underline;
}

.sitemap__level_0 {
    font-size: 18px;
    line-height: 24px;
}

@media screen and (min-width: 768px) {
    .sitemap::before {
        content: "";
        position: absolute;
        right: -175px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        background-image: url(/assets/img/patterns/pattern_gray-blue.svg);
        background-position: left center;
        background-size: contain;
        background-repeat: no-repeat;
        width: 500px;
        height: 350px;
        z-index: -1;
    }

    .sitemap__columns {
        margin-top: 24px;
    }

    .sitemap__level-container {
        font-size: 18px;
        line-height: 24px;
    }

    .sitemap__level_0 {
        font-size: 20px;
        line-height: 24px;
    }
}

@media screen and (min-width: 1280px) {
    .sitemap::before {
        right: -256px;
        width: 750px;
        height: 528px;
    }

    .sitemap__level-container {
        gap: 24px;
    }
}

@media screen and (min-width: 1440px) {
    .sitemap__columns {
        margin-top: 40px;
    }

    .sitemap__level-container {
        font-size: 20px;
        line-height: 24px;
    }

    .sitemap__level_0 {
        font-size: 24px;
        line-height: 32px;
    }
}

.top-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: white;
    border: 2px solid var(--main-blue);
    position: fixed;
    z-index: 9;
    right: 16px;
    bottom: 16px;
    border-radius: 50%;
    color: var(--main-blue);
    opacity: 0;
    visibility: 0;
    transform: translateY(52px);
    transition: all 300ms ease;
    cursor: pointer;
}

.top-button:hover {
    border-color: var(--main-white-blue);
    color: var(--main-white-blue);
}

.top-button_active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.top-button svg path {
    stroke: currentcolor;
}

.bottom-menu_top {
    transform: translateY(-52px);
}

@media screen and (min-width: 1440px) {
    .top-button {
        width: 60px;
        height: 60px;
    }

    .bottom-menu_top {
        transform: translateY(-76px);
    }

    .top-button {
        right: 24px;
        bottom: 24px;
    }
}

/* PRIVACY */

.privacy {
    background: rgba(0, 80, 157, 0.95);
    position: fixed;
    bottom: 0;
    z-index: 8;
    -webkit-box-shadow: 1px 1px 1px rgba(134, 135, 141, 0.08);
    box-shadow: 1px 1px 1px rgba(134, 135, 141, 0.08);
    width: 100%;
}

.privacy__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 16px 16px;
}

.privacy__content p,
.privacy__content a {
    font-size: 14px;
    line-height: 20px;
    color: white;
}

@media screen and (min-width: 1280px) {
    .privacy__content {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        padding: 16px 16vw;
    }

    .privacy__content p,
    .privacy__content a {
        font-size: 16px;
        line-height: 24px;
        color: white;
    }
}

.running-stroke {
    overflow: hidden;
    padding: 16px 0;
    border-top: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
    margin: 16px 0;
}

.swiper.running-stroke__slider {
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
}

.swiper-slide.running-stroke__item {
    height: unset;
}

.running-stroke__item,
.running-stroke__item a {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: var(--main-dark-blue);
    text-decoration: none;
}

.running-stroke__item:hover a {
    color: var(--main-blue);
}

.running-stroke__item a:hover {
    text-decoration: underline;
}

.running-stroke .content {
    max-width: calc(100vw - 32px);
}

.running-stroke__item {
    padding-right: 24px;
}

@media screen and (min-width: 768px) {
    .running-stroke {
        padding: 24px 0;
        margin: 24px 0 40px 0;
    }

    .running-stroke__item {
        padding-right: 60px;
    }
}

@media screen and (min-width: 1024px) {
    .running-stroke__item {
        padding-right: 80px;
    }

    .running-stroke {
        margin: 40px 0;
    }

    .running-stroke .content {
        max-width: calc(100vw - 48px);
    }

    .running-stroke__item,
    .running-stroke__item a {
        font-size: 20px;
        line-height: 25px;
    }

    .swiper.running-stroke__slider {
        margin-left: -24px;
        margin-right: -24px;
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media screen and (min-width: 1280px) {
    .running-stroke__item {
        padding-right: 100px;
    }

    .running-stroke {
        padding: 40px 0;
    }

    .running-stroke .content {
        max-width: calc(100vw - 96px);
    }

    .swiper.running-stroke__slider {
        margin-left: -48px;
        margin-right: -48px;
        padding-left: 48px;
        padding-right: 48px;
    }
}

@media screen and (min-width: 1440px) {
    .running-stroke__item,
    .running-stroke__item a {
        font-size: 24px;
        line-height: 32px;
    }
}

@media screen and (min-width: 1900px) {
    .running-stroke__item {
        padding-right: 120px;
    }

    .running-stroke .content {
        max-width: 1800px;
    }

    .swiper.running-stroke__slider {
        margin-left: calc(-50vw + 1800px / 2);
        margin-right: calc(-50vw + 1800px / 2);
        padding-left: calc(50vw - 1800px / 2);
        padding-right: calc(50vw - 1800px / 2);
    }
}

.brandbook {
    background-color: var(--main-very-dark-blue);
}

.brandbook2 {
    background-color: var(--main-white-blue);
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
    overflow: hidden;
}

.brandbook2::after {
    content: "";
    position: absolute;
    background-image: url(/assets/img/patterns/pattern_white-big.svg);
    background-size: auto;
    background-position: left bottom;
    background-repeat: no-repeat;
    top: 0;
    width: 200%;
    height: 100%;
    opacity: 0.2;
    left: -34%;
}

.brandbook2 .section__title {
    color: white;
}

.brandbook__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.brandbook__brand-block {
    background-color: var(--main-blue);
    padding: 24px 43px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    overflow: hidden;
}

.brandbook__brand-block::after {
    content: "";
    position: absolute;
    background-image: url(/assets/img/patterns/pattern_white-big.svg);
    background-size: contain;
    background-position: left bottom;
    background-repeat: no-repeat;
    bottom: 0;
    right: -31%;
    width: 796px;
    height: 700px;
    opacity: 0.05;
}

.brandbook__brand-block .section__title {
    color: white;
}

.brandbook__corporate-style {
    background-color: var(--sec-gray-blue);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brandbook__corporate-style .section__description {
    color: var(--main-dark-blue);
}

@media screen and (min-width: 376px) {
    .brandbook__corporate-style {
        padding: 40px;
    }
}

@media screen and (min-width: 768px) {
    .brandbook__brand-block {
        padding: 40px 240px;
        gap: 40px;
    }

    .brandbook__corporate-style {
        padding: 40px;
    }

    .section__title_brandbook {
        font-size: 40px;
        line-height: 44px;
    }

    .brandbook2 {
        flex-direction: row;
        justify-content: center;
        gap: 120px;
    }

    .brandbook2::after {
        left: 50%;
    }

    .brandbook__head-text-block {
        width: 50%;
    }
}

@media screen and (min-width: 1024px) {
    .brandbook__content {
        flex-direction: row;
    }

    .brandbook__brand-block {
        width: 50%;
        padding: 40px 160px;
    }

    .brandbook__corporate-style {
        width: 50%;
    }

    .brandbook2::after {
        left: 66%;
    }
}

@media screen and (min-width: 1280px) {
}

@media screen and (min-width: 1440px) {
    .brandbook__brand-block {
        width: 40.89%;
    }

    .brandbook__corporate-style {
        flex: 1;
    }

    .brandbook2::after {
        left: 75%;
    }
}

.file-list {
    display: flex;
    gap: 24px;
}

.file-catalog {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media screen and (min-width: 768px) {
    .file-catalog {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (min-width: 1024px) {
    .file-catalog {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .file-list {
        gap: 30px;
    }
}

@media screen and (min-width: 1440px) {
    .file-list {
        gap: 130px;
    }
}

.resource-list-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media screen and (min-width: 768px) {
    .resource-list-box {
        flex-direction: row;
        align-items: end;
        justify-content: space-between;
    }
}

.list-logo {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.logo-item__title,
.column-color__title,
.font-item__title {
    margin-bottom: 16px;
    color: var(--sec-black);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

.logo-item__wrap-image {
    border: 1px solid #cccccc;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item__image {
    width: 100%;
    height: 100%;
    max-width: 432px;
    max-height: 153px;
}

.logo-item__wrap-image_main-version {
    padding: 40px;
}

.logo-item__wrap-image_ext-version {
    padding: 40px 88px;
}

.logo-item__wrap-image_blue-blue-version {
    padding: 40px 70px;
}

.logo-item__wrap-image_white-blue-version {
    padding: 40px 70px;
    background-color: #959ea8;
}

@media screen and (min-width: 768px) {
    .logo-item__wrap-image_main-version {
        padding: 68px;
    }

    .list-logo {
        display: flex;
        flex-direction: row;
    }

    .logo-item {
        width: 50%;
    }

    .logo-item__wrap-image {
        height: 273px;
    }

    .logo-item__wrap-image_blue-blue-version,
    .logo-item__wrap-image_white-blue-version {
        padding: 60px;
    }

    .logo-item__title,
    .column-color__title,
    .font-item__title {
        font-size: 20px;
        line-height: 26px;
    }
}

@media screen and (min-width: 1024px) {
    .logo-item__wrap-image_main-version {
        padding: 95px 68px;
    }
}

@media screen and (min-width: 1280px) {
    .logo-item__wrap-image_main-version {
        padding: 95px 68px;
    }

    .logo-item__wrap-image_blue-blue-version,
    .logo-item__wrap-image_white-blue-version {
        padding: 78px;
    }
}

.list-column-color {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.logo-item__title,
.column-color__title,
.font-item__title {
    margin-bottom: 24px;
}

.list-color {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.color-item {
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 24px;
}

.color-item-size-lg {
    width: 265px;
    height: 265px;
}

.color-item-size-sm {
    width: 164px;
    height: 164px;
}

.color-item-color-light-blue {
    background-color: var(--main-white-blue);
    color: var(--sec-black);
}

.color-item-color-dark-blue {
    background-color: #144693;
    color: white;
}

.color-item-color-black {
    background-color: #13110c;
    color: white;
}

.color-item-color-white {
    background-color: white;
    box-shadow: 4px 4px 30px 0px #13110c26;
}

@media screen and (min-width: 768px) {
    .list-color {
        flex-direction: row;
    }
}

@media screen and (min-width: 1280px) {
    .color-item-size-lg {
        width: 272px;
        height: 272px;
    }

    .color-item-size-sm {
        width: 173px;
        height: 173px;
    }

    .list-column-color {
        flex-direction: row;
        gap: 24px;
    }

    .color-item {
        font-size: 18px;
        line-height: 26px;
    }
}

@media screen and (min-width: 1440px) {
    .list-column-color {
        gap: 176px;
    }
}

@media screen and (min-width: 1900px) {
    .color-item-size-lg {
        width: 434px;
        height: 434px;
    }

    .color-item-size-sm {
        width: 250px;
        height: 250px;
    }

    .list-column-color {
        gap: 176px;
    }

    .color-item {
        font-size: 20px;
        line-height: 26px;
    }
}

.list-font {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.font-column-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.font-column-list_calibri {
    flex-direction: row;
    align-items: center;
}

@media screen and (min-width: 768px) {
    .font-item__font_brutal-type {
        height: 90px;
    }

    .font-item__font_brutal-type-list {
        height: 90px;
    }

    .font-item__font_calibri {
        height: 60px;
    }

    .font-item__font_calibri-list {
        height: 60px;
    }

    .font-column-list {
        flex-direction: row;
        gap: 74px;
        align-items: center;
    }
}

@media screen and (min-width: 1280px) {
    .font-item__font_brutal-type {
        height: 125px;
    }

    .font-item__font_brutal-type-list {
        height: 125px;
    }

    .font-item__font_calibri {
        height: 80px;
    }

    .font-item__font_calibri-list {
        height: 80px;
    }
}

@media screen and (min-width: 1900px) {
    .font-column-list {
        gap: 100px;
    }
}

.culture-section {
    padding-top: 0;
}

.service-page {
    padding-top: 0;
}

.culture-section__head {
    margin-bottom: 60px;
}

.culture-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.culture-item {
    background-color: var(--sec-gray-blue);
    padding: 24px;
}

.culture-item_youth-movement {
    background-image: url("/assets/img/culture_item_bg_1.svg");
    background-size: cover;
}

.culture-item_sport-liga {
    background-image: url("/assets/img/culture_item_bg_2.svg");
    background-size: cover;
}

.culture-item__title {
    font-size: 20px;
    font-weight: 500;
    line-height: 25px;
    margin-bottom: 12px;
    color: #123666;
}

.culture-item__desc {
    font-size: 18px;
    line-height: 26px;
}

.culture-item__more-link {
    margin-top: 60px;
}

@media screen and (min-width: 768px) {
    .culture-item {
        padding: 40px;
    }

    .culture-section__head {
        margin-bottom: 100px;
    }

    .culture-item__title {
        font-size: 32px;
        line-height: 40px;
    }

    .culture-item__desc {
        font-size: 20px;
        line-height: 26px;
    }

    .culture-item__more-link {
        margin-top: 138px;
    }
}

@media screen and (min-width: 1280px) {
    .culture-section__head {
        margin-bottom: 140px;
    }

    .culture-item__title {
        font-size: 40px;
        line-height: 44px;
    }

    .culture-item__desc {
        font-size: 24px;
        line-height: 32px;
    }
}

.column-list-info-res {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

.info-res {
    background-color: var(--sec-gray-blue);
    padding: 24px;
    flex: 1;
}

.info-res__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    font-size: 16px;
    line-height: 24px;
}

.info-res__icon {
    background-color: var(--main-blue);
    width: 48px;
    height: 48px;
    -webkit-border-radius: 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

@media screen and (min-width: 768px) {
    .column-list-info-res {
        flex-direction: row;
    }

    .column-list-info-res {
        gap: 24px;
    }

    .info-res {
        padding: 60px;
    }
}

@media screen and (min-width: 1900px) {
    .column-list-info-res {
        margin-top: 60px;
    }
}

.achiev-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 24px;
}

.achiev-item-main {
    background-image: url("/assets/img/patterns/pattern3_white.svg");
    background-color: var(--main-blue);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 398px;
    padding: 40px;
}

.achiev-item-main__title {
    font-size: 18px;
    line-height: 26px;
    color: white;
}

.achiev-item {
    width: 100%;
    height: 398px;
    border: 1px solid #cccccc;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 24px;
    gap: 40px;
}

.achiev-item__title {
    font-size: 16px;
    line-height: 24px;
}

.achiev-item__image {
    max-width: 150px;
    max-height: 150px;
}

@media screen and (min-width: 768px) {
    .achiev-list {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

@media screen and (min-width: 1024px) {
    .achiev-list {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .achiev-item-main__title {
        font-size: 20px;
        line-height: 26px;
    }
}

@media screen and (min-width: 1280px) {
    .achiev-item-main {
        flex: 0 0 calc(25% - 24px);
    }

    .achiev-item {
        flex: 0 0 calc(25% - 24px);
    }
}

@media screen and (min-width: 1900px) {
    .achiev-item-main__title {
        font-size: 24px;
        line-height: 32px;
    }
}

.study-info {
    background-color: var(--g-light-gray);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
    margin-bottom: 24px;
}

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

@media screen and (min-width: 1024px) {
    .study-info {
        padding: 60px;
        flex-direction: row;
        margin-top: 40px;
        margin-bottom: 60px;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (min-width: 1280px) {
    .study-info {
        margin-top: 60px;
    }
}

.study-section-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.study-section-item {
    background-color: #E8F6FE;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-radius: 8px;
    z-index: 1;
}

.study-section-item:hover {
    background-color: #6DC8F2;
}


.study-section-item__title {
    font-size: 20px;
    line-height: 25px;
    color: #00509D;
    text-decoration: none;
    font-weight: 500;
    max-width: 300px;
}

.study-section-item:hover .study-section-item__title {
    color: #fff;
}

.study-section-item__desc {
    font-size: 16px;
    line-height: 24px;
}

.study-section-item__link {
    text-decoration: none;
    font-size: 18px;
    line-height: 26px;
}

.study-section-item__content {
    display: flex;
    justify-content: space-between;
    height: 100%;
    align-items: center;
    position: relative;
}

.study-section-item__icon {
    position: absolute;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: contain;
    right: 0;
    width: 120px;
    height: 86px;
}

.study-section-item:first-of-type .study-section-item__icon {
    background-image: url("/local/templates/tmh_new/images/study/study_link_blue1.png");
}

.study-section-item:nth-of-type(2) .study-section-item__icon {
    background-image: url("/local/templates/tmh_new/images/study/study_link_blue2.png");
}

.study-section-item:nth-of-type(3) .study-section-item__icon {
    background-image: url("/local/templates/tmh_new/images/study/study_link_blue3.png");
}

.study-section-item:first-of-type:hover .study-section-item__icon {
    background-image: url("/local/templates/tmh_new/images/study/study_link_white1.png");
}

.study-section-item:nth-of-type(2):hover .study-section-item__icon {
    background-image: url("/local/templates/tmh_new/images/study/study_link_white2.png");
}

.study-section-item:nth-of-type(3):hover .study-section-item__icon {
    background-image: url("/local/templates/tmh_new/images/study/study_link_white3.png");
}

.study__content-header .section__description .study__need-tooltip {
    color: #6DC8F2;
    display: inline-block;
    position: relative;
    cursor: pointer;
}

.study-page .section__description {
    display: inline;
}

.study__content-header .section__description .study__tooltip {
    display: none;
    position: absolute;
    left: -20px;
    bottom: 100%;
    z-index: 1;
    background: #fff;
    padding: 16px 18px;
    border: 1px solid #fff;
    border-radius: 8px;
    color: #00509D;
    font-size: 20px;
    line-height: 25px;
    max-width: 90%;
    min-width: 800px;
    width: 800px;
}

.study__content-header .section__description .study__need-tooltip:hover .study__tooltip {
    display: block;
}

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

@media screen and (min-width: 1024px) {
    .study-section-list {
        flex-direction: row;
        flex-wrap: wrap;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .study-section-item {
        padding: 40px;
    }

    .study-section-item__content {
        display: flex;
        justify-content: space-between;
        height: 100%;
        align-items: center;
    }

    .study-section-item__title {
        font-size: 32px;
        line-height: 40px;
    }

    .study-section-item__desc {
        font-size: 18px;
        line-height: 26px;
    }

    .study-section-item__link {
        font-size: 20px;
        line-height: 26px;
    }
}

@media screen and (min-width: 1280px) {
    .study-section-item__title {
        font-size: 36px;
        line-height: 44px;
        max-width: 544px;
        padding-right: 100px;
    }

    .study-section-item__desc {
        font-size: 20px;
        line-height: 25px;
    }

    .study-section-list {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (min-width: 1800px) {
    .study-section-list {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.study-simple-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
}

@media screen and (min-width: 768px) {
    .study__content-header {
        flex-direction: column;
    }

    .study-simple-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media screen and (min-width: 1024px) {
    .study__content-header {
        flex-direction: column;
    }

    .study-simple-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media screen and (min-width: 1280px) {
    .study-simple-list {
        grid-template-columns: repeat(4, 1fr);
    }

    .study__content-header {
        margin-bottom: 140px;
    }
}

.study-simple-item {
    border: 1px solid #E8F6FE;
    padding: 28px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: space-between;
    background: #E8F6FE;
    border-radius: 8px;
}

.study-simple-item__title {
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    color: var(--main-dark-blue);
    margin-top: 16px;
    margin-bottom: 24px;
}

.study__tags .chips {
    border-color: var(--main-dark-blue);
    color: var(--main-dark-blue);
}

@media screen and (min-width: 768px) {
    .study-simple-item__title {
        font-size: 20px;
        line-height: 25px;
    }
}

@media screen and (min-width: 1280px) {
    .study-simple-item__title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 44px;
    }
}

.branches {
    margin-top: 24px;
}

.branches__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 24px 0 0;
    list-style-type: none;
    padding: 0;
}

.branches__item {
    position: relative;
    padding-left: 25px;
    font-size: 18px;
    line-height: 1.2;
}

.branches__item::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: var(--main-blue);
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.branches__item span {
    font-weight: 600;
}

@media screen and (min-width: 1024px) {
    .branches {
        margin-top: 40px;
    }
}

@media screen and (min-width: 1280px) {
    .branches {
        margin-top: 60px;
    }

    .branches__list {
        margin: 40px 0 0;
    }

    .branches__item {
        font-size: 32px;
    }
}

/* GREETINGS BLOCK */

.greetings {
    background: var(--main-very-dark-blue);
    color: white;
    position: relative;
    overflow: hidden;
}

.greetings::before {
    position: absolute;
    content: "";
    height: 600px;
    width: 506px;
    background-image: url(/assets/img/patterns/pattern_white.svg);
    opacity: 0.1;
    background-size: contain;
    background-position: right top;
    background-repeat: no-repeat;
    right: 160px;
    top: 115px;
}

.greetings::after {
    position: absolute;
    display: block;
    content: "";
    height: 100%;
    width: 120%;
    background-image: url(/local/templates/tmh_new/images/main/bg3_1.svg);
    background-size: 100%;
    background-position: left top;
    background-repeat: no-repeat;
    right: 45px;
    top: 0;
    bottom: 0;
}

.greetings__title {
    padding: 0 0 40px;
    margin: 0 auto;
    color: var(--main-white-blue);
    position: relative;
    z-index: 2;
    font-size: 48px;
    font-weight: 500;
    line-height: 54px;
}

.greetings__text {
    position: relative;
    z-index: 2;
}

.greetings__text *:nth-child(n + 2) {
    /*margin-top: 16px;*/
}

.greetings__text p {
    font-size: 18px;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.7);
}

.greetings__pict {
    width: 100%;
    /*max-width: 50vw;*/
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    /*float: right;*/
    /*margin-left: 48px;*/
    /*margin-bottom: 16px;*/
    object-fit: cover;
    object-position: center;
}

.greetings__pict_left {
    float: left;
    margin-left: 0;
    margin-right: 48px;
    width: 50%;
    max-width: 50vw;
    height: auto;
    aspect-ratio: 16 / 9;
    margin-bottom: 16px;
    object-fit: cover;
    object-position: center;
}

.main-greetings__slider-container {
    overflow: hidden;
    padding-bottom: 25px;
}

.swiper.main-greetings__slider {
    overflow: initial;
    max-width: 100%;
    height: fit-content;
}

.main-greetings__slider .swiper-button-next:after,
.main-greetings__slider .swiper-button-prev:after {
    display: none;
}

.main-greetings__slider .swiper-button-next,
.main-greetings__slider .swiper-button-prev {
    width: 44px;
    height: 44px;
    background-image: url(/local/templates/tmh_new/images/main/arrow_right_white.svg);
    background-size: 24px;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #00509D;
    border-radius: 50%;
    top: calc(50% - 22px);
    margin-top: 0;
}

.main-greetings__slider .swiper-button-next {
    right: 16px;
}

.main-greetings__slider .swiper-button-prev {
    transform: rotate(180deg);
    left: 16px;
}

.main-greetings__slider .swiper-wrapper {
    overflow: hidden;
}

.main-greetings__slider.swiper-horizontal > .swiper-pagination-bullets,
.main-greetings__slider .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -20px;
    margin-top: 0;
}

.main-greetings__slider.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    background: rgba(109, 200, 242, 1);
    margin: 0 2px;
}

.main-greetings__slider.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 10px;
    background: rgba(0, 80, 157, 1);
}

.study-block {
    margin-top: 60px;
}

.study-block .section__buttons {
    margin-top: 24px;
}

@media screen and (min-width: 1024px) {
    .greetings__text p {
        font-size: 20px;
        line-height: 26px;
    }
}

@media screen and (min-width: 1280px) {
    .study-block {
        margin-top: 100px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        overflow: hidden;
        gap: 30px;
    }

    .study-block .section__buttons {
        margin-top: 48px;
    }

    .greetings__pict {
        /*margin-left: 24px;*/
    }
}

@media screen and (min-width: 1440px) {
    .study-block {
        margin-top: 120px;
    }

    .greetings__text p {
        font-size: 24px;
        line-height: 32px;
    }

    .greetings__text-block {
        padding-left: 150px;
    }
}

@media screen and (min-width: 1900px) {
    .study-block {
        margin-top: 140px;
    }
}

@media screen and (max-width: 1439px) {
    .greetings__pict_left {
        margin-left: 0;
        margin-right: 24px;
    }

    .greetings::before {
        right: 48px;
    }
}

@media screen and (max-width: 767px) {
    .greetings__pict {
        float: none;
        margin: 0;
        width: 100%;
        max-width: 100%;
    }

    .greetings::before {
        width: 90vw;
        height: 80vw;
        right: -100px;
        top: 280px;
    }
}

/*
  @media screen and (min-width: 1900px) {
  }

  /*@media screen and (min-width: 768px) {
  }

  @media screen and (min-width: 1024px) {
  }

  @media screen and (min-width: 1280px) {
  }

  @media screen and (min-width: 1440px) {
  }

  @media screen and (min-width: 1900px) {
  }*/

/* HISTORY */
.history {
    background: var(--main-very-dark-blue);
    color: white;
    position: relative;
}

.history__content {
    overflow: hidden;
}

.history__content .swiper {
    overflow: initial;
    margin-top: 25px;
}

.history__content .swiper-horizontal>.swiper-pagination-progressbar,
.history__content .swiper-pagination-progressbar.swiper-pagination-horizontal {
    width: 72%;
    left: initial;
    /*right: 213px;*/
    right: 120px;
    top: -49px;
    max-width: 979px;
    height: 4px;
    border-radius: 5px;
    background: rgba(0, 80, 157, 0.5);
    display: none;
}

.history__content .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    border-radius: 5px;
    background: #6DC8F2;
}

.swiper-nav__container {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
}

.history__content .swiper-button-next::after,
.history__content .swiper-button-prev::after {
    display: none;
}

.history__content .swiper-button-next,
.history__content .swiper-button-prev {
    width: 44px;
    height: 44px;
    background-image: url(/local/templates/tmh_new/images/main/arrow_right_white.svg);
    background-size: 24px;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #00509D;
    border-radius: 50%;
    top: -33px;
    left: initial;
}

.history__content .swiper-button-next {
    right: 0;
}
.history__content .swiper-button-prev {
    transform: rotate(180deg);
    right: 52px;
}

.swiper-nums {
    position: absolute;
    top: -87px;
    right: 120px;
    font-size: 32px;
    line-height: 44px;
    font-weight: 400;
    display: none;
}

.history__items {
    /*display: grid;*/
    /*grid-template-columns: repeat(3, auto);*/
    /*gap: 24px;*/
}

.history__item {
    background-color: #fff;
    border-radius: 28px;
    padding: 20px;
    color: var(--sec-black);
    height: auto;
}

.history__item-video {
    max-width: 100%;
    border-radius: 8px;
    filter: grayscale(1);
    max-height: 310px;
    overflow: hidden;
    width: 100%;
}

.history__item-head {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    margin-top: 20px;
    padding: 0 10px;
    /*align-items: center;*/
}

.history__item-pic img {
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: 50%;
}

.history__item-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.history__item-name {
    font-weight: 500;
    font-size: 20px;
    line-height: 25px;
}

.history__item-function {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.history__item-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #00509D;
    padding: 0 10px 10px;
}

.history__item .play::after {
    background-image: url(/local/templates/tmh_new/images/main/play_circle.svg);
    background-color: transparent;
    background-position: 50%;
    width: 52px;
    height: 52px;
}

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

}

@media screen and (min-width: 1024px) {
    .history__content .swiper-button-next,
    .history__content .swiper-button-prev {
        top: -58px;
    }

}

@media screen and (min-width: 1280px) {
    .history__content .swiper-horizontal>.swiper-pagination-progressbar,
    .history__content .swiper-pagination-progressbar.swiper-pagination-horizontal {
        display: block;
    }

    .swiper-nums {
        display: block;
    }

    .history__content .swiper-button-next,
    .history__content .swiper-button-prev {
        top: -61px;
    }
}

@media screen and (min-width: 1440px) {
    .history__item-text {
        font-size: 20px;
        line-height: 28px;
        padding: 0 20px 20px;
    }

    .history__item-head {
        padding: 0 20px;
    }

    .history__item-name {
        font-size: 24px;
        line-height: 28px;
    }

    .history__item-function {
        font-size: 18px;
        line-height: 24px;
    }

    .history__item-pic img {
        width: 92px;
        height: 92px;
    }

    .history__content .swiper-button-next,
    .history__content .swiper-button-prev {
        top: -68px;
    }
}

@media screen and (min-width: 1900px) {


}

.hidden {
    display: none;
}

.line__des {
    background: url(/local/templates/tmh_new/images/main/line_main5.svg) 50% no-repeat;
    background-size: cover;
    width: 100%;
    height: 337px;
}
/* End */
/* /local/templates/tmh_new/styles.css?177124461132467 */
/* /local/templates/tmh_new/template_styles.css?1771244691189451 */
