@charset "UTF-8";
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

a {
  outline: 0;
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: inherit;
}

img {
  max-width: 100%;
}

html {
  font-size: 16px;
}
@media (max-width: 1024px) {
  html {
    font-size: 14px;
  }
}

body {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 500;
  line-height: 1.4;
  color: #333333;
  background-color: #f1f1f1 !important;
  letter-spacing: 0.01rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
  font-family: "Literata", Georgia, Times, serif;
  line-height: 1.3;
  font-weight: 400 !important;
}

h1 {
  font-size: 2.25em;
}

h2 {
  font-size: 1.5em;
}

h3 {
  font-size: 1.75em;
}

h4 {
  font-size: 1.25em;
}

p {
  margin-bottom: 1em;
}

.grid .row {
  display: flex;
}
.grid .container {
  max-width: 1400px;
  margin: auto;
}
.grid [class*=col-] {
  flex: 1;
  padding: 1rem;
}
.grid .module {
  padding: 1rem;
  background-color: #ddd;
}
.grid .col-1 {
  flex: 0 0 8.3333333333%;
}
.grid .offset-1 {
  margin-left: 8.3333333333%;
}
.grid .col-2 {
  flex: 0 0 16.6666666667%;
}
.grid .offset-2 {
  margin-left: 16.6666666667%;
}
.grid .col-3 {
  flex: 0 0 25%;
}
.grid .offset-3 {
  margin-left: 25%;
}
.grid .col-4 {
  flex: 0 0 33.3333333333%;
}
.grid .offset-4 {
  margin-left: 33.3333333333%;
}
.grid .col-5 {
  flex: 0 0 41.6666666667%;
}
.grid .offset-5 {
  margin-left: 41.6666666667%;
}
.grid .col-6 {
  flex: 0 0 50%;
}
.grid .offset-6 {
  margin-left: 50%;
}
.grid .col-7 {
  flex: 0 0 58.3333333333%;
}
.grid .offset-7 {
  margin-left: 58.3333333333%;
}
.grid .col-8 {
  flex: 0 0 66.6666666667%;
}
.grid .offset-8 {
  margin-left: 66.6666666667%;
}
.grid .col-9 {
  flex: 0 0 75%;
}
.grid .offset-9 {
  margin-left: 75%;
}
.grid .col-10 {
  flex: 0 0 83.3333333333%;
}
.grid .offset-10 {
  margin-left: 83.3333333333%;
}
.grid .col-11 {
  flex: 0 0 91.6666666667%;
}
.grid .offset-11 {
  margin-left: 91.6666666667%;
}
.grid .col-12 {
  flex: 0 0 100%;
}
.grid .offset-12 {
  margin-left: 100%;
}
@media only screen and (max-width:850px) {
  .grid .row {
    flex-direction: column;
  }
  .grid [class*=offset-] {
    margin-left: 0;
  }
}

.nav-open {
  overflow: hidden;
}

main {
  max-width: 1600px;
  position: relative;
  margin: auto;
  background-color: white;
}

.jumbotron {
  background: #FAFAFA;
}

