@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] {
  fill: currentColor;
}

[stroke] {
  stroke: currentColor;
}

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

/**
 Удаляем все анимации и переходы для людей,
 которые предпочитают их не использовать
*/
@font-face {
  font-family: "Rodchenko";
  src: url("../fonts/Rodchenko.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
.rodchenko {
  font-family: "Rodchenko", serif;
}

:root {
  --wrapper: min(1200px, 100% - 100px);
  --font-family: "Roboto Slab", sans-serif;
  --bg-section-1: #07163C;
  --bg-section-2: #123F6C;
  --bg-section-3: #546678;
  --bg-section-4: #757854;
  --radius: 20px;
}

.wrapper {
  position: relative;
  width: var(--wrapper);
  margin-inline: auto;
}

.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;
  }
}

.section {
  position: relative;
}

.text-center {
  text-align: center;
}

.strong-600 {
  font-weight: 600;
}

html.is-lock {
  overflow: hidden;
}

html, body {
  color: #000;
}

body {
  background: #FBF2E9;
  display: flex;
  flex-direction: column;
  font-size: clamp(0.875rem, 0.8091216216rem + 0.2702702703vw, 1.125rem);
  font-family: var(--font-family);
  line-height: 1;
}
body::-webkit-scrollbar,
body ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
body::-webkit-scrollbar-thumb,
body ::-webkit-scrollbar-thumb {
  background: var(--bg-section-1);
}
body::-webkit-scrollbar-track,
body ::-webkit-scrollbar-track {
  background: var(--bg-section-4);
}
body.active {
  overflow: hidden;
}
body.active .header__mobile-btn span {
  background: var(--clr-golden);
}

main {
  flex-grow: 1;
}
main.main {
  padding-top: 0;
}

h1, .h1 {
  font-size: clamp(1.5rem, 1.1047297297rem + 1.6216216216vw, 3rem);
  font-weight: 600;
}

h2, .h2 {
  font-size: clamp(1.5rem, 1.3682432432rem + 0.5405405405vw, 2rem);
  color: var(--clr-golden);
}

h3, .h3 {
  font-size: clamp(1.375rem, 1.2761824324rem + 0.4054054054vw, 1.75rem);
  font-weight: 600;
}

h4, .h4 {
  font-size: clamp(1.125rem, 1.0591216216rem + 0.2702702703vw, 1.375rem);
}

a {
  display: inline-flex;
  color: inherit;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover {
  color: var(--clr-golden);
}

img {
  max-width: 100%;
  height: auto;
}

video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

ul:not([class]) {
  list-style: none;
  margin-left: 10px;
  padding: 0;
}
ul:not([class]) li::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: var(--clr-golden);
  border-radius: 50%;
  margin-right: 10px;
}

.btn {
  display: inline-block;
  border-radius: 100px;
  padding: 13px 24px;
  background: var(--clr-golden);
  color: var(--clr-black);
  font-size: clamp(0.875rem, 0.7432432432rem + 0.5405405405vw, 1.375rem);
  text-align: center;
  text-decoration: none;
  transition: background 0.25s;
}
.btn:hover {
  background: var(--clr-cream);
  color: var(--clr-black);
}

.radius {
  border-radius: var(--radius);
  overflow: hidden;
}

.breadcrumbs {
  display: flex;
  font-size: clamp(0.875rem, 0.8420608108rem + 0.1351351351vw, 1rem);
  color: #9D998D;
  margin-bottom: clamp(0.875rem, 0.8420608108rem + 0.1351351351vw, 1rem);
}
.breadcrumbs__item:not(:last-child) {
  position: relative;
  display: flex;
  align-items: center;
}
.breadcrumbs__item:not(:last-child)::after {
  content: "";
  display: inline-block;
  background: #9D998D;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  margin: 3px 8px 0;
}
.breadcrumbs__link {
  color: inherit;
}

.title-width-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.625rem, -0.0337837838rem + 2.7027027027vw, 3.125rem);
  text-align: center;
  text-wrap: balance;
  color: var(--clr-golden);
  font-size: clamp(1rem, 0.7364864865rem + 1.0810810811vw, 2rem);
  font-weight: 500;
  line-height: normal;
  margin-inline: auto;
  margin-block: clamp(2rem, 1.7694256757rem + 0.9459459459vw, 2.875rem);
}
.title-width-line::before, .title-width-line::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--clr-golden);
}

