@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
}

.header {
  padding-block: 14px;
  border-bottom: 2px solid #7171824e;
  display: flex;
  justify-content: center;
  width: 100%;
}

.header-content {
  display: flex;
  justify-content: space-between;
  max-width: 1008px;
  width: 100%;
  margin-inline: 14px;
}

.header-logo {
  font-size: 16px;
}

.header-back {
  border: none;
  background: none;
  font-size: 13px;
  color: #717182;
}

.main {
  display: flex;
  justify-content: center;
  margin-top: 42px;

  width: 100%; /* чтобы контейнер растянулся */
  padding-inline: 20px; /* чтобы текст не прилипал к краю на телефонах */
}

.main-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  max-width: 784px;
  width: 100%;
}

.main-title {
  font-size: 28px;
  font-weight: 400;
   background: linear-gradient(
    90deg,
    rgba(251, 44, 54, 1) 0%,
    rgb(243, 15, 251) 100%
  );
   -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.main-date {
  margin-top: 22px;
  font-size: 11px;
  color: #6a7282;
}

.first-title {
  margin-top: 20px;
  font-size: 20px;
}

.first-desc {
  font-size: 13px;
  color: #717182;
  margin-top: 15px;
}

.second-subtitle {
  font-size: 16.5px;
  margin-top: 20px;
}

.second-desc {
  font-size: 13px;
  margin-top: 15px;
  color: #717182;
}

ul {
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 4px;
}

li {
  font-size: 13px;
  color: #717182;
}

#cool {
  margin-top: 14px;
}

span {
  font-weight: 700;
}

.contacts {
  padding-block: 15px;
  padding-left: 15px;
  width: 100%;
  background-color: #f9fafb;
  margin-top: 14px;
}

.contact {
  font-size: 13px;
  color: #717182;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px; /* Добавьте этот отступ */

}

.btn {
  font-size: 12px;
  color: #fff;
  background: #fb2c36;
  background: linear-gradient(
    90deg,
    rgba(251, 44, 54, 1) 21%,
    rgba(246, 51, 154, 1) 100%
  );
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
}

.footer {
    display: flex;
    justify-content: center;
    padding-block: 28px;
    width: 100%;
    background-color: #101828;
    margin-top: 84px;
}

.footer-text {
    color: #99A1AF;
    font-size: 13px;
}