.hero {
  position: relative;
  display: table;
  width: 100%;
  height: 40vh;
  min-height: 450px;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.hero .center {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  padding: 2em;
  z-index: 10;
}
.hero .wrap {
  max-width: 800px;
  margin: auto;
}
.hero h1 {
  line-height: 1.3;
  font-weight: 300;
  margin-bottom: 1rem;
}
.hero p {
  opacity: 0.7;
}
.hero:after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: 1;
  background-image: linear-gradient(to bottom, #B0BEC5 0%, #455A64 100%);
  opacity: 0.75;
}

.cta {
  background-color: #007FFF;
  color: #fff;
  display: inline-block;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 500;
  padding: 0.75em 1em;
}
.cta:hover {
  color: white;
}

.secondary-cta {
  background: transparent;
  border: 2px solid #007FFF;
  color: #007FFF;
  display: inline-block;
  border-radius: 3px;
  text-decoration: none;
  padding: 1em 2em;
}

.sub-nav ul {
  text-align: center;
  line-height: 60px;
  box-shadow: 0 3px 6px rgba(120, 120, 120, 0.16);
}
.sub-nav ul li {
  display: inline-block;
  z-index: 10;
}
.sub-nav ul li:not(:last-child):after {
  margin: 0 1em;
  content: " •";
  display: inline-block;
}
@media (max-width: 768px) {
  .sub-nav {
    display: none;
  }
}

.donation-widget {
  background-color: #FAFAFA;
  padding: 5em 2em;
  text-align: center;
}
.donation-widget img {
  max-width: 100px;
  border-radius: 100%;
  display: block;
  margin: 0 auto 2rem;
  box-shadow: 0 3px 6px rgba(120, 120, 120, 0.16);
}
.donation-widget h2 {
  margin-bottom: 2rem;
}
.donation-widget h2 span {
  display: block;
  font-size: 0.7em;
  color: #aaaaaa;
  margin-top: 0.5em;
}
.donation-widget .inquiry {
  max-width: 500px;
  margin: auto;
  text-align: left;
}
.donation-widget .inquiry fieldset:not(:last-child) {
  margin-bottom: 1.5em;
}
.donation-widget .inquiry input {
  width: 100%;
  border: 1px solid #dddddd;
  padding: 1em;
}
.donation-widget .inquiry button {
  background-color: #007FFF;
  color: #fff;
  display: inline-block;
  border-radius: 3px;
  text-decoration: none;
  padding: 1em 2em;
}

.footer {
  padding: 2em;
  font-size: 0.8em;
  text-align: center;
  border-top: 1px solid #eee;
}
.footer li {
  display: inline-block;
}
.footer li:not(:last-child) {
  margin-right: 1.75em;
}
@media (max-width: 768px) {
  .footer li {
    display: none;
  }
  .footer li:first-of-type {
    display: block;
  }
}
.footer img {
  width: 13px;
  margin-right: 0.3em;
  vertical-align: middle;
  display: inline-block;
}

.navbar.bg-light {
  background-color: white;
}

/* Helpers */
.center {
  text-align: center;
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.embed-container iframe, .embed-container object, .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.nav-item:not(:last-of-type) {
  margin-right: 0.5rem;
}

.btn, .cta, .nav-link {
  font-weight: 600 !important;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
}

.home .header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
}
.home .header a {
  color: #fff;
}
.home .header .mobile-nav-btn {
  color: white;
}
.home .hero {
  height: 80vh;
  min-height: 600px;
  background-image: url(../images/hero-home-classroom.jpg);
}
.home .hero h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
}
.home .hero .anchor {
  position: absolute;
  left: 50%;
  bottom: 1.5em;
  transform: translateX(-50%);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 10;
}
.home .hero .anchor img {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  margin-left: 1em;
}
.home .promo-video {
  width: 100%;
  background: #aaa center center url(../images/promo-video-bg.jpg);
  background-size: cover;
  padding: 5%;
  display: flex;
  justify-content: center;
}
.home .promo-video iframe {
  transform: scale(1);
  transition: all 0.15s linear;
}
.home .promo-video iframe:hover {
  transform: scale(1.05);
}
.home .updates {
  background-image: linear-gradient(to bottom, #ffffff 0%, #fafafa 100%);
  display: table;
  width: 100%;
}
.home .updates .widget {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  width: 50%;
  padding: 4em 2em;
}
@media (max-width: 1024px) {
  .home .updates .widget {
    display: block;
    width: 100%;
  }
  .home .updates .widget:not(:last-child) {
    border-bottom: 1px solid #eee;
  }
}
.home .updates .widget h2 {
  margin-bottom: 1rem;
}
.home .updates .widget p {
  opacity: 0.5;
}
.home .updates .widget.student h2 {
  margin: 0;
}
.home .updates .widget.student span {
  display: block;
  font-size: 0.8em;
  opacity: 0.5;
  margin-top: 0.25em;
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
.home .updates .widget.student .image {
  display: inline-block;
  position: relative;
}
.home .updates .widget.student .image:after {
  position: absolute;
  top: -5px;
  right: 0;
  content: url(../images/icon-student-ribbon.svg);
  display: block;
  width: 20px;
}
.home .updates .widget.student .image img {
  display: block;
  max-width: 70px;
  margin: 0 auto 1rem;
  border-radius: 100%;
}
.home .updates .widget.newsletter img {
  display: block;
  max-width: 60px;
  margin: 0 auto 1rem;
}
.home .updates .widget.newsletter form {
  display: table;
  width: 100%;
}
.home .updates .widget.newsletter form input {
  display: inline-block;
  vertical-align: middle;
  width: 60%;
  height: 50px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  padding: 0 1em;
  background-color: #fff;
}
.home .updates .widget.newsletter form button {
  height: 50px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  display: inline-block;
  vertical-align: middle;
}
.home .story-primer {
  background-image: url(../images/story-primer-circles.svg);
  background-size: cover;
  background-positon: center right;
  background-color: #333333;
  color: #fff;
}
.home .story-primer .copy p {
  opacity: 0.8;
  margin-bottom: 2rem;
}
.home .story-primer .copy .text {
  max-width: 700px;
}
.home .story-primer .image img {
  display: block;
  max-width: 440px;
}
@media (max-width: 1024px) {
  .home .story-primer .image img {
    max-width: 100%;
  }
}

.about .hero {
  background-image: url(../images/hero-about.jpg);
}
.about .statements {
  padding: 6em 2em;
  text-align: center;
}
.about .statements article h2 {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  text-transform: uppercase;
  font-size: 1em;
  color: #7f8c8d;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}
.about .statements article p {
  font-family: "Literata", Georgia, Times, serif;
  font-size: 1.2em;
  max-width: 600px;
  margin: auto;
}
.about .statements article:not(:last-child):after {
  margin: 4em auto;
  content: "";
  display: block;
  width: 3em;
  height: 3px;
  opacity: 0.5;
  background-color: #7f8c8d;
}
.about .promo-video {
  width: 100%;
  background: #aaa center center url(../images/promo-video-bg.jpg);
  background-size: cover;
  padding: 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
}
.about .promo-video h1 {
  line-height: 1.3;
  font-weight: 300;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .about .promo-video h1 {
    font-size: 1.25em;
  }
}
.about .promo-video p {
  opacity: 0.85;
}
.about .promo-video iframe {
  margin-top: 1rem;
  transform: scale(1);
  transition: all 0.15s linear;
}
.about .promo-video iframe:hover {
  transform: scale(1.05);
}
.about .story article:nth-child(odd) {
  background-color: #fafafa;
}
.about .story article .wrap {
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .about .story article .wrap {
    flex-direction: column !important;
  }
}
.about .story article:nth-child(even) .wrap {
  flex-direction: row-reverse;
}
.about .story article .image {
  flex: 0 0 50%;
  padding: 4em;
}
.about .story article .image img {
  display: block;
  max-width: 100%;
}
@media (max-width: 1024px) {
  .about .story article .image {
    flex: 0 0 100%;
  }
}
.about .story article .copy {
  flex: 0 0 50%;
  padding: 4em;
  color: #7f8c8d;
}
.about .story article .copy p:first-of-type {
  color: #333333;
  font-size: 1.2em;
  font-family: "Literata", Georgia, Times, serif;
}
@media (max-width: 1024px) {
  .about .story article .copy {
    flex: 0 0 100%;
  }
}
.about .story-final .copy {
  padding: 6em 2em;
  max-width: 700px;
  margin: auto;
  font-size: 1.2em;
  font-family: "Literata", Georgia, Times, serif;
  text-align: center;
}
.about .story-final .copy p:last-of-type {
  margin: 0;
}
.about .team {
  text-align: center;
  padding: 6em 2em;
}
.about .team .group {
  max-width: 1000px;
  margin: auto;
}
.about .team .group:not(:last-child) {
  margin-bottom: 4em;
}
.about .team .team-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.about .team .team-list .item {
  width: 33.333%;
  padding: 2em;
}
@media (max-width: 1024px) {
  .about .team .team-list .item {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .about .team .team-list .item {
    width: 100%;
  }
}
.about .team .team-list .item img {
  width: 100%;
}
.about .team .team-list .item figcaption {
  font-family: "Literata", Georgia, Times, serif;
  font-size: 1.2em;
  margin-top: 1rem;
}
.about .team .team-list .item figcaption cite {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  display: block;
  font-size: 1rem;
  opacity: 0.5;
}
.about .team .team-list .item figcaption cite:last-of-type {
  font-size: 0.6em;
  margin-top: 0.4em;
}

.donations {
  background-color: #fafafa;
}
.donations .hero {
  background-image: url(../images/hero-donations.jpg);
}
.donations .options {
  max-width: 1000px;
  margin: auto;
  padding-bottom: 4em;
}
.donations .options .grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 2em 0;
}
.donations .options .grid figure {
  width: 50%;
  padding: 2em;
}
@media (max-width: 768px) {
  .donations .options .grid figure {
    width: 100%;
  }
}
.donations .options .grid figure .pad {
  background-color: white;
  padding: 2em;
}
.donations .options .grid figure .title {
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 30px;
  font-weight: 600;
  color: #007FFF;
}
.donations .options .grid figure .description {
  margin: 1em 0 1.5em;
  font-size: 1.4em;
  font-family: "Literata", Georgia, Times, serif;
}
.donations .options .grid figure .amount {
  color: #7f8c8d;
}
.donations .options .grid figure .amount span {
  font-size: 4rem;
  font-weight: 600;
  font-family: "Literata", Georgia, Times, serif;
  color: #333333;
}
.donations .options .grid figure .cta {
  width: 100%;
  border-radius: 0;
}
.donations .faq {
  background-color: white;
}
.donations .faq .container {
  max-width: 700px;
  margin: auto;
  padding: 4rem 2em;
}
.donations .faq h2 {
  text-align: center;
  margin: 0 0 4rem;
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  text-transform: uppercase;
  font-size: 1em;
  color: #7f8c8d;
  letter-spacing: 2px;
}
.donations .faq article h3 {
  font-size: 1.35em;
  margin-bottom: 0.5em;
}
.donations .faq article p {
  margin: 0;
  color: #7f8c8d;
}
.donations .faq article p:not(:last-child) {
  margin-bottom: 1em;
}
.donations .faq article:not(:last-of-type) {
  margin-bottom: 4em;
}

.students .hero {
  background-image: url(../images/hero-students-group.jpg);
}
.students .student-profiles {
  max-width: 1200px;
  margin: auto;
  padding: 6em 2em;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  text-align: center;
}
.students .student-profiles .item {
  width: 33.333%;
  padding: 2em;
}
@media (max-width: 1024px) {
  .students .student-profiles .item {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .students .student-profiles .item {
    width: 100%;
  }
}
.students .student-profiles .item img {
  width: 100%;
}
.students .student-profiles .item figcaption {
  margin-top: 1em;
}
.students .student-profiles .item figcaption span {
  opacity: 0.6;
}
.students .student-profiles .item .name {
  font-size: 1.5em;
}
.students .student-profiles .item .links {
  margin-top: 0.25em;
}
.students .student-profiles .item .links a {
  display: inline-block;
  text-decoration: underline;
  line-height: 32px;
  font-size: 0.8em;
  color: #aaa;
}
.students .student-profiles .item .links .button {
  display: inline-block;
}
.students .student-profiles .item .links .button button {
  display: block;
  background-color: #007FFF;
  color: #ffffff;
  border-radius: 3px;
  text-decoration: none;
  line-height: 32px;
  padding: 0 1em;
}

.blog {
  background: #FAFAFA;
}
.blog .header {
  background: #FFF;
}
.blog .container {
  margin-top: 50px;
}
.blog .updates {
  margin: 50px 0 0;
  background-image: linear-gradient(to bottom, #ffffff 0%, #fafafa 100%);
}
.blog .updates .widget {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  width: 50%;
  padding: 4em 2em;
}
@media (max-width: 1024px) {
  .blog .updates .widget {
    display: block;
    width: 100%;
  }
  .blog .updates .widget:not(:last-child) {
    border-bottom: 1px solid #eee;
  }
}
.blog .updates .widget h2 {
  margin-bottom: 1rem;
}
.blog .updates .widget p {
  opacity: 0.5;
}
.blog .updates .widget.student h2 {
  margin: 0;
}
.blog .updates .widget.student span {
  display: block;
  font-size: 0.8em;
  opacity: 0.5;
  margin-top: 0.25em;
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
.blog .updates .widget.student .image {
  display: inline-block;
  position: relative;
}
.blog .updates .widget.student .image:after {
  position: absolute;
  top: -5px;
  right: 0;
  content: url(../images/icon-student-ribbon.svg);
  display: block;
  width: 20px;
}
.blog .updates .widget.student .image img {
  display: block;
  max-width: 70px;
  margin: 0 auto 1rem;
  border-radius: 100%;
}
.blog .updates .widget.newsletter img {
  display: block;
  max-width: 60px;
  margin: 0 auto 1rem;
}
.blog .updates .widget.newsletter form {
  display: table;
  width: 100%;
}
.blog .updates .widget.newsletter form input {
  display: inline-block;
  vertical-align: middle;
  width: 60%;
  height: 50px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  padding: 0 1em;
  background-color: #fff;
}
.blog .updates .widget.newsletter form button {
  height: 50px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  display: inline-block;
  vertical-align: middle;
}

.jumbotron {
  padding: 5rem 0;
}

/*# sourceMappingURL=main.css.map */
