/* Базовый сброс стилей */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Предотвращение горизонтального скролла */
html,
body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body {
  font-family: "Manrope", -apple-system, Roboto, Helvetica, sans-serif;

  color: #f7f7f7;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}
a:focus,
a:active,
a:focus-visible {
  outline: none;
  border: none;
}
a:-webkit-any-link:focus-visible {
  outline-offset: 0;
}

/* ===== КНОПКИ ===== */
.btn {
  color: #f7f7f7;
  padding: 34px 110px;
  background: #c20a38;
  border-radius: 10px;
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 120%;
  letter-spacing: -0.02em;
  border: none;
  white-space: nowrap;
  height: 94px;
}

.btn:hover {
  background: #a0083a;
}

/* ===== ТИПОГРАФИКА ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1rem;
}
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

@media (min-width: 1920px) {
  .container {
    max-width: 1660px;
  }
  h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
}

h2 {
  font-weight: 600;
  font-size: 64px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #0f2746;
}

h3 {
  font-weight: 500;
  font-size: 38px;
  line-height: 120%;
  letter-spacing: -0.02em;
}

p {
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 22px;
  line-height: 140%;
  letter-spacing: -0.02em;
}

}
@media (max-width: 1919px) and (min-width: 1440px) {
    .container {
    max-width: 1240px;
  }
  .btn {
    padding: 0 70px;
    height: 80px;
    font-size: 20px;
  }

  h2 {
    font-weight: 600;
    font-size: 42px;
    line-height: 120%;
    letter-spacing: -0.02em;
    color: #0f2746;
  }

  h3 {
    font-weight: 500;
    font-size: 28px;
    line-height: 120%;
    letter-spacing: -0.02em;
  }

  p {
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: -0.02em;
  }
}
@media (max-width: 1439px) and (min-width: 1024px) {
  .container {
    padding: 0 60px;
  }
  .btn {
    padding: 0 70px;
    height: 90px;
    font-size: 18px;
  }
  h2 {
    font-weight: 600;
    font-size: 42px;
    line-height: 120%;
    letter-spacing: -0.02em;
    color: #0f2746;
  }

  h3 {
    font-weight: 500;
    font-size: 28px;
    line-height: 120%;
    letter-spacing: -0.02em;
  }

  p {
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: -0.02em;
  }
}
@media (max-width: 1023px) and (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
      h2 {
    font-weight: 600;
    font-size: 42px;
    line-height: 120%;
    letter-spacing: -0.02em;
    color: #0f2746;
  }

  h3 {
    font-weight: 500;
    font-size: 28px;
    line-height: 120%;
    letter-spacing: -0.02em;
  }

  p {
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: -0.02em;
  }
}
@media (max-width: 767px) {
  .container {
    padding: 0 20px;
  }
      h2 {
    font-weight: 600;
    font-size: 38px;
    line-height: 120%;
    letter-spacing: -0.02em;
    color: #0f2746;
  }

  h3 {
    font-weight: 500;
    font-size: 28px;
    line-height: 120%;
    letter-spacing: -0.02em;
  }

  p {
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: -0.02em;
  }
}
@media (max-width: 375px) {
  .btn {
    padding: 0 70px;
    height: 90px;
    width: 100%;
    font-size: 18px;
  }

}
