@charset "UTF-8";

@font-face {
  font-family: Root;
  font-display: swap;
  src: url(/local/assets/fonts/PT-Root-UI_Bold.woff2) format("woff2"),
    url(/local/assets/fonts/PT-Root-UI_Bold.woff) format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: Root;
  font-display: swap;
  src: url(/local/assets/fonts/PT-Root-UI_Light.woff2) format("woff2"),
    url(/local/assets/fonts/PT-Root-UI_Light.woff) format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: Root;
  font-display: swap;
  src: url(/local/assets/fonts/PT-Root-UI_VF.woff2) format("woff2"),
    url(/local/assets/fonts/PT-Root-UI_VF.woff) format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: Root;
  font-display: swap;
  src: url(/local/assets/fonts/PT-Root-UI_Medium.woff2) format("woff2"),
    url(/local/assets/fonts/PT-Root-UI_Medium.woff) format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: Root;
  font-display: swap;
  src: url(/local/assets/fonts/PT-Root-UI_Regular.woff2) format("woff2"),
    url(/local/assets/fonts/PT-Root-UI_Regular.woff) format("woff");
  font-weight: 400;
  font-style: normal;
}

* {
  padding: 0;
  margin: 0;
  border: 0;
  -webkit-tap-highlight-color: transparent;
}

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

body,
html {
  height: 100%;
  min-width: 320px;
}

body {
  color: rgba(0, 0, 0, 0.75);
  line-height: 1;
  font-family: Root;
  font-size: 1.125rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button,
input,
textarea {
  font-family: Root;
  font-size: inherit;
  outline: none;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: inherit;
}

a {
  color: inherit;
}

a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

.lock body {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
}

.mt-0 {
  margin-top: 0px !important;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.pt-0 {
  padding-top: 0px !important;
}

.pb-0 {
  padding-bottom: 0px !important;
}

.mt-65 {
  margin-top: 65px;
}

.mb-65 {
  margin-bottom: 65px;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}

.wrapper>main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.wrapper>* {
  min-width: 0;
}

[class*="__container"] {
  max-width: 73.75rem;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  margin: 0 auto;
  padding: 0 2.75rem;
  position: relative;
}

.checkbox {
  position: relative;
}

.checkbox:not(:last-child) {
  margin-bottom: 2.5em;
}

.checkbox__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}

.checkbox__input:checked+.checkbox__label:before {
  background: url(/local/assets/img/chek.svg) center/contain no-repeat;
}

.webp .header__favorite::after {
  background: url(/local/assets/img/favorite.svg) center/contain no-repeat;
}

.header__favorite::after {
  background: url(/local/assets/img/favorite.svg) center/contain no-repeat;
}

.checkbox__label {
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  gap: 10px;
  /*width: 20px;*/
}

.checkbox__label:before {
  content: "";
  -ms-flex-item-align: start;
  align-self: flex-start;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20px;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 1px solid #064692;
  overflow: hidden;
}

.checkbox__text {
  color: rgba(0, 0, 0, 0.75);
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  /*white-space: nowrap;*/
  pointer-events: none;
}

body::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease 0s;
  -o-transition: opacity 0.8s ease 0s;
  transition: opacity 0.8s ease 0s;
  pointer-events: none;
  z-index: 149;
}

body.popup-show::after {
  opacity: 1;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px 10px;
  -webkit-transition: visibility 0.8s ease 0s;
  -o-transition: visibility 0.8s ease 0s;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
  pointer-events: none;
}

.popup_show {
  z-index: 150;
  visibility: visible;
  overflow: auto;
  pointer-events: auto;
}

.popup_show .popup__content {
  visibility: visible;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.popup__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.popup__content {
  visibility: hidden;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  -o-transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  background-color: #fff;
  padding: 55px 50px;
  width: 100%;
  max-width: 615px;
  border-radius: 21px;
  overflow: hidden;
  -webkit-box-shadow: 1px 1px 10px 5px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 10px 5px rgba(0, 0, 0, 0.25);
  position: relative;
}

.form-pop-up h3 {
  margin-bottom: 20px;
}

.form-pop-up p {
  margin-bottom: 30px;
  text-align: center;
  font-size: 14px;
  letter-spacing: -1px;
}

.lock .popup__content {
  visibility: visible;
  position: relative;
}

.no-btn {
  font-weight: 700;
  font-size: 15px;
  color: #064692;
  display: block;
  margin-top: 15px;
  text-align: center;
}

.popup__content_blue {
  max-width: 1004px;
  padding: 45px 127px;
}

/*
.popup__content_blue .popup__close {
  margin-top: -40px;
  margin-right: -126px;
}
*/
.no-webp .popup__content::after {
  background: url(/local/assets/img/l-p-r.png) 0 0/100% 100% no-repeat;
}

.popup__content::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 131px;
  display: block;
  top: 0;
  left: 0;
}

.no-webp .popup__content::before {
  background: url(/local/assets/img/r-p-r.png) 0 0/100% 100% no-repeat;
}

.popup__content::before {
  content: "";
  position: absolute;
  width: 51px;
  height: 248px;
  display: block;
  right: 0;
  bottom: 0;
}

.popup__content .popup_sub::before {
  content: "";
  position: absolute;
  width: 51px;
  height: 210px;
  display: block;
  right: 0;
  bottom: 0;
}

.popup__close {
  margin-left: auto;
  display: block;
  top: 15px;
  right: 15px;
  position: relative;
  z-index: 3;
  position: absolute;
}

.popup__close:focus {
  outline: 0;
}

.form-pop-up h3 {
  color: #064692;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -1.76px;
  text-align: center;
}

.form-pop-up h4 {
  color: rgba(0, 0, 0, 0.75);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: center;
  margin-bottom: 10px;
}

.form-pop-up p {
  color: rgba(0, 0, 0, 0.75);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.form-pop-up__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 46px;
  margin: 60px 0;
}

.form-pop-up__inner span {
  color: rgba(0, 0, 0, 0.5);
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: inline-block;
  margin-top: 5px;
}

.form-pop-up__inner_blue {
  gap: 0;
  margin: 30px 0;
}

.form-pop-up__inner_blue .form-pop-up__input {
  max-width: 750px;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #064692;
  padding: 13px 15px 14px 15px;
  background: #fff;
  overflow: hidden;
}

.form-pop-up__input {
  display: block;
  width: 295px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  padding-bottom: 8px;
  color: rgba(0, 0, 0, 0.75);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.825px;
  outline: 0;
}

.form-pop-up__input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.75);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.825px;
}

.form-pop-up__input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.75);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.825px;
}

.form-pop-up__input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.75);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.825px;
}

.form-pop-up__input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.75);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.825px;
}

.form-pop-up__input::placeholder {
  color: rgba(0, 0, 0, 0.75);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.825px;
}

.form-pop-up__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  height: 55px;
  max-width: 250px;
  width: fit-content;
  border-radius: 28px;
  background: #5bc5f2;
  overflow: hidden;
  padding: 0 45px;
  margin: 0 auto;
  color: #fff;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}

.form-pop-up__btn:disabled {
  pointer-events: none;
}

[class*="-ibg"] {
  position: relative;
}

[class*="-ibg"] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

[class*="-ibg_contain"] img {
  -o-object-fit: contain;
  object-fit: contain;
}

h1 {
  color: #fff;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: 103.523%;
  letter-spacing: -1.76px;
}

h2 {
  color: #064692;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}

a {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.swiper {
  /*margin: 0 30px !important;
  padding: 10px !important;*/
}

.header {
  height: 180px;
  position: relative;
  z-index: 30;
}

.icon-menu {
  display: none;
}

.header__top {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
}

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

.header__wrapper {
  padding-top: 30px;
  padding-bottom: 28px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: row;
}

.header__left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 50px;
}

.header__right {
  display: flex;
  flex-grow: 1;
  justify-content: flex-end;
  align-items: center;
  gap: 27px;
}

.mobile__search-btn,
.mobile__search-field {
  display: none;
}

form.header__form.mobile {
  display: none;
}

.header__logo {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 133px;
  flex: 0 0 133px;
}

.header__logo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

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

.header__call span {
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.header__call a {
  color: #084791;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header__call a:nth-of-type(2) {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: rgba(0, 0, 0, 0.75);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-bottom: 1px rgba(0, 0, 0, 0.75) dashed;
}

.header__form {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
  max-width: 370px;
  position: relative;
  margin-right: 10px;
}

.header__form::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 11px;
  width: 18px;
  height: 18px;
  background: url(/local/assets/img/search.svg) center/contain no-repeat;
}

.header__form input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 20px;
  border: 1px solid #084791;
  overflow: hidden;
  height: 41px;
  padding-left: 40px;
  padding-right: 20px;
}

.title__right .header__form input {
  height: 42px;
}
.header__form input::-webkit-input-placeholder {
  color: #084791;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.header__form input::-moz-placeholder {
  color: #084791;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.header__form input:-ms-input-placeholder {
  color: #084791;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.header__form input::-ms-input-placeholder {
  color: #084791;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.header__form input::placeholder {
  color: #084791;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.header__learning {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 103px;
  height: 30px;
  border-radius: 28px;
  background: #5bc5f2;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
  color: #fff;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header__favorite {
  position: relative;
  display: block;
  width: 29px;
  height: 25px;
}

.no-webp .header__favorite::after {
  background: url(/local/assets/img/favorite.svg) center/contain no-repeat;
}

.header__favorite::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 29px;
  height: 25px;
  display: block;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header__favorite span {
  position: absolute;
  right: -14px;
  bottom: -4px;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  color: #de001a;
  display: inline-block;
}

.header__cart {
  position: relative;
  display: block;
  width: 29px;
  height: 25px;
  background: url(/local/assets/img/cart.svg) center/contain no-repeat;
  transition: all 0.3s ease 0s;
}

.header__cart:hover {
  background: url(/local/assets/img/cart-hover.svg) center/contain no-repeat;
}

.header__cart svg {
  fill: #064692;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header__cart span {
  position: absolute;
  right: -14px;
  bottom: -4px;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  color: #de001a;
  display: inline-block;
}

.header__reg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 111px;
  height: 30px;
  border-radius: 28px;
  background: #064692;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
  color: #fff;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header__bottom {
  background: #064692;
  position: relative;
  top: 110px;
}

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

.header__ent {
  color: #084791;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.mobile__menu {
  display: none;
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 60px;
}

.menu__icon {
  display: none;
}

