@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500&display=swap');

*,
*:after,
*:before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  list-style-type: none;
}

ul,
li {
  list-style: none;
}

:root {

  --gray-1: #AFAB9F;

  --black-1: #010101;

  --white-1: #faf8f5;


  --support-success: #0bb07b;
  --support-warning: #ffad0d;
  --support-error: #f03d3d;

  --H1-size: 4rem;
  --H2-size: 2.5rem;
  --H3-size: 1.625rem;
  --H4-size: 1.125rem;
  --P-size: 1rem;
  --P_BOLD-size: 1rem;

  --H1-weight: 700;
  --H2-weight: 700;
  --H3-weight: 700;
  --H4-weight: 600;
  --P-weight: 400;
  --P_BOLD-weight: 500;
}

h1, .h1 {
  font-size: calc(1.375rem + 1.5vw);
}

@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 3.5rem;
  }
}

h2, .h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 2rem;
  }
}

h3, .h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 1.75rem;
  }
}

h4, .h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 1.5rem;
  }
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}


