@charset "UTF-8";
/* Указываем box sizing */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
  padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class] {
  list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Упрощаем работу с изображениями */
img {
  display: block;
}

/* Указываем понятную периодичность в потоке данных у article*/
article > * + * {
  margin-top: 1em;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  font: inherit;
}

/* Удаляем все анимации и переходы для людей, которые предпочитай их не использовать */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}
.header__container {
  border-bottom: 1px solid #001a30;
}

.bar-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 2rem 0 1rem;
}
.bar-header__search img {
  width: 20px;
  height: 20px;
  margin-right: 3rem;
}
.bar-header__logo {
  display: inline-block;
}

.menu {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.menu__body {
  margin-right: 3rem;
}
.menu__list {
  display: flex;
  flex-direction: row;
}
.menu__item {
  margin-right: 3rem;
}
.menu__item:last-child {
  margin-right: 0;
}
.menu__link {
  color: #001a30;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 29px;
  text-decoration: none;
  position: relative;
  transition: all 0.35s ease;
  transition: font-weight 100ms linear;
  will-change: font-weight;
}
.menu__link.active {
  font-weight: 600;
}
.menu__link:hover {
  font-weight: 600;
}
.menu__link:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: -3px;
  width: 0;
  height: 2px; /* Высота линии */
  background-color: black; /* Цвет подчеркивания при исчезании линии*/
  transition: width 0.5s; /* Время эффекта */
}
.menu__link:hover:after {
  content: "";
  width: 100%;
  display: block;
  position: absolute;
  left: 0;
  bottom: -3px;
  height: 2px; /* Высота линии */
  background-color: #001a30; /* Цвет подчеркивания при появлении линии*/
  transition: width 0.5s; /* Время эффекта */
}

.language-switcher {
  position: relative;
  cursor: pointer;
}
.language-switcher__icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-right: 2rem;
}
.language-switcher__icon img {
  width: 27px;
  height: 24px;
}
.language-switcher__menu {
  display: none;
  margin-top: 1rem;
  border-radius: 5px;
  position: absolute;
  top: 40px;
  left: -1rem;
  padding: 1rem;
  background-color: #fff;
  z-index: 60;
}
.language-switcher__menu._active {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.language-switcher__item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  text-decoration: none;
}
.language-switcher__item a {
  color: #001a30;
  font-size: 2rem;
  text-decoration: none;
  text-transform: uppercase;
  margin-right: 1rem;
}
.language-switcher__item:last-child {
  margin: 0;
}
.language-switcher__item img {
  width: 22px;
  height: 20px;
}
.language-switcher span {
  font-size: 2rem;
  color: #001a30;
  margin-right: 1rem;
  font-weight: 500;
  display: inline-block;
}

