@charset "UTF-8";
/**
  Нормализация блочной модели
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
  Убираем внутренние отступы слева тегам списков,
  у которых есть атрибут class
 */
:where(ul, ol):where([class]) {
  padding-left: 0;
}

/**
  Убираем внешние отступы body и двум другим тегам,
  у которых есть атрибут class
 */
body,
:where(blockquote, figure):where([class]) {
  margin: 0;
}

/**
  Убираем внешние отступы вертикали нужным тегам,
  у которых есть атрибут class
 */
:where(h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

/**
  Убираем стандартный маркер маркированному списку,
  у которого есть атрибут class
 */
:where(ul[class]) {
  list-style: none;
}

:where(address[class]) {
  font-style: normal;
}

/**
  Обнуляем вертикальные внешние отступы параграфа,
  объявляем локальную переменную для внешнего отступа вниз,
  чтобы избежать взаимодействие с более сложным селектором
 */
p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
}

/**
  Внешний отступ вниз для параграфа без атрибута class,
  который расположен не последним среди своих соседних элементов
 */
p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

/**
  Упрощаем работу с изображениями и видео
 */
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

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

html {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  height: 100%;
  /**
    Убираем скачок интерфейса по горизонтали
    при появлении / исчезновении скроллбара

  scrollbar-gutter: stable;
  */
}

/**
  Плавный скролл
 */
html,
:has(:target) {
  scroll-behavior: smooth;
}

body {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  min-height: 100%;
  /**
    Унифицированный интерлиньяж
   */
  line-height: 1.5;
}

/**
  Нормализация высоты элемента ссылки при его инспектировании в DevTools
 */
a:where([class]) {
  display: inline-flex;
}

/**
  Курсор-рука при наведении на элемент
 */
button,
label {
  cursor: pointer;
}

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут fill со значением 'none' или начинается с 'url')
 */
:where([fill]:not([fill=none],
[fill^=url])) {
  fill: currentColor;
}

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут stroke со значением 'none')
 */
:where([stroke]:not([stroke=none],
[stroke^=url])) {
  stroke: currentColor;
}

/**
  Чиним баг задержки смены цвета при взаимодействии с svg-элементами
 */
svg * {
  transition-property: fill, stroke;
}

/**
  Приведение рамок таблиц в классический 'collapse' вид
 */
:where(table) {
  border-collapse: collapse;
  border-color: currentColor;
}

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-light: #FFFFFF;
  --color-dark: #000000;
  --color-text: #363636;
  --color-accent: #c50000;
  --color-icon: #3b4d5a;
  --bg-color-min-block: #ecf0e9;
  --bg-color-block: #edf3f4;
  --bg-footer: #283b49;
  --font-family: "Montserrat", sans-serif;
  --container-width: 93.75rem;
  --container--padding-x: 1rem;
  --transition-duration: 0.2s;
}
@media (width <= 90.06125rem) {
  :root {
    --container-width: 80rem;
  }
}

.container {
  max-width: calc(var(--container-width) + var(--container--padding-x) * 2);
}

