/************************** CSS Resets 
*************************************/

*,
*::before,
*::after {
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  width: 100%;
  overflow-x: hidden;
  background-color: var(--var-body-bg-color);
  font-family: var(--font-muli);
  font-size: 1rem;
  line-height: 1.5;
  color: #000;
}

body,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
p,
input,
figure,
blockquote {
  margin: 0;
  padding: 0;
  color: #000;
  font-family: var(--font-muli);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-style: normal;
  line-height: 1.2;
  font-weight: 600;
}

button {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

table {
  width: 100%;
  border-collapse: collapse;
}

/************************** Typography 
*************************************/

h1 {
  font-size: 2.5rem; /* 40px */
}

h2 {
  font-size: 2.25rem; /* 36px */
}

h3 {
  font-size: 1.875rem; /* 30px */
}

h4 {
  font-size: 1.5rem; /* 24px */
}

h5 {
  font-size: 1.25rem; /* 20px */
}

h6 {
  font-size: 0.875rem; /* 14px */
}

p {
  font-size: 0.875rem; /* 14px */
  font-style: normal;
  font-weight: 500;
  line-height: 1.71429;
  letter-spacing: 0.14px;
  font-family: var(--font-muli);
}

@media screen and (max-width: 575px) {
  h1 {
    font-size: 1.625rem; /* 26px */
  }
  h2 {
    font-size: 1.5rem; /* 24px */
  }
  h3 {
    font-size: 1.375rem; /* 22px */
  }

  h4 {
    font-size: 1.25rem; /* 20px */
  }

  h5 {
    font-size: 1rem; /* 16px */
  }

  h6 {
    font-size: 0.875rem; /* 14px */
    line-height: 1.225;
  }
}