.hero {
  position: relative;
  display: flex;
  justify-content: center;
  font-size: 16px;
}
.hero__content {
  position: absolute;
  top: 140px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero__mainText {
  font-size: 20px;
  font-weight: 700;
  color: #7B0303;
  text-transform: uppercase;
}
.hero__title {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  color: #7C0707;
  font-family: Rodchenko;
  max-width: 820px;
  text-align: center;
  margin-inline: auto;
}
.hero__title span {
  position: relative;
  display: inline-block;
  rotate: -20deg;
  margin-inline: 10px;
  top: -4px;
}
.hero .row {
  flex-direction: column;
}
.hero .row:has(.col) {
  flex-direction: row;
}
.hero .row-2 {
  margin-left: 300px;
  max-width: 650px;
}
.hero .row-3 {
  gap: 280px 230px;
  margin-top: 20px;
  margin-left: 480px;
}
.hero .row-3 .col {
  max-width: 240px;
}
.hero .row-4 {
  margin-top: 100px;
  max-width: 485px;
}
.hero .row-title {
  font-weight: 700;
}
.hero .wrapper {
  gap: 0;
}

.header {
  --_row: 3;
  --gap: 50px;
  position: fixed;
  top: 0;
  padding: 40px 0;
  width: 100%;
  background: transparent;
  z-index: 99;
}
.header .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header.scrolled {
  background: linear-gradient(0, transparent 10%, #a77718);
}
.header__navi {
  display: flex;
  gap: var(--gap);
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 0;
  flex: 1;
}
.header__navi li {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-color);
  border-radius: var(--radius);
  color: #fff;
  text-align: center;
  padding: 10px;
  box-shadow: 4px 4px 5px 0 rgba(0, 0, 0, 0.25);
  width: calc((100% - var(--gap) * (var(--_row) - 1)) / var(--_row));
  margin: 0;
}
.header__navi-video {
  border: 2px solid;
  color: #BA0300 !important;
  background: #e7e6e4 !important;
}

.section-logos {
  margin-block: 200px;
}
.section-logos .logos {
  display: flex;
  justify-content: space-between;
}

.section-end {
  position: relative;
  display: flex;
  background: #757854;
  color: #fff;
  padding: 74px;
}
.section-end::before {
  position: absolute;
  top: -74px;
  left: 0;
  content: "";
  width: 100%;
  height: 74px;
  background: url(../img/end-line.svg) 50% 0;
}
.section-end .wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  gap: 30px 100px;
}
.section-end .end-text {
  width: 100%;
  font-weight: 700;
  font-size: 40px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 50px;
}

.arrow-back {
  display: flex;
  align-items: center;
  gap: 15px;
}
.arrow-back::before {
  content: url(../img/arrow-back.svg);
}

.arrow-top {
  display: flex;
  align-items: center;
  gap: 15px;
}
.arrow-top::before {
  content: url(../img/arrow-top.svg);
}

.swiper {
  top: var(--swiper-top, -80px);
  width: var(--swiper-width, 400px);
  flex-shrink: 0;
  pointer-events: all;
}
.swiper-slide {
  height: var(--height);
}
.swiper-right {
  order: 2;
}
.swiper .desc {
  display: none;
}
.swiper .img {
  display: flex;
  justify-content: center;
  align-items: end;
  height: 100%;
}

