* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  outline: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  line-height: 1.4;
  font-family: var(--font-regular);
}
a {
  color: var(--theme-color-link);
  text-decoration: none;
  transition: 0.3s;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.nopad {
  padding: 0 !important;
}
.nomar {
  margin: 0 !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 145%;
  margin: 0;
}
h1 {
  font-size: 36px;
}
h2 {
  font-size: 30px;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 18px;
}
h5 {
  font-size: 14px;
}
h6 {
  font-size: 12px;
}
p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 145%;
  color: #333333;
}
::-webkit-input-placeholder {
  color: #333333;
}
:-moz-placeholder {
  color: #333333;
}
::-moz-placeholder {
  color: #333333;
}
:-ms-input-placeholder {
  color: #333333;
}
::selection {
  background-color: #3399ff;
  color: white;
}
::-webkit-selection {
  background-color: #3399ff;
  color: white;
}
::-moz-selection {
  background-color: #3399ff;
  color: white;
}
::-ms-selection {
  background-color: #3399ff;
  color: white;
}
::-o-selection {
  background-color: #3399ff;
  color: white;
}
img {
  max-width: 100%;
  border: 0;
}
a:hover,
a:focus {
  text-decoration: none;
}
li,
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
b,
strong {
  font-weight: normal;
  font-family: var(--font-bold);
}
