/* CSS Colour Definitions */
.bg-black {
  background-color: #000000;
  color: #FFFFFF;
}

.bg-white {
  background-color: #FFFFFF;
}

.bg-white-off {
  background-color: #F8F8F8;
}

.bg-grey-dark {
  background-color: #444444;
  color: #FFFFFF;
}

.bg-grey-light {
  background-color: #AAAAAA;
}

.bg-grey-feint {
  background-color: #EEEEEE;
}

.bg-red {
  background-color: #FF0000;
}

.bg-green {
  background-color: #00FF00;
}

.bg-blue {
  background-color: #0000FF;
  color: #FFFFFF;
}

.bg-primary {
  background-color: #FF0000;
}

.bg-primary-dark {
  background-color: #cc0000;
}

.bg-primary-darker {
  background-color: #990000;
}

.bg-primary-light {
  background-color: #ff3333;
}

.bg-primary-lighter {
  background-color: #ff6666;
}

.bg-primary-complement {
  background-color: aqua;
}

.bg-secondary {
  background-color: #007BFF !important;
}

.bg-secondary-dark {
  background-color: #0062cc;
}

.bg-secondary-darker {
  background-color: #004a99;
}

.bg-secondary-light {
  background-color: #3395ff;
}

.bg-secondary-lighter {
  background-color: #66b0ff;
}

.bg-secondary-complement {
  background-color: #ff8400;
}

.colours {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 15px auto;
}
.colours .colour-swatch {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid #AAAAAA;
}

body, html {
  height: 100%;
  width: 100%;
}

body, h1, h2, h3, h4, h5, h6 {
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
}

.lead {
  font-size: 18px;
  font-weight: 400;
}

.header-top-bar {
  background-color: #FF0000;
  color: #FFFFFF;
  text-align: center;
  padding-block: 1em;
}
.header-top-bar a {
  color: #FFFFFF;
  text-decoration: none;
}
.header-top-bar a:hover {
  text-decoration: underline;
}
.header-top-bar p {
  margin-bottom: 0;
}

.navbar-landing {
  background-color: #FF0000;
}

.intro-social-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: space-around;
}

.intro-header {
  padding-top: 50px;
  /* If you're making other pages, make sure there is 50px of padding to make sure the navbar doesn't overlap content! */
  padding-bottom: 50px;
  color: #F8F8F8;
  background: url(../images/intro-background.jpg) no-repeat center center;
  background-size: cover;
  text-align: center;
}

.intro-message {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.intro-message > h1 {
  margin: 0;
  font-size: 5em;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.6);
}

.intro-divider {
  width: 400px;
  border-top: 1px solid #F8F8F8;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin-left: auto;
  margin-right: auto;
}

.intro-message > h3 {
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.6);
}

@media (max-width: 767px) {
  .intro-message {
    padding-bottom: 15%;
  }

  .intro-message > h1 {
    font-size: 3em;
  }

  ul.intro-social-buttons > li {
    display: block;
    margin-bottom: 20px;
    padding: 0;
  }

  ul.intro-social-buttons > li:last-child {
    margin-bottom: 0;
  }

  .intro-divider {
    width: 100%;
  }
}
.network-name {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
}

.content-section-a {
  background-color: #F8F8F8;
  padding: 50px 0;
}

.content-section-b {
  border-top: 1px solid #E7E7E7;
  padding: 50px 0;
}

.content-section-c {
  border-top: 1px solid #E7E7E7;
  border-bottom: 1px solid #E7E7E7;
  padding: 50px 0;
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading-spacer {
  border-top: 3px solid #E7E7E7;
  width: 200px;
  float: left;
}

.banner {
  padding: 100px 0;
  color: #F8F8F8;
  background: url(../images/banner-background.jpg) no-repeat center center;
  background-size: cover;
}

.banner h2 {
  margin: 0;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.6);
  font-size: 3em;
}

.banner ul {
  margin-bottom: 0;
}

.banner-social-buttons {
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: space-around;
}

footer {
  background-color: #F8F8F8;
  padding: 20px 0;
}
footer a {
  color: unset;
  text-decoration: none;
}
footer a:hover {
  color: #FF9600;
  text-decoration: underline;
}

p.copyright {
  margin: 15px 0 0;
}

@media (max-width: 1199px) {
  ul.banner-social-buttons {
    float: left;
    margin-top: 15px;
  }
}
@media (max-width: 767px) {
  .banner h2 {
    margin: 0;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.6);
    font-size: 3em;
    text-align: center;
  }

  ul.banner-social-buttons {
    text-align: center;
  }

  ul.banner-social-buttons > li {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 20px;
    padding: 0;
  }

  ul.banner-social-buttons > li:last-child {
    margin-bottom: 0;
  }

  p.copyright {
    text-align: center;
  }
}

/*# sourceMappingURL=landing-page.css.map */