.swiper-text-container {
  --padding: 50px;
  position: relative;
  color: #fff;
  width: var(--swiper-text-container, "auto");
  background: var(--bg-color, #000);
  border-radius: var(--radius);
  padding-top: var(--swiper-text-container-top, var(--padding));
  padding-bottom: var(--padding);
  padding-left: var(--padding);
  padding-right: var(--padding);
  margin-top: calc(var(--swiper-text-container-top, 0) * -1 + 30px);
  transition: opacity 0.3s, transform 0.3s;
  align-self: end;
}
.swiper-text-container.arrow-left {
  margin-left: calc(var(--margin, 0) * -1);
  padding-left: calc(var(--margin, 0) + 30px);
}
.swiper-text-container.arrow-left .button-container {
  left: 0;
  margin-left: -70px;
}
.swiper-text-container.arrow-left .button-prev path {
  stroke: var(--bg-color);
}
.swiper-text-container.arrow-right {
  margin-right: calc(var(--margin, 0) * -1);
  padding-right: calc(var(--margin, 0) + 30px);
}
.swiper-text-container.arrow-right .button-container {
  right: 0;
  margin-right: -70px;
}
.swiper-text-container.arrow-right .button-next path {
  stroke: var(--bg-color);
}
.swiper-text-container .svg path {
  fill: #fff;
  stroke: #fff;
}

.swiper-text {
  position: relative;
  transition: opacity 0.3s, transform 0.3s;
  white-space: pre-line;
  align-content: center;
}
.swiper-text.text-hiding {
  opacity: 0;
  transform: translateY(20px);
}
.swiper-text.text-showing {
  animation: fadeInUp 0.5s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.button-container {
  position: absolute;
  bottom: 20px;
  display: inline-flex;
  gap: 60px;
  pointer-events: all;
}

.button-next,
.button-prev {
  display: inline-block;
  cursor: pointer;
  padding-block: 10px;
}

.button-next {
  transform: scale(-1, 1);
}

.section {
  position: relative;
  line-height: 1.4;
  margin-top: 100px;
  background: linear-gradient(180deg, #e7e6e4, transparent 800px);
}
.section::before {
  position: absolute;
  top: -65px;
  left: 0;
  content: "";
  width: 100%;
  height: 65px;
  background: url(../img/before-section.svg) 50%;
}
.section.no-before {
  margin-top: 0;
}
.section.no-before::before {
  display: none;
}
.section-1 {
  --bg-color: var(--bg-section-1);
}
.section-2 {
  --bg-color: var(--bg-section-2);
}
.section-3 {
  --bg-color: var(--bg-section-3);
}
.section-4 {
  --bg-color: var(--bg-section-4);
}

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

.static-text {
  text-wrap: pretty;
}
.static-text .title {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 15px;
}

.section-title {
  flex: 1 0 100%;
  font-weight: 700;
  font-size: 26px;
  margin-block: 30px;
  text-transform: uppercase;
}

.row {
  --_gap: 30px;
  --row-margin-top: 0;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: var(--_gap);
  margin-top: var(--row-margin-top, 0);
}
.row-column {
  flex-direction: column;
}
.row .col:has(.swiper) {
  display: flex;
  flex-grow: 1;
  align-self: end;
}
.row .col.col-100 {
  flex: 1 0 100%;
}
.row .col--right {
  margin-left: auto;
}
.row .col-text {
  width: var(--col-text-width, 400px);
}
.row .col-gallery {
  margin-top: var(--col-slider-top, 0);
  pointer-events: none;
}
.row .col-gallery.gallery-right .swiper {
  order: 2;
}
.row .col-gallery.gallery-fix {
  max-width: calc(100% - var(--col-text-width, 400px) - var(--_gap));
}

.section-1 {
  background: transparent;
  margin-top: -300px;
}
.section-1::before {
  display: none;
}
.section-1 .row-4 {
  margin-bottom: 50px;
}
.section-1 .row-4 .content {
  background: url(../img/s1r4-1.png) 50% 50%/cover no-repeat;
  padding: 50px;
  margin-inline: -100px;
  padding-inline: 100px;
}
.section-1 .row-4 .title {
  font-weight: 700;
}
.section-1 .row-4 .right {
  text-align: right;
  margin-top: 20px;
  margin-left: auto;
  font-weight: 700;
}
.section-1 .row-4 ol {
  column-count: 2;
  column-gap: 40px;
}
.section-1 .row-4 ol li {
  break-inside: avoid;
  margin-bottom: 10px;
}

.modal-video {
  position: fixed;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: var(--radius);
  padding: 50px;
  max-width: 1200px;
  box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: 0.25s;
  z-index: 99;
  pointer-events: none;
}
.modal-video.is-active {
  top: 50%;
  opacity: 1;
  pointer-events: inherit;
}
.modal-video .close {
  position: absolute;
  right: 0;
  top: 0;
  padding: 30px;
  background: #fff;
  border-radius: var(--radius);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  z-index: 50;
  transition: 0.6s;
}
.overlay:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.4;
  z-index: -1;
}
.overlay.is-active {
  pointer-events: inherit;
  opacity: 1;
}

video {
  border-radius: var(--radius);
  /* Скрываем элементы управления громкостью */
  /* Для Firefox */
  /* Общие стили для всех браузеров */
}
video::-webkit-media-controls-settings-button {
  display: none !important;
}
video::-webkit-media-controls-volume-slider, video::-webkit-media-controls-mute-button {
  display: none !important;
}
video::-moz-range-track {
  display: none !important;
}
video::-webkit-media-controls-panel {
  -webkit-appearance: none;
}

.video-label {
  position: fixed;
  right: 0;
  top: 50%;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: #F12525;
  border-radius: 50px 0 0 50px;
  color: #fff;
  transition: 5s;
  z-index: 6;
}