* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  background: #fff;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #273657;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.landing {
  width: 100%;
}

.hero {
  width: 100%;
  line-height: 0;
  background: transparent;
  overflow: hidden;
}

/* Баннеp никогда не растягивается по высоте: исходное соотношение сторон сохраняется. */
.hero__image {
  display: block;
  width: 100%;
  max-width: 1680px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  object-position: center top;
}

.content {
  width: 100%;
  background: #fff;
}

.content__inner {
  width: min(100% - 180px, 1190px);
  margin: 0 auto;
  padding: clamp(32px, 4.2vw, 48px) 0 clamp(30px, 3.3vw, 38px);
}

h1 {
  margin: 0 0 clamp(38px, 5.4vw, 62px);
  color: #cf2028;
  font-size: clamp(30px, 3.75vw, 43px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -1.2px;
}

p {
  margin: 0 0 clamp(28px, 3.65vw, 42px);
  font-size: clamp(17px, 2.43vw, 28px);
  line-height: 1.28;
  letter-spacing: -0.35px;
}

.lead {
  margin-bottom: clamp(38px, 4.8vw, 55px);
}

.lead strong {
  font-weight: 800;
}

.event-date {
  display: flex;
  flex-direction: column;
  margin-bottom: clamp(30px, 3.75vw, 43px);
  font-size: clamp(17px, 2.43vw, 28px);
  line-height: 1.25;
}

.event-date strong {
  color: #cf2028;
  font-size: clamp(24px, 3.13vw, 36px);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 2px;
}

.event-date span {
  font-weight: 700;
}

.notes {
  margin-top: clamp(34px, 4.5vw, 52px);
  margin-bottom: clamp(45px, 5.4vw, 62px);
  font-size: clamp(15px, 1.91vw, 22px);
  line-height: 1.28;
}

.support {
  margin: 0;
  color: #cf2028;
  font-size: clamp(15px, 1.91vw, 22px);
  font-weight: 800;
  line-height: 1.2;
}

@media (max-width: 700px) {
  .content__inner {
    width: calc(100% - 40px);
    padding-top: 30px;
  }

  .lead {
    white-space: normal;
  }

  p {
    margin-bottom: 30px;
  }

  .notes {
    margin-top: 36px;
    margin-bottom: 42px;
  }
}

@media (min-width: 1681px) {
  .hero {
    background: #172f69;
  }
}
