* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
	font-family: 'PoppinsRegular', sans-serif;
  background: #ececec;
  color: var(--primary-color);
}
a {
  text-decoration: none;
  color: inherit;
}
.text-center{
  text-align: center;
}
.container {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'PoppinsExtraLight', sans-serif;
	font-weight: 300;
	margin: 0 0 5px;
	letter-spacing: 1px;
}

p {
  font-size: 13px;
  line-height: 1.5;
  margin: 0 0 25px;
}
/* ================================================================ *\
	Police
\* ================================================================ */

@font-face {
  font-family: "PoppinsLight";
  src: url('../fonts/Poppins-Light.ttf');
}
@font-face {
  font-family: "PoppinsThin";
  src: url('../fonts/Poppins-Thin.ttf');
}
@font-face {
font-family: "PoppinsExtraLight";
src: url('../fonts/Poppins-ExtraLight.ttf');
}
@font-face {
  font-family: "PoppinsRegular";
  src: url('../fonts/Poppins-Regular.ttf');
}