/* ============================== */
/* PC + LAPTOP*/
@media (max-width: 1281.98px) {
  .menu__link {
    font-size: 1.6rem;
  }
  .menu__item {
    margin-right: 1.5rem;
  }
}
/* TABLET */
@media (max-width: 1160.98px) {
  .language-switcher__menu.active {
    position: absolute;
    top: 0;
    left: 0;
  }
  .menu__body {
    position: absolute;
    top: -500%;
    left: 0;
    width: 100%;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 1s ease 0s;
    background-color: transparent;
  }
  .menu__body._active {
    z-index: 5;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding-top: 1rem;
    opacity: 1;
    background-color: #fff;
    border-bottom: 5px solid #001a30;
    border-radius: 5%;
  }
  .menu__list {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .menu__item {
    margin-bottom: 2.5rem;
    margin-right: 0;
  }
  .menu__item:last-child {
    margin-bottom: 1rem;
  }
  /* -------------------- */
  .burger-menu {
    z-index: 5;
    display: block;
    position: relative;
    width: 35px;
    height: 35px;
    cursor: pointer;
    border: 1px solid #001a30;
    border-radius: 10px;
  }
  .burger-menu span,
  .burger-menu::before,
  .burger-menu::after {
    left: 6.1px;
    position: absolute;
    height: 1px;
    width: 20px;
    transition: all 0.3s ease 0s;
    background-color: #001a30;
  }
  .burger-menu::before,
  .burger-menu::after {
    content: "";
  }
  .burger-menu::before {
    top: 10px;
  }
  .burger-menu::after {
    bottom: 10px;
  }
  .burger-menu span {
    top: 50%;
    transform: scale(1) translate(0px, -50%);
  }
  .burger-menu._active span {
    transform: scale(0) translate(0px, -50%);
  }
  .burger-menu._active::before {
    top: 48%;
    transform: rotate(-45deg) translate(0px, -50%);
  }
  .burger-menu._active::after {
    bottom: 50%;
    transform: rotate(45deg) translate(0px, 50%);
  }
  .burger-menu {
    margin: 0;
  }
  .burger-menu__body {
    position: absolute;
    top: 110%;
    left: -100%;
    transition: left 1s ease 0s;
  }
  .burger-menu__body._active {
    top: 110%;
    left: 0%;
  }
  .burger-menu__list {
    width: 100%;
    gap: 2rem;
    font-size: 1.8rem;
    text-wrap: nowrap;
    white-space: nowrap;
  }
  .burger-menu__item {
    width: 100%;
    text-wrap: nowrap;
    white-space: nowrap;
  }
  .burger-menu__link {
    width: 100%;
    text-wrap: nowrap;
    white-space: nowrap;
  }
  .burger-menu__link a {
    width: 100%;
    text-wrap: nowrap;
    white-space: nowrap;
  }
}
/* TABLET */
/* MOBILE */
@media (max-width: 499.98px) {
  .bar-header__logo img {
    height: 40px;
    width: 85px;
  }
  .bar-header__search img {
    margin-right: 1rem !important;
  }
}
html,
body {
  height: 100%;
  line-height: 1;
  font-size: 62.5%;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #000000;
}

.wrapper {
  overflow: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.content {
  font-size: 1.8rem;
  flex: 1 1 auto;
}

.container {
  max-width: 148rem;
  width: 100%;
  margin: 0 auto;
  padding: 0rem 2rem;
}

.image-text {
  margin-top: 6rem;
  color: #001a30;
}
.image-text__title {
  font-size: 3rem;
  font-weight: 600;
  line-height: 39px;
  margin-bottom: 2rem;
}
.image-text__title a {
  color: #001a30;
  text-decoration: none;
}

.image-text-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 6rem;
}
.image-text-block__text {
  color: #001a30;
  text-decoration: none;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.3;
  transition: all 0.2s ease;
}
.image-text-block__text a {
  color: #001a30;
  text-decoration: none;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 24px;
  transition: all 0.1s ease;
}
.image-text-block__text a:hover {
  margin-left: 0.5rem;
  font-weight: 600;
}
.image-text-block__image {
  max-height: 51rem;
}
.image-text-block__image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.image-text-block li, .image-text-block p {
  margin-bottom: 1rem;
}

/* ============================== */
.brochure {
  margin: 6rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 26, 48, 0.5);
  border-radius: 40px;
}

.button-brochure {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  padding: 0.75rem 1.25rem;
  border-radius: 10rem;
  color: #fff;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.15rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  width: 100%;
  padding: 1rem 0;
}

.button-brochure span {
  font-size: 2rem;
  font-weight: 400;
  line-height: 39px;
  text-align: center;
}

.button-brochure:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 26, 48, 0.9);
  border-radius: 10rem;
  z-index: -2;
}

.button-brochure:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: rgba(0, 23, 43, 0.9);
  transition: all 0.3s;
  border-radius: 10rem;
  z-index: -1;
}

.button-brochure:hover {
  color: #fff;
}

.button-brochure:hover:before {
  width: 100%;
}

.title {
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 39px;
  margin-bottom: 2rem;
}
.title a {
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 39px;
  margin-bottom: 2rem;
  color: #001a30;
  text-decoration: none;
}

/* ============================== */
.start {
  margin-top: 10rem !important;
}
.start__block {
  position: relative;
}
.start__image img {
  height: 50svh;
  width: 100%;
  max-height: 90svh;
  object-fit: cover;
  border-radius: 20px;
}

.text-start {
  position: absolute;
  left: 3rem;
  bottom: 3rem;
  width: 100%;
  padding: 1rem 1rem 0rem;
  max-width: 92.5rem;
  background-color: #fff;
  border-radius: 40px;
  width: auto;
}
.text-start__title {
  color: #001a30;
  font-size: 3.2rem;
  line-height: 39px;
  font-weight: 600;
}
.text-start__text {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 29px;
}

/* ============================== */
.training-programs {
  margin-top: 2rem;
}
.training-programs h3 {
  font-size: 2.4rem;
}
.training-programs li {
  list-style-type: none;
  margin-left: -4rem;
}
.training-programs li a {
  color: #001a30;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 40px;
  text-decoration: none;
}