.wrapper {
  max-width: calc(var(--container-width) + var(--container--padding-x) * 2);
  margin-inline: auto;
  padding-inline: var(--container--padding-x);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

@media (width <= 47.99875rem) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (width > 47.99875rem) {
  .visible-mobile {
    display: none !important;
  }
}

body {
  font-family: var(--font-family);
  overflow-x: hidden;
}

a,
button,
label,
textarea,
select,
svg * {
  transition-duration: var(--transition-duration);
}

@media (any-hover: hover) {
  a:hover {
    text-decoration: underline;
  }
}
@media (any-hover: none) {
  a:active {
    text-decoration: underline;
  }
}
a[class] {
  text-decoration: none;
}

:focus-visible {
  outline: 0.125rem dashed var(--color-light);
  outline-offset: 0.25rem;
  transition-duration: 0s !important;
}

.slider {
  background-color: #3b4d5a;
  height: 100dvh;
  overflow: hidden;
}
.slider__swiper {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
}
.slider__slide-content {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  transform: translate(0, 30%);
  webkit-transform: translate(0, 30%);
  -moz-transform: translate(0, 20%);
}
.slider__slide-name {
  color: var(--color-light);
  display: grid;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0px 5px 2.8px rgba(0, 0, 0, 0.3);
}
.slider__slide-name > .tm-name {
  font-size: clamp(1.875rem, 0.9191176471rem + 3.9215686275vw, 5.625rem);
  font-weight: 900;
}
.slider__slide-name > .tn-desk {
  font-size: clamp(1.875rem, 1.2855392157rem + 2.4183006536vw, 4.1875rem);
  font-weight: 900;
  width: 49rem;
  padding: 0.9375rem 0 0 0;
  line-height: 1.2;
}
@media (width <= 47.99875rem) {
  .slider__slide-name > .tn-desk {
    width: fit-content;
  }
}
.slider__pagination {
  position: absolute;
  width: 100%;
  top: calc(100% - 19.6875rem);
  z-index: 10;
}
.slider__btntosite {
  width: fit-content;
}
.slider__link {
  padding: 0.8125rem 1rem;
  background-color: var(--color-accent);
  border-radius: 0.5rem;
  color: var(--color-light);
  font-size: clamp(0.625rem, 0.5612745098rem + 0.2614379085vw, 0.875rem);
  font-weight: 800;
}
.slider__minblock {
  position: absolute;
  width: 100%;
  bottom: 1.25rem;
  z-index: 10;
}
@media (width <= 90.06125rem) {
  .slider__minblock {
    margin: 0 10px;
  }
  .slider__minblock.wrapper {
    padding-inline: unset;
  }
}
.slider__minblock-pdf {
  background-color: var(--bg-color-min-block);
  opacity: 0.73;
  border-radius: 1.5rem;
  padding: 0.8125rem 1.375rem;
  align-items: center;
  width: max-content;
  position: absolute;
  bottom: 0;
  right: 0;
  right: 1.875rem;
}
.slider__minblock-pdf a {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.slider__minblock-pdf:hover {
  background-color: rgba(197, 0, 0, 0.6117647059);
  border: 1px solid transparent;
  color: var(--color-light);
}
.pdf-item__items {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.pdf-item__text {
  width: 4.375rem;
  hyphens: unset;
}

.item-minblock__content {
  display: grid;
  grid-template-columns: auto max-content;
  line-height: 1;
}
.item-minblock__name {
  grid-column: span 2;
  font-size: clamp(1.125rem, 0.6470588235rem + 1.9607843137vw, 3rem);
  font-weight: 800;
}
.item-minblock__desk {
  font-size: clamp(0.625rem, 0.4975490196rem + 0.522875817vw, 1.125rem);
}
.item-minblock__buttom {
  text-align: center;
}
.item-minblock__link {
  padding: 0.8125rem 1rem;
  background-color: var(--color-accent);
  border-radius: 0.5rem;
  color: var(--color-light);
  font-size: clamp(0.625rem, 0.5612745098rem + 0.2614379085vw, 0.875rem);
  font-weight: 800;
}

.swiper-slide img {
  position: absolute;
  width: 100%;
  height: inherit;
  object-fit: cover;
}

.swiper-button-next:after {
  content: "" !important;
  width: 1.0625rem;
  height: 2.6875rem;
  line-height: 1;
  background: url("/images/ctr-right.webp");
}

.swiper-button-prev:after {
  content: "" !important;
  width: 1.0625rem;
  height: 2.6875rem;
  line-height: 1;
  background: url("/images/ctr-left.webp");
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 16px);
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 16px);
}

.header {
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 20;
}
@media (width <= 30.06125rem) {
  .header__body.wrapper {
    padding-inline: unset;
  }
}
.header__items {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.header__logo, .header__world {
  background: rgb(68, 82, 93);
  background: linear-gradient(180deg, rgb(68, 82, 93) 0%, rgb(103, 114, 123) 50%, rgb(68, 82, 93) 100%);
  border-radius: 0 0 0.5rem 0.5rem;
}
.header__logo a, .header__world a {
  color: inherit;
  text-decoration: none;
}
.header__logo {
  padding: 1rem;
}
.header__world {
  display: flex;
  height: fit-content;
  gap: 10px;
  align-items: center;
  padding: 1rem;
  color: var(--color-light);
}
.header__world a {
  color: inherit;
  text-decoration: none;
}
.header__world > span.activ {
  font-weight: 800;
}
@media (width <= 30.06125rem) {
  .header__world {
    display: none;
  }
}
.header .mob-world {
  display: none;
}
@media (width <= 30.06125rem) {
  .header .mob-world {
    display: flex;
  }
}
.header .mob-world {
  color: var(--color-light);
  flex-direction: column;
  padding: 0.9375rem;
  position: relative;
}
.header .mob-world__active {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  font-weight: 800;
}
.header .mob-world__list {
  flex-direction: column;
  background-color: var(--bg-color-min-block);
  padding: 0.625rem;
  border-radius: 0.5rem;
  margin: 0 0 0 2.25rem;
  color: var(--color-dark);
  display: none;
}
.header .mob-world__list a {
  text-decoration: none;
  color: inherit;
}
.header .mob-world__list.active {
  display: flex;
  position: absolute;
  top: 3.125rem;
}

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