body, html{
  width:100%;
  padding:0;
  margin:0;
  font-family: 'Arial', sans-serif;
  background-color: #EEE;
}

a {
  text-decoration: none;
}
/* Header */
.header {
  
}
/* - Banner */
.banner{
  width: 100%;
  height:350px;
  line-height: 350px;
  text-align: center;
  font-size: 4vw;
  font-family: cursive;
  color: #EEE;
  overflow: hidden;
  position: relative;
}

.banner video {
    position: absolute;
    left:0;
    top:0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.banner-content {
  position: absolute;
  z-index: 100;
  width: 100%;
  height: 100%;
}
.banner-content .bg{
  position: absolute;
  z-index: -1;
  width:100%;
  height:100%;
  background-color: #0A2463;
  opacity: .75;
}
/*  - Navigation */

nav {
  padding:0;
  margin:0; 
  background-color: #FB3640;
}
nav ul {
  display: flex;
  margin:0;
  padding:0;
  width:70%;
  min-width: 1024px;
  margin:auto;
}
nav ul li{
  text-align: center;
  display: inline-block;
  flex: 1;
  background-color: #FB3640;
  color: #EEE;
  font-size: 1.5em;
  padding: .75em;
  text-transform: uppercase;
  font-weight: bold;
}
nav ul li a{
  color: #E2E2E2;
}
nav ul li:hover  {
  background-color:#FB5A62;
}
nav ul li:active  {
  background-color:#CE2D35;
}

/* Content */
.content{
  width:70%;
  margin:auto;
  font-size: 1.25em;
  min-width: 1024px;
}

.content p {
  line-height: 1.25em;
}

.split-image{
  display: flex;
  height:400px;
  width:100%;
  margin: auto;
}
.split-image .left {
  flex:5
}
.split-image .right {
  flex:2
}
.split-image img {
  object-fit: cover;
  object-position: center center;
  width:100%;
  height: 100%;
}
.statement{
  margin-top:40px;
}

.signed{
  font-weight: normal;
}
.signature{
  font-family: 'Times', serif;
}

.split-view{
  display: flex;
}
.split-view .left {
  flex:1;
  min-width: 0;
}
.split-view .left img {
  width:100%;
  height:100%;
  object-fit: cover;
  object-position: center center;
}

.split-view .right {
  flex:1;
  padding: 4em;
  background-color: #0A2463;
  color:#eee;
}
.split-view table td{
  color:#eee;
}

.form-group{
  margin: 1em 0; 
  display: flex;
}
.form-group * {
  align-self: center;
}
.form-group label{
  font-size: .9em;
  flex: 1;
}
.form-group input {
  flex: 2;
  padding:5px;
}
.btn-container{
  text-align: center;
}
.submit-btn{
  margin-top:2em;
  padding: .4em 1em;
  font-size: 1.25em;
  border: 0;
  border-radius: 10px;
  background-color: #19A058;
  color: #eee;
  text-transform: uppercase;
}

.slideshow {
  height: 75%;
  text-align: center;
  background-color:#0A2463;
  padding: 20px;
  color:#eee
}
.slideshow h1{
  margin: 0;
  margin-bottom: 20px;
}
.mySlides {
  max-height: calc(100% - 32px - 20px - 20px);
  margin: auto;
}

/* Footer */

.footer{
  width:100%;
  background-color: #19A058; 
  padding: 1em 0;
}

.contact-info {
  text-align: center;
  color: #eee;
}

.contact-info  a {
  color: #eee;
  text-decoration: underline;
}

.contact-info h2{
  text-transform: uppercase;
}

