.header {
  overflow: hidden;
}
.header--main-page {
  height: max(900px, min(100vh, 1000px));
}
@media (max-width: 424px) {
  .header--main-page {
    height: 700px;
  }
}
.header__container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 90px;
  height: 100%;
}
.header__menu-switcher {
  position: absolute !important;
  right: 30px;
  top: 30px;
}
.header__navigation {
  align-self: center;
  padding-top: 40px;
}
@media (max-width: 767px) {
  .header__navigation {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .header__navigation > .navigation__list {
    padding-top: 60px;
    position: fixed;
    flex-direction: column;
    gap: 40px;
    width: 320px;
    left: -320px;
    z-index: 999;
    background-color: #262121;
    top: 0;
    bottom: -200px;
  }
  .header__navigation > .navigation__list--opened {
    left: 0;
  }
}
.header__body {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1023px) {
  .header__body {
    flex-direction: column-reverse;
    gap: 70px;
  }
}
.header__content {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 101px;
}
@media (max-width: 1439px) {
  .header__content {
    width: 55%;
    gap: 150px;
  }
}
@media (max-width: 424px) {
  .header__content {
    width: 100%;
    gap: 200px;
  }
}
.header__text {
  max-width: 316px;
  align-self: center;
}
.header__main-title {
  text-shadow: 0px 0px 15px rgba(255, 57, 57, 0.31);
  font-family: Outfit;
  font-size: 108px;
  line-height: 100%;
  letter-spacing: 5.4px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 1023px) {
  .header__main-title {
    font-size: 80px;
  }
}
@media (max-width: 424px) {
  .header__main-title {
    font-size: 60px;
  }
}
.header__main-subtitle {
  margin-top: -12px;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 100%; /* 24px */
  letter-spacing: -0.48px;
}
@media (max-width: 424px) {
  .header__main-subtitle {
    font-size: 20px;
    margin-top: -10px;
  }
}
.header__hero {
  z-index: -2;
  bottom: 100px;
  position: absolute;
  width: 48%;
  right: 70px;
}
@media (max-width: 1023px) {
  .header__hero {
    width: 70%;
    right: -100px;
  }
}
@media (max-width: 767px) {
  .header__hero {
    width: 100%;
    bottom: 150px;
  }
}
@media (max-width: 424px) {
  .header__hero {
    width: 150vw;
    bottom: 100px;
    opacity: 0.7;
  }
}
.header__hero::before {
  content: "";
  position: absolute;
  bottom: -70px;
  height: 70px;
  left: 40px;
  right: 30px;
  border-radius: 8px;
  background: rgba(255, 57, 57, 0.31);
  box-shadow: 0px 0px 30px 0px rgba(255, 57, 57, 0.31);
}

.navigation__list {
  transition: all 0.8s cubic-bezier(0.075, 0.82, 0.165, 1);
  display: flex;
  gap: 70px;
  align-items: center;
}
.navigation__link {
  color: #FAFAFA;
  transition: all 0.2s ease-in;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.48px;
}
@media (hover: hover) {
  .navigation__link:hover {
    color: #FF3939;
    text-shadow: 0px 0px 15px rgba(255, 57, 57, 0.31);
  }
}
.navigation__link--active {
  color: #FF3939;
  text-shadow: 0px 0px 15px rgba(255, 57, 57, 0.31);
  text-decoration: underline !important;
}

.menu-switcher {
  position: relative;
  z-index: 1001;
  display: none;
  flex-direction: column;
  transition: gap 0.4s ease-in-out;
  gap: 8px;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-tap-highlight-color: transparent;
}
.menu-switcher__line {
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  transition: all 0.8s cubic-bezier(0.075, 0.82, 0.165, 1);
  width: 50px;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.menu-switcher__line:focus {
  outline: none !important;
}
.menu-switcher__line:nth-child(1) {
  top: 0;
}
.menu-switcher__line:nth-child(3) {
  bottom: 0;
}
.menu-switcher--opened {
  position: fixed !important;
}
.menu-switcher--opened .menu-switcher__line:nth-child(1) {
  transform: rotate(45deg);
  top: 11px;
}
.menu-switcher--opened .menu-switcher__line:nth-child(2) {
  transform: rotate(-45deg);
}
.menu-switcher--opened .menu-switcher__line:nth-child(3) {
  bottom: 11px;
  transform: rotate(45deg);
}
@media (max-width: 767px) {
  .menu-switcher {
    display: flex;
  }
}