.title-1 {
  font-weight: 500;
  font-size: 30px;
  line-height: 1.1666666667;
  letter-spacing: 0.02em;
  color: #17181A;
  margin-bottom: 25px;
}
@media (max-width: 400px) {
  .title-1 {
    font-size: 22px;
  }
}

.title-2 {
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2272727273;
  letter-spacing: 0.02em;
  color: #17181A;
  margin-bottom: 25px;
}
@media (max-width: 400px) {
  .title-2 {
    font-size: 18px;
  }
}

.title-3 {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3333333333;
  letter-spacing: 0.02em;
  color: #17181A;
  margin-bottom: 15px;
}
@media (max-width: 400px) {
  .title-3 {
    font-size: 16px;
  }
}

.ul {
  margin: 25px 0;
  width: 760px;
  max-width: 100%;
}
.ul .li {
  padding-left: 38px;
  font-size: 14px;
  line-height: 22px;
  color: #1F2429;
  position: relative;
  margin: 15px 0;
}
.ul .li:before {
  content: "";
  position: absolute;
  left: 20px;
  width: 6px;
  height: 6px;
  top: 8px;
  border-radius: 50%;
  background-color: #1F2429;
}
.ul--green .li::before {
  background-color: #00A84E;
}

.separator {
  background-color: #E2E2E2;
  height: 1px;
  width: 100%;
  margin: 25px 0;
}

.mb-0 {
  margin-bottom: 0;
}

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

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

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

.mt-0 {
  margin-top: 0;
}

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

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

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

.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.my-15 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.my-25 {
  margin-top: 25px;
  margin-bottom: 25px;
}

.my-50 {
  margin-top: 50px;
  margin-bottom: 50px;
}

.btn-fill-blue {
  --border-width: 0px;
  text-decoration: none !important;
  cursor: pointer;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  outline: none;
  border: none;
  background: none;
  background-color: var(--bg-color);
  transition: 0.2s;
  font-size: 13px;
  line-height: 15px;
  font-weight: 400;
  position: relative;
  z-index: 1;
  border-style: solid;
  border-width: var(--border-width);
  border-color: var(--border-color);
  color: var(--text-color);
  border-radius: 26px;
  padding: calc(18px - var(--border-width)) calc(35px - var(--border-width));
  --text-color: white;
  --bg-color: #325491;
}
.btn-fill-blue[disabled] {
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .btn-fill-blue {
    cursor: pointer;
    transition: 0.2s;
  }
  .btn-fill-blue:hover {
    opacity: 0.5;
  }
}

.btn-border-blue {
  --border-width: 0px;
  text-decoration: none !important;
  cursor: pointer;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  outline: none;
  border: none;
  background: none;
  background-color: var(--bg-color);
  transition: 0.2s;
  font-size: 13px;
  line-height: 15px;
  font-weight: 400;
  position: relative;
  z-index: 1;
  border-style: solid;
  border-width: var(--border-width);
  border-color: var(--border-color);
  color: var(--text-color);
  border-radius: 26px;
  padding: calc(18px - var(--border-width)) calc(35px - var(--border-width));
  --text-color: #325491;
  --border-color: #325491;
  --border-width: 1px;
}
.btn-border-blue[disabled] {
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .btn-border-blue {
    cursor: pointer;
    transition: 0.2s;
  }
  .btn-border-blue:hover {
    opacity: 0.5;
  }
}

.btns-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -16px;
}
.btns-row > * {
  margin: 16px;
}
@media (max-width: 767px) {
  .btns-row {
    margin: -8px;
  }
  .btns-row > * {
    margin: 8px;
  }
}

[data-toggle],
[data-tab] {
  cursor: pointer;
}

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

