* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

button {
  cursor: pointer;
  transition: all 0.4s ease;
}

button,
input,
textarea {
  outline: none;
}

:root {
  --second-family: "Space Grotesk", sans-serif;
  --font-family: "Inter", sans-serif;
  --third-family: "Consolas"
}

.page-title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: clamp(30px, 3.5vw, 52px);
  color: #101828;
  text-align: center;
  margin-bottom: 10px;
}

.page-subtitle {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 163%;
  text-align: center;
  color: #4a5565;
  max-width: 60%;
  margin: auto;
}

.section-title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 30px;
  line-height: 100%;
  text-align: center;
  color: #101828;
  margin-bottom: 12px;
}


.section-subtitle {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: #4a5565;
  margin-bottom: 40px;
}

.section-button {
  position: relative;
  border-radius: 50px;
  padding: 12px 40px 12px 24px;
  background: #5089a1;

  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: #fff;
  border: none;

  display: flex;
  align-items: center;
  gap: 10px;
}

.section-button svg {
  position: absolute;
  right: 18px;
  transition: 0.3s;
}

.section-button:hover svg {
  right: 14px;
}


@media (max-width: 900px) {
  .page-subtitle {
    max-width: 90%;
  }
}