.menu__body {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.menu__item:first-of-type .menu__link {
  padding-left: 20px;
  padding-right: 20px;
}

.menu__link {
  display: inline-block;
  padding-top: 25px;
  padding-bottom: 26px;
  padding-left: 10px;
  padding-right: 10px;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.menu__lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 13px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 53px;
  flex: 0 0 53px;
}

.menu__lang a {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20px;
  flex: 0 0 20px;
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  overflow: hidden;
  opacity: 0.5;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.menu__lang a img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.menu__lang a._active {
  opacity: 1;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  min-width: 160px;
  border-radius: 0 0 10px 10px;
  background: #fff;
  -webkit-box-shadow: 0 4px 10px 5px rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 10px 5px rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.dropdown-content a {
  color: #064692;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 7.5px 40px;
  display: block;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.dropdown-content a:first-of-type {
  padding-top: 15px;
}

.touch .dropdown-content a {
  white-space: wrap;
}

.dropdown:hover .dropdown-content,
.touch .dropdown._active .dropdown-content {
  display: block;
}

.dropdown-content a:hover {
  color: #064692;
}

.dropdown:hover .dropbtn {
  background: #5bc5f2;
  color: #fff;
}

.footer {
  padding-top: 48px;
  padding-bottom: 55px;
  background: #064692;
  position: relative;
  color: #fff;
}

.footer__pattern {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  height: 100%;
  width: 80px;
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(24% - 45px);
  flex: 0 0 calc(24% - 45px);
}

.footer__item span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footer__item ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 14px;
}

.footer__item ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.footer__item ul li::before {
  content: "";
  -ms-flex-item-align: start;
  -ms-grid-row-align: start;
  align-self: start;
  left: 10px;
  bottom: -10px;
  border: 6px solid transparent;
  border-left: 10px solid #5bc5f2;
  margin-top: 2px;
}

.footer__logo {
  width: 170px;
  height: 61px;
  margin-bottom: 28px;
  display: block;
}

.footer__logo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.partners {
  padding: 0px 0 60px;
}

.partners h2 {
  margin-bottom: 40px;
}

.partners__container {
  position: relative;
}

.partners__slide {
  border-radius: 10px;
  background: #e6f5fe;
  padding: 15px 20px;
  height: 111px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.partners__slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.first {
  position: relative;
  height: calc(100vh - 154px - 75px - 65px);
  overflow: hidden;
}

.first .cb-slideshow li span {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  -webkit-animation: imageAnimation 30s linear infinite 0s;
  animation: imageAnimation 30s linear infinite 0s;
  position: absolute;
  top: 0;
  left: 0;
  color: transparent;
  background-size: cover;
  background-position: 50% top;
  background-repeat: no-repeat;
  opacity: 0;
  z-index: 0;
}

.no-webp .first li:nth-of-type(1) span {
  background-image: url(/local/assets/img/f1.jpg);
}

.no-webp .first li:nth-of-type(2) span {
  background-image: url(/local/assets/img/f2.jpg);
}

.first li:nth-of-type(2) span {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
}

.no-webp .first li:nth-of-type(3) span {
  background-image: url(/local/assets/img/f3.jpg);
}

.first li:nth-of-type(3) span {
  -webkit-animation-delay: 12s;
  animation-delay: 12s;
}

.no-webp .first li:nth-of-type(4) span {
  background-image: url(/local/assets/img/f4.jpg);
}

.first li:nth-of-type(4) span {
  -webkit-animation-delay: 18s;
  animation-delay: 18s;
}

.no-webp .first li:nth-of-type(5) span {
  background-image: url(/local/assets/img/f5.jpg);
}

.first li:nth-of-type(5) span {
  -webkit-animation-delay: 24s;
  animation-delay: 24s;
}

@-webkit-keyframes imageAnimation {
  0% {
    opacity: 0;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  8% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  17% {
    opacity: 1;
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
  }

  25% {
    opacity: 0;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
  }
}

@keyframes imageAnimation {
  0% {
    opacity: 0;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  8% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  17% {
    opacity: 1;
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
  }

  25% {
    opacity: 0;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
  }
}

.first .fs__slide {
  height: 100% !important;
  overflow: hidden;
}

.first__container {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  height: 100%;
}

.first__content {
  max-width: 520px;
  padding-top: 15px;
  padding-bottom: 20px;
}

.first__content p {
  color: #fff;
  text-shadow: -5px 5px 4px rgba(0, 0, 0, 0.5);
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: 103.523%;
  letter-spacing: -0.825px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.first__content h1 {
  margin-bottom: 35px;
  text-shadow: -5px 5px 4px rgba(0, 0, 0, 0.5);
}

.first__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
}

.first__item {
  text-align: center;
}

.first__item-center {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 5px;
}

.first__num {
  color: #5bc5f2;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 103.523%;
  letter-spacing: -2.53px;
  text-align: center;
  text-shadow: -5px 5px 4px rgba(0, 0, 0, 0.5);
}

.first__text {
  color: #fff;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 103.523%;
  letter-spacing: -1.21px;
  text-shadow: -5px 5px 4px rgba(0, 0, 0, 0.5);
}

.title {
  padding-top: 65px;
  padding-bottom: 40px;
}

.title_pb20 {
  padding-bottom: 20px;
}

.title_pt45 {
  padding-top: 45px;
}

.title__ext {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.title h1 {
  font-weight: 700;
  font-size: 48px;
  line-height: 103%;
  color: #064692;
}

.title__ext h2 {
  flex-grow: 1;
}

.title__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
}

.filter__btn {
  color: #084791;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  padding-left: 29px;
  position: relative;
  display: block;
}

.filter__btn::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  left: 0;
  top: 0;
  background-image: url("../img/mdi_filter.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  transition: all 0.3s ease 0s;
}

.filter__btn:hover::before {
  background-image: url("../img/mdi_filter-active.svg");
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  z-index: -1;
  opacity: 0;
  transition: all ease 0.3s;
  overflow: auto;
}

.overlay.opened {
  z-index: 150;
  opacity: 1;
}

.popup__body {
  position: relative;
  width: 100%;
  max-width: 1267px;
  background: #fff;
  padding: 110px 44px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  border-radius: 10px;
}

#popupFilter .popup__body {
  gap: 105px;
}
.popup__close-btn {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}

.filter__row {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  gap: 10px;
}

.filter__params {
  position: absolute;
  top: 110px;
  right: 44px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  flex-direction: column;
  align-items: self-end;
}
.form__field {
  position: relative;
}

.form__field.select::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 4px;
  top: 50%;
  right: 10px;
  background-image: url("../img/select_arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.form__field.select select {
  padding: 10px 30px 10px 10px;
  outline: none;
  border: 1px solid #064692;
  border-radius: 5px;
  color: #064692;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.88px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.form__field.checkbox input {
  visibility: hidden;
  width: 0;
}

.form__field.checkbox label {
  display: inline-block;
  color: #064692;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.88px;
  padding-left: 36px;
  position: relative;
  cursor: pointer;
}

.form__field.checkbox label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 21px;
  height: 21px;
  border-radius: 5px;
  border: 1px solid #064692;
}

.form__field.checkbox input:checked+label::after {
  content: "";
  position: absolute;
  width: 21px;
  height: 21px;
  top: 0;
  left: 0;
  background-image: url("../img/checkbox.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.sections__container {
  display: flex;
  /*justify-content: center;*/
  align-items: flex-start;
  column-gap: 20px;
  row-gap: 20px;
  flex-wrap: wrap;
}


.sections__item.c {
  position: relative;
  padding: 20px 22px;
  background: #f2f3f4;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  align-self: stretch;
}

.sections__item {
  position: relative;
  flex-basis: calc((100% - 40px) / 3);
  padding: 20px 22px;
  background: #f2f3f4;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  align-self: stretch;
}



.sections__item.d_kurs {
  position: relative;
  flex-basis: calc((100% - 40px) / 3);
  padding: 20px 22px;
  background: #f2f3f4;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  align-self: stretch;
}



.sections__item::before,
.activities__item::before {
  content: "";
  position: absolute;
  width: 5%;
  height: 66%;
  display: block;
  right: 0;
  bottom: 0;
  background: url(/local/assets/img/r-r.webp) 0 0/100% 100% no-repeat;
}




.sections__item::after,
.activities__item::after {
  content: "";
  position: absolute;
  width: 4.5%;
  height: 34%;
  display: block;
  top: 0;
  left: 0;
  background: url(/local/assets/img/l-r-16.svg) 0 0/100% 100% no-repeat;
}

.sections__item::after,
.training_center::after {
  content: "";
  position: absolute;
  width: 4.5%;
  height: 34%;
  display: block;
  top: -10px;
  left: 0;
  background: url(/local/assets/img/l-r-16.svg) 0 0/100% 100% no-repeat;
}


.sections__item.cs::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 66%;
  display: block;
  right: 0;
  bottom: 0;
  background: url(/local/assets/img/r-r.webp) 0 0/100% 100% no-repeat;
}

.training_center.n::before {
  content: "";
  position: absolute;
  width: 8%;
  height: 66%;
  display: block;
  right: 0;
  bottom: 0;
  background: url(/local/assets/img/r-r.webp) 0 0/100% 100% no-repeat;
}

.sections__item.k::before,
.training_center::before {
  content: "";
  position: absolute;
  width: 5% !important;
  height: 66%;
  display: block;
  right: 0;
  bottom: 0;
  background: url(/local/assets/img/r-r.webp) 0 0/100% 100% no-repeat;
}

.sections__item::before,
.training_center::before {
  content: "";
  position: absolute;
  width: 10%;
  height: 66%;
  display: block;
  right: 0;
  bottom: 0;
  background: url(/local/assets/img/r-r.webp) 0 0/100% 100% no-repeat;
}


.sections__item:hover {
  background: #fff;
  -webkit-box-shadow: 1px 1px 10px 5px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 10px 5px rgba(0, 0, 0, 0.25);
}

/* Активная подгруппа фиксирует вид как при наведении */
.sections__item._active {
  background: #fff;
  -webkit-box-shadow: 1px 1px 10px 5px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 10px 5px rgba(0, 0, 0, 0.25);
}

.sections__item img {
  display: block;
  height: 85px;
}

.sections__item.double-row img {
  height: 59px;
}

.sections__item h3 {
  color: rgba(0, 0, 0, 0.75);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -1.76px;
}

.sections__item .d_kurs h3 {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.06em;
  color: rgba(0, 0, 0, 0.75);
}



.sections__item.double-row h3 {
  line-height: 100%;
  letter-spacing: -1.8px;
  max-width: 247px;
  text-align: center;
}

.title.pod h3 {
  color: #064692;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 103.023%;
}

.title h3 {
  color: #064692;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 103.023%;
}

.elements__container {
  margin-bottom: 65px;
}

.elements__items {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  column-gap: 50px;
  row-gap: 20px;
}

.elements__items .programm__item {
  flex-basis: calc(33.33% - 34px);
}

.elements__item:hover {
  background: #fff;
  -webkit-box-shadow: 1px 1px 10px 5px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 10px 5px rgba(0, 0, 0, 0.25);
}

.elements__item-title {
  flex-grow: 1;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 121.023%;
  letter-spacing: -1.21px;
}

.elements__item-params {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 112.523%;
  letter-spacing: -0.99px;
  display: flex;
  justify-content: flex-start;
  margin-top: 15px;
}

.params__item {
  padding-right: 8px;
  padding-left: 8px;
  border-right: 1px solid rgba(0, 0, 0, 0.75);
}

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

.params__item:first-child {
  padding-left: 0;
}

.elements__item-comment {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 112.5%;
  letter-spacing: -0.77px;
  margin-top: 10px;
}

.elements__item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 18px;
}

.items__favourite-btn {
  display: block;
  position: relative;
  width: 35px;
  height: 34px;
  background: #8bd2f6;
  border-radius: 50%;
  transition: all ease 0.3s;
}

.items__favourite-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 35px;
  height: 35px;
  background-image: url("../img/heart.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
  transition: background-image ease 0.3s;
}

.items__favourite-btn:hover,
.items__favourite-btn.active {
  background: #064692;
}

.items__favourite-btn.active:hover {
  background: #8bd2f6;
}

.items__favourite-btn:hover::after,
.items__favourite-btn.active::after {
  background-image: url("../img/heart_red.svg");
  background-size: 18px;
  width: 36px;
  height: 35px;
}

.items__favourite-btn.active:hover::after {
  background-image: url("../img/heart.svg");
  background-size: auto;
  width: 35px;
  height: 35px;
}

.items__more-btn {
  color: #064692;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 112.523%;
  letter-spacing: -0.99px;
  transition: all ease 0.3s;
}

/* .elements__item:hover {
  background-color: #064692;
  color: #fff;
}

.elements__item:hover .items__more-btn {
  color: #FFF;
} */

ul.elements__pagination {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 5px;
  margin-top: 40px;
}

.elements__pagination-item {
  color: rgba(0, 0, 0, 0.75);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  /* line-height: 112.523%; */
  letter-spacing: -0.99px;
  border-radius: 5px;
  background: #f2f3f4;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all ease 0.3s;
  position: relative;
}

.elements__pagination-item:hover {
  color: #fff;
  background: #064692;
}

.elements__pagination-item.active {
  color: #fff;
  background: #064692;
  cursor: initial;
}

.elements__pagination-item.more {
  background: transparent;
  width: 20px;
  cursor: initial;
}

.elements__pagination-item.more:hover {
  color: rgba(0, 0, 0, 0.75);
}

.elements__pagination-item.next::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 12px;
  background-image: url("../img/page_next.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all ease 0.3s;
}

.elements__pagination-item.next:hover::after {
  background-image: url("../img/page_next-white.svg");
}

.training__container.swiper {
  margin: 0 auto !important;
  overflow: visible;
}



.training__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}

.training__item {
  display: block;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  border-radius: 10px;
  background: #f2f3f4;
  padding: 20px 10px 10px 20px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: auto;
}

.training__item h6 {
  margin-bottom: 15px;
  color: rgba(0, 0, 0, 0.75);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.training__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 35px;
}

.training__content img {
  display: block;
  /* width: 91px;
    height: 100px; */
  -o-object-fit: contain;
  object-fit: contain;
  margin-top: -28px;
}

.training__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.training__left-sb {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.training__left span,
.training__left-sb span,
.training__left a,
.training__left-sb a {
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.77px;
}

.training__left span:last-child {
  padding-bottom: 10px;
}

.training__left-sb a.arrow-right {
  color: #064692;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.77px;
  display: inline-block;
  padding-right: 14px;
  position: relative;
  transition: all ease 0.3s;
}

.training__left-sb a.arrow-right::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 0;
  width: 4px;
  height: 9px;
  background-image: url("../img/arrow-right_blue.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all ease 0.3s;
}

.training__left-sb a.arrow-right:hover {
  color: #5bc5f2;
}

.training__left-sb a.arrow-right:hover::after {
  background-image: url("../img/arrow-right_light-blue.svg");
}




.news__block {
  position: relative;
}

.news__slide {
  height: auto !important;
}

.news__item {
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  background: #fff;
  overflow: hidden;
  height: 100%;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.news__img {
  height: 151px;
}

.news__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.news__content {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.news__content h6 {
  color: rgba(0, 0, 0, 0.75);
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.99px;
}

.news__content span {
  color: rgba(0, 0, 0, 0.5);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 121.523%;
}

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

.mb30 {
  margin-bottom: 30px;
}

.news__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 28px;
  min-height: 55px;
  background: #5bc5f2;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  gap: 10px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 7px 7px 7px 24px;
}

.news__link span:nth-of-type(1) {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: block;
  text-align: center;
  flex: 0 1 100%;
}

.news__link span:nth-of-type(2) {
  display: inline-block;
  width: 41px;
  height: 41px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 41px;
  flex: 0 0 41px;
  background: #8bd2f6;
  border-radius: 50%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.news__link span:nth-of-type(2) svg {
  margin-right: -1px;
}

.news__link:nth-of-type(1) span:nth-of-type(2) svg {
  margin-right: -4px;
}

/*
.news .swiper-button-next {
  right: 0;
}

.news .swiper-button-prev {
  left: 0;
}
*/
.news .swiper-button-next,
.news .swiper-button-prev {
  top: 50%;
}
.success {
  position: relative;
  padding-top: 65px;
  padding-bottom: 46px;
}
.success_pt83 {
  padding-top: 83px;
}

.no-webp .success::before {
  content: "";
  position: absolute;
  width: 1268px;
  height: 255px;
  bottom: 0;
  left: 50%;
  background-image: url("../img/pattern.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: translateX(-50%);
}

.success h2 {
  margin-bottom: 40px;
}
.success__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.success__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(20% - 15px);
  flex: 0 0 calc(20% - 15px);
}

.success__list li span:nth-of-type(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 10px;
  background: #5bc5f2;
  width: 46px;
  height: 46px;
  overflow: hidden;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.88px;
}

.success__list li span:nth-of-type(2) {
  color: rgba(0, 0, 0, 0.75);
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -1.21px;
}

.success__img {
  position: relative;
  min-height: 300px;
}

.success__img::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -35px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff url(/local/assets/img/icon.svg) center/70% no-repeat;
}

.success__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 10px;
  overflow: hidden;
}

.programm {
  padding-top: 65px;
  margin-bottom: 50px;
}

.programm__block {
  position: relative;
}

.programm__slide {
  height: auto !important;
}

.shedule__item_1 .programm__item {
  display: flex !important;
}

.programm__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 10px;
  background: #f2f3f4;
  padding: 30px;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.75);
  align-self: stretch;
  width: 100%;
}

.shedule .swiper-button-next,
.shedule .swiper-button-prev {
  top: 45%;
}

.programm__item h5 {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 121.023%;
  letter-spacing: -1.21px;
  margin-bottom: 15px;
  flex: 0 1 100%;
}

.programm__item p {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 112.5%;
  letter-spacing: -0.77px;
  margin-bottom: 18px;
}

.programm__inner {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}

.programm__inner span {
  font-weight: 500;
  line-height: 112.523%;
  letter-spacing: -0.99px;
  display: inline-block;
}

.programm__inner span:not(:last-of-type) {
  padding-right: 5px;
  border-right: 1px solid rgba(0, 0, 0, 0.75);
}

.programm__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.programm__action a {
  color: #064692;
  font-style: normal;
  font-weight: 700;
  line-height: 112.523%;
  letter-spacing: -0.99px;
}

.programm__like {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #8bd2f6;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.programm__like::after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url(/local/assets/img/heart.svg);
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}

.programm__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #8bd2f6;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.programm__button::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: url(/local/assets/img/card-cart.svg);
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease 0s;
}

.programm__button._active::after,
.programm__button:hover::after {
  background: url(/local/assets/img/card-cart-hovert.svg) center/contain no-repeat;
}

.no-webp .programm__like._active::after {
  background: url(/local/assets/img/favorite.svg) center/contain no-repeat;
}

/*
.programm .swiper-button-next {
  right: 0;
}

.programm .swiper-button-prev {
  left: 0;
}
*/
.programm .swiper-button-next,
.programm .swiper-button-prev {
  top: 50%;
}

.autor {
  padding-top: 65px;
  margin-top: 65px;
  position: relative;
}

.autor__container {
  position: relative;
  z-index: 2;
}

.no-webp .autor__container::after {
  background: url(/local/assets/img/pattern02.png) center/cover no-repeat;
}

.autor__container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  height: 352px;
  min-width: 300px;
  width: 300px;
  z-index: -1;
}

.no-webp .autor__container::before {
  background: url(/local/assets/img/rentangle.png) 0 0/100% 100% no-repeat;
}

.autor__container::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 80%;
  width: 60px;
  display: block;
  min-width: 60px;
}

.autor__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 65px;
  padding-left: 27px;
}

.no-webp .autor__inner::after {
  background: url(/local/assets/img/autor.png) center/contain no-repeat;
}

.autor__inner::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 40px;
  display: block;
  width: 73px;
  height: 100px;
  z-index: 2;
}

.autor__img {
  border-radius: 10px;
  overflow: hidden;
  height: auto;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 315px;
  flex: 0 0 315px;
  margin-bottom: 77px;
}

.autor__img img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.autor__content h3 {
  color: #5bc5f2;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.autor__content p {
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.99px;
}

.autor__content p b {
  display: block;
}

.autor__content p:not(:last-of-type) {
  margin-bottom: 25px;
}

.parent {
  display: -ms-grid;
  display: grid;
  /* -ms-grid-columns: (20%)[3] (10%)[2] 20%; */
  grid-template-columns: repeat(3, 20%) repeat(2, 10%) 20%;
  /* -ms-grid-rows: 149px 27px (149px)[2]; */
  grid-template-rows: 149px 27px repeat(2, 149px);
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-areas:
    "el1 el1 el2 el3 el3 el4"
    "el1 el1 el7 el7 el8 el8"
    "el5 el6 el7 el7 el8 el8"
    "el9 el10 el11 el12 el12 el13";
}

.div1 {
  /* -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 1/1/3/3; */
  grid-area: el1;
}

.div2 {
  /* -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-area: 1/3/2/4 */
  grid-area: el2;
}

.div3 {
  /* -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 4;
    -ms-grid-column-span: 2;
    grid-area: 1/4/2/6 */
  grid-area: el3;
}

.div4 {
  /* -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 6;
    -ms-grid-column-span: 1;
    grid-area: 1/6/2/7 */
  grid-area: el4;
}

.div5 {
  /* -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 3/1/4/2 */
  grid-area: el5;
}

.div6 {
  /* -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 3/2/4/3 */
  grid-area: el6;
}

.div7 {
  /* -ms-grid-row: 2;
    -ms-grid-row-span: 2;
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
    grid-area: 2/3/4/5 */
  grid-area: el7;
}

.div8 {
  /* -ms-grid-row: 2;
    -ms-grid-row-span: 2;
    -ms-grid-column: 5;
    -ms-grid-column-span: 2;
    grid-area: 2/5/4/7 */
  grid-area: el8;
}

.div9 {
  /* -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 4/1/5/2 */
  grid-area: el9;
}

.div10 {
  /* -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 4/2/5/3 */
  grid-area: el10;
}

.div11 {
  /* -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-area: 4/3/5/4 */
  grid-area: el11;
}

.div12 {
  /* -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 4;
    -ms-grid-column-span: 2;
    grid-area: 4/4/5/6 */
  grid-area: el12;
}

.div13 {
  /* -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 6;
    -ms-grid-column-span: 1;
    grid-area: 4/6/5/7 */
  grid-area: el13;
}

.directions {
  padding-bottom: 65px;
}

.directions__item {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  height: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.directions__item h3 {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.directions__item.active h3 {
  color: #5bc5f2;
}

.directions__item:not(:last-of-type),
a.directions__item:not(:last-of-type) {
  background: #f2f3f4;
  position: relative;
}

.no-webp .directions__item:not(:last-of-type)::after,
.no-webp a.directions__item:not(:last-of-type)::after {
  background: url(/local/assets/img/l-r.png) 0 0/100% 100% no-repeat;
}

.directions__item:not(:last-of-type)::after,
a.directions__item:not(:last-of-type)::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 56px;
  display: block;
  top: 0;
  left: 0;
}

.no-webp .directions__item:not(:last-of-type)::before {
  background: url(/local/assets/img/r-r.png) 0 0/100% 100% no-repeat;
}

.directions__item:not(:last-of-type)::before {
  content: "";
  position: absolute;
  width: 21px;
  height: 80px;
  display: block;
  right: 0;
  bottom: 0;
}

.directions__item h3 {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.88px;
}

.directions__item img {
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
  max-width: 85px;
  max-height: 65px;
}

.directions__item_row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.directions__item_big {
  padding: 20px 40px;
  gap: 14px;
}

.directions__item_big::before {
  width: 26px;
  height: 120px;
}

.directions__item_big h3 {
  font-size: 32px;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
}

.div8.directions__item.directions__item_big img {
  max-width: 115px;
  min-height: 85px;
}

/* Fix: ensure bottom spacing for long two-line title in card "Для освоения Арктики" */
.div8.directions__item.directions__item_big h3 {
  font-size: 24px;
}

.directions__item_big img {
  max-height: 85px;
  min-height: 85px;
}

.directions__item.div3 h3 {
  max-width: 150px;
}

.directions__item.div5 img {
  max-height: 45px;
}

.directions__item.div10 img {
  max-height: 45px;
}

.directions__item.div11 img {
  max-height: 55px;
}

.directions__item.div12 img {
  max-height: 55px;
}

.directions__item.div13 {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 62px 20px 61px 39px;
}

.directions__item.div13 h3 {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -1.21px;
}

.fs__slider {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

.swiper {
  overflow: hidden;
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.swiper-vertical .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.swiper-initialized .swiper-slide.k {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 80px;
  flex-basis: auto;
  justify-content: center;
  align-items: center;
}


.swiper-initialized .swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.swiper-button-lock {
  display: none !important;
}

@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #084791;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;

  z-index: 1;

  padding-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px
}

.swiper-vertical>.swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}



.swiper-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.swiper-pointer-events {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-pointer-events {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear,
      right top,
      left top,
      from(rgba(0, 0, 0, 0.5)),
      to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(right,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear,
      left top,
      right top,
      from(rgba(0, 0, 0, 0.5)),
      to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(left,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear,
      left bottom,
      left top,
      from(rgba(0, 0, 0, 0.5)),
      to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(bottom,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear,
      left top,
      left bottom,
      from(rgba(0, 0, 0, 0.5)),
      to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(top,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0));
}

.swiper-css-mode>.swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode>.swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode>.swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
  scroll-snap-type: y mandatory;
}

.swiper-centered>.swiper-wrapper::before {
  content: "";
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
  -ms-flex-order: 9999;
  order: 9999;
}

.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal>.swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical>.swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: center center;
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 10px;
  height: 26px;
  margin-top: 0;
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.75);
  background: url(/local/assets/img/arrow.svg) center/contain no-repeat;
  transform: translateY(-50%);
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 22px;
  right: auto;
  -webkit-transform: rotate(180deg) translateY(60%);
  -ms-transform: rotate(180deg) translateY(60%);
  transform: rotate(180deg) translateY(60%);
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: " ";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 22px;
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: " ";
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 0.3s opacity;
  -o-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: -20px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width,
      var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height,
      var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical>.swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s top, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s left, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}

.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s right, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}

.swiper-horizontal>.swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical>.swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-horizontal>.swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-vertical>.swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container>canvas,
.swiper-zoom-container>img,
.swiper-zoom-container>svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
  animation: swiper-preloader-spin 1s infinite linear;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode>.swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid>.swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-grid-column>.swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-next+.swiper-slide,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-filter: blur(50px);
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  -webkit-transition-property: opacity, height, -webkit-transform;
  transition-property: opacity, height, -webkit-transform;
  -o-transition-property: transform, opacity, height;
  transition-property: transform, opacity, height;
  transition-property: transform, opacity, height, -webkit-transform;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}
