<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html, body {
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
    font-family: "proxima-nova", sans-serif;
}


h1 {
	font-family: "franklin-gothic-urw", sans-serif;
	font-weight: bold;
}

h2, h3, h4, h5, h6 {
	font-family: "proxima-nova", sans-serif;
	font-weight: bold;
}

p {
	font-size: 1.25em;
	margin-top:25px
}

header .nav {
	background-color: #fff;
	border-bottom: 3px solid #a31c48;
}

header .row {
	margin: 0;
	padding: 0;
}

header .brand {
	margin: 10px 0;
	text-align: center;
}

header img {
	height: 75px;
	margin: 0;
	padding: 0;
}

header .social {
	margin: 8px 0 10px;
	line-height: 75px;
	font-size: 1.5rem;
	text-align: right;
}

header .social a {
	margin-left: 10px;
	margin-right: 10px;
}

header .social a.social-more {
	font-size: 1.15rem;
}

header .social a.social-facebook {
	color: #3b5998;
}

header .social a.social-twitter {
	color: #1da1f2;
}

.content-heading {
	text-align: center;
	margin-top: 3em;
	margin-bottom: 3.5em;
}

header .hero {
	padding: 3em 0;
	background-color:blue;
	background-image: url('../images/hero.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	z-index: 9;
	
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

header .hero .btn-danger {
	background-color: #a31c48;
}

header .hero .overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: -10;
	background-color: #000;
	opacity: .5;
}


header form {
	background-color: white;
	padding: 25px 0 35px;
	border: 1px solid #ccc;
	margin-top: 5%;
	margin-bottom: -10%;
	z-index: 25;
}

header {
	margin-bottom: 10%;
}

header .hero .hero-heading * {
	color: #fff;
	z-index: 25;
}

.complete a {
	text-decoration: none;
}

footer {
	border-top: 3px solid #d72e3d;
	background-color: #333;
	background-image: url('../images/pattern.jpg');
	margin-top: 3%;
	padding-top: 4%;
	padding-bottom: 6%;
	color: #fff;
	font-size: 12px;
}

footer a, footer a:active, footer a:focus {
	color: #fff;
	text-decoration: underline;
}

footer a:hover {
	color: #fff;
	text-decoration: none;
}

footer .footer-logo {
	padding-bottom: 3%;
}

footer .footer-logo img {
	height: 100px;
	max-width: 250px;
}

/* Start by setting display:none to make this hidden.
   Then we position it in relation to the viewport window
   with position:fixed. Width, height, top and left speak
   for themselves. Background we set to 80% white with
   our animation centered, and no-repeating */
.modal {
    display:    none;
    position:   fixed;
    z-index:    1000;
    top:        0;
    left:       0;
    height:     100%;
    width:      100%;
    background: rgba( 255, 255, 255, .8 ) 
                url('https://i.stack.imgur.com/FhHRx.gif') 
                50% 50% 
                no-repeat;
}

/* When the body has the loading class, we turn
   the scrollbar off with overflow:hidden */
body.loading .modal {
    overflow: hidden;   
}

/* Anytime the body has the loading class, our
   modal element will be visible */
body.loading .modal {
    display: block;
}




.hvr-underline-reveal:before {
	background: #9F0100;
}


/** heart rate dev **/
.heart-rate {
  width: 150px;
  height: 73px;
  position: relative;
  margin: 20px auto;
}

.fade-in {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  top: 0;
  right: 0;
  animation: heartRateIn 2.5s linear infinite;
}

.fade-out {
  position: absolute;
  width: 120%;
  height: 100%;
  top: 0;
  left: -120%;
  animation: heartRateOut 2.5s linear infinite;
  background: rgba(255, 255, 255, 1);
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
  background: -o-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
  background: -ms-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 80%, rgba(255, 255, 255, 0) 100%);
}

@keyframes heartRateIn {
  0% {
    width: 100%;
  }
  50% {
    width: 0;
  }
  100% {
    width: 0;
  }
}

@keyframes heartRateOut {
  0% {
    left: -120%;
  }
  30% {
    left: -120%;
  }
  100% {
    left: 0;
  }
}</pre></body></html>