@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body {
  position: relative;
  overflow-x: hidden;
  font-size: 10px;
  font-family: 'Montserrat', sans-serif;
  padding: 0;
  margin: 0;
}

body {
  background-color: #fff;
  color: #484444;
  font-size: 16px;
  
}
.container{
  max-width: 1200px;
  padding: 10px 10px 20px;
  margin: 0 auto;
}
h1{
    margin: 20px 0px 20px;
}
h2{
  font-weight: 400;
  margin-bottom: 20px;
}
p,p strong{
    margin-bottom: 10px;
    line-height: 130%;
}
p strong{
    font-size: 16px;
}
a {
    font-weight: 700;
    color: #484444;
}
ul{
  list-style: none;
  margin-bottom: 20px;
  padding: 0;
}
ul li:last-child p {
  margin-bottom: 0;

}
ul.with-circle {
  padding-left: 20px;
  list-style-type: circle;
  list-style: circle;
  margin-left: 1em;
}
ul.with-circle li{
  list-style: circle;
  list-style-type: circle;
  padding-left: 10px;
  list-style: disc;
}
ul.with-circle li::marker{
  color: #000;
}