@media (any-hover: hover) {
  .form-pop-up__btn:hover {
    background: #064692;
    color: #fff;
  }

  a:hover {
    color: #5bc5f2;
  }

  .header__call a:nth-of-type(2):hover {
    border-bottom: 1px #5bc5f2 dashed;
  }

  .header__call a:hover {
    color: #5bc5f2;
  }

  .header__learning:hover {
    background: #064692;
    color: #fff;
  }

  .header__favorite:hover span {
    color: #064692;
  }

  .no-webp .header__favorite:hover::after {
    background: url(/local/assets/img/favorite-hover.svg) center/contain no-repeat;
  }

  .header__cart:hover span {
    color: #5bc5f2;
  }

  .header__cart:hover svg {
    fill: #5bc5f2;
  }

  .header__reg:hover {
    background: #5bc5f2;
    color: #fff;
  }

  .header__ent:hover {
    color: #5bc5f2;
  }

  .menu__link:hover {
    background: #5bc5f2;
    color: #fff;
  }

  .menu__lang a:hover {
    opacity: 1;
  }

  .dropdown-content a:hover {
    font-weight: 700;
  }

  .partners__slide:hover {
    -webkit-box-shadow: 1px 1px 10px 5px rgba(0, 0, 0, 0.25);
    box-shadow: 1px 1px 10px 5px rgba(0, 0, 0, 0.25);
  }

  .training__item:hover {
    background: #fff;
    -webkit-box-shadow: 1px 1px 10px 5px rgba(0, 0, 0, 0.25);
    box-shadow: 1px 1px 10px 5px rgba(0, 0, 0, 0.25);
  }

  .training__item:hover h6 {
    color: #5bc5f2;
  }

  .news__item:hover {
    -webkit-box-shadow: 1px 1px 10px 5px rgba(0, 0, 0, 0.25);
    box-shadow: 1px 1px 10px 5px rgba(0, 0, 0, 0.25);
  }

  .news__link:hover {
    background: #064692;
  }

  .programm__item:hover {
    background: #064692;
    color: #fff;
  }

  .programm__item:hover .programm__inner span:not(:last-of-type) {
    border-right: 1px solid #fff;
  }

  .programm__item:hover .programm__action a {
    color: #fff;
  }

  .programm__action a:hover {
    color: #8bd2f6;
  }

  .no-webp .programm__like:hover::after {
    background: url(/local/assets/img/favorite.svg) center/contain no-repeat;
  }

  .directions__item:hover {
    -webkit-box-shadow: 1px 1px 10px 5px rgba(0, 0, 0, 0.25);
    box-shadow: 1px 1px 10px 5px rgba(0, 0, 0, 0.25);
  }

  .directions__item:hover:not(:last-of-type) {
    background: #fff;
  }

  .directions__item:hover h3 {
    color: #5bc5f2;
  }
}

@media (any-hover: hover) and (any-hover: hover) {
  .programm__item:hover .programm__action a:hover {
    color: #8bd2f6;
  }
}

.webp .popup__content::after {
  background: url(/local/assets/img/l-p-r.webp) 0 0/100% 100% no-repeat;
}

.webp .popup__content::before {
  background: url(/local/assets/img/r-p-r.webp) 0 0/100% 100% no-repeat;
}

.webp .header__favorite::after {
  background: url(/local/assets/img/favorite.svg) center/contain no-repeat;
}

/* .webp .first li:nth-of-type(1) span {
  background-image: url(/local/assets/img/f1.webp);
}

.webp .first li:nth-of-type(2) span {
  background-image: url(/local/assets/img/f2.webp);
}

.webp .first li:nth-of-type(3) span {
  background-image: url(/local/assets/img/f3.webp);
}

.webp .first li:nth-of-type(4) span {
  background-image: url(/local/assets/img/f4.webp);
}

.webp .first li:nth-of-type(5) span {
  background-image: url(/local/assets/img/f5.webp);
} */

.webp .success::before {
  content: "";
  position: absolute;
  width: 1268px;
  height: 257px;
  bottom: 0;
  left: 50%;
  background-image: url("../img/pattern.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: translateX(-50%);
}

.webp .programm__like._active::after {
  background: url(/local/assets/img/favorite.svg) center/15px auto no-repeat;
}

.webp .autor__container::after {
  background: url(/local/assets/img/pattern02.png) center/cover no-repeat;
}

.webp .autor__container::before {
  background: url(/local/assets/img/rentangle.webp) 0 0/100% 100% no-repeat;
}

.webp .autor__inner::after {
  background: url(/local/assets/img/autor.webp) center/contain no-repeat;
}

.webp .directions__item:not(:last-of-type)::after {
  background: url(/local/assets/img/l-r.webp) 0 0/100% 100% no-repeat;
}

.webp .directions__item:not(:last-of-type)::before {
  background: url(/local/assets/img/r-r.webp) 0 0/100% 100% no-repeat;
}

@media (any-hover: hover) {
  .webp .header__favorite:hover::after {
    background: url(/local/assets/img/favorite-hover.svg) center/contain no-repeat;
  }
}

@media (any-hover: hover) {
  .programm__like:hover::after {
    background-image: url(/local/assets/img/favorite.svg);
    background-size: 17px;
  }
}

.description__container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 40px;
}

.description__img {
  width: 100%;
  height: 503px;
  position: relative;
  max-width: 73.75rem;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  margin: 0 auto;
  padding: 0 2.75rem 40px;
}

.description__img-block {
  width: 100%;
  display: block;
  position: relative;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
}

.description__img-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(/local/assets/img/l-t-s.svg);
  width: 23px;
  height: 143px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left top;
}

.description__img-block::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background: url(/local/assets/img/r-b-s.svg);
  width: 38px;
  height: 360px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left top;
}

.description__img img {
  width: 100%;
}

.description__props {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}

.description__props-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

.description__props-item span:nth-of-type(1) {
  color: #064692;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.99px;
}

.description__props-item span:nth-of-type(2) {
  color: rgba(0, 0, 0, 0.75);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.99px;
  margin-right: 15px;
}

.description__props-item a {
  display: inline-block;
  border-radius: 27.5px;
  background: #5bc5f2;
  padding: 4px 13px;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: all 0.3s ease 0s;
}

@media (any-hover: hover) {
  .description__props-item a:hover {
    background: #064692;
  }
}

.description__form {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 10px;
}

.description__form-item.form__field.select {
  flex: 0 1 225px;
}

.description__form-item.form__field.select select {
  width: 100%;
  font-size: 18px;
  letter-spacing: -0.99px;
  padding: 9px 30px 9px 9px;
}

.description__form .select {
  flex: 0 0 calc(25% - 10px);
}

.description__form .select__value {
  padding: 9px;
}

.description__form .select__content {
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -0.055em;
  color: #064692;
}

.description__form .select__value:hover .select__content,
.description__form ._select-open .select__value .select__content {
  color: #fff !important;
}

.description__desc {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}

.description__desc-item h3 {
  color: #064692;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.99px;
}

.description__desc-item ol {
  padding-left: 16px;
  color: rgba(0, 0, 0, 0.75);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.99px;
}

.description__desc-item h3.inline {
  display: inline-block;
}

.description__desc-item p,
.description__desc-item h3 span,
.description__desc-item span {
  color: rgba(0, 0, 0, 0.75);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.99px;
}

.description__desc-item a {
  color: #064692;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.99px;
  text-decoration-line: underline;
}

.description__desc-item .desc-item__img {
  width: 100%;
  max-width: 364px;
}

.description__desc-item .desc-item__img img {
  width: 100%;
}

.place__wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 45px;
}

.place__address {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}

.place__address h3 {
  color: #064692;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.99px;
  display: inline-block;
}

.place__address span {
  color: rgba(0, 0, 0, 0.75);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.99px;
}

.place__address-link .news__link {
  max-width: 214px;
  min-width: 214px;
}

section.gallery.swiper.courseGallery {
  margin: 0 !important;
  padding: 0 !important;
}

.gallery__container {
  justify-content: space-between;
}

.gallery__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 367px;
}

.gallery__item img {
  width: 100%;
}

.gallery__item h3 {
  color: #064692;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -1.1px;
  margin-top: 10px;
}

.gallery__item span {
  color: rgba(0, 0, 0, 0.75);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.88px;
  margin-top: 5px;
}

.place__images {
  display: grid;
  grid-template-columns: 501px 239px;
  grid-template-rows: repeat(2, 135px);
  grid-template-areas:
    "el1 el2"
    "el1 el3";
  gap: 10px;
}

.place__images-item {
  background: #c4c4c4;
  position: relative;
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}


.place__images-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0px;
  background: url("../img/l-t-s.svg");
  width: 16px;
  height: 109px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left top;
}

.place__images-item.cs::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0px;
  background: url("../img/l-t-s.svg");
  width: 16px;
  height: 180px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left top;
}

.place__images-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0px;
  background: url("../img/r-b-s.svg");
  width: 22px;
  height: 205px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left top;
}

.place__images-item.item2::before,
.place__images-item.item3::before {
  width: 9px;
  height: 53px;
}

.place__images-item.item2::after,
.place__images-item.item3::after {
  width: 14px;
  height: 99px;
}

.place__images-item.item1 {
  grid-area: el1;
}

.place__images-item.item2 {
  grid-area: el2;
}

.place__images-item.item3 {
  grid-area: el3;
}

.faq__container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}

.faq__item {
  border-radius: 10px;
  background: #f2f3f4;
  padding: 20px;
  width: 100%;
  position: relative;
}

.faq__item-title span {
  display: inline-block;
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 134.523%;
  letter-spacing: -1.1px;
  padding-right: 170px;
}

/* Фикс перекрытия текста стрелкой: позиционируем стрелку относительно заголовка */
.accordeon__item-title {
  position: relative;
}

.accordeon__item {
  cursor: pointer;
}

.accordeon__item .arrow {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 37px;
  height: 37px;
  background-image: url("../img/arrow-circle-blue.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all ease 0.5s;
  transform: translateY(-50%);
  padding-right: 0 !important;
}

.accordeon__item.opened .arrow {
  transform: translateY(-50%) rotate(-180deg);
}

.accordeon__item-body {
  height: 0;
  overflow: hidden;
  transition: height ease 0.5s;
}

.faq__item-text {
  margin-top: 20px;
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 121.023%;
  letter-spacing: -0.88px;
}

.contact__wrapper {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 40px;
}

.contact__wrapper::before {
  content: "";
  position: absolute;
  top: 54px;
  left: -43px;
  width: 314px;
  height: 343px;
  background-image: url("../img/pattern12.webp");
  background-position: center;
  background-repeat: no-repeat;
}

.contact__image {
  position: relative;
  width: 314px;
  max-width: 314px;
  height: 100%;
  min-height: 343px;
  background-color: #c4c4c4;
}

.contact__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0px;
  background: url("../img/l-t-s.svg");
  width: 17px;
  height: 102px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left top;
}

.contact__image::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0px;
  background: url("../img/r-b-s.svg");
  width: 24px;
  height: 241px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left top;
}

.programm.required {
  padding-top: 0;
}

.programm.recommended {
  padding-top: 0;
  padding-bottom: 95px;
}

.about__image,
.detail__image {
  position: relative;
  width: 100%;
  max-width: 548px;
  margin: 0 0 0px 30px;
  float: right;
}

.about__image img,
.detail__image img {
  width: 100%;
}

.detail__gallery-item {
  position: relative;
}

.about__image::before,
.detail__image::before,
.detail__gallery-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(/local/assets/img/l-t-s.svg);
  width: 3%;
  height: 20%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left top;
}

.about__image::after,
.detail__image::after,
.detail__gallery-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background: url(/local/assets/img/r-b-s.svg);
  width: 28px;
  height: 80%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left top;
}

.about__text,
.detail__text {
  color: rgba(0, 0, 0, 0.75);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.99px;
  text-align: justify;
}
.about__text p,
.detail__text p {
  margin-bottom: 20px;
}

.about__buttons {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}

.about__buttons .news__link {
  min-width: 180px;
}

.benefits__container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 14px;
  flex-wrap: wrap;
}
.benefits__item {
  position: relative;
  flex-basis: calc((100% - 28px) / 3);
  min-height: 177px;
  padding: 30px;
  background: #f2f3f4;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 19px;
  align-self: stretch;
}

.benefits__item::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 120px;
  display: block;
  right: 0;
  bottom: 0;
  background: url(/local/assets/img/r-r.webp) 0 0/100% 100% no-repeat;
}

.benefits__item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 56px;
  display: block;
  top: 0;
  left: 0;
  background: url(/local/assets/img/l-r.webp) 0 0/100% 100% no-repeat;
}

.benefits__item-number {
  display: flex;
  border-radius: 10px;
  background: #5bc5f2;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 103.023%;
  letter-spacing: -0.88px;
}

span.benefits__item-title {
  color: rgba(0, 0, 0, 0.75);
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -1.21px;
}

.target__container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 25px;
  padding-bottom: 43px;
}

.target__image {
  position: relative;
  width: 100%;
  min-width: 504px;
}

.target__image img {
  width: 100%;
}

.target__image::before {
  content: "";
  position: absolute;
  width: 427px;
  height: 215px;
  /* background-image: url("../img/pattern02.webp"); */
  background-position: center;
  bottom: -43px;
  left: -50px;
  z-index: -1;
  background-size: cover;
}

.target__text {
  color: rgba(0, 0, 0, 0.75);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.99px;
}

section.management.swiper {
  margin: 0 !important;
  padding: 10px 20px !important;
}

.management__wrapper {
  padding: 0;
  flex-wrap: wrap;
  gap: 40px;
}

.management__item {
  flex: 0 0 calc(50% - 25px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}

.management__item-img {
  width: 219px;
  height: 248px;
  min-width: 219px;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.management__item-description {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}

.management__item-description div span:nth-of-type(1) {
  color: #064692;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.99px;
}

.management__item-description div span:nth-of-type(2) {
  color: rgba(0, 0, 0, 0.75);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.99px;
}

.management-pagination {
  display: none;
}

.dop__container {
  padding-bottom: 65px;
}

.dop__container {
  padding-bottom: 65px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
}

a.dop__item {
  display: block;
  position: relative;
  color: #064692;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.99px;
  padding-left: 25px;
  transition: all ease 0.3s;
}

a.dop__item:hover {
  color: #5bc5f2;
}

a.dop__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 15px;
  height: 20px;
  background-image: url("../img/anchor.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: translateY(-50%);
}

.buttons__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.buttons__container.center {
  justify-content: center;
  gap: 27px;
}

.btn {
  color: #fff;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  width: 200px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 28px;
  background: #064692;
  cursor: pointer;
  transition: all ease 0.3s;
}

@media (any-hover: hover) {
  .btn:hover {
    background: #5bc5f2;
    color: #fff;
  }
}

.text__container p {
  color: rgba(0, 0, 0, 0.75);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.99px;
  margin-bottom: 1rem;
}

.activities__item {
  flex-basis: calc((100% - 40px) / 3);
  min-height: 250px;
  padding: 20px 40px;
  background: #f2f3f4;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  cursor: pointer;
  align-self: stretch;
}

@media (any-hover: hover) {
  .activities__item:hover {
    background: #fff;
    -webkit-box-shadow: 1px 1px 10px 5px rgba(0, 0, 0, 0.25);
    box-shadow: 1px 1px 10px 5px rgba(0, 0, 0, 0.25);
  }
}

.activities__item-title {
  color: rgba(0, 0, 0, 0.75);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -1.76px;
}

.activities__item-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 10px;
}

.activities__item-content a {
  color: #064692;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.88px;
  transition: all ease 0.3s;
}

@media (any-hover: hover) {
  .activities__item-content a:hover {
    color: #5bc5f2;
  }
}

.management-center__container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;
}

.shedule-title__container {
  color: #064692;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 103.023%;
  margin-bottom: 40px;
}

.shedule__item {
  margin-bottom: 40px !important;
}

.shedule__container.swiper-wrapper {
  justify-content: space-between;
}

.elements__item.swiper-slide {
  height: auto;
}

.contact__container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}

.contact__item h3 {
  display: inline-block;
  color: #064692;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.99px;
  margin-right: 3px;
}

.contact__item span {
  color: rgba(0, 0, 0, 0.75);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.99px;
}

.elements__item.vakancy {
  gap: 30px;
  justify-content: space-between;
}

.elements__item-top {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex-grow: 1;
  gap: 23px;
}

.elements__item-top_title {
  color: rgba(0, 0, 0, 0.75);
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 121.023%;
  letter-spacing: -1.21px;
}

.elements__item-top_desc {
  color: rgba(0, 0, 0, 0.75);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 112.5%;
  letter-spacing: -0.77px;
}

#vakancyForm .popup__body {
  gap: 40px;
}

.popup-form__title {
  color: rgba(0, 0, 0, 0.75);
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 121.023%;
  letter-spacing: -1.21px;
}

.popup-form__fields {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}

.popup-form__field.fb-50 {
  flex-basis: 528px;
}

.popup-form__field.fb-100 {
  flex-basis: 100%;
}

.popup-form__field input[type="text"],
.popup-form__field input[type="email"],
.popup-form__field input[type="tel"] {
  display: flex;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #064692;
  padding: 0 20px;
  min-height: 56px;
  justify-content: flex-start;
  align-items: center;
}

.popup-form__field input[type="tel"].form-pop-up__input_no-border {
  border: 0px solid #064692;
  padding: 0 0px;
  border-radius: 0px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  min-height: 27px;
}

.form__field_box_no-left label {
  left: 0 !important;
}

.form__field_box_no-left label span {
  margin-top: 0 !important;
}

.form__field_box_no-left {
  height: 27px !important;
}

.popup-form__field input[type="text"]::placeholder,
.popup-form__field input[type="email"]::placeholder,
.popup-form__field input[type="tel"]::placeholder,
.popup-form__field textarea::placeholder {
  color: rgba(0, 0, 0, 0.75);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.77px;
}

span.form__undertext {
  display: inline-block;
  color: rgba(0, 0, 0, 0.5);
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 5px;
}

.popup-form__field textarea {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #064692;
  padding: 20px;
  min-height: 180px;
}

.popup-form__field.buttons {
  flex-basis: 100%;
}

.popup-form__field input[type="file"] {
  visibility: hidden;
  width: 0;
}

.popup-form__field.buttons a.file__open {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
  width: 260px;
  height: 55px;
  position: relative;
  border-radius: 28px;
  background: #5bc5f2;
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 7px;
  transition: all ease 0.3s;
  cursor: pointer;
}

.popup-form__field.buttons a.file__open span {
  flex: 0 1 100%;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 190px;
}

.popup-form__field.buttons a.file__open img {
  display: block;
  background: #8bd2f6;
  border-radius: 50%;
  padding: 9px;
}

.popup-form__field.buttons a.file__open:hover {
  background: #064692;
}

#vakancyForm .form__field.checkbox label {
  color: rgba(0, 0, 0, 0.75);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.77px;
}

#vakancyForm .form__field.checkbox label a {
  color: #064692;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.77px;
  transition: all ease 0.3s;
}

#vakancyForm .form__field.checkbox label a:hover {
  color: #8bd2f6;
}

.contact__item-btn {
  margin-top: 40px;
}

.programm__buttons {
  display: flex;
  gap: 10px;
}

