@charset "utf-8";
/* CSS Document */

.page-section .page-section-heading {
  font-size: 1.25rem;
  line-height: 1rem;
}
@media (min-width: 992px) {
  .page-section .page-section-heading {
    font-size: 2rem;
    line-height: 1.5rem;
  }
}

h2{
	margin-top: 1em;
	margin-bottom: 1em;
}

h1 {
	position: relative;
	color: #333;
	text-shadow: 0 0 2px white;
	background: #e0f3ff;
	z-index: -4;
	border-radius: 0 10px 10px;
	margin-top: 1em;
	letter-spacing: 20px;
}

h1:before {
  content: "";
  position: absolute;
  background: #9de5ff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  top: 50%;
  left: -15px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
}