@charset "utf-8";
/* CSS Document */
* {
	box-sizing: border-box;
}
body {
	font-family: 'Lato', sans-serif;
	color: #000;
	font-size: 18px;
	font-weight: 400;
	line-height: normal;
}
body::selection{
	background-color: #e6e6e6;
	color: #000;
}
h1{
	font-size: 32px;
	font-weight:700;
	color: #ea2029;
}
h2{
	font-size: 30px;
	font-weight:700;
	color: #ea2029;
}
h3{
	font-size:28px;
	font-weight:700;
	color: #ea2029;
}
h4 {
	font-size: 24px;
	font-weight:700;
	color: #ea2029;
}
h5 {
	font-size: 20px;
	font-weight:700;
	color: #ea2029;
}
h6 {
	font-size: 19px;
	font-weight:700;
	color: #ea2029;
}
.wrapper {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 auto;
	text-align: center;
}
a{
text-decoration: none;
color: #fff;
}
a:hover{
text-decoration: underline;
color: #96d46a;
}
.callout {
  position: fixed;
  bottom: 35px;
  right: 20px;
  margin-left: 20px;
  max-width: 400px;
}
.callout span{
	display: block;
}
.callout a{
	color: #ea2029;
}

.callout-header {
  padding: 15px 15px;
  background: #555;
  font-size: 24px;
  color: white;
}

.callout-container {
  padding: 15px;
  background-color: #ccc;
  color: black
}

.closebtn {
  position: absolute;
  top: 5px;
  right: 15px;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

.closebtn:hover {
  color: lightgrey;
}
@media screen and (max-width: 992px){
	body {
		font-size: 18px;
	}
	h1{
		font-size: 24px;
	}
	h2{
		font-size: 22px;
	}
	h3{
		font-size:21px;
	}
	h4 {
		font-size: 20px;
	}
	h5 {
		font-size: 18px;
	}
	h6 {
		font-size: 18px;
	}
}