.btn.play-btn {
  background: #5bc5f2;
  justify-content: flex-end;
  padding: 0 7px 0 20px;
  gap: 10px;
  width: auto;
  font-size: 14px;
  text-align: center;
}

.btn.play-btn span:nth-of-type(1) {
  padding: 0 18px;
}

.btn.play-btn span.icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #8bd2f6;
  border-radius: 50%;
  transition: all ease 0.3s;
}

.btn.play-btn:hover {
  background: #064692;
}

.btn.play-btn:hover .programm__like::after {
  background-image: url(/local/assets/img/favorite.svg);
  background-size: 17px;
}

.btn.play-btn:hover span.icon {
  background: #5bc5f2;
}

.detail__date,
.detail-gallery__date {
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.77px;
  margin-bottom: 20px;
}

.detail__gallery {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.detail__gallery-item {
  flex-basis: calc((100% - 40px) / 3);
}

.detail__gallery-item img {
  width: 100%;
}

/* Center captions under gallery images on course detail page */
.detail__gallery-item h3,
.detail__gallery-item span,
.detail-gallery__item h3,
.detail-gallery__item span {
  text-align: center;
}

.detail-gallery__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 13px;
}

.detail-gallery__item {
  flex-basis: calc((100% - 39px) / 4);
}

.detail-gallery__item img {
  width: 100%;
}

/* .contacts__items {
    display: grid;
    grid-template-columns: 298px 108px 305px 15px 414px;
    grid-template-rows: repeat(2, 281px) 259px 281px;
    gap: 19px;
    grid-template-areas:
        'el1 el1 el2 el2 el3'
        'el4 el5 el5 el6 el6'
        'el7 el7 el7 el7 el7'
        'el8 el8 el9 el9 el10';
} */
.contacts__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 11px;
}

.contacts__item {
  padding: 20px;
  border-radius: 10px;
  background: #f2f3f4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
}

.contacts__item.item-1,
.contacts__item.item-8 {
  width: 406px;
}

.contacts__item.item-2,
.contacts__item.item-9 {
  width: 320px;
}

.contacts__item.item-3,
.contacts__item.item-10 {
  width: 414px;
}

.contacts__item.item-4 {
  width: 298px;
}

.contacts__item.item-5 {
  width: 413px;
}

.contacts__item.item-6 {
  width: 428px;
}

.contacts__item.item-7 {
  width: 100%;
}

.contacts__item-title {
  color: rgba(0, 0, 0, 0.75);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.contacts__item-address {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 5px;
  flex-grow: 1;
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.77px;
}

a.contacts__item-link {
  color: #064692;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 112.523%;
  letter-spacing: -0.88px;
  transition: all ease 0.3s;
}

a.contacts__item-link:hover {
  color: #5bc5f2;
}

.mini__modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 395px;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  background: #fff;
  box-shadow: 1px 1px 10px 5px rgba(0, 0, 0, 0.25);
  padding: 55px 0;
}

.mini__modal.wide {
  width: 650px;
  padding: 55px 67px;
}

.mini__modal.opened {
  display: block;
  z-index: 1000;
}
.mini__modal::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 93px;
  display: block;
  top: -1px;
  left: 0;
  background-image: url(/local/assets/img/t-l-10.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left top;
}

.mini__modal::after {
  content: "";
  position: absolute;
  width: 31px;
  height: 142px;
  display: block;
  right: -1px;
  bottom: 0;
  background-image: url(/local/assets/img/b-r-10.svg);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
}

.mini__modal-close {
  position: absolute;
  top: 0px;
  right: 0px;
  cursor: pointer;
}
.mini__modal-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.mini__modal-input {
  margin-bottom: 20px;
  padding: 0 40px;
  text-align: center;
}

.mini__modal-input label.file-label {
  display: block;
  width: 307px;
  height: 33px;
  border-radius: 5px;
  border: 1px solid #064692;
  margin: 0 auto;
  color: rgba(0, 0, 0, 0.75);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.77px;
  text-align: left;
  padding: 8px 12px;
}

.mini__modal-input input[type="file"] {
  visibility: hidden;
  width: 0;
  height: 0;
}

.mini__modal-input span.form__undertext {
  color: rgba(0, 0, 0, 0.5);
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.55px;
  margin-top: 0;
}

.mini__modal-button a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 55px;
  color: #fff;
  border-radius: 28px;
  background: #5bc5f2;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  transition: all ease 0.3s;
}

.mini__modal-button a:hover {
  background: #064692;
}

.mini__modal-title {
  color: #064692;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -1.76px;
  text-align: center;
  margin-bottom: 20px;
}

.mini__modal-errors {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 30px;
  color: rgba(0, 0, 0, 0.75);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.77px;
}

.mini__modal.wide .mini__modal-errors span {
  display: inline-block;
  text-align: center;
}

.mini__modal-links {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.mini__modal-links span {
  color: rgba(0, 0, 0, 0.75);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.77px;
}

.mini__modal-links a {
  color: #064692;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.77px;
  text-decoration-line: underline;
}

.mini__modal-links a:hover {
  color: #5bc5f2;
}

.block__container {
  margin: 65px auto;
}

.single__form {
  position: relative;
  width: 100%;
  max-width: 852px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 1px 1px 10px 5px rgba(0, 0, 0, 0.25);
  margin: 0 auto;
  padding: 55px 0;
  overflow: hidden;
}

.single__form::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 120px;
  max-height: 40%;
  background-image: url("../img/sform-l-t.svg");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
}

.single__form::after {
  content: "";
  position: absolute;
  right: -15px;
  bottom: -1px;
  width: 50px;
  height: 182px;
  background-image: url("../img/sform-r-b.svg");
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: 1;
}

.single__form-title {
  color: #064692;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -1.76px;
  text-align: center;
}

.single__form-form {
  width: 100%;
  max-width: 528px;
  margin: 0 auto;
}

.single__form-form .form__field {
  margin-bottom: 10px;
  text-align: right;
}

.single__form-form .form__field.checkbox {
  text-align: left;
  margin-top: 13px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.single__form-form .form__field.buttons {
  text-align: center;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}

.single__form-form .form__field input:not([type="checkbox"]) {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #064692;
  height: 56px;
  padding: 20px;
}

.single__form-form .form__field input::placeholder {
  color: rgba(0, 0, 0, 0.75);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.77px;
}

.form__field.form__field_box input::placeholder {
  color: transparent;
}

a.forgot__password {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: block;
  margin-top: 5px;
  margin-left: auto;
  width: fit-content;
}

.single__form-form .form__field.checkbox label {
  color: rgba(0, 0, 0, 0.75);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  min-height: 20px;
  align-items: center;
}

.form__field.buttons a.base {
  color: #064692;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.form__field.buttons a.base:hover {
  color: #5bc5f2;
}

.capcha {
  margin: 20px auto;
  text-align: center;
  width: 100%;
  max-width: 259px;
}

.capcha img {
  width: 100%;
}

a.logout {
  color: rgba(0, 0, 0, 0.75);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -1.1px;
}

a.logout:hover {
  color: #5bc5f2;
}

.profile__items {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 14px;
}

.profile__item {
  position: relative;
  flex-basis: calc((100% - 28px) / 3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 177px;
  padding: 30px 0;
  border-radius: 10px;
  background: #f2f3f4;
}

.profile__item:hover {
  background: #fff;
  -webkit-box-shadow: 1px 1px 10px 5px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 10px 5px rgba(0, 0, 0, 0.25);
}

.profile__item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 57px;
  display: block;
  top: 0;
  left: 0;
  background-image: url(/local/assets/img/intersect.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left top;
}

.profile__item::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 120px;
  display: block;
  bottom: 0;
  right: 0;
  background-image: url(/local/assets/img/b-r-10.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;
}

.profile__item-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all ease 0.3s;
}

.profile__item-img.anketa {
  background-image: url("../img/profile_anketa.svg");
}

.profile__item-img.set-pass {
  background-image: url("../img/profile_pass.svg");
}

.profile__item-img.upload {
  background-image: url("../img/profile_documents.svg");
}

.profile__item-img.favourite {
  background-image: url("../img/profile_favourite.svg");
}

.profile__item-img.basket {
  background-image: url("../img/profile_basket.svg");
}

.profile__item-img.sold {
  background-image: url("../img/profile_sold.svg");
}

.profile__item-img.sold-chek {
  background-image: url("../img/chek001.svg");
}

.profile__item-img.action {
  background-image: url("../img/action.svg");
}

.profile__item:hover .profile__item-img.anketa {
  background-image: url("../img/profile_anketa-active.svg");
}

.profile__item:hover .profile__item-img.set-pass {
  background-image: url("../img/profile_pass-active.svg");
}

.profile__item:hover .profile__item-img.upload {
  background-image: url("../img/profile_documents-active.svg");
}

.profile__item:hover .profile__item-img.favourite {
  background-image: url("../img/profile_favourite-active.svg");
}

.profile__item:hover .profile__item-img.basket {
  background-image: url("../img/profile_basket-active.svg");
}

.profile__item:hover .profile__item-img.sold {
  background-image: url("../img/profile_sold-active.svg");
}

.profile__item:hover:hover .profile__item-img.sold-chek {
  background-image: url("../img/chek001-hover.svg");
}

.profile__item:hover:hover .profile__item-img.action {
  background-image: url("../img/action-hover.svg");
}

.profile__item-img img {
  visibility: hidden;
}

.profile__item-title {
  color: #064692;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -1.65px;
  transition: all ease 0.3s;
}

.profile__item:hover .profile__item-title {
  color: #5bc5f2;
}

.anketa__form {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
}

.anketa__form_start {
  align-items: flex-start;
  /*max-width: 1076px;*/
}

.anketa__form-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  column-gap: 20px;
  row-gap: 10px;
}

.anketa__form-row .form__field {
  flex-basis: calc((100% - 40px) / 3);
}

.anketa__form-row .select {
  flex-basis: calc((100% - 40px) / 3);
}

.anketa__form-row .form__field.form__field_50 {
  flex-basis: calc((100% - 20px) / 2);
}

.anketa__form-row .form__field input,
.anketa__form-row .form__field select {
  width: 100%;
  height: 56px;
  border-radius: 5px;
  border: 1px solid #064692;
  padding: 20px;
  color: rgba(0, 0, 0, 0.75);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.77px;
}

.news-resaul-search__container {
  display: grid;
  grid-template-columns: 397px 1fr;
  grid-template-rows: auto auto;
  grid-column-gap: 24px;
  grid-row-gap: 48px;
}

.news-resaul-search__img {
  height: auto;
  grid-area: 1 / 1 / 3 / 2;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.news-resaul-search__content {
  grid-area: 1 / 2 / 2 / 3;
}

.news-resaul-search__content p {
  color: rgba(0, 0, 0, 0.75);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.99px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 9;
  -webkit-box-orient: vertical;
  line-clamp: 9;
  box-orient: vertical;
}

.news-resaul-search__link {
  grid-area: 2 / 2 / 3 / 3;
  color: #064692;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 112.523%;
  /* 18.004px */
  letter-spacing: -0.88px;
}

.news-resaul-search__link:hover,
.table-link:hover {
  color: #5bc5f2;
}

.title h4 {
  padding-top: 20px;
  color: rgba(0, 0, 0, 0.75);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 103.023%;
}

.courses__container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 50px;
}

.courses__container .programm__item {
  flex: 0 0 calc(33.33% - 34px);
}

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

.table-link {
  color: #064692;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 112.5%;
  /* 18px */
  letter-spacing: -0.88px;
}

.btn.play-btn_flex-canter {
  justify-content: center;
  padding: 0;
  width: 200px;
  margin: 0px auto;
}

/*
.select__content {
  float:left;
  unicode-bidi:bidi-override;
  direction:rtl;
}

.select__content:first-letter {
  color: blue;
}
*/
/*
option:nth-of-type(1){
  position: relative;
}
option:nth-of-type(1)::after{
  content:'*';
  color:#de001a;
}
*/
#popup .popup__content,
#popupEnd .popup__content {
  max-width: 395px;
  padding: 55px 49px;
}

#popupEnd h3 {
  margin-bottom: 65px;
}

#popup .popup__content .form-pop-up__input {
  width: 100%;
}

.order-courses table,
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 964px;
}

.order-courses__container {
  overflow: auto;
}

table th {
  font-weight: bold;
  background: #efefef;
  border: 1px solid #bdbdbd;
}

table tr:first-of-type {
  background: #f2f3f4;
  border: 1px solid #f2f3f4;
}

table td {
  border: 1px solid #bdbdbd;
  padding: 20px;
  text-align: center;
  color: rgba(0, 0, 0, 0.75);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 112.5%;
  /* 15.75px */
  letter-spacing: -0.77px;
  /*white-space: nowrap;*/
}

table tr:first-of-type td {
  color: #064692;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 112.5%;
  /* 18px */
  letter-spacing: -0.88px;
  border: 1px solid #f2f3f4;
}

/*
table.small {
  max-width: 879px;
  min-width: 879px;
}
**/
table td span {
  margin-top: 10px;
  font-size: 10px;
  text-align: center;
}

table.small-898 {
  max-width: 898px;
  min-width: 898px;
}

table tr td:nth-of-type(2) {
  white-space: normal;
}

.attation-text {
  padding-bottom: 20px;
}

.attation-text p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 112.5%;
  /* 15.75px */
  letter-spacing: -0.77px;
}

.attation-text p.red {
  color: #de001a;
}

.attation-text a {
  color: #064692;
  text-decoration-line: underline;
}

.programm__item_border {
  border: 2px solid #de001a;
}

.title_small h2 {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 112.5%;
  /* 36px */
  letter-spacing: -1.76px;
}

.title_small h2 span:nth-of-type(2) {
  color: rgba(0, 0, 0, 0.75);
}

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

.title__container_flex-column p {
  color: rgba(0, 0, 0, 0.75);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 112.5%;
  /* 15.75px */
  letter-spacing: -0.77px;
}

.title__container_flex-column a {
  color: #064692;
  text-decoration: underline;
}

.title__container_flex-column a:hover {
  color: #5bc5f2;
}

.profile__items_flex-start {
  justify-content: flex-start;
}

.form-pop-up__inner_gap-15 {
  gap: 15px;
  margin-top: 20px;
  margin-bottom: 37px;
}

.management__item-icons {
  margin-bottom: 10px;
  width: 43.33px;
  height: 54.17px;
  background: url(/local/assets/img/doc.svg) center / contain no-repeat;
  transition: all 0.3s ease 0s;
}
.management__item:hover .management__item-icons {
  background: url(/local/assets/img/doc-hover.svg) center / contain no-repeat;
}
.management__item-icons:hover .doc-icon {
  background: url(/local/assets/img/doc-hover.svg) center / contain no-repeat !important;
}
.doc__row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}


.doc__row:nth-of-type(1) {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 40px;
}

.doc__row .management__item {
  max-width: 265px;
}

.doc__row .management__item-description div span:nth-of-type(1),
.doc__row .management__item-description div span:nth-of-type(2) {
  font-size: 16px;
  letter-spacing: -0.88px;
}

.select {
  position: relative;
}

.select__body {
  position: relative;
}
.select__title {
  color: inherit;
  text-align: left;
  border-radius: 5px;
  border: 1px solid #064692;
  background-color: #fff;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 20;
}

.select__value:hover,
._select-open .select__value {
  background-color: #064692;
  color: #fff;
}

.select__value:hover:before,
._select-open .select__value:before {
  background: url(/local/assets/img/select-arrow-white.svg) center / contain no-repeat;
}

.select__value {
  display: flex;
  align-items: center;
  height: 56px;
  padding: 20px;
  justify-content: space-between;
  flex-direction: row-reverse;
  color: rgba(0, 0, 0, 0.75);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.77px;
  transition: all 0.3s ease 0s;
}

.select__value:before {
  content: "";
  align-self: stretch;
  flex: 0 0 14px;
  transition: all 0.3s ease 0s;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(/local/assets/img/select-arrow-black.svg) center / contain no-repeat;
}

._select-open .select__value:before {
  transform: rotate(-180deg);
}

.select__text {
  flex: 1 1 auto;
}

.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}

.select__options {
  color: #000;
  position: absolute;
  top: 55px;
  border-radius: 0 0 5px 5px;
  min-width: 100%;
  left: 0;
  background-color: #fff;
  border-top: 0;
  border: 1px solid #064692;
  border-top: 0;
  padding: 10px 20px;
}

.select__scroll {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 200px;
}

.select__scroll .simplebar-scrollbar::before {
  opacity: 1;
}

.select__option {
  width: 100%;
  display: block;
  text-align: left;
  cursor: pointer;
  padding: 10px 0;
  color: inherit;
  color: rgba(0, 0, 0, 0.75);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.66px;
  border-bottom: 1px solid #064692;
  transition: all 0.3s ease 0s;
}

.select__option:last-of-type {
  border-bottom: 0px solid #064692;
}

.select__option._select-selected {
  background-color: #eee;
}

.select__option:hover {
  color: #5bc5f2;
}

.select._select-open {
  z-index: 25;
}

.form-grid__item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-grid__item .form-grid__item-label {
  color: rgba(0, 0, 0, 0.8);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.55px;
}

.form-grid__item input,
.form-grid__item textarea {
  width: 100%;
  padding: 20px;
  border-radius: 5px;
  border: 1px solid #064692;
  color: rgba(0, 0, 0, 0.75);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.77px;
}

.form-grid__row:not(:last-of-type) {
  margin-bottom: 20px;
}

.form-grid__row {
  display: flex;
  gap: 20px;
}

.form-grid__row .form-grid__item {
  flex: 1 0 calc(50% - 10px);
}

.file-upload {
  position: relative;
  /* Даем возможность делать позиционирование, внутри данного элемента */
  overflow: hidden;
  /* Все что выходит за пределы - скрываем */
  width: 100%;
  /* Задаем ширину кнопки выбора файла */
  height: 56px;
  /* Задаем высоту кнопки выбора файла */
  background: #fff;
  border-radius: 5px;
  color: rgba(0, 0, 0, 0.75);
  padding: 20px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.77px;
  border-radius: 5px;
  border: 1px solid #064692;
}

.file-upload:hover {
  background: #064692;
  color: #fff;
}

.file-upload input[type="file"] {
  display: none;
  /* Обязательно скрываем настоящий Input File */
}