.want-details {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border: 1px solid #001a30;
  border-radius: 20px;
  text-decoration: none;
  transition: font-weight 100ms linear;
  will-change: font-weight;
}
.want-details:hover span {
  font-weight: 500;
}
.want-details span {
  color: #001a30;
  font-size: 2rem;
  font-weight: 400;
  line-height: 24px;
}

.button-back a {
  font-size: 2.2rem;
  color: #000;
  text-decoration: none;
  transition: margin-left 0.3s ease;
}
.button-back a:hover {
  font-weight: 500;
  margin-left: 0.5rem;
}

/* PC + LAPTOP*/
@media (max-width: 1281.98px) {
  .container {
    max-width: 108rem;
  }
  .text-start {
    max-width: 90%;
    padding: 1rem 1rem 0rem;
  }
  .text-start__title {
    font-size: 2.4rem;
  }
  .text-start__text {
    font-size: 2rem;
  }
  .training-programs h3 {
    font-size: 2rem;
    margin-bottom: 0;
  }
  .training-programs ul {
    margin: 0;
  }
  .training-programs li a {
    font-size: 1.6rem;
  }
  .image-text-block__text {
    font-size: 2.2rem;
  }
}
@media (max-width: 1038.98px) {
  .title {
    font-size: 2.2rem;
  }
  .image-text-block {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    gap: 2rem;
  }
  .image-text-block__text {
    font-size: 2rem;
  }
}
/* TABLET */
@media (max-width: 860.98px) {
  .container {
    max-width: none;
  }
  .image-text-block {
    gap: 2rem;
  }
  .image-text-block__text {
    font-size: 2rem !important;
  }
  .start__image img {
    height: 30svh;
  }
  .text-start {
    max-width: 90%;
    padding: 1rem 1rem 1rem;
    left: 2rem;
    bottom: 2rem;
  }
  .text-start__title {
    font-size: 2rem;
    margin-bottom: 0;
  }
  .text-start__text {
    font-size: 1.6rem;
  }
}
@media (max-width: 668.98px) {
  .text-start {
    left: 1rem;
    bottom: 1rem;
    padding: 1rem 1rem 1rem 2rem;
  }
  .text-start__title {
    margin-bottom: 1rem;
  }
  .text-start__text {
    line-height: 1.8rem;
  }
  .want-details span {
    font-size: 1.6rem;
  }
}
/* MOBILE */
@media (max-width: 499.98px) {
  .text-start__title {
    margin-bottom: 0rem;
    font-size: 1.4rem;
    line-height: 1;
  }
  .text-start__text {
    line-height: 1.2rem;
    font-size: 1.2rem;
    display: none;
  }
  .brochure span {
    font-size: 1.6rem;
    line-height: 24px;
  }
  .title {
    font-size: 2rem;
  }
  .image-text-block__text {
    font-size: 1.6rem !important;
    max-width: 90vw;
  }
  .image-text-block__image {
    max-width: 90vw;
  }
  .want-details img {
    display: none;
  }
}
/* ============================== */
.block-404 {
  margin-top: 12rem;
  color: #333;
  text-align: left;
}
.block-404 h1 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  font-weight: 600;
}
.block-404 a {
  color: #001a30;
  text-decoration: none;
  font-weight: 500;
  text-decoration: underline;
  transition: all 0.1s ease;
}
.block-404 a:hover {
  color: #333;
  text-decoration: none;
  font-weight: 600;
}
.block-404__text {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.block-404__text-image {
  margin: 0 auto;
  width: 80%;
  height: 80%;
}
.block-404__text-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.block-404__text-sign {
  display: block;
  text-align: left;
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: 1rem;
  color: #001a30;
}
.block-404__text-back {
  background-color: rgba(0, 26, 48, 0.9);
  text-align: center;
  border: 1px solid #001a30;
  border-radius: 15px;
  padding: 1rem;
  transition: all 0.2s;
}
.block-404__text-back a {
  text-decoration: none;
  color: #fff;
}
.block-404__text-back:hover {
  background-color: #fff;
}
.block-404__text-back:hover a {
  color: #001a30;
}
.block-404 li {
  margin-bottom: 1rem;
}

/* PC + LAPTOP*/
/* TABLET */
@media (max-width: 860.98px) {
  .block-404__text {
    grid-template-columns: 1fr;
  }
  .block-404__text-card {
    margin-bottom: 2rem;
  }
  .block-404__text-image {
    width: 60%;
    height: 60%;
  }
}
/* MOBILE */