html, body {
  margin: 0;
  padding: 0;
  background: #000;
}

.main {
  width: 100vw;
  background: #000;
  box-sizing: border-box;
}

.menu {
  width: 100vw;
  height: 77px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
}
.menu-logo {
  width: 150px;
  max-width: 60vw;
  height: auto;
  aspect-ratio: 414/121;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.main-header-wrap {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}
.main-header-img {
  width: 100vw;
  max-width: 1242px;
  height: auto;
  aspect-ratio: 1242/771;
  display: block;
  margin: 0 auto;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.main-header-wrap::after {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.00) 0%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
  pointer-events: none;
}

.main-content {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 600px;
  margin: -60px auto 0 auto;
  padding: 0 16px 0 16px;
  box-sizing: border-box;
}

.main-content::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,0.00) 0%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}

.main-title {
  color: #ffffff;
  font-family: 'TT Fors Trial Light', Arial, sans-serif;
  font-weight: 300;
  font-size: 11.7vw;
  line-height: 1.32;
  text-align: left;
  margin: 0 0 32px 0;
  width: 100%;
  letter-spacing: 0.01em;
}

.main-subtitle {
  color: #ffffff;
  font-family: 'TT Fors Trial Regular', Arial, sans-serif;
  font-weight: 400;
  font-size: 7vw;
  line-height: 1.38;
  text-align: left;
  width: 100%;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.main-header-img-desktop {
  display: none;
}

@media (min-width: 600px) {
  .main-title {
    font-size: 180px;
  }
  .main-subtitle {
    font-size: 110px;
  }
  .main-logo-on-header {
    width: 260px;
    top: 48px;
    max-width: 414px;
  }
}
@media (min-width: 1024px) {
  .main {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .main-header-wrap {
    display: block;
    width: auto;
    text-align: initial;
  }
  .main-header-img {
    display: block;
    width: 900px;
    max-width: 90vw;
    margin: 0 auto;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  }
  .main-content {
    align-items: flex-start;
    margin: -100px auto 0 auto;
    text-align: left;
    max-width: 1200px;
    padding: 0 40px 0 40px;
  }
  .main-title {
    font-size: 65px;
    font-weight: 300;
    text-align: left;
    line-height: 1.2;
  }
  .main-subtitle {
    font-size: 43px;
    font-weight: 300;
    text-align: left;
    line-height: 1.3;
  }
}

/* Убираю скрытие логотипа и хедера */
.main-header-wrap, .main-header-img { display: initial !important; } 

/* Удаляю .main-logo-on-header */
.main-logo-on-header { display: none !important; } 