.file-upload label {
  /* Растягиваем label на всю возможную площадь блока .file-upload */
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.file-upload span {
  line-height: 56px;
  padding-left: 20px;
  /* Делаем вертикальное выравнивание текста, который написан на кнопке */
}

.form-grid__row:last-of-type {
  margin-bottom: 40px;
}

.file-upload span span {
  padding-left: 0;
  color: #de001a;
}

.form-grid__row {
  /*max-width: 620px;*/
}

.form-grid__row textarea {
  height: 500px;
  /* Высота поля в пикселах */
  resize: none;
}

.rewiew-slider__slider {
  margin: 0 !important;
  padding-bottom: 40px !important;
  overflow: auto !important;
}

.rewiew-slider__pagination {
  bottom: 5px !important;
}

.rewiew-slider table td {
  white-space: normal !important;
  padding: 20px 10px;
}

.swiper-button-next.rewiew-slider__next {
  right: 0;
}

.swiper-button-prev.rewiew-slider__prev {
  left: 0 !important;
}

.rewiew-slider__slide {
  padding: 0 15px;
  min-width: 974px;
}

.mob {
  display: none;
}


.rewiew-slider__inner {
  overflow: auto;
}

.partners__pagination {
  display: none;
}

.shedule__item_1 {
  margin-bottom: 0 !important;
}

#popupFilter .select__value,
.description__form-item .select__value {
  /* gap: 40px; */
  padding: 10px 10px 10px 20px;
  height: 60px;
  white-space: nowrap;
  color: #064692;
  font-weight: 700;
  white-space: normal;
}

#popupFilter .select__value:hover,
.description__form-item .select__value:hover {
  color: #fff;
}

#popupFilter ._select-open .select__value,
.description__form-item ._select-open .select__value {
  color: #fff;
}

#popupFilter .select__options,
.description__form-item .select__options {
  top: 60px;
}

.description__form-item:nth-of-type(1) {
  position: relative;
  z-index: 9;
}

.description__form-item:nth-of-type(2) {
  position: relative;
  z-index: 8;
}

.description__form-item:nth-of-type(3) {
  position: relative;
  z-index: 7;
}

.description__form-item:nth-of-type(4) {
  position: relative;
  z-index: 6;
}

.description__form-item:nth-of-type(5) {
  position: relative;
  z-index: 5;
}

.description__form-item:nth-of-type(6) {
  position: relative;
  z-index: 4;
}

.description__form-item:nth-of-type(7) {
  position: relative;
  z-index: 3;
}

.description__form-item:nth-of-type(8) {
  position: relative;
  z-index: 2;
}

.description__form-item:nth-of-type(9) {
  position: relative;
  z-index: 1;
}

.filter__row:nth-of-type(1) {
  position: relative;
  z-index: 3;
}

.filter__row:nth-of-type(2) {
  position: relative;
  z-index: 2;
}

.filter__row:nth-of-type(3) {
  position: relative;
  z-index: 1;
}

.form__field:nth-of-type(1) {
  position: relative;
  z-index: 5;
}

.form__field:nth-of-type(2) {
  position: relative;
  z-index: 4;
}

.form__field:nth-of-type(3) {
  position: relative;
  z-index: 3;
}

.form__field:nth-of-type(4) {
  position: relative;
  z-index: 2;
}

.form__field:nth-of-type(5) {
  position: relative;
  z-index: 1;
}

.description__img-block {
  height: 503px;
}

.programm__slide {
  display: flex;
}

.menu-open .mobile__menu {
  left: 0;
  display: block;
}

.form__error {
  color: #de001a;
  font-size: 12px;
}

.news-media .news__pagination {
  display: block;
}

.news-media .swiper-wrapper {
  height: 100% !important;
}

.fancybox__container {
  position: fixed;
}

.form__field_box {
  position: relative;
  width: 100%;
  height: 56px;
}

.form__field_box input {
  position: absolute;
  top: 0px;
  left: 0px;
  background: rgba(0, 0, 0, 0);
}

.popup__body_335 {
  max-width: 335px;
  padding: 55px 40px;
}

.title__ext .btn {
  padding: 7px 20px;
  width: auto;
  height: auto;
  font-size: 16px;
}

.filter__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  align-items: center;
}

.filter__column .select {
  width: 100%;
}

.filter__column .btn {
  margin-top: 15px;
  background: #5bc5f2;
}

.filter__column .btn:hover {
  background: #064692;
}

.form__field_box label {
  position: absolute;
  top: 50%;
  left: 20px;
  font-size: 14px;
  transform: translateY(-50%);
  display: flex;
  gap: 2px;
  z-index: 0;
}

.form__field_box label span {
  color: #de001a;
}

.form-note {
  font-size: 14px;
  display: block;

  span {
    color: #de001a;
  }
}

.form__field_box input:focus {
  background: #ffffff;
  z-index: 1;
}

.select__option:nth-of-type(1) {
  /*display: none;*/
}

.news__item {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news__content {
  flex: 0 1 100%;
}

.description__form-item.form__field {
  border: 1px solid #064692;
  border-radius: 5px;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  /* identical to box height */
  letter-spacing: -0.055em;

  color: #064692;
  min-height: 40px;
  padding: 9px;
  flex: 0 0 calc(25% - 10px);
}

.form__field.fb-50 {
  width: calc(50% - 10px);
}

.buttons_flex {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.inner__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: stretch;
}

.inner__wrapper .news__item {
  flex: 0 0 calc(25% - (36px * 3 / 3));
  height: auto;
}

.btn_disabled,
.btn.play-btn.btn_disabled {
  pointer-events: none;
  background: #bababa;
  color: #fff;
}

.btn.play-btn.btn_disabled span.icon {
  background: #f2f3f4;
}

.mt-20 {
  margin-top: 20px;
}

.popup-form__field.form__field_box input::placeholder {
  color: transparent;
}

.buttons__container.column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.title .checkbox__text {
  font-size: 18px;
}

.header__menu.menu {
  position: relative;
}

.header__menu.menu::before {
  content: "";
  width: 107px;
  height: 60px;
  flex: 0 0 107px;
  top: 50%;
  transform: translateY(-50%);
  left: -131px;
  background: url(/local/assets/img/header-bg.png) center / contain no-repeat;
  position: absolute;
}

.swiper.shedule__item .swiper-wrapper {
  /*padding-bottom: 20px;*/
}

/*
  .swiper.shedule__item .swiper-wrapper .programm__slide{
    flex: 0 0 calc(33.33% - (41px * 2 / 2));
  }
  */
@media (any-hover: hover) {
  .checkbox__text a:hover::after {
    background: #064692;
  }

  .checkbox__text a:hover {
    color: #064692;
  }
}

.header__mob-search {
  display: none;
}

.checkbox__text a {
  text-decoration: none;
  position: relative;
  color: #5bc5f2;
  display: inline-block;
  pointer-events: auto;
  width: fit-content;
}

.checkbox__text a::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: #5bc5f2;
  transition: all 0.3s ease 0s;
}

._grey .profile__item-img {
  background: url(/local/assets/img/cart-pay-g.svg) center / contain no-repeat !important;
  height: 56px;
}

._grey .profile__item-title {
  color: #969696;
}

._grey.profile__item {
  pointer-events: none;
}

._grey.profile__item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 57px;
  display: block;
  top: 0;
  left: 0;
  background-image: url(/local/assets/img/intersect-g.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left top;
}

._grey.profile__item::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 120px;
  display: block;
  bottom: 0;
  right: 0;
  background-image: url(/local/assets/img/b-r-10-g.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;
}

.note-text {
  padding-top: 40px;
  color: rgba(0, 0, 0, 0.75);
}

.note-text__container p {}

.note-text__container p:not(:last-of-type) {
  margin-bottom: 20px;
}

.note-text__container ul {}

.note-text__container li {
  position: relative;
  margin-bottom: 10px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.note-text__container li::before {
  content: "";
  background: url(/local/assets/img/anchor-li.svg) center / contain no-repeat;
  display: block;
  width: 16px;
  height: 16px;
}

.note-text__container li:last-of-type {
  margin-bottom: 20px;
}

.checkbox-wrapper input {
  position: absolute;
  opacity: 0;
  сursor: pointer;
}

.checkbox-wrapper label {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 36px;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 18px;
  line-height: 21px;
  user-select: none;
}

.checkbox-wrapper label:not(:last-of-type) {
  margin-bottom: 10px;
}

.checkbox-wrapper span {
  position: absolute;
  top: 0;
  left: 0;
  height: 21px;
  width: 21px;
  border: 1px solid #064692;
  border-radius: 5px;
}

.checkbox-wrapper label input:checked~span {
  background: url(/local/assets/img/chek.svg) center / contain no-repeat;
}

.checkbox-wrapper span:after {
  content: "";
  position: absolute;
  display: none;
}

.action {
  margin-bottom: 40px;
}

.checkbox-wrapper label input:checked~span:after {
  display: block;
}

.action__item {
  margin-bottom: 40px;
}
.action__item p {
  margin-bottom: 20px;
}

.action .weight-500 {
  font-weight: 500;
}
.order-mob table {
  max-width: 100%;
  min-width: 0;
  margin-bottom: 20px;
}

.order-mob .table-link {
  margin-bottom: 0px;
  display: block;
  text-align: center;
}

.order-mob .btn {
  margin-top: 20px;
}

.order-mob h5 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  color: #064692;
}

.order-mob {
  display: none;
}

.order-mob table .table-link {
  margin-bottom: 0;
  display: inline;
}
.order-mob__item:not(:last-of-type) {
  margin-bottom: 40px;
}

.order-mob__item h5 {
  font-size: 16px;
  margin-bottom: 20px;
}

.order-mob__item p {
  font-size: 14px;
  line-height: 1.3;
}

.order-mob__item p:not(:last-of-type) {
  margin-bottom: 10px;
}

.order-mob__item p span:nth-of-type(1) {
  font-weight: 700;
  color: #064692;
}

.order-mob .management__item {
  margin-bottom: 40px;
}

.order-mob__item {
  border-bottom: 1px solid #bdbdbd;
  padding-bottom: 40px;
}

.course-filtr__inner {
  display: flex;
  gap: 83px;
}

.block {
  margin: 0px 0px 20px 0px;
}

.block__item {
  margin: 0px 0px 20px 0px;
}

.block__title {
  width: 100%;
  text-align: left;
  padding: 0px 0;
  position: relative;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.06em;
  color: #064692;
}

.block._init .block__title {
  cursor: pointer;
}

.block._init .block__title {
  padding: 0px 40px 0px 0px;
}

.block._init .block__title::after {
  content: "";
  width: 9px;
  height: 4px;
  position: absolute;
  right: 0px;
  top: 8px;
  background: url(/local/assets/img/spoller-aroov.svg) center / contain no-repeat;
  transition: transform 0.3s ease 0s;
  transform: rotate(180deg);
}

.course-filtr .checkbox .checkbox__text {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: -0.06em;
  color: rgba(0, 0, 0, 0.75);
}

.course-filtr .checkbox:not(:last-of-type) {
  margin-bottom: 0;
  padding-bottom: 12px;
}

.course-filtr .checkbox:last-of-type {
  margin-bottom: 0;
  padding-bottom: 10px;
}

.course-filtr .checkbox__label:before {
  -ms-flex: 0 0 15px;
  flex: 0 0 15px;
  width: 15px;
  height: 15px;
}

.block._init .block__title._active::after {
  transform: rotate(0deg);
}

.block__text {
  padding: 15px 0px 10px;
}

.course-filtr__aside {
  flex: 0 0 30%;
}

.checkbox-other {
  position: relative;
  z-index: -1;
  opacity: 0;
}

.checkbox-other+label {
  position: relative;
  cursor: pointer;
}

.checkbox-other+label:before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 40px;
  height: 24px;
  border-radius: 12px;
  background: #d9d9d9;
  transition: 0.2s;
}

.checkbox-other+label:after {
  content: "";
  position: absolute;
  top: -2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background: #fff;
  transition: 0.2s;
}

.checkbox-other:checked+label:before {
  background: #064692;
}

.checkbox-other:checked+label:after {
  left: 18px;
}

.course-filtr .btn {
  margin-top: 40px;
}

.course-filtr__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.course-filtr__top h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 103%;
  color: #064692;
  display: flex;
  align-items: center;
  gap: 9px;
}

.course-filtr__top h3:before {
  content: "";
  display: block;
  width: 16px;
  height: 18px;
  background: url(/local/assets/img/filtr.svg) center / contain no-repeat;
  display: none;
}

.course-filtr__top a {
  font-weight: 400;
  font-size: 13px;
  letter-spacing: -0.06em;
  color: rgba(0, 0, 0, 0.75);
}

.course-filtr__top a {
  font-weight: 400;
  font-size: 13px;
  letter-spacing: -0.06em;
  color: rgba(0, 0, 0, 0.75);
}

.course-filtr .elements__items {
  column-gap: 30px;
  row-gap: 20px;
}

.course-filtr .programm__item {
  flex-basis: calc(50% - 15px);
}

.news__inner-slider {
  position: relative;
  padding: 0 30px;
}

.news__inner-slider .swiper-button-next {
  right: 0 !important;
}

.news__inner-slider .swiper-button-prev {
  left: 0 !important;
}

.options-inner {
  display: flex;
  gap: 20px;
}

.options {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  align-items: center;
}

.options-inner p {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.06em;
  color: #064692;
}

.options__item {
  position: relative;
  cursor: pointer;
  line-height: 0;
}

.options__input {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}

.options__input:focus+.options__label:before {
  box-shadow: 0 0 5px #000;
}

.options__input:checked+.options__label:before {}

.options__input:checked+.options__label:after {
  transform: scale(1);
}

.options__label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  gap: 10px;
  width: 100%;
}

.options__label:before {
  content: "";
  align-self: flex-start;
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  border-radius: 50%;
  border: 1px solid #064692;
}

.options__label:after {
  content: "";
  transition: all 0.3s ease 0s;
  transform: scale(0);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #064692;
  position: absolute;
  left: 3px;
  top: 3px;
}

.options__text {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: -0.06em;
  color: rgba(0, 0, 0, 0.75);
  flex: 0 0 calc(100% - 25px);
  white-space: wrap;
}

.options__text span {
  display: none;
}

.title__filtr {
  display: flex;
  gap: 30px;
  align-items: center;
}

.title__container-filter {
  display: flex;
  align-items: center;
  gap: 150px;
}

.title__table {
  display: flex;
  gap: 10px;
}

.title__table button:nth-last-of-type(2) {
  display: block;
  width: 21px;
  height: 18px;
  background: url(/local/assets/img/table02.svg) center / contain no-repeat;
  transition: all 0.3s ease 0s;
}

.title__table button._active:nth-last-of-type(2) {
  display: block;
  width: 21px;
  height: 18px;
  background: url(/local/assets/img/table01.svg) center / contain no-repeat;
  transition: all 0.3s ease 0s;
}

.title__table button:nth-last-of-type(1) {
  display: block;
  width: 18px;
  height: 18px;
  background: url(/local/assets/img/dashboard01.svg) center / contain no-repeat;
}

.title__table button._active:nth-last-of-type(1) {
  display: block;
  width: 18px;
  height: 18px;
  background: url(/local/assets/img/dashboard02.svg) center / contain no-repeat;
}

.course-filtr .elements__items.elements__items_table {
  gap: 0;
  /* фиксированная раскладка */
  display: block;
}

.elements__items_table .programm__item {
  padding: 0;
  flex-basis: 100%;
  background: transparent;
  flex-direction: row;
  border-radius: 0;
  border-left: 1px solid #BDBDBD;
  border-right: 1px solid #BDBDBD;
  border-bottom: 1px solid #BDBDBD;
}

.elements__items_table .programm__item h5 {
  padding: 12px 16px;
  border-right: 1px solid #BDBDBD;
  font-weight: 700;
  font-size: 13px;
  line-height: 112%;
  letter-spacing: -0.06em;
  color: rgba(0, 0, 0, 0.75);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  flex: 0 0 260px;
  min-width: 260px;
  max-width: 260px;
}

.elements__items_table .programm__item .programm__inner {
  gap: 0;
  margin-bottom: 0;
  align-items: center;
  flex: 0 0 220px;
  min-width: 220px;
  max-width: 220px;
}

.elements__items_table .programm__item > .programm__desc {
  flex: 1 1 auto;
}

.elements__items_table #courses-table-head .programm__item > p,
.elements__items_table .programm__item > .programm__desc {
  margin-bottom: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 13px;
  line-height: 112%;
  letter-spacing: -0.06em;
  text-align: center;
  color: rgba(0, 0, 0, 0.75);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 320px;
  max-width: none;
}

/* Цена переехала внутрь programm__inner в четвёртый span */
.elements__items_table .programm__item > .programm__desc { text-align: left; overflow-wrap: anywhere; margin: 15px !important; padding: 0 !important; display: flex; align-items: center; }
/* Сбрасываем внешние отступы вложенных p внутри описания на табличном виде */
.elements__items_table .programm__item > .programm__desc p { margin: 0 !important; }

/* Убираем hover-эффекты внутри табличного вида, чтобы текст не пропадал */
/* возвращаем стандартный hover из общего стиля */

.elements__items_table .programm__item .programm__inner span {
  /*padding: 15px 20px;*/
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 13px;
  line-height: 112%;
  letter-spacing: -0.06em;
  color: rgba(0, 0, 0, 0.75);
  border-right: 1px solid #BDBDBD;
  height: 100%;
  display: flex;
  align-items: center;
  flex: 0 0 110px;
  min-width: 110px;
  max-width: 110px;
  text-align: center;
  justify-content: center;
  box-sizing: border-box; /* предотвращаем сдвиги при бордерах */
}

/* Force vertical centering for Description cell in table view */
.course-filtr .elements__items.elements__items_table .programm__item > .programm__desc {
  display: flex !important;
  align-items: center !important;
  margin: 15px !important;
  padding: 0 !important;
}

/* Fallback: center any description <p> in course rows (both modes) */
.course-filtr .elements__items .programm__item > p {
  display: flex !important;
  align-items: center !important;
}

/* Мобильная адаптация табличного вида */
@media (max-width: 767px) {
  #courses-table-head { display: none !important; }
  .elements__items_table .programm__item {
    display: block;
    padding: 10px 12px;
  }
  .elements__items_table .programm__item h5 {
    border-right: 0;
    border-bottom: 1px solid #BDBDBD;
    padding: 8px 0 10px;
    font-size: 15px;
    line-height: 1.25;
    flex: 1 1 auto;
    min-width: 0;
    max-width: none;
  }
  .elements__items_table .programm__item .programm__inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
    padding: 8px 0;
    flex: 1 1 auto;
    min-width: 0;
    max-width: none;
  }
  .elements__items_table .programm__item .programm__inner span {
    border-right: 0;
    justify-content: flex-start;
    text-align: left;
    height: auto;
    padding: 0;
    font-size: 13px;
  }
  .elements__items_table .programm__item .programm__inner span:nth-of-type(1)::before {
    content: 'Длительность: ';
    color: #6b7280;
    font-weight: 600;
    margin-right: 6px;
  }
  .elements__items_table .programm__item .programm__inner span:nth-of-type(2)::before {
    content: 'Язык: ';
    color: #6b7280;
    font-weight: 600;
    margin-right: 6px;
  }
  
  .elements__items_table .programm__item > .programm__desc { margin: 12px !important; padding: 0 !important; }
}

