/* Hide ctas in header */
header .cta { display: none; }

/* Intro. */
.intro {
    background: #553edc;
}
/* Header. */
header.minimal .logo {
    margin-right: 0;
    text-align: center;
    opacity: 0.5;
}

#hero-banner {
  display: none;
}

/* Headlines. */
.headlines {
    text-align: center;
    color: #fff;
    padding-top: 0;
}
.headlines h1 {
    color: #fff;
    font-weight: 300;
    font-size: 50px;
    line-height: 60px;
    margin: 0 0 30px;
}
.headlines h3 {
    font-size: 18px;
    color: #fff;
    margin: 0;
    font-weight: 400;
}

/* CTA sections. */
.intro .ctas {
    margin: 10px 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.intro .ctas section {
  flex: 1;
  margin: 20px;
  max-width: 500px;
}
.intro .ctas section.form {
  flex: 0.85;
}

@media only screen and (max-width: 900px) {
    .intro .ctas { flex-direction: column-reverse; }
    .intro .ctas section { width: 100%; margin: 20px 0; }
    .intro .ctas section.form { width: auto; max-width: 100%; }
}

/* Video. */
.video-btn {
  position: relative;
  display: block;
  cursor: pointer;
}
.video-btn:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: url("play-btn.21e48be45477.png");
  background-repeat: no-repeat;
  background-position: center;
}
.video-btn:hover:after {
  filter: brightness(1.5);
}
.thumbnail {
  width: 100%;
  border-radius: 5px;
  border: 3px solid #ccc;
  box-sizing: border-box;
  opacity: 0.6;
  filter: brightness(0.5);
}

/* Demo form. */
.form {
    width: 450px;
    background: white;
}

.form .form-control {
    width: 100%;
    margin-top: 3px;
    padding: 5px 10px;
    border: 1px solid #ccc;
}

.form .form-group {
    margin-top: 1em;
    margin-left: 2em;
    margin-right: 2em;
    margin-bottom: 1em;
}
.form .form-group ~ .form-group {
  margin-top: 0em;
}

.form button {
    width: 100%;
    margin: 10px 0;
    padding-top: 15px;
    padding-bottom: 15px;
    background: #337ab7;
    border: 1px solid rgba(0,0,0,0.15);
    box-shadow: #eee 5px 5px 5px;
    font-weight: 600;
    font-size: 18px;
}

.form button icon {
    display: inline-block;
    margin-right: 10px !important;
    margin-top: -2.5px !important;
}

.form_header {
    background-color: #24154F;
    color: #fff;
    font-size: 18px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
}

.form_subheader {
    background-color: #46337D;
    background-color: #46337D;
    color: #fff;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: center;
}

/* 2-column layout */
.col-2 {
    margin: 0 0 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;

}
.col-2 section {
    flex: 1;
    margin: 0 10px 20px 10px;
    border-radius: 5px;
    box-shadow: 0 0 6px 4px #d2d2d2;
    padding: 20px;
    background-color: white;
}
@media(max-width: 768px) {
  .col-2 {
      flex-direction: column;
  }
  .col-2 section {
      margin-left: 0;
      margin-right: 0;
  }
}

/* side box */
section.aside {
    flex: 0.65;
}
section.aside h2 {
    margin-bottom: 10px !important;
}
section.aside h3 {
    font-size: 20px;
    margin: 0 0 20px;
    font-weight: 500;
    color: #666;
}
section.aside .logo {
    max-width: 100%;
}

/* fancy title */
.fancy-title {
  font-size: 25px;
  text-transform: uppercase;
  color: #838a92;
  font-weight: normal;
  letter-spacing: 3px;
  text-align: center;
  padding: 0;
  margin: 30px 0;
}


/* 3-box layout */
.box-3 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  padding: 0 0 10px 0;
}
@media(max-width: 768px) {
  .box-3 {
      flex-direction: column;
  }
}
.box-3 section {
  background: #f2f2f2;
  border-radius: 4px;
  border: 1px solid #ddd;
  box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.15);
  margin: 0 50px 0 0;
  padding: 25px 20px;
  box-sizing: border-box;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  text-align: left;
}
@media(max-width: 768px) {
  .box-3 section {
      width: 100%;
      margin: 0 0 30px;
  }
}
.box-3 section:last-of-type {
    margin-right: 0px;
}

.box-3 section h3 {
  margin: 0 0 20px;
  color: #333;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}
.box-3 section p {
  text-align: left;
  margin: 0 0 15px;
}


/* Fancy bullets */
main ul {
    padding: 0;
    position: relative;
    margin-left: 5px;
}

main ul li {
    list-style: none;
    margin: 0 0 10px 20px;
    padding: 0 0 0 0px;
}

main ul li:before {
    left: 0px;
    display: inline-block;
    position: absolute;
    font-family: "FontAwesome";
    content: "\f0da";
    color: #553edc;
}
main ul.checklist li:before {
    content: "\f00c";
    color: #373;
}

input[readonly] {
    opacity: 0.75;
}

#reason.focused:focus {
    border: 1px solid red;
    outline: none;
}

/* Tables */
table {
  margin: 0;
  width: 100%;
  border-spacing: 5px;
  border-collapse: separate;
}
table h3 { margin: 5px 0; }
table td {
  border: none;
}
table td:not(:first-child) {
  width: 15%;
}
table tbody td {
  padding: 10px;
  background: #f0f0f0;
}

@media screen and (max-width: 500px) {
    .splash-container .wrap {
        padding: 0 10px;
    }
    h3 {
        font-size: 12px;
    }
    table tbody td {
        padding: 5px;
        font-size: 12px;
    }
}
@media screen and (max-width: 370px) {
    .center {
        padding: 0;
    }
    .splash-container .wrap {
        padding: 0 !important;
    }
}
