*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 20px;
    scroll-behavior: smooth;
}


body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.5;
    color: #333;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 1rem;
    /*background-color: #fefffe;*/
}

sup {
  font-size: 9px;
  font-weight: normal;
  top: -.9em !important;
}

p {
    font-size: 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: #111;
  margin-bottom: 0.75rem;
}


h1 { font-size: clamp(2rem, 4vw + 0.5rem, 3rem); } 
h2 { font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem); }
h3 { font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw + 0.3rem, 1.5rem); }
h5 { font-size: clamp(1rem, 1.5vw + 0.2rem, 1.25rem); }
h6 { font-size: 1rem; }



@media (max-width: 767px) {
  p {
    font-size: 18px;
    line-height: 1.6rem;
  }

}

section {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

@media (max-width: 480px) {

.container {
    padding: .5rem !important;
}

  body {
    font-size: 16px;
  }
  p {
    font-size: 16px;
  }
}

/*@media (min-width: 1024px) {
    .container {
        padding: 30px; 
    }
}
*/

footer {
  background: #f8f9fa;
  text-align: center;
  padding: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 0;
}

footer p {
  font-size: 16px;
}