/* Убираем мигание при наведении: границы стабильны */
.elements__items_table .programm__item:hover .programm__inner span:not(:last-of-type) {
  border-right-color: #BDBDBD;
}

.elements__items_table .programm__item:first-of-type {
  border-top: 1px solid #BDBDBD;
}

.elements__items_table .programm__item .programm__action {
  display: none;
}

/* Табличный вид: отключаем общий hover, чтобы не пропадало описание */
.elements__items_table .programm__item:hover {
  background: transparent !important;
  color: rgba(0, 0, 0, 0.75) !important;
}
.elements__items_table .programm__item:hover h5,
.elements__items_table .programm__item:hover .programm__desc,
.elements__items_table .programm__item:hover .programm__inner span {
  color: rgba(0, 0, 0, 0.75) !important;
}
.elements__items_table .programm__item:hover .programm__inner span:not(:last-of-type) {
  border-right-color: #BDBDBD !important;
}

.course-filtr__aside .options {
  flex-direction: column;
  align-items: start;
  gap: 12px;
}

.course-filtr__aside .options .options__item {
  line-height: 1.3;
}

.course-filtr__aside .options .options__item .options__label:after {
  top: 5px;
}

.title__container-filter .title__filtr h3 {
  display: none;
}

.course-filtr__aside-header {
  display: none;
}

[data-showmore-button] span:last-child {
  display: none;
}

._showmore-active [data-showmore-button] span {
  display: none;
}

._showmore-active [data-showmore-button] span:last-child {
  display: flex;
  align-items: center;
}

[data-showmore-button] span {
  font-weight: 400;
  font-size: 13px;
  letter-spacing: -0.06em;
  color: #064692;
  display: flex;
  gap: 5px;
  align-items: center;
  line-height: 1.3;
}

[data-showmore-button] span::after {
  content: '';
  width: 9px;
  height: 4px;
  display: block;
  right: 0px;
  top: 8px;
  transform: rotate(90deg);
  background: url(/local/assets/img/spoller-aroov.svg) center / contain no-repeat;
}

.course-filtr__aside form.header__form {
  display: none;
}

.swiper.shedule__item {
  padding-bottom: 40px !important;
}

@media (any-hover: hover) {
  .course-filtr__top a:hover {
    color: #8bd2f6;
  }
}


@media (min-width: 1200px) {
  .sec__container.na .swiper-wrapper {
    gap: 12px !important;
    flex-wrap: wrap;
  }

}

@media (min-width: 1266px) {


  .about__image.o::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    background: url(/local/assets/img/r-b-s.svg);
    width: 28px;
    height: 60%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left top;
  }

/* ---------- Courses table view: make description fill column width and wrap properly ---------- */
.elements__items_table .programm__item > .programm__desc {
  display: block !important;           /* текст как блок, не флекс-строка */
  flex: 1 1 auto !important;           /* занимает всё доступное пространство */
  min-width: 0 !important;             /* разрешаем сжиматься по сетке */
  text-align: left !important;         /* выравнивание по левому краю */
  white-space: normal !important;      /* обычные переносы строк */
  word-break: break-word;              /* перенос длинных слов */
  overflow-wrap: anywhere;             /* фолбэк для очень длинных слов/URL */
}

