html, body {
  width: 95%;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  margin:auto;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
@media (min-width: 992px) {
  body {
      width: 970px;
  }
}
@media (min-width: 1200px) {
  body {
      width: 1170px;
  }
}
header {
 background-image: url('/assets/header-menu.png');
 background-repeat: no-repeat;
 background-size: contain;
 background-position: right;
}
.row {
  display: flex;
  flex-direction: row;
}
.container {
  display: flex;
  flex-direction: column;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.left {
  justify-content: left;
}
.center {
  justify-content: center;
}
.logo {
  flex-shrink: 1;
}
.main {
  flex-grow: 1;
}

.content {
  font-size: 16px;
  line-height: 1.5;
}
.content ul, .content ol {
    padding-left: 2em;
}

.content p, .content ul, .content ol, content dl {
    margin-top: 0;
    margin-bottom: 16px;
}

.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;

}
.half {
  flex-grow: 1;
  max-width: 50%;
}
@media (min-width: 768px) {
    .lead {
    font-size: 21px;
  }
}
.content a, .content a:visited, .content a:active, .content a:hover {
  text-decoration: none;
  color: black;
  text-decoration: underline;
}

.call-to-action {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  text-decoration: none;
  background: transparent;
}
.spaced > * {
  margin-left: 1em;
  margin-right: 1em;
}

.green {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}

.green:hover {
  background-color: #218838;
  border-color: #1e7e34;
}

.blue {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.blue:hover {
  background-color: #0069d9;
  border-color: #0062cc;
}
.lightblue {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.lightblue:hover {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
}
.yellow {
  color: #fff;
  background-color: #ffc107;
  border-color: #ffc107;
}

.yellow:hover {
  background-color: #e0a800;
  border-color: #d39e00;
}

hr, footer {
  margin-top: 20px;
  margin-bottom: 20px;
  border: none;
  border-top: 1px solid #eee;
  width: 100%;
}
hr {
  height: 0;
}  
footer {
  font-size: 10px;
  justify-content: center;
  display: flex;
}

.hidden {
  display: none;
}


video, .shadow {
	margin-bottom: 2em;
	margin-left: auto;
	margin-right: auto;
  max-width: 100%;
	display: block;
	border: 1px solid #777;
	-webkit-box-shadow: 0 10px 6px -6px #777;
	-moz-box-shadow: 0 10px 6px -6px #777;
	box-shadow: 0 10px 6px -6px #777;
}
