/* ==========================================================
   PRIMEVAULT DESIGN SYSTEM
   Typography
========================================================== */

/* ==========================================================
   FONT IMPORT
========================================================== */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

/* ==========================================================
   BODY
========================================================== */

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-primary);
}

/* ==========================================================
   HEADINGS
========================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Manrope", sans-serif;
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.2;
}

/* ==========================================================
   H1
========================================================== */

h1 {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -2px;
}

/* ==========================================================
   H2
========================================================== */

h2 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -1px;
}

/* ==========================================================
   H3
========================================================== */

h3 {
  font-size: 36px;
}

/* ==========================================================
   H4
========================================================== */

h4 {
  font-size: 30px;
}

/* ==========================================================
   H5
========================================================== */

h5 {
  font-size: 24px;
}

/* ==========================================================
   H6
========================================================== */

h6 {
  font-size: 20px;
}

/* ==========================================================
   PARAGRAPH
========================================================== */

p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.8;
}

/* ==========================================================
   LINKS
========================================================== */

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

/* ==========================================================
   SMALL
========================================================== */

small {
  font-size: 14px;
  color: var(--text-light);
}

/* ==========================================================
   STRONG
========================================================== */

strong {
  font-weight: 700;
}

/* ==========================================================
   BUTTON TEXT
========================================================== */

button {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
}

/* ==========================================================
   INPUTS
========================================================== */

input,
textarea,
select {
  font-family: "Inter", sans-serif;
  font-size: 15px;
}

/* ==========================================================
   TEXT SELECTION
========================================================== */

::selection {
  background: var(--primary);
  color: #ffffff;
}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 992px) {
  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 28px;
  }

  p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }
}