/* В десктопных правках ранее p получил flex:0 0 auto — возвращаем растяжение для описания */
.elements__items_table .programm__item p.programm__desc {
  flex: 1 1 auto !important;
  min-width: 0 !important;
}

  .about__image.o::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: url(/local/assets/img/l-t-s.svg);
    width: 2%;
    height: 20%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left top;
  }


  .gl {
    padding-top: 10px;

  }

  .pod {
    font-size: 8px;
  }

  .training h2 {
    padding-top: 65px;
    padding-bottom: 10px;
    ;
  }

  .title.ruk_laptop {
    padding-top: 65px;
    padding-bottom: 40px;
  }

  .news h2 {
    padding-top: 65px;
    padding-bottom: 20px;
    ;
  }


  .sections__item::after,
  .mySwipern::after {
    content: "";
    position: absolute;
    width: 4.5%;
    height: 34%;
    display: block;
    top: 0;
    left: -2px;
    background: url(/local/assets/img/l-r-16.svg) 0 0/100% 100% no-repeat;
  }

  .sections__item.k::after {
    content: "";
    position: absolute;
    width: 4.5%;
    height: 34%;
    display: block;
    top: 0px;
    left: -2px;
    background: url(/local/assets/img/l-r-16.svg) 0 0/100% 100% no-repeat;
  }

  .sections__item.c::after {
    content: "";
    position: absolute;
    width: 4.5%;
    height: 34%;
    display: block;
    top: -5px;
    left: 0;
    background: url(/local/assets/img/l-r-16.svg) 0 0/100% 100% no-repeat;
  }

  .sections__item.cs::after {
    content: "";
    position: absolute;
    width: 4.5%;
    height: 34%;
    display: block;
    top: 0px;
    left: -2px;
    background: url(/local/assets/img/l-r-16.svg) 0 0/100% 100% no-repeat;
  }

  .training_center.n::after {
    content: "";
    position: absolute;
    width: 4.5%;
    height: 24%;
    display: block;
    top: 0px;
    left: -2px;
    background: url(/local/assets/img/l-r-16.svg) 0 0/100% 100% no-repeat;
  }

  .sections__item::after,
  .training_center::after {
    content: "";
    position: absolute;
    width: 4.5%;
    height: 34%;
    display: block;
    top: -12px;
    left: 0;
    background: url(/local/assets/img/l-r-16.svg) 0 0/100% 100% no-repeat;
  }


  .sections__item.cs::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 66%;
    display: block;
    right: 0;
    bottom: 0;
    background: url(/local/assets/img/r-r.webp) 0 0/100% 100% no-repeat;
  }

  .training_center.n::before {
    content: "";
    position: absolute;
    width: 6%;
    height: 60%;
    display: block;
    right: 0;
    bottom: 0;
    background: url(/local/assets/img/r-r.webp) 0 0/100% 100% no-repeat;
  }



  .sections__item::before,
  .training_center::before {
    content: "";
    position: absolute;
    width: 10%;
    height: 66%;
    display: block;
    right: 0;
    bottom: 0;
    background: url(/local/assets/img/r-r.webp) 0 0/100% 100% no-repeat;
  }


  .mySwiper .swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    margin-left: 6px;
  }


  .sec__container .swiper-wrapper .sections__item.swiper-slide .d_kurs {
    height: 50px;
  }

  .mob {
    display: none;
  }

  .laptop {
    display: none;
  }


  .swiper-wrapper_flex {
    gap: 12px;
    flex-wrap: wrap;
  }

  .sec__container .swiper-wrapper {
    gap: 12px;
    flex-wrap: wrap;
  }

  .sec__container .swiper-wrapper .sections__item.swiper-slide {
    flex: 0 0 calc(25% - (12px * 3 / 3));
    /* height: 125px; */
    justify-content: end;
  }

  .sec__container.sec__container_text .swiper-wrapper .sections__item.swiper-slide.c {
    justify-content: center;
    align-items: center;
    height: 165px;
  }


  .sec__container.sec__container_text .swiper-wrapper .sections__item.swiper-slide {
    justify-content: center;
    align-items: center;
    height: 84px;
  }

  .sec__container .swiper-wrapper_flex .sections__item.swiper-slide {

    justify-content: center;
    align-items: center;
  }

  .sec__container_text.sec__container .swiper-wrapper .sections__item.swiper-slide h3 {
    font-size: 18px;
  }

  .shedule_0-pagination.swiper-pagination,
  .shedule_1-pagination.swiper-pagination {
    bottom: 0px;
  }

  .training__item.swiper-slide {
    width: auto;
  }
}
@media screen and (min-width:1024px) {
  .sec__container.na .swiper-wrapper {
    gap: 0;
    flex-wrap: wrap;
  }

  .sec__container .swiper-wrapper {
    gap: 12px;
    flex-wrap: wrap;
  }

  .sec__container.sec__container_text .swiper-wrapper .sections__item.k.swiper-slide {
    justify-content: center;
    align-items: center;
    height: 84px;
  }
}
@media screen and (max-width: 1023px) {
  .place__images-item { overflow: hidden; }
  .place__images-item::after { display: none !important; content: none !important; }
  .place__images-item.csp::after { display: none !important; content: none !important; }
  /* Вернуть правый корпоративный элемент только для верхней карточки (item1) */
  .place__images-item.item1::after,
  .place__images-item.csp.item1::after {
    display: block !important;
    content: "" !important;
    position: absolute;
    bottom: 0;
    right: 0;
    background: url("../img/r-b-s.svg");
    width: 22px;
    height: 60px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right bottom;
  }
  /* Показать правый элемент на второй/нижней карточке */
  .place__images-item.item2::after,
  .place__images-item.csp.item2::after,
  .place__images-item.item3::after,
  .place__images-item.csp.item3::after {
    display: block !important;
    content: "" !important;
    position: absolute;
    bottom: 0;
    right: 0;
    background: url("../img/r-b-s.svg");
    width: 22px;
    height: 60px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right bottom;
  }
}
@media screen and (max-width: 1266px) {


  .place__images-item.csp::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0px;
    background: url("../img/r-b-s.svg");
    width: 22px;
    height: 60%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left top;
  }

  .place__images-item.csp::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0px;
    background: url("../img/l-t-s.svg");
    width: 3%;
    height: 28%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left top;
  }

  .sections__item.c {
    position: relative;
    padding: 10px 22px;
    background: #f2f3f4;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    align-self: stretch;
    min-height: 165px;
  }


  .training_center {
    margin: 5px;
  }

  .news h2 {
    padding-top: 65px;
    padding-bottom: 40px;
    ;
  }

  .sections__item.c::after {
    content: "";
    position: absolute;
    width: 4.5%;
    height: 34%;
    display: block;
    top: -3px;
    left: 0;
    background: url(/local/assets/img/l-r-16.svg) 0 0/100% 100% no-repeat;
  }

  .sections__item.k::after {
    content: "";
    position: absolute;
    width: 4.5%;
    height: 34%;
    display: block;
    top: 0;
    left: -2px;
    background: url(/local/assets/img/l-r-16.svg) 0 0/100% 100% no-repeat;
  }


  .sections__item::after,
  .mySwipern::after {
    content: "";
    position: absolute;
    width: 4.5%;
    height: 34%;
    display: block;
    top: 0;
    left: 0;
    background: url(/local/assets/img/l-r-16.svg) 0 0/100% 100% no-repeat;
  }


  .title.ruk_laptop {
    padding-top: 100px;
    padding-bottom: 40px;
  }


  .laptop {
    display: block;
  }


  .block_pud {
    margin-top: 35px;
  }

  .options__text span {
    display: block;
    padding-left: 15px;
  }


  .elements__items.elements__items_table .programm__item {

    flex-basis: 100%;
  }

  .options-inner {
    position: relative;
    padding: 10px 20px;
  }

  .options-inner p {
    position: relative;
    z-index: 4;
  }

  .title__container-filter.options-inner._active .options {
    opacity: 1;
    visibility: visible;
  }

  .options {
    cursor: pointer;
  }

  .title__container-filter .options {
    flex-direction: column;
    gap: 16px;
    z-index: 3;
    align-items: start;
    padding-top: 42px;
    position: absolute;
    left: 0px;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
    background: #fff;
    width: 100%;
    border-radius: 10px;
    top: 0;
    padding: 42px 20px 15px;
    transition: all 0.3s ease 0s;
    opacity: 0;
    visibility: hidden;

  }

  .options-inner._active .options {
    opacity: 1;
    visibility: visible;
  }

  .options-inner p {
    display: flex;
    gap: 15px;
    align-items: center;
  }

  .options-inner p::after {
    content: "";
    width: 9px;
    height: 4px;
    background: url(/local/assets/img/spoller-aroov.svg) center / contain no-repeat;
    transition: transform 0.3s ease 0s;
    transform: rotate(180deg);
  }

  .table-link {
    font-size: 14px;
  }

  .swiper.shedule__item {
    padding-bottom: 30px !important;
  }

  .swiper.shedule__item .swiper-pagination {
    bottom: 0;
  }

  .title h3 {
    font-size: 32px;
  }

  .inner__wrapper .news__item {
    flex: 0 0 calc(50% - (36px / 2));
    height: auto;
  }

  .news-media .swiper-wrapper {
    height: auto !important;
  }

  .elements__items {
    column-gap: 30px;
    row-gap: 20px;
  }

  .elements__items .programm__item {
    flex-basis: calc(50% - 15px);
  }

  .news__pagination,
  .partners__pagination {
    display: block;
  }

  .footer__pattern {
    width: 50px;
  }

  .desctop {
    display: none;
  }

  .mob {
    display: none;
  }

  .rewiew-slider__pagination {
    bottom: -15px !important;
  }

  .training__container.swiper {
    padding: 0 20px !important;
  }

  .description__props-item span:nth-of-type(2) {
    margin-right: 0px;
  }

  [class*="__container"] {
    padding: 0 25px;
  }

  .header__wrapper {
    gap: 45px;
  }

  .header__left {
    gap: 35px;
  }

  .header__form {
    flex: unset;
    max-width: 190px;
  }

  .title h2 {
    font-size: 40px;
    line-height: 103.023%;
  }

  .title__right .header__form {
    max-width: 250px;
  }

  .menu {
    gap: 16px;
  }

  .menu__link {
    padding-left: 7px;
    padding-right: 7px;
    white-space: nowrap;
  }

  .menu__item:first-of-type .menu__link {
    padding-left: 7px;
    padding-right: 7px;
  }

  .menu__lang {
    gap: 7px;
    -ms-flex: 0 0 48px;
    flex: 0 0 48px;
  }

  .first__content {
    max-width: 533px;
  }

  .first__content p {
    font-size: 16.5px;
    font-style: normal;
    font-weight: 900;
    line-height: 103.523%;
    letter-spacing: -0.797px;
    margin-bottom: 9px;
  }

  .first__content h1 {
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 103.523%;
    letter-spacing: -1.54px;
    margin-bottom: 30px;
  }

  .first__num {
    font-size: 36px;
    letter-spacing: -1.98px;
  }

  .first__text {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -1.1px;
  }

  .parent {
    grid-template-rows: 149px 27px 149px repeat(2, 149px);
    grid-template-columns: 25% repeat(2, 12.5%) repeat(2, 25%);
    grid-template-areas:
      "el1 el1 el1 el2 el3"
      "el1 el1 el1 el2 el3"
      "el4 el5 el5 el6 el9"
      "el7 el7 el8 el8 el10"
      "el11 el12 el12 el13 .";

    width: calc(100% - 40px);
  }

  .training__item {
    flex: 0 0 calc(33.33% - 20px);
  }

  .div7,
  .div8 {
    flex-direction: row;
    align-items: center;
  }

  .autor__container::after {
    height: 304px;
    min-width: 259px;
    width: 259px;
  }

  .autor__container::before {
    width: 47px;
    min-width: 47px;
  }

  .autor__inner::after {
    right: 42px;
  }

  .autor__inner {
    padding-left: 35px;
  }

  .autor__content h3 {
    font-size: 32px;
  }

  .autor__content p {
    letter-spacing: -0.77px;
    font-size: 14px;
  }

  .autor__img {
    flex-basis: 270px;
  }

  .autor::after {
    min-width: 260px;
  }

  .programm__item h5 {
    font-size: 18px;
    letter-spacing: -0.99px;
    margin-bottom: 20px;
  }

  .programm__inner {
    margin-bottom: 10px;
  }

  .programm__inner span {
    font-size: 14px;
    letter-spacing: -0.77px;
  }

  .programm__item p {
    font-size: 11px;
    letter-spacing: -0.605px;
  }

  .programm__like {
    width: 40px;
    height: 40px;
  }

  .programm__like::after {
    width: 40px;
    height: 40px;
  }

  .programm__action a {
    font-size: 14px;
    letter-spacing: -0.77px;
  }

  .webp .success::before,
  .no-webp .success::before {
    width: 1024px;
    height: 207px;
    background-image: url(/local/assets/img/pattern020.png);
  }

  .success h2 {
    margin-bottom: 30px;
  }

  .success__list li span:nth-of-type(2) {
    font-size: 14px;
    letter-spacing: -0.77px;
  }

  .success__img {
    min-height: 242px;
  }

  .news__img {
    height: 123px;
  }

  .news__content {
    padding: 16px;
  }

  .news__slide {}

  .news__content h6 {
    font-size: 14px;
    letter-spacing: -0.77px;
  }

  .news__content span {
    font-size: 10px;
  }

  .news__inner {
    margin-top: 10px;
  }

  .news__inner_home {
    margin-top: 60px;
  }

  .training__item.g {
    padding: 17px 10px 10px 17px;
    flex-grow: 0;
    height: 190px;
  }

  .training__item {
    padding: 17px 10px 10px 17px;
    flex-grow: 0;
  }

  .training__left span:last-child {
    padding-bottom: 7px;
  }

  .training__item h6 {
    font-size: 15px;
  }

  .training__content {
    gap: 15px;
  }

  .training__left span,
  .training__left-sb span {
    font-size: 12px;
    letter-spacing: -0.66px;
  }

  .training__left-sb a.arrow-right {
    font-size: 11px;
    letter-spacing: -0.605px;
  }

  .training__left-sb a.arrow-right::after {
    top: 3px;
    right: 0;
    width: 3px;
    height: 7px;
  }

  .swiper {
    margin: 0 0px !important;
    padding: 0 !important;
  }

  .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    left: 5px;
  }

  .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    right: 5px;
  }

  .swiper-pagination-bullets.swiper-pagination-horizontal {
    /* bottom: -40px;*/
    position: static;
  }

  .partners__slide {
    height: 90px !important;
  }

  .sections__item.k h3 {
    font-size: 18px;
    letter-spacing: -1.32px;
  }

  .sections__item.c h3 {
    font-size: 18px;
    letter-spacing: -1.32px;
  }

  .sections__item h3 {
    font-size: 24px;
    letter-spacing: -1.32px;
  }

  .sections__item.double-row h3 {
    letter-spacing: -1.32px;
  }

  .elements__item-title {
    font-size: 18px;
    letter-spacing: -0.99px;
  }

  .elements__item-params {
    font-size: 14px;
    letter-spacing: -0.77px;
    margin-top: 9px;
  }

  .elements__item-comment {
    font-size: 11px;
    letter-spacing: -0.605px;
  }

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

  .items__favourite-btn {
    width: 30px;
    height: 30px;
  }

  .items__favourite-btn::after {
    width: 30px;
    height: 30px;
    background-size: 18px;
  }

  .items__favourite-btn:hover::after,
  .items__favourite-btn.active::after {
    width: 31px;
    height: 32px;
  }

  .items__more-btn {
    font-size: 14px;
    letter-spacing: -0.77px;
  }

  .description__img {
    max-width: 100%;
    padding: 0 0 40px;
  }

  .description__form-item.form__field.select {
    flex: 0 1 214px;
  }

  .description__form-item.form__field.select select {
    padding: 9px 18px 9px 9px;
  }

  /*
  .sections__container.swiper-wrapper {
    padding: 0;
  }
  */
  .gallery__container {
    justify-content: flex-start;
    gap: 22px;
  }

  .gallery__item {
    max-width: 310px;
  }

  .place__wrapper {
    gap: 20px;
  }

  .place__images {
    grid-template-columns: 386px 184px;
    grid-template-rows: repeat(2, 117px);
  }

  .contact__wrapper {
    margin-left: 43px;
  }

  .about__image,
  .detail__image {
    max-width: 482px;
    margin: 0 0 0px 12px;
  }

  .benefits__item {
    min-height: 145px;
    padding: 20px 25px;
    gap: 17px;
  }

  .benefits__item::before {
    width: 14px;
    height: 49px;
  }

  .benefits__item::after {
    width: 16px;
    height: 97px;
  }

  .benefits__item-number {
    width: 40px;
    height: 40px;
  }

  span.benefits__item-title {
    font-size: 20px;
    letter-spacing: -1.1px;
  }

  .management__wrapper {
    padding: 0;
    gap: 30px;
  }

  .management__item-img {
    width: 175px;
    min-width: 175px;
    height: 198px;
  }

  .management__item-description div span:nth-of-type(1) {
    font-size: 15px;
    letter-spacing: -0.825px;
  }

  .management__item-description div span:nth-of-type(2) {
    font-size: 15px;
    letter-spacing: -0.825px;
  }

  .management__item-description div a {
    font-size: 15px;
    letter-spacing: -0.825px;
  }

  .dop__container {
    padding-bottom: 65px;
    /* padding-top: 65px; */
  }

  a.dop__item {
    font-size: 14px;
    letter-spacing: -0.77px;
  }

  .activities__item {
    min-height: 208px;
    padding: 20px 44px 20px 34px;
  }

  .activities__item-title {
    font-size: 24px;
    letter-spacing: -1.32px;
  }

  .activities__item-content {
    gap: 6px;
  }

  .activities__item-content a {
    font-size: 14px;
    letter-spacing: -0.77px;
  }

  .management-center__container {
    gap: 40px;
  }

  .elements__item.vakancy {
    gap: 20px;
    min-height: 211px;
  }

  .elements__item-top_title {
    font-size: 18px;
    letter-spacing: -0.99px;
  }

  .elements__item-top_desc {
    font-size: 11px;
    letter-spacing: -0.605px;
  }

  #vakancyForm .popup__body {
    padding: 90px 25px;
  }

  .popup-form__field.fb-50 {
    flex-basis: 477px;
  }

  .popup-form__field.fb-100 {
    flex-basis: 974px;
  }

  .detail__gallery {
    gap: 17px;
  }

  .detail__gallery-item {
    flex-basis: calc((100% - 34px) / 3);
  }

  .detail-gallery__items {
    gap: 11px;
  }

  .detail-gallery__item {
    flex-basis: calc((100% - 33px) / 4);
  }

  .contacts__items {
    gap: 6px;
  }

  .contacts__item.item-1,
  .contacts__item.item-8 {
    width: 336px;
  }

  .contacts__item.item-2,
  .contacts__item.item-9 {
    width: 265px;
  }

  .contacts__item.item-3,
  .contacts__item.item-10 {
    width: 343px;
  }

  .contacts__item.item-4 {
    width: 247px;
  }
  .contacts__item.item-5 {
    width: 342px;
  }

  .contacts__item.item-6 {
    width: 354px;
  }

  .contacts__item.item-7 {
    width: 100%;
  }

  .contacts__item-title {
    font-size: 15px;
  }
  .contacts__item-address {
    font-size: 12px;
    letter-spacing: -0.66px;
  }
  a.contacts__item-link {
    font-size: 12px;
    letter-spacing: -0.66px;
  }

  .description__img-block {
    height: 437px;
  }

  .description__img {
    height: 437px;
  }

  .description__img-block::before {
    width: 19px;
    height: 121px;
  }

  .description__img-block::after {
    width: 33px;
    height: 313px;
  }

  .about__image::before,
  .detail__image::before {
    width: 16px;
    height: 102px;
  }

  .about__image::after,
  .detail__image::after {
    width: 25px;
    height: 180px;
  }

  .faq__item-title span {
    padding-right: 150px;
  }

  .profile__items {
    gap: 11px;
  }

  .profile__item {
    flex-basis: calc((100% - 22px) / 3);
    height: 145px;
    padding: 25px 0;
  }

  .profile__item::before {
    width: 12px;
    height: 47px;
  }

  .profile__item::after {
    width: 16px;
    height: 98px;
  }

  .profile__item-img {
    max-height: 47px;
    width: auto;
  }

  .profile__item-img img {
    height: 100%;
  }

  .profile__item-title {
    font-size: 24px;
    letter-spacing: -1.32px;
  }

  .anketa__form-row {
    column-gap: 7px;
  }

  .anketa__form-row .form__field {
    flex-basis: calc((100% - 14px) / 3);
  }

  .news-resaul-search__content p {
    font-size: 14px;
    letter-spacing: -0.77px;
  }

  .anketa__form_start .anketa__form-row {
    gap: 14px;
  }

  .anketa__form-row .form__field.form__field_50 {
    flex-basis: calc((100% - 14px) / 2);
  }

  .title h4 {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 103.023%;
  }

  .courses__container {
    gap: 20px 41px;
  }

  .courses__container .programm__item {
    flex: 0 0 calc(33.33% - 28px);
  }

  .title_small h2 {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 112.5%;
    /* 27px */
    letter-spacing: -1.32px;
  }

  .webp .autor__container::after {
    background: url(/local/assets/img/pattern021.png) center/cover no-repeat;
  }
}

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

  .na .swiper {
    padding: 10px !important;
  }

  .autor {
    padding-top: 40px;
    margin-top: 40px;
  }

  .training__item.g {
    padding: 17px 10px 10px 17px;
    flex-grow: 0;
    height: 150px;
  }


  .news h2 {
    padding-top: 40px;
    padding-bottom: 10px;
    ;
  }

  .training h2 {
    padding-top: 40px;
    padding-bottom: 10px;
    ;
  }


  .sections__item::after,
  .training_center::after {
    content: "";
    position: absolute;
    width: 4.5%;
    height: 34%;
    display: block;
    top: -10px;
    left: 0;
    background: url(/local/assets/img/l-r-16.svg) 0 0/100% 100% no-repeat;
  }


  .sections__item::before,
  .training_center::before {
    content: "";
    position: absolute;
    width: 10%;
    height: 66%;
    display: block;
    right: 0;
    bottom: 0;
    background: url(/local/assets/img/r-r.webp) 0 0/100% 100% no-repeat;
  }

  .sections__item.c::after {
    content: "";
    position: absolute;
    width: 4.5%;
    height: 34%;
    display: block;
    top: -5px;
    left: 0;
    background: url(/local/assets/img/l-r-16.svg) 0 0/100% 100% no-repeat;
  }

  .sections__item::after,
  .mySwipern::after {
    content: "";
    position: absolute;
    width: 4.5%;
    height: 34%;
    display: block;
    top: 0;
    left: 0;
    background: url(/local/assets/img/l-r-16.svg) 0 0/100% 100% no-repeat;
  }

  .title.ruk_laptop {
    padding-top: 40px;
    padding-bottom: 40px;
  }



  .laptop {
    display: none;
  }

  .desctop {
    display: none;
  }

  .mob {
    display: block;
  }

  .block_pud {
    margin-top: -10px;
  }


  .description__props-item a {
    display: inline-block;
    border-radius: 27.5px;
    background: #5bc5f2;
    padding: 4px 13px;
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: all 0.3s ease 0s;
  }


  .course-filtr__aside-header {
    display: flex;
    justify-content: end;
    margin-bottom: 35px;
  }

  .course-filtr__top {

    position: relative;
  }

  .course-filtr__top h3 {
    flex: 0 1 100%;
    text-align: center;
    font-weight: 700;
    font-size: 28px;
    line-height: 103%;
    color: #064692;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);

  }

  .options-inner {
    flex: 0 1 100%;
  }

  .title__filtr {
    gap: 10px;
    width: 100%;
    justify-content: space-between;
  }

  .elements__pagination-item {
    width: 38px;
    height: 38px;
  }

  .title__container-filter .title__filtr h3 {
    display: flex;
  }

  .elements__items_table .programm__item p {
    margin-bottom: 0;
    font-size: 11px;
    line-height: 112%;
    letter-spacing: -0.06em;
    color: rgba(0, 0, 0, 0.75);
    padding: 0;
    padding-bottom: 20px;
    flex: 0 0 auto;
  }

  .elements__items_table .programm__item .programm__inner {
    gap: 0;
    margin-bottom: 0;
    align-items: center;
    flex: 0 0 auto;
    gap: 10px;
    margin-bottom: 10px;
  }

  .elements__items_table .programm__item .programm__inner span {

    font-weight: 500;
    font-size: 14px;
    line-height: 113%;
    letter-spacing: -0.06em;
    color: rgba(0, 0, 0, 0.75);
    padding: 0;
    flex: 0 0 auto;
    padding-right: 10px;
  }

  .elements__items_table .programm__item:hover .programm__inner span:not(:last-of-type) {
    border-right: 1px solid rgba(0, 0, 0, 0.75);
  }

  .elements__items_table .programm__item h5 {
    padding: 20px 0 15px;
    border-right: 0px solid #BDBDBD;
    font-weight: 700;
    font-size: 18px;
    line-height: 121%;
    letter-spacing: -0.06em;
    color: rgba(0, 0, 0, 0.75);

  }

  .elements__items_table .programm__item:first-of-type {
    border-top: 0px solid #BDBDBD;
  }

  .elements__items_table .programm__item {
    gap: 0 !important;
    flex-direction: column;
    border-left: 0px solid #BDBDBD;
    border-right: 0px solid #BDBDBD;
    border-bottom: 1px solid #BDBDBD;
  }

  .options__text {
    font-weight: 400;
    font-size: 13px;
    letter-spacing: -0.06em;
    color: rgba(0, 0, 0, 0.75);
  }

  .title:nth-of-type(1) {
    padding-top: 0;
  }

  .title__filtr h3 {
    font-weight: 700 !important;
    font-size: 13px !important;
    color: #084791 !important;
    display: flex;
    gap: 9px;
    align-items: center;
    order: 1;
  }

  .title__table {
    order: 3;
  }

  .options-inner {
    order: 2;
  }

  .options-inner p {
    font-weight: 700;
    font-size: 13px;
    color: #084791;
  }

  .course-filtr__aside {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 455;
    background: #fff;
    min-height: 100vh;
    padding: 20px 20px 40px;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    height: 100%;
    transition: all 0.3s ease 0s;
  }


  .course-filtr__aside._active {
    opacity: 1;
    visibility: visible;
    transform: translateY(-100%);
  }

  .title__filtr h3:before {
    content: "";
    display: block;
    width: 16px;
    height: 18px;
    background: url(/local/assets/img/filtr.svg) center / contain no-repeat;
  }

  .title__filtr h3::before {
    display: block;
  }

  .title__container-filter {
    flex-direction: column;
    gap: 20px;
    align-items: start;
  }

  .swiper.shedule__item {
    padding-bottom: 0px !important;
  }

  .header__mob-search {
    display: block;
    padding-top: 3px;
  }

  .m1 .btn,
  .m2 .btn,
  .m3 .btn,
  .m4 .btn {
    padding: 7px 20px;
    width: fit-content;
    height: auto;
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
  }

  .programm.recommended {
    padding-bottom: 55px;
  }

  .title__right .filter_mob {
    display: none;
  }

  .checkbox__text {
    display: flex;
    flex-direction: column;
  }

  element.style {}

  .checkbox__text a {
    font-size: 11px;
  }

  .target__container {
    align-items: start;
  }

  .form-grid__row .form-grid__item {
    flex: 1 0 auto;
  }

  .order-mob {
    display: block;
  }

  .dev {
    display: none;
  }

  .action__item p {
    font-size: 14px;
  }

  .checkbox-wrapper label {
    font-size: 14px;
  }

  .action .weight-500 {
    font-size: 14px;
  }

  .programm__button {
    width: 40px;
    height: 40px;
  }

  .sec__container.sec__container_text .swiper-wrapper .sections__item.swiper-slide {
    flex-basis: auto;
    justify-content: center;
    align-items: center;
  }

  .sec__container .swiper-wrapper {
    gap: 0px;
  }

  .cours_singl {
    min-height: 200px;
  }

  .inner__wrapper .news__item {
    flex: 0 0 100%;
    height: auto;
  }

  .buttons_flex {
    flex-direction: column;
  }

  .form__field.fb-50 {
    width: 100%;
  }

  .training__container.swiper {
    overflow: hidden;
  }

  .training__inner.swiper-wrapper {
    gap: 0px;
    flex-wrap: nowrap;
  }

  .footer__item span {
    max-width: 200px;
    display: block;
  }

  [class*="__container"] {
    padding: 0 20px;
  }

  .mt-65 {
    margin-top: 25px;
  }

  .mb-65 {
    margin-bottom: 40px;
  }

  .header__left {
    /*flex-direction: column;*/
    align-items: flex-start;
    /*flex-wrap: wrap;*/
    width: 100%;
    flex-basis: auto;
    gap: 10px;
  }

  .header__call {
    flex: 0 1 100%;
    text-align: end;
    align-items: end;
    /*padding-left: 53px;*/
  }

  .header__logo {
    flex: 0 0 134px;
    height: 51px;
    margin-right: auto;
  }

  .training__item {
    flex: 0 0 auto;
  }

  .header__wrapper {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .header__logo img {
    height: auto;
    margin-top: -3px;
  }

  .header__logo {
    margin-left: 15px;
  }

  .header__right {
    justify-content: space-between;
    width: 100%;
    gap: 20px;
    /*flex-direction: column;
    align-items:end;
    flex: 0 0 103px;*/
  }

  .header__actions {
    /*justify-content: flex-end;*/
    align-items: center;
    gap: 20px;
    flex: 0 1 100%;
    order: 2;
  }

  .header__learning {
    flex: 0 0 95px;
    order: 1;
  }

  .header__favorite span {
    right: -5px;
    font-size: 10px;
  }

  .header__favorite,
  .header__cart {
    /*display: none;*/
  }

  .first {
    height: 360px;
  }

  .first .cb-slideshow li span:not(:last-of-type) {
    display: none;
  }

  .first .cb-slideshow li span {
    -webkit-animation: none;
    animation: none;
    opacity: 1;
    z-index: 1;
  }

  .header__reg {
    display: none;
  }

  .mobile__menu .menu__list:nth-of-type(2) {
    margin-top: 20px;
    padding: 20px 0;

    border-top: 1px solid rgba(6, 70, 146, 0.3);
    border-bottom: 1px solid rgba(6, 70, 146, 0.3);
  }

  .buttons__container .mobile__search-btn.mobile__search-btn_vaconcii {
    width: 27px;
    height: 27px;
  }

  form.header__form {
    display: none;
  }

  .course-filtr__aside form.header__form {
    display: block;
    margin-right: 0;
    margin-bottom: 30px;
    max-width: 100%;
  }

  form.header__form.mobile {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: 100%;
  }

  .mobile__search-field {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    padding: 70px 60px 70px 20px;
    background: #fff;
    box-shadow: 1px 1px 10px 5px rgba(0, 0, 0, 0.25);
    z-index: 150;
    transition: all ease 0.3s;
  }

  .mobile__search-field.opened {
    top: 0;
    display: block;
  }

  .menu__lang {
    padding: 20px;
  }

  a.mobile__search-btn {
    display: block;
    width: 19px;
    height: 19px;
    background: url(/local/assets/img/search.svg) center/contain no-repeat;
    order: 1;
  }

  a.mobile__search-close {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background-image: url("../img/close_modal.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }

  a.header__learning {
    /*display: none;*/
  }

  .header__enter {
    /*flex-direction: column;
    align-items: flex-end;*/
    gap: 5px;
    order: 3;
  }

  .header__ent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 103px;
    height: 30px;
    border-radius: 28px;
    background: #064692;
    -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
    overflow: hidden;
    color: #fff;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }

  .header__learning {
    background: #064692;
  }

  .header__favorite {
    width: 34px;
    height: 34px;
    order: 2;
  }

  .header__favorite::after {
    width: 34px;
    height: 34px;
  }

  .header__favorite span {
    display: inline-block;
    right: -14px;
    bottom: -4px;
    font-size: 12px;
  }

  .header__cart {
    width: 34px;
    height: 34px;
    order: 3;
  }

  /* В мобильной версии верхнее меню открывается бургером, полоса скрыта */
  .header__bottom {
    display: none;
  }
  .title {
    padding-top: 80px;
    padding-bottom: 20px;
  }

  /* Кнопка «Курсы» как компактная пилюля */
  .header__learning {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 0 16px;
    border-radius: 28px;
    background: #fff;
    color: #064692;
    border: 2px solid #064692;
    font-weight: 700;
  }
  .header__learning:hover {
    background: #064692;
    color: #fff;
  }
  .header__wrapper {
    gap: 20px;
    align-items: start;
    flex-direction: column;
  }
  .icon-menu {
    display: block;
    position: relative;
    flex: 0 0 22px;
    width: 22px;
    height: 14px;
    cursor: pointer;
    z-index: 5;
    align-self: flex-start;
    margin-top: 0px;
    margin-bottom: 18px;
  }
  .icon-menu span,
  .icon-menu::before,
  .icon-menu::after {
    content: "";
    transition: all 0.3s ease 0s;
    left: 0px;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #064692;
  }

  .menu__link {
    font-size: 18px;
  }

  .icon-menu::before {
    top: 0px;
  }

  .icon-menu::after {
    bottom: 0px;
  }

  .news__inner-slider {
    padding: 0;
  }

  .icon-menu span {
    top: calc(50% - 1px);
  }

  .menu-open .icon-menu span {
    transform: scale(0);
  }

  .menu-open .icon-menu::before {
    transform: rotate(-45deg);
    top: calc(50% - 1px);
  }

  .menu-open .icon-menu::after {
    transform: rotate(45deg);
    bottom: calc(50% - 1px);
  }

  .mobile__menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    z-index: 25;
    transition: all ease 0.3s;
    padding-top: 115px;
  }

  .mobile__menu.opened {
    left: 0;
  }

  .header {
    height: 161px;
  }

  .mobile__menu-wrapper {
    width: 100%;
    height: 100%;
    background: #fff;
    overflow-y: auto;
  }

  .mobile__menu-inners {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: 100%;
    padding: 30px 0;
  }

  .training-pagination {
    padding: 20px 0 !important;
  }

  .mobile__menu .menu__list {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .menu__item {
    width: 100%;
  }

  .mobile__menu .menu__link {
    color: #064692;
    padding: 10px 20px !important;
    display: block;
  }

  .mobile__menu .menu__link:hover {
    background: #064692;
    color: #fff;
  }

  .mobile__menu .menu__link span {
    width: 18px;
    height: 18px;
    display: inline-flex;
    background: #064692;
    color: #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 400;
    line-height: 1;
    position: relative;
    top: -10px;
  }

  .mobile__menu .dropdown-content {
    display: block;
    position: relative;
    min-width: auto;
    border-radius: unset;
    box-shadow: none;
    height: 0;
    overflow: hidden;
    transition: all ease 0.3s;
  }

  .mobile__menu .menu__link.dropbtn {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
  }

  .mobile__menu .menu__link.dropbtn::after {
    content: "";
    display: block;
    width: 13px;
    height: 6px;
    background: url(/local/assets/img/arrow-mobile-dropdown.svg) center / contain no-repeat;
  }

  .mobile__menu .menu__link.dropbtn:hover::after {
    background: url(/local/assets/img/arrow-mobile-dropdown-white.svg) center / contain no-repeat;
  }

  .first__content {
    max-width: 100%;
  }

  .first__content p {
    font-size: 12px;
    letter-spacing: -0.66px;
    margin-bottom: 10px;
  }

  .first__content h1 {
    font-size: 24px;
    letter-spacing: -1.32px;
    margin-bottom: 20px;
    font-weight: 700;
  }

  .first__text {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.88px;
    font-weight: 700;
  }

  .parent {
    grid-template-rows: repeat(8, 119px);
    grid-template-columns: repeat(2, 50%);
    grid-template-areas:
      "el1 el1"
      "el2 el3"
      "el4 el5"
      "el6 el9"
      "el7 el7"
      "el8 el8"
      "el10 el11"
      "el12 el13";
    width: calc(100% - 20px);
  }

  .directions {
    padding-bottom: 40px;
  }

  .directions__item h3 {
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -1.06px;
  }

  .directions__item img {
    max-width: 40px;
    max-height: 45px;
  }

  .directions__item_big {
    padding: 20px 20px;
    gap: 14px;
  }

  .directions__item_big h3 {
    font-size: 24px;
    letter-spacing: -1.32px;
  }

  .directions__item_big img {
    max-height: 70px;
    min-height: 70px;
  }

  .autor__inner {
    padding-left: 0;
    flex-direction: column-reverse;
    gap: 20px;
  }

  .autor__content h3 {
    margin-bottom: 20px;
    font-size: 28px;
  }

  .autor__img {
    flex-basis: 297px;
    max-width: 262px;
    align-self: flex-start;
  }

  .autor__container::after {
    width: 123px;
    height: 143px;
    left: -2px;
    bottom: -20px;
    /*right: 100px;*/
    min-width: 0;
  }

  .autor__container::before {
    display: none;
  }

  .autor__inner::after {
    display: none;
  }

  .programm {
    padding-top: 40px;
  }

  .success {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .webp .success::before,
  .no-webp .success::before {
    width: 100%;
    height: 72px;
    bottom: 17px;
  }

  .success h2 {
    margin-bottom: 20px;
  }

  .success__list {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }

  .success__list li {
    align-items: flex-start;
    flex-basis: calc(50% - 10px);
    gap: 10px;
  }

  .success__list li span:nth-of-type(2) {
    font-size: 16px;
    letter-spacing: -0.88px;
  }

  .success__img {
    min-height: 81px;
  }

  .success__img::after {
    right: 11px;
    bottom: -10px;
    width: 22px;
    height: 22px;
  }

  .news h2 {
    margin-bottom: 20px;
  }

  .news .swiper-button-prev {
    display: none;
  }

  .news .swiper-button-next {
    display: none;
  }

  .news__block .swiper {
    margin: 0 !important;
    padding: 0 !important;
  }

  .news__pagination,
  .gallery__pagination,
  .video__pagination,
  .press__pagination {
    padding: 20px 0 !important;
  }

  .news__inner {
    margin-top: 0px;
    flex-direction: column;
    gap: 10px;
  }

  .news__img {
    height: 88px;
  }

  .news__content {
    padding: 10px;
  }

  .news__content h6 {
    font-size: 10px;
    letter-spacing: -0.55px;
  }

  .news__content h6 {
    font-size: 10px;
    letter-spacing: -0.55px;
  }

  .training h2 {
    margin-bottom: 20px;
  }

  .training__item {
    padding: 15px 10px 10px 15px;
    flex-grow: 1;
    width: 100%;
  }

  .training__left span:last-child {
    padding-bottom: 5px;
  }

  .training__item h6 {
    font-size: 14px;
  }

  .partners {
    padding: 0px 0 40px;
  }

  .partners h2 {
    margin-bottom: 20px;
  }

  .partners__prev,
  .partners__next,
  .programm__prev,
  .programm__next,
  .recommended__prev,
  .recommended__next {
    display: none;
  }

  .partners__slider {
    margin: 0 !important;
    padding: 0 !important;
  }

  .partners__slide {
    height: 63px !important;
  }

  .popup__body {
    padding: 40px 20px;
  }

  #popupFilter .popup__body {
    gap: 40px;
  }

  .filter__row {
    flex-direction: column;
  }

  .filter__params {
    position: relative;
    right: unset;
    top: unset;
    justify-content: flex-start;
    align-items: flex-start;
    order: -1;
    margin-bottom: 40px;
  }

  .title__right {
    gap: 10px;
    align-items: center;
    text-align: center;
    max-width: 100%;
    /*margin-bottom: 65px;*/
    margin-bottom: 7px;
  }

  .title__ext {
    /*flex-wrap: wrap;*/
  }

  .title__ext .title__right {
    margin-left: auto;
    margin-top: 10px;
  }

  .filter__btn {
    width: 36px;
    height: 36px;
  }

  .filter__btn::before {
    width: 36px;
    height: 36px;
  }

  .filter__btn span {
    display: none;
  }

  .title__right .mobile__search-btn {
    width: 27px;
    height: 27px;
  }

  .training__left span,
  .training__left-sb span,
  .training__left a,
  .training__left-sb a {
    font-size: 10px;
  }

  .training__content img {
    /* width: 64px; */
    height: 77px;
  }

  h2 {
    color: #064692;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 103.023%;
  }

  .title h3 {
    color: #064692;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 103.023%;
  }

  .elements__items .programm__item {
    justify-content: flex-start;
    row-gap: 10px;
  }

  .elements__items {
    column-gap: 30px;
    row-gap: 20px;
  }

  .elements__items .programm__item {
    flex-basis: 100%;
  }

  .sections__container {
    flex-wrap: nowrap;
    gap: 0;
    justify-content: unset;
    /*padding: 0;*/
  }

  .sec__container_text .sections__item {
    flex-basis: 100%;
    height: 125px;
  }

  .swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    position: relative;
    bottom: 0;
    gap: 10px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 10px;
  }

  span.swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #d9d9d9;
    margin: 0 !important;
  }

  span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #084791;
  }

  .footer__inner {
    flex-direction: column;
  }

  .description__container {
    gap: 20px;
  }

  .description__img {
    display: flex;
    height: 437px;
    justify-content: center;
    align-items: center;
    padding: 0 0 20px;
  }

  .description__img img {
    width: auto;
  }

  /*
  .description__props-item {
    display: block;
  }
  */
  .description__props-item span {
    font-size: 14px !important;
    letter-spacing: -0.77px !important;
  }

  .description__desc-item h3 {
    font-size: 14px;
    letter-spacing: -0.77px;
  }

  .description__desc-item ol {
    font-size: 14px;
    letter-spacing: -0.77px;
  }

  .description__desc-item p,
  .description__desc-item h3 span,
  .description__desc-item span,
  .description__desc-item a {
    font-size: 14px;
    letter-spacing: -0.77px;
  }

  .place__wrapper {
    flex-direction: column;
  }

  .place__map iframe {
    width: 320px;
    height: 200px;
  }

  .place__address h3,
  a {
    font-size: 14px;
    letter-spacing: -0.77px;
  }

  .place__address-link {
    width: 100%;
  }

  .place__address-link .news__link {
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
  }

  .place__address span {
    font-size: 14px;
    letter-spacing: -0.77px;
  }

  section.gallery.swiper.courseGallery {
    margin: 0 20px !important;
  }

  .gallery__container {
    justify-content: unset;
    gap: unset;
    padding: 0;
  }

  .gallery__item {
    max-width: 100%;
    flex-basis: 100%;
  }

  .place__images {
    grid-template-columns: repeat(2, 156px);
    grid-template-rows: 201px 99px;
    grid-template-areas:
      "el1 el1"
      "el2 el3";
  }

  /* Отступ между кнопками и блоком FAQ на мобильной версии */
  .faq {
    margin-bottom: 16px;
  }

  .faq__item {
    padding: 14px 54px 14px 14px;
  }

  /* Мобильный фикс: резервируем место под кнопку раскрытия внутри заголовка */
  .accordeon__item-title {
    padding-right: 54px;
  }

  /* На мобильных убираем избыточный отступ у текста внутри заголовка */
  .faq__item-title span {
    padding-right: 0;
  }

  .faq__item-title span {
    font-size: 16px;
    letter-spacing: -0.88px;
  }

  .accordeon__item .arrow {
    right: 2px;
    width: 22px;
    height: 22px;
  }

  .faq__item-text {
    font-size: 16px;
    letter-spacing: -0.77px;
  }

  .contact__wrapper {
    flex-direction: column;
    gap: 75px;
  }

  .contact__image {
    max-width: 281px;
    min-height: 307px;
  }

  .contact__wrapper::before {
    width: 281px;
    height: 308px;
  }

  .place__address.mod-contact {
    margin-left: -43px;
  }

  .about__container,
  .detail__container {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .detail__image {
    order: 1;
  }

  .about__image,
  .detail__image {
    margin: 0;
    max-width: 100%;
    order: 1;
  }

  .detail__gallery {
    order: 3;
  }

  .detail__text {
    order: 2;
  }

  .about__text,
  .detail__text {
    font-size: 14px;
    letter-spacing: -0.77px;
  }

  .about__text p,
  .detail__text p {
    margin-bottom: 14px;
  }

  .about__buttons {
    order: 2;
    gap: 10px;
  }

  .about__buttons .news__link {
    min-width: 155px;
    min-height: 47px;
    font-size: 13px;
    padding: 6px 7px 6px 24px;
  }

  .about__buttons .news__link span:nth-of-type(1) {
    font-size: 13px;
  }

  .about__buttons .news__link span:nth-of-type(2) {
    width: 35px;
    height: 35px;
    flex: 0 0 35px;
  }

  .benefits__item {
    flex-grow: 1;
  }

  .target__container {
    flex-direction: column-reverse;
    gap: 20px;
    padding-bottom: 20px;
  }

  .target__text {
    font-size: 14px;
    letter-spacing: -0.77px;
    text-align: justify;
  }

  .target__image {
    max-width: 100%;
    min-width: auto;
  }

  .target__image::before {
    width: calc(100% + 40px);
    height: 90%;
    bottom: -20px;
    left: -20px;
  }

  .management__container {
    padding: 0 20px;
  }

  .management__wrapper {
    flex-wrap: nowrap;
    gap: 0;
    justify-content: unset;
  } 
  .management__item {
    flex-basis: auto;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
  }
  .programm__slider {
    padding: 0 0 20px 0 !important;
    margin: 0 !important;
  }
  .management__item-description div span:nth-of-type(1) {
    font-size: 14px;
    letter-spacing: -0.77px;
  }
  .management-pagination {
    display: flex;
    /*justify-content: flex-start !important;*/
  }

  .dop__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding-bottom: 42px;
  }
  /*
    .training__inner {
        flex-wrap: nowrap;
        gap: unset;
    }
    */
  .activities__item {
    flex-basis: 100%;
  }

  .management-center__container {
    flex-direction: column;
    gap: 30px;
  }

  .shedule__container.swiper-wrapper {
    justify-content: unset;
    padding: 0;
    gap: 0;
  }

  .elements__item.swiper-slide {
    max-width: 100%;
  }

  .contact__item h3,
  .contact__item span {
    font-size: 14px;
    letter-spacing: -0.77px;
  }

  #vakancyForm .popup__body {
    gap: 20px;
    padding: 40px 20px;
  }

  .buttons__container.center {
    flex-direction: column;
    gap: 10px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }

  .mobile-small h2 {
    font-size: 37px;
  }

  .detail__date,
  .detail-gallery__date {
    margin-bottom: 0;
  }

  .detail__gallery {
    gap: 4px;
    order: 2;
  }

  .detail__gallery-item {
    flex-basis: calc((100% - 8px) / 3);
  }

  .detail-gallery__items {
    gap: 8px;
  }

  .detail-gallery__item {
    flex-basis: calc((100% - 8px) / 2);
  }

  .contacts__items {
    gap: 10px;
  }

  .contacts__item {
    width: 100% !important;
  }

  .description__img-block {
    background-position-x: 70%;
  }

  .about__image::before,
  .detail__image::before {
    width: 11px;
    height: 68px;
  }

  .about__image::after,
  .detail__image::after {
    width: 17px;
    height: 100px;
  }

  .faq__item-title span {
    padding-right: 0px;
  }

  .mini__modal {
    width: 320px;
  }

  .mini__modal-input label.file-label {
    width: 270px;
  }

  .mini__modal-button a {
    width: 164px;
    height: 45px;
    font-size: 13px;
  }

  .mini__modal-title {
    font-size: 26px;
    letter-spacing: -1.43px;
  }

  .single__form {
    max-width: 320px;
  }

  .single__form::before {
    width: 18px;
    height: 159px;
    background-image: url("../img/sform-l-t_m.svg");
  }

  .single__form::after {
    width: 24px;
    height: 326px;
    background-image: url("../img/sform-r-b_m.svg");
  }

  .single__form-title {
    font-size: 26px;
    letter-spacing: -1.43px;
    padding: 0px 15px;
  }

  .single__form-form {
    max-width: 250px;
  }

  .single__form-form .form__field.buttons .btn {
    width: 164px;
    height: 45px;
    font-size: 13px;
  }

  .mini__modal.wide {
    width: 320px;
    padding: 55px 33px;
  }

  .mini__modal-links {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  a.logout {
    /*display: none;*/
  }

  .profile__items {
    gap: 6px;
  }

  .profile__item {
    width: 320px;
    flex: 0 0 320px;
  }

  .anketa__form-row {
    flex-direction: column;
    gap: 10px;
  }

  .anketa__form-row .form__field,
  .anketa__form-row .select {
    flex-basis: 100%;
    width: 100%;
  }

  .news-resaul-search__container {
    display: flex;
    gap: 20px;
    flex-direction: column;
  }

  .news-resaul-search__content {
    order: 1;
  }

  .news-resaul-search__content p {
    -webkit-line-clamp: 18;
    -webkit-box-orient: vertical;
    line-clamp: 18;
  }

  .news-resaul-search__img {
    order: 2;
    min-height: 220px;
  }

  .news-resaul-search__link {
    order: 3;
  }

  .management__item-description div span:nth-of-type(2) {
    font-size: 14px;
    letter-spacing: -0.77px;
  }

  .management__item-description {
    max-width: 265px;
  }

  .anketa__form_start {
    align-items: center;
  }

  .courses__container {
    gap: 10px;
  }

  .courses__container .programm__item {
    flex: 0 0 100%;
  }

  .pt-40 {
    padding-top: 20px;
  }

  .title_small h2 {
    margin: 20px 0;
  }

  .form-grid__row:not(:last-of-type) {
    margin-bottom: 10px;
  }

  .form-grid__row {
    flex-direction: column;
    gap: 10px;
  }

  .form-grid .btn {
    margin-left: auto;
    margin-right: auto;
  }

  .form-grid__row textarea {
    height: 400px;
    /* Высота поля в пикселах */
  }

  .footer {
    padding-top: 35px;
    padding-bottom: 35px;
  }

  .footer__logo {
    margin-bottom: 17px;
  }

  .footer__item ul li {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.1;
  }

  .footer__inner {
    gap: 35px;
  }

  .footer__pattern {
    width: 77.89px;
  }

  .div1 img,
  .div7 img {
    max-height: 85px;
    max-width: 85px;
  }

  .title h2,
  .success h2,
  .news h2,
  .training h2 {
    font-size: 32px;
  }

  .autor__img {
    display: flex;
    gap: 16px;
    max-width: 100%;
    align-items: center;
    flex: 0 0 auto;
    margin-bottom: 0;
  }

  .autor__img img {
    width: 129px;
    height: 146px;
  }

  .autor__img p {
    letter-spacing: -0.77px;
    font-size: 14px;
  }

  .webp .autor__container::after {
    background: url(/local/assets/img/pattern03.png) center/contain no-repeat;
  }

  .popup__content_blue {
    max-width: 1004px;
    padding: 45px 20px;
  }

  .programm__item {
    width: 100%;
  }

  .webp .success::before {
    content: "";
    position: absolute;
    width: 1268px;
    height: 72px;
    bottom: 0;
    left: 50%;
    background-image: url(/local/assets/img/pattern030.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;

    transform: translateX(-50%);
  }

  .description__form-item.form__field {
    flex: 0 0 100%;
  }

  .popup__wrapper {
    padding: 0;
  }

  .popup__content {
    padding: 50px 20px;
  }

  .form-pop-up h3 {
    font-size: 24px;
  }

  .mob-exit {
    padding: 0 15px;
  }

  .description__form .select {
    flex: 0 0 100%;
  }

  .description__form .select__value {
    height: 40px;
  }

  .description__form .select__options {
    top: 39px;
  }
}

@media (max-width: 1200px) {
  table td {
    padding: 25px 10px;
  }

  .header__menu.menu::before {
    display: none;
  }

  .d_kurs {
    height: 120px;
  }


  .swiper-wrapper {
    position: relative;
    width: 100%;
    /* height: 120px; */
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
  }


}

@media (max-width: 991.8px) {
  .header__menu.menu {
    position: static;
  }

  .header__menu-icon {
    position: relative;
  }

  .header__menu-icon::before {
    content: "";
    width: 65px;
    height: 36px;
    flex: 0 0 65px;
    top: 50%;
    transform: translateY(-50%);
    left: -80px;
    background: url(/local/assets/img/header-bg.png) center / contain no-repeat;
    position: absolute;
  }
}

#mobileSearchVacancii {
  top: 255px;
}

.progiv {
  margin-bottom: 20px;
}

.d_kurs h3 {
  text-align: center;
}


.breadcrumbs {
  padding: 15px 0;
  margin-top: 15px;
}

.breadcrumbs__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.breadcrumbs__link {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs__link:hover {
  color: #333;
}

.breadcrumbs__separator {
  margin: 0 10px;
  color: #666;
}

.breadcrumbs__item {
  color: #333;
}
/* Legal */

.hidden {
	opacity: 0;
}