.baron__scroller {
  overflow-y: scroll;
  -ms-overflow-style: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  border: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.baron__scroller::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.baron__track {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
}

.baron {
  height: 100%;
}
.baron._scrollbar > .baron__track, .baron._scrollbar > .baron__bar {
  display: block;
}

.baron__free {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.baron__bar {
  display: none;
  position: absolute;
  right: 0;
  z-index: 1;
  width: 10px;
  background: #999;
}

.baron__control {
  display: none;
}

.baron-row {
  position: relative;
}
.baron-row .baron__track {
  position: absolute;
  z-index: 3;
  top: auto;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  border-radius: 5px;
  background: #E2E2E2;
  pointer-events: none;
}
.baron-row .baron__bar {
  position: absolute;
  z-index: 1;
  height: 4px;
  border-radius: 3px;
  background: #325491;
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  pointer-events: auto;
  opacity: 1;
  cursor: pointer;
  transition: width 0.2s;
}
.baron-row .baron__bar:hover, .baron-row .baron__bar:active {
  width: 10px;
}

.baron.baron-column {
  position: relative;
  --fade-R: 255;
  --fade-G: 255;
  --fade-B: 255;
}
.baron.baron-column._scrollbar .baron__scroller {
  padding-right: 36px;
}
.baron.baron-column._scrollbar .baron__scroller:before, .baron.baron-column._scrollbar .baron__scroller:after {
  content: "";
  position: absolute;
  z-index: 11;
  pointer-events: auto;
  left: 0;
  right: 0;
  height: 80px;
  max-height: 20%;
  background-image: linear-gradient(to bottom, rgba(var(--fade-R), var(--fade-G), var(--fade-B), 1), rgba(var(--fade-R), var(--fade-G), var(--fade-B), 0));
  transition: 0.2s;
}
.baron.baron-column._scrollbar .baron__scroller:before {
  top: -1px;
}
.baron.baron-column._scrollbar .baron__scroller:after {
  bottom: -1px;
  transform: rotate(180deg);
}
.baron.baron-column._scrollbar .baron__scroller._top:before {
  opacity: 0;
  pointer-events: none;
}
.baron.baron-column._scrollbar .baron__scroller._bottom:after {
  opacity: 0;
  pointer-events: none;
}
.baron.baron-column .baron__track {
  opacity: 0;
  position: absolute;
  z-index: 3;
  top: 10px;
  bottom: 10px;
  right: 10px;
  width: 3px;
  border-radius: 5px;
  background: #f8f8f8;
  pointer-events: none;
}
.baron.baron-column._scrollbar .baron__track {
  opacity: 1;
}
.baron.baron-column._scrollbar .baron__bar {
  display: block;
}
.baron.baron-column .baron__bar {
  position: absolute;
  z-index: 1;
  width: 3px;
  border-radius: 2px;
  background: #325491;
  opacity: 0;
  transition: transform 0.2s ease;
  pointer-events: auto;
  opacity: 1;
  cursor: pointer;
}
.baron.baron-column .baron__bar:hover, .baron.baron-column .baron__bar:active {
  transform: translateX(0px) scaleX(3);
}

.baron.baron-row {
  height: auto;
  position: relative;
}
.baron.baron-row .baron__track {
  opacity: 0;
  position: absolute;
  z-index: 3;
  left: 0px;
  bottom: 6px;
  right: 0px;
  height: 3px;
  border-radius: 5px;
  background: #f8f8f8;
  pointer-events: none;
}
.baron.baron-row._scrollbar .baron__track {
  opacity: 1;
}
.baron.baron-row._scrollbar .baron__bar {
  display: block;
}
.baron.baron-row .baron__free {
  left: 0;
  top: auto;
}
.baron.baron-row .baron__bar {
  position: absolute;
  z-index: 1;
  height: 3px;
  bottom: 0;
  border-radius: 2px;
  background: #325491;
  opacity: 0;
  transition: transform 0.2s ease;
  pointer-events: auto;
  opacity: 1;
  cursor: pointer;
  transform-origin: 50% 50%;
}
.baron.baron-row .baron__bar:hover, .baron.baron-row .baron__bar:active {
  transform: translateY(0px) scaleY(3);
}

.news-card {
  border-radius: 4px;
  border: solid 1px #eee;
  background-color: #fff;
  color: #000;
}
.news-card__img {
  width: 100%;
  height: 0;
  padding-bottom: 55.7142857143%;
  overflow: hidden;
  position: relative;
  border-radius: 6px 6px 0 0;
}
.news-card__img .news-card__title {
  position: absolute;
  padding: 12px 18px;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  display: flex;
  align-items: flex-end;
  z-index: 5;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
  background: linear-gradient(0.96deg, #000000 0.48%, rgba(0, 0, 0, 0) 98.85%);
}
.news-card__img img {
  object-position: 50% 50%;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.news-card__img img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.news-card__content {
  padding: 20px;
}
.news-card__content > *:first-child {
  margin-top: 0;
}
.news-card__title {
  font-size: 16px;
  line-height: 1.38;
}
.news-card__text {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.38;
  color: #504646;
}
.news-card__row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: -10px;
}
.news-card__row > * {
  max-width: 100%;
  flex: 0 0 auto;
  margin: 10px;
}
.news-card__text-gray {
  font-size: 12px;
  line-height: 21px;
  color: #676767;
}
@media (hover: hover) and (pointer: fine) {
  .news-card {
    cursor: pointer;
    transition: 0.2s;
  }
  .news-card:hover {
    box-shadow: 0px 8px 9px rgba(0, 0, 0, 0.1);
  }
}
@media (max-width: 1199px) {
  .news-card__img {
    padding-bottom: 54%;
  }
}
@media (max-width: 767px) {
  .news-card__img {
    padding-bottom: 36.4864864865%;
  }
}

.news-card-list {
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
  margin-top: 15px;
  margin-bottom: 25px;
}
.news-card-list > * {
  margin: 10px;
  flex: 0 0 auto;
  width: calc(33.3333333333% - 20px);
}
@media (max-width: 767px) {
  .news-card-list > * {
    width: calc(100% - 20px);
  }
}

.shift-card-list .shift-card {
  margin: 25px 0;
}

.shift-card {
  display: flex;
  align-items: flex-start;
  padding-top: 30px;
}
.shift-card__img {
  margin-top: -30px;
  margin-right: -90px;
  flex: 0 0 auto;
  width: 430px;
  height: 280px;
  border-radius: 4px;
}
.shift-card__img img {
  object-position: 50% 50%;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.shift-card__content {
  margin-right: 30px;
  padding: 30px;
  background: #FFFFFF;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
}
.shift-card__title {
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #325491;
  letter-spacing: 0.02em;
}
.shift-card__text {
  margin-top: 10px;
  font-size: 14px;
  line-height: 22px;
  color: #1F2429;
}

.photo-card {
  border-radius: 4px;
  border: solid 1px #eee;
  background-color: #fff;
  color: #000;
}
.photo-card__img {
  width: 100%;
  height: 0;
  padding-bottom: 55.7142857143%;
  overflow: hidden;
  position: relative;
  border-radius: 6px 6px 0 0;
}
.photo-card__img img {
  object-position: 50% 50%;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.photo-card__img img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.photo-card__content {
  padding: 20px;
}
.photo-card__title {
  font-size: 16px;
  line-height: 1.38;
}
.photo-card__text {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.38;
  color: #504646;
}
.photo-card__date {
  font-weight: 400;
  font-size: 12px;
  line-height: 21px;
  color: #676767;
}
@media (hover: hover) and (pointer: fine) {
  .photo-card {
    cursor: pointer;
    transition: 0.2s;
  }
  .photo-card:hover {
    box-shadow: 0px 8px 9px rgba(0, 0, 0, 0.1);
  }
}
@media (max-width: 1199px) {
  .photo-card__img {
    padding-bottom: 57.8947368421%;
  }
}
@media (max-width: 767px) {
  .photo-card__img {
    padding-bottom: 59.4594594595%;
  }
}

.photo-card-list {
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
  margin-top: 40px;
  margin-bottom: 10px;
}
.photo-card-list > * {
  margin: 10px;
  flex: 0 0 auto;
  width: calc(50% - 20px);
}
@media (max-width: 767px) {
  .photo-card-list > * {
    width: calc(100% - 20px);
  }
}

.banner-page-w-nav {
  min-height: 330px;
  padding: 20px 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 30px;
}
.banner-page-w-nav__bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.banner-page-w-nav__bg img {
  object-position: 50% 50%;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.banner-page-w-nav__content-wrap {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
}
.banner-page-w-nav__content {
  color: white;
  width: 480px;
  max-width: 100%;
}
.banner-page-w-nav__content [class*=title-] {
  color: white;
}
.banner-page-w-nav__content ._text {
  font-weight: 500;
  margin-top: 10px;
}
.banner-page-w-nav__row {
  display: flex;
  flex-wrap: wrap;
  margin: 20px -10px -10px;
}
.banner-page-w-nav__row > * {
  margin: 10px;
  flex: 0 0 auto;
}
.banner-page-w-nav__row button {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid #F3EFEF;
  padding: 13px 27px;
  font-weight: 300;
  font-size: 15px;
  line-height: 18px;
  text-align: center;
  border-radius: 10px;
  color: #323437;
}
@media (hover: hover) and (pointer: fine) {
  .banner-page-w-nav__row button {
    cursor: pointer;
    transition: 0.2s;
  }
  .banner-page-w-nav__row button:hover {
    border-color: #325491;
    background-color: #325491;
    color: white;
  }
}
@media (max-width: 1599px) {
  .banner-page-w-nav {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (max-width: 1199px) {
  .banner-page-w-nav {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (max-width: 767px) {
  .banner-page-w-nav {
    padding: 25px;
    display: flex;
    justify-content: center;
    min-height: 260px;
  }
  .banner-page-w-nav__content {
    padding-right: 60px;
  }
  .banner-page-w-nav__content .title-1 {
    font-size: 20px;
  }
  .banner-page-w-nav__row {
    display: none;
  }
}

.banner-page-nav {
  position: fixed;
  z-index: 190;
  left: 0;
  right: 0;
  background-color: #FCFCFC;
  top: var(--header-active-height);
  transition: transform 0.4s, opacity 0.4s;
  user-select: none;
  padding-top: 20px;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.13);
}
.banner-page-nav._show {
  opacity: 1;
  pointer-events: auto;
}
.banner-page-nav__prev, .banner-page-nav__next {
  display: none;
}
.banner-page-nav__list {
  height: 50px;
  padding: 4px 0 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 -20px;
}
.banner-page-nav__link {
  text-decoration: none;
  color: #4E4D5B;
  fill: #4E4D5B;
  margin: 6px 20px;
}
@media (hover: hover) and (pointer: fine) {
  .banner-page-nav__link {
    cursor: pointer;
    transition: 0.2s;
  }
}
.banner-page-nav__link.active {
  color: #325491;
}
@media (hover: hover) and (pointer: fine) {
  .banner-page-nav__link {
    cursor: pointer;
    transition: 0.2s;
  }
  .banner-page-nav__link:hover {
    text-decoration: underline;
  }
}
@media (max-width: 1199px) {
  .banner-page-nav__link {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .banner-page-nav {
    overflow: hidden;
    border-radius: 0 0 12px 12px;
  }
  .banner-page-nav__link {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 1;
    top: 20px;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(-100%);
    transition: 0.4s;
    opacity: 0;
  }
  .banner-page-nav__link.active {
    transform: translateY(0);
    opacity: 1;
  }
  .banner-page-nav__link.active ~ .page-nav__link {
    opacity: 0;
    transform: translateY(100%);
  }
  .banner-page-nav__prev, .banner-page-nav__next {
    display: flex;
    align-items: center;
    justify-content: center;
    top: 20px;
    bottom: 0;
    position: absolute;
    z-index: 11;
    width: 44px;
    line-height: 0;
  }
  .banner-page-nav__prev.disabled, .banner-page-nav__next.disabled {
    opacity: 0;
    pointer-events: none;
  }
  .banner-page-nav__prev svg, .banner-page-nav__next svg {
    width: 32px;
    height: 14px;
    fill: #325491;
  }
  .banner-page-nav__prev {
    left: 0;
    transform: rotate(0deg);
  }
  .banner-page-nav__next {
    right: 0;
    transform: rotate(180deg);
  }
}

.sticky-wrap {
  display: flex;
  width: 100%;
}
@media (max-width: 1199px) {
  .sticky-wrap {
    flex-wrap: wrap;
  }
}

.sticky-content {
  flex: 0 0 auto;
  width: calc(100% - 300px);
  max-width: calc(100% - 300px);
}
@media (max-width: 1199px) {
  .sticky-content {
    width: 100%;
    max-width: 100%;
  }
}

.sticky-sidebar {
  flex: 0 0 auto;
  margin-left: 20px;
  width: 280px;
}
.sticky-sidebar__row {
  display: flex;
  flex-direction: column;
}
.sticky-sidebar__col {
  width: 100%;
}
.sticky-sidebar .inner-wrapper-sticky {
  width: 280px !important;
}
.sticky-sidebar__inner {
  width: 100%;
}
@media (max-width: 1199px) {
  .sticky-sidebar {
    width: 100%;
    margin-left: 0;
    margin-bottom: 50px;
  }
}
@media (max-width: 1199px) and (min-width: 768px) {
  .sticky-sidebar__row {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .sticky-sidebar__col {
    width: calc(50% - 10px);
  }
}
@media (max-width: 1199px) {
  .sticky-sidebar .inner-wrapper-sticky {
    position: static !important;
    width: 100% !important;
    transform: none !important;
  }
}
@media (max-width: 767px) {
  .sticky-sidebar__row {
    align-items: center;
  }
  .sticky-sidebar__col {
    width: auto;
  }
}

.aside__menu .href.active {
  font-weight: 700;
  pointer-events: none;
}
.aside__menu .href.active:after {
  display: none;
}

@media (max-width: 1199px) {
  .sticky-wrap.sticky--only-desktop {
    display: block;
  }
  .sticky-wrap.sticky--only-desktop .sticky-sidebar {
    display: none !important;
  }
}

.universities-partners {
  display: flex;
}
.universities-partners__text {
  margin-top: 25px;
}
.universities-partners__row {
  margin-top: 15px;
  margin-left: 10px;
  margin-right: -10px;
  width: 490px;
  max-width: 100%;
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
}
.universities-partners__logo {
  width: calc(33.3333333333% - 20px);
  margin: 10px;
  flex: 0 0 auto;
  height: 80px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #FFFFFF;
  border: 1px solid #EBEFF4;
  border-radius: 4px;
}
.universities-partners__btn {
  background-color: #FCFCFC;
  font-weight: 300;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  letter-spacing: 0.02em;
  color: #2D313D;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .universities-partners__btn {
    cursor: pointer;
    transition: 0.2s;
  }
  .universities-partners__btn:hover {
    background-color: #325491;
    border-color: #325491;
    color: white;
  }
}
@media (max-width: 767px) {
  .universities-partners {
    flex-direction: column;
  }
  .universities-partners__row {
    margin: 10px 0;
  }
  .universities-partners__logo {
    width: calc(50% - 20px);
  }
}

.new-table thead td {
  font-weight: 500;
}

.file-download-list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: -12px;
  width: calc(100% + 24px);
  max-width: calc(100% + 24px);
}
.file-download-list > * {
  flex: 0 0 auto;
  margin: 12px;
  width: calc(50% - 24px);
}

.file-download {
  min-height: 42px;
  display: flex;
  align-items: center;
  width: 340px;
  max-width: 100%;
  text-decoration: none;
}
.file-download__icon {
  width: 40px;
  height: 40px;
  margin-right: 20px;
  flex: 0 0 auto;
}
.file-download__text {
  color: #1F2429;
}
.file-download__title {
  text-decoration: underline;
  color: #536B96;
  padding-right: 44px;
  position: relative;
}
.file-download__title::after {
  content: "";
  position: absolute;
  right: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' %3E%3Cpath d='M6.799 9.665l2.576 2.576V5.625c0-.345.28-.625.625-.625s.625.28.625.625v6.616l2.576-2.576c.244-.244.64-.244.884 0s.244.64 0 .884l-3.536 3.536c-.15.15-.355.196-.549.162-.194.034-.399-.013-.549-.162l-3.536-3.536c-.244-.244-.244-.64 0-.884s.641-.244.885-.001zM10 0c5.523 0 10 4.477 10 10s-4.477 10-10 10S0 15.523 0 10 4.477 0 10 0zm0 18.75a8.75 8.75 0 1 0 0-17.5 8.75 8.75 0 1 0 0 17.5z' fill='%23155794'/%3E%3C/svg%3E");
}
.file-download__info {
  color: #9F9F9F;
}
@media (hover: hover) and (pointer: fine) {
  .file-download {
    cursor: pointer;
    transition: 0.2s;
  }
  .file-download:hover .file-download__title {
    text-decoration: none;
  }
  .file-download:hover .file-download__title:after {
    transform: rotate(-90deg);
    animation: download-anim 0.8s infinite;
  }
}
@keyframes download-anim {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-2px);
  }
  75% {
    transform: translateY(2px);
  }
  100% {
    transform: translateY(0);
  }
}

.roll {
  background: #E6F7FF;
  border-radius: 8px;
  padding: 30px;
}
.roll [class*=title-] {
  color: #1F2429;
}
.roll__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.roll__head.active .roll__arrow {
  transform: rotate(180deg);
}
@media (hover: hover) and (pointer: fine) {
  .roll__head {
    cursor: pointer;
    transition: 0.2s;
  }
  .roll__head:hover {
    color: #325491;
  }
}
.roll__title {
  font-weight: 500;
  font-size: 22px;
  line-height: 27px;
}
.roll__arrow {
  flex: 0 0 auto;
  transition: 0.2s;
  margin-left: 20px;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' %3E%3Cpath d='M12 3.281c-4.814 0-8.719 3.905-8.719 8.719S7.186 20.719 12 20.719s8.719-3.905 8.719-8.719S16.814 3.281 12 3.281zm4.322 6.509l-4.172 5.766c-.017.024-.04.043-.066.057s-.055.021-.085.021-.059-.007-.085-.021-.049-.033-.066-.057L7.676 9.79c-.089-.124 0-.298.152-.298h1.099c.241 0 .466.115.607.309L12 13.209l2.466-3.408a.75.75 0 0 1 .607-.309h1.099c.152 0 .241.173.15.298h0z' fill='%23e6f7ff'/%3E%3Cpath d='M12 1.5C6.202 1.5 1.5 6.202 1.5 12S6.202 22.5 12 22.5 22.5 17.798 22.5 12 17.798 1.5 12 1.5zm0 19.219c-4.814 0-8.719-3.905-8.719-8.719S7.186 3.281 12 3.281 20.719 7.186 20.719 12 16.814 20.719 12 20.719zm4.171-11.227h-1.099a.75.75 0 0 0-.607.309l-2.466 3.408-2.466-3.408c-.141-.195-.366-.309-.607-.309H7.827c-.152 0-.241.173-.152.298l4.172 5.766c.075.103.227.103.302 0l4.172-5.766c.091-.124.002-.298-.15-.298h0z' fill='%23325491'/%3E%3C/svg%3E");
}
.roll__body {
  padding-top: 20px;
}

.info-message {
  border-width: 1px;
  border-style: solid;
  background-color: var(--content-bg);
  border-color: var(--content-border);
  border-radius: 4px;
  display: flex;
}
.info-message--light-blue {
  --icon-bg: #799CDB;
  --content-bg: rgba(121, 156, 219, 0.1);
  --content-border: rgba(121, 156, 219, 0.5);
}
.info-message__icon {
  flex: 0 0 auto;
  border: 4px 0 0 4px;
  width: 72px;
  background-color: var(--icon-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-message__icon img, .info-message__icon svg {
  max-width: 32px;
  max-height: 32px;
}
.info-message__content {
  padding: 20px 25px;
  font-size: 14px;
  line-height: 22px;
}
.info-message__content strong {
  font-weight: 500;
}
.info-message__content p + p {
  margin-top: 10px;
}

.buy-electric-car {
  display: flex;
}
.buy-electric-car__text {
  margin-right: 20px;
}
.buy-electric-car__links {
  width: 340px;
  flex: 0 0 auto;
  margin: -10px;
  display: flex;
  flex-wrap: wrap;
}
.buy-electric-car__link {
  text-decoration: none !important;
  color: #1F2429;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border: 1px solid #EBEFF4;
  border-radius: 4px;
  height: 80px;
  margin: 10px;
  width: calc(50% - 20px);
}
@media (hover: hover) and (pointer: fine) {
  .buy-electric-car__link {
    cursor: pointer;
    transition: 0.2s;
  }
  .buy-electric-car__link:hover {
    border-color: #325491;
  }
}
@media (max-width: 767px) {
  .buy-electric-car {
    display: block;
  }
  .buy-electric-car__text {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .buy-electric-car__links {
    width: calc(100% + 20px);
    justify-content: center;
  }
  .buy-electric-car__link {
    width: 150px;
  }
}

.link-app-download {
  padding: 10px 10px 10px 15px;
  display: flex;
  align-items: center;
  background: #E6F7FF;
  border-radius: 4px;
  text-decoration: none;
  position: relative;
}
.link-app-download::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 4px;
  border: 2px solid #325491;
  pointer-events: none;
  opacity: 0;
  transition: 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .link-app-download {
    cursor: pointer;
    transition: 0.2s;
  }
  .link-app-download:hover::before {
    opacity: 1;
  }
}
.link-app-download__icon {
  width: 40px;
  height: 40px;
  margin-right: 15px;
  flex: 0 0 auto;
}
.link-app-download__content {
  flex: 1 1 auto;
}
.link-app-download__text {
  font-weight: 600;
  font-size: 13px;
  line-height: 18px;
  color: #325491;
}
.link-app-download__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  color: #325491;
}
.link-app-download__qr-code {
  margin-left: 10px;
  flex: 0 0 auto;
}
@media (max-width: 767px) {
  .link-app-download {
    max-width: 280px;
  }
}

.banner-tech-support {
  background: #E6F7FF;
  border-radius: 4px;
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  text-align: center;
  min-height: 300px;
  overflow: hidden;
}
.banner-tech-support::after {
  height: 124px;
  flex: 1 1 auto;
  content: "";
}
.banner-tech-support__bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.banner-tech-support__bg img {
  object-position: 50% 50%;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.banner-tech-support__bg img {
  object-position: 50% 50%;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.banner-tech-support__bg img {
  object-position: 50% 90%;
}
.banner-tech-support__title {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #FFFFFF;
}
.banner-tech-support__text {
  margin-top: 15px;
  font-size: 13px;
  line-height: 18px;
  color: #FFFFFF;
}
.banner-tech-support__action {
  order: 1;
}
@media (max-width: 767px) {
  .banner-tech-support {
    max-width: 280px;
  }
}

.media-list {
  display: flex;
  max-width: 100%;
  width: 100%;
}
.media-list__item {
  width: calc(100% - 370px);
  flex: 0 0 auto;
  display: none;
}
.media-list__item.active {
  display: block;
}
.media-list__media {
  padding-bottom: 65.5172413793%;
  position: relative;
  height: 0;
  width: 100%;
  background: linear-gradient(0deg, rgba(56, 55, 74, 0.88), rgba(56, 55, 74, 0.88));
  border-radius: 8px;
  overflow: hidden;
  line-height: 0;
}
.media-list__media video {
  max-width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.media-list__media video[poster] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-list__text {
  margin-top: 15px;
}
.media-list__list {
  width: 360px;
  flex: 0 0 auto;
  margin-left: 10px;
  padding-bottom: calc((100% - 360px - 10px) * 380 / 580);
  position: relative;
  height: 0;
}
.media-list__list .baron {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 3;
}
.media-list__list .baron.baron-column._scrollbar .baron__scroller {
  padding-right: 14px;
}
.media-list__list .baron .baron__track {
  right: 4px;
}
.media-list__list ._item {
  display: flex;
  align-items: center;
  padding: 10px;
  border: 1px solid #EEEEEE;
  border-radius: 8px;
}
.media-list__list ._item + ._item {
  margin-top: 10px;
}
.media-list__list ._item.active {
  background: #E6F7FF;
  border: 1px solid #CAE5F2;
}
.media-list__list ._item-img {
  border: 4px;
  width: 70px;
  height: 45px;
  margin-right: 10px;
  flex: 0 0 auto;
}
.media-list__list ._item-img img {
  object-position: 50% 50%;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.media-list__list ._item-title {
  font-size: 14px;
  line-height: 22px;
}
@media (max-width: 767px) {
  .media-list {
    flex-wrap: wrap;
  }
  .media-list__item {
    width: 100%;
    margin-bottom: 25px;
  }
  .media-list__list {
    width: 100%;
    height: 370px;
    margin-left: 0;
  }
}

.map-stations {
  height: 460px;
  margin-bottom: -40px;
  width: 100%;
}
.map-stations .map-popover {
  position: relative;
  width: 250px;
  padding-bottom: 10px;
}
.map-stations .map-popover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% - 10px);
  transform: translateX(-50%);
  border-width: 10px 7px;
  border-style: solid;
  border-color: #325491 transparent transparent transparent;
}
.map-stations .map-popover .close {
  position: absolute;
  top: -6px;
  color: #325491;
  right: 8px;
  top: 2px;
  font-size: 20px;
}
.map-stations .baloon-content {
  padding: 20px;
  background: #FFFFFF;
  border: 2px solid #325491;
  border-radius: 8px;
  font-family: "Roboto";
}
.map-stations .baloon-content .baloon-strong {
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
}
.map-stations .baloon-content .baloon-strong + .baloon-muted {
  margin-top: 10px;
}
.map-stations .baloon-content .baloon-muted {
  color: #575E64;
  font-size: 13px;
  line-height: 18px;
}
.map-stations .placemark {
  padding: 10px 4px;
  width: 64px;
  height: 34px;
  border: 2px solid #325491;
  border-radius: 17px;
  background-color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 12px;
  line-height: 12px;
  color: #325491;
  transform: translate(-50%, calc(-100% - 10px));
  position: relative;
  white-space: nowrap;
}
.map-stations .placemark:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  border-width: 10px 7px;
  border-style: solid;
  border-color: #325491 transparent transparent transparent;
}
.map-stations .my_cluster {
  transform: translate(-20px, -20px);
  width: 40px;
  height: 40px;
  font-weight: 700;
  font-size: 12px;
  line-height: 24px;
  text-align: center;
  padding: 8px 2px;
  white-space: nowrap;
  border-radius: 50%;
  background-color: #325491;
  color: white;
}

.map-wrap {
  position: relative;
  overflow: hidden;
  margin: 10px 0;
}

.map-controls {
  z-index: 55;
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  right: 20px;
  display: flex;
  flex-direction: column;
  filter: drop-shadow(0px 2px 12px rgba(0, 0, 0, 0.12));
}
@media (max-width: 767px) {
  .map-controls {
    right: 12px;
  }
}
.map-controls ._zoom-in,
.map-controls ._zoom-out {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  border: none;
  background-color: #fff;
  color: #4D4D4D;
  font-size: 28px;
  position: relative;
}
.map-controls ._zoom-in::before,
.map-controls ._zoom-out::before {
  content: "";
  width: 14px;
  height: 2px;
  position: absolute;
  top: calc(50% - 1px);
  left: 50%;
  transform: translateX(-50%);
  background-color: #555;
}
@media (max-width: 767px) {
  .map-controls ._zoom-in,
  .map-controls ._zoom-out {
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .map-controls ._zoom-in,
  .map-controls ._zoom-out {
    cursor: pointer;
    transition: 0.2s;
  }
  .map-controls ._zoom-in:hover,
  .map-controls ._zoom-out:hover {
    z-index: 2;
    filter: drop-shadow(0px 2px 12px rgba(0, 0, 0, 0.12));
  }
}
.map-controls ._zoom-in {
  border-radius: 10px 10px 0 0;
}
.map-controls ._zoom-in::after {
  content: "";
  width: 14px;
  height: 2px;
  position: absolute;
  top: calc(50% - 1px);
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  background-color: #333;
}
@media (max-width: 767px) {
  .map-controls ._zoom-in {
    border-radius: 6px 6px 0 0;
  }
}
.map-controls ._zoom-out {
  border-radius: 0 0 10px 10px;
}
@media (max-width: 767px) {
  .map-controls ._zoom-out {
    border-radius: 0 0 6px 6px;
  }
}

@media (max-width: 767px) {
  .hide-mobile {
    display: none;
  }
}

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