/* Global */
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.clearfix:after {
  content: "";
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
}

@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  src: local("Material Icons"), local("MaterialIconsOutlined-Regular"), url(fonts/MaterialIconsOutlined-Regular.otf) format("opentype");
}
/* Required addition to use material icons */
.material-icons-outlined {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px; /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
}
.material-icons-outlined.md-48 {
  font-size: 48px;
}

/* End required material icon stuff */
/* Variables */
/* Extends */
.public__content--area, .container__content {
  max-width: 1200px;
  min-width: 320px;
  width: 100%;
}

.nav__button, .button__solid, .button__thin {
  padding: 0.5em 1em;
  font-weight: 700;
  font-family: "Muli", sans-serif;
  border-radius: 5em;
  transition: background 500ms;
}
.nav__button:hover, .button__solid:hover, .button__thin:hover {
  cursor: pointer;
}

.public__content--area form input[type=text], .public__content--area form select, .public__content--area form textarea {
  width: 100%;
  padding: 0.5em;
  outline: none;
  border: solid 1px #CCC;
}
@media screen and (min-width: 960px) {
  .public__content--area form input[type=text], .public__content--area form select, .public__content--area form textarea {
    width: 50%;
  }
}

.activity__multipleChoice, .activity__textarea {
  position: relative;
  width: 90%;
  margin: 1em auto;
  padding: 1.5em 1em 1em 1em;
  background: #f7fcff;
  border: solid 2px #029DFA;
  border-radius: 15px;
}
.activity__multipleChoice::before, .activity__textarea::before {
  content: "Activity";
  position: absolute;
  top: -2px;
  left: -2px;
  padding: 0.5em 1em;
  background: #029DFA;
  font-size: 0.8em;
  color: #FFF;
  border-radius: 15px 0 15px 0;
}

.hide, .login__area label, header h1 {
  position: absolute;
  left: -9999px;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* CSS Time */
html {
  width: 100%;
  height: 100%;
}

body {
  position: relative;
  width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Muli", sans-serif;
  background: #F7F7F7;
}
@media screen and (min-width: 750px) {
  body {
    font-size: 1.5rem;
  }
}

img {
  max-width: 100%;
}
img.image__center {
  display: block;
  margin: 1em auto;
}

.image__floatRight {
  display: block;
  margin: 1em auto;
}
@media screen and (min-width: 967px) {
  .image__floatRight {
    float: right;
    margin: 0;
    padding: 0 0 0 0;
  }
}

/* Global Layout */
.container__content {
  position: relative;
  margin: 0 auto;
  padding: 0 1em;
}
@media screen and (min-width: 1200px) {
  .container__content {
    padding: 0;
  }
}

.video__wrapper {
  margin: 0 auto;
}

.youtube-wrapper {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
}
.youtube-wrapper iframe {
  aspect-ratio: 16/9;
  width: 100% !important;
}

.center__content {
  text-align: center;
}

@media screen and (min-width: 1000px) {
  .content__half {
    width: 60%;
    margin: 0 auto !important;
  }
}

#systemMessage {
  position: fixed;
  margin: 0 auto;
  padding: 1rem;
  bottom: 0;
  width: 100%;
  background: #242424;
  border-top: solid 1px #F7F7F7;
  box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.3);
  transition: opacity 1s;
  z-index: 8000;
}
#systemMessage .systemMessage__content {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
#systemMessage .systemMessage__content .material-icons-outlined {
  margin-right: 2rem;
  color: #029dfa;
}
#systemMessage .systemMessage__content a {
  display: block;
  color: white;
}
#systemMessage .systemMessage__content a:visited {
  color: white;
}
#systemMessage .systemMessage__content h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.25rem;
}
#systemMessage .systemMessage__content p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5rem;
}
#systemMessage #systemMessage__closeButton {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  padding: 0;
  color: white;
  background: transparent;
  border: none;
}
#systemMessage #systemMessage__closeButton:hover {
  cursor: pointer;
}

.systemMessage__fadeOut {
  opacity: 0;
  z-index: -1;
}

.public__content--area {
  position: relative;
  height: 100%;
  min-height: 100%;
  margin: 0 auto 2em auto;
  padding: 49px 0 0 0;
  background: #FFF;
  overflow: hidden;
}
.public__content--area section {
  padding: 1em;
  border: solid 1px #CCC;
  line-height: 1.5em;
}
.public__content--area button {
  font-size: 1em;
}
.public__content--area button.button__nav {
  display: block;
  margin: 0 auto;
}
.public__content--area form input[type=text], .public__content--area form select, .public__content--area form textarea {
  font-size: 1.1em;
  font-family: "Muli", sans-serif;
}
.public__content--area form textarea {
  height: 10em;
}
.public__content--area form input[type=submit] {
  font-size: 1em;
}
@media screen and (min-width: 960px) {
  .public__content--area {
    padding: 99px 0 0 0;
  }
}

section, .mainScreen {
  transition: opacity 750ms;
}

.section__white {
  background-color: #FFF;
}

.section__blue {
  background-color: #029DFA;
}

.section__grey {
  background-color: #F1F1F1;
}

.box__general, .box__error {
  border: solid 1px #CCC;
  margin: 1em 0;
  padding: 1em;
  box-shadow: 0 0.5em 0.5em -0.5em rgba(0, 0, 0, 0.7);
}

.flex__layout {
  display: flex;
  justify-content: center;
  margin: 1em 0;
}
.flex__layout .button__nav {
  margin: 1rem;
}
.flex__layout.flex__layout--wrap {
  flex-wrap: wrap;
}

.spaced__between, .sampleLesson__icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 1em 0;
}
.spaced__between .button__nav, .sampleLesson__icons .button__nav {
  margin: 1rem;
}

.icon__wrapper {
  text-align: center;
}
.icon__wrapper img {
  display: block;
  margin: 0 auto;
}
.icon__wrapper.browser__icons {
  width: 20%;
}

.sampleLesson__icons a {
  display: flex;
  align-items: center;
  width: 50%;
  margin: 0.5em 0;
  color: #000;
}
.sampleLesson__icons a img {
  margin-right: 1em;
  max-width: 20%;
}
@media screen and (min-width: 960px) {
  .sampleLesson__icons a img {
    max-width: 100%;
  }
}

.column__layout {
  display: flex;
  justify-content: space-between;
}
.column__layout.help__layout {
  flex-flow: column-reverse;
}
@media screen and (min-width: 750px) {
  .column__layout.help__layout {
    flex-flow: initial;
  }
}
.column__layout .column {
  width: 48%;
}
.column__layout .column h4 {
  margin-top: 0;
}
.column__layout .column33 {
  width: 100%;
}
@media screen and (min-width: 960px) {
  .column__layout .column33 {
    width: 31%;
  }
}
.column__layout .column66 {
  width: 100%;
}
@media screen and (min-width: 960px) {
  .column__layout .column66 {
    width: 64%;
  }
}

.nav__bottom {
  display: flex;
  justify-content: center;
  margin: 1em 0;
}

.nav__section {
  position: fixed;
  bottom: 0;
  left: 100%;
  width: 100%;
  transition: left 500ms;
  z-index: 5000;
}
.nav__section ul {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #FFF;
  text-align: center;
  border: solid 2px #029DFA;
}
.nav__section ul li {
  border-bottom: solid 1px #029DFA;
}
.nav__section ul li:last-child {
  border-bottom: none;
}
.nav__section ul li a {
  display: block;
  padding: 0.5em 0;
  color: #029DFA;
}
@media screen and (min-width: 960px) {
  .nav__section {
    bottom: 0.75em;
    width: 25%;
  }
}

.nav__section--closeButton {
  position: absolute;
  top: -15px;
  left: calc(50% - 15px);
  width: 30px;
  height: 30px;
  background: url(/public/images/content/close.png) no-repeat;
  border: none;
}
.nav__section--closeButton:hover {
  cursor: pointer;
}

.nav__bottom--show {
  left: 0;
}
@media screen and (min-width: 960px) {
  .nav__bottom--show {
    left: 75%;
  }
}

/* Buttons */
a {
  text-decoration: none;
}
a.button__solid, a.button__thin {
  display: inline-block;
}
a.link__external {
  color: #029DFA;
}

.button__thin {
  background: #FFF;
  color: #029DFA;
  border: solid 2px #029DFA;
}
.button__thin:hover {
  background: #edf8ff;
}

.button__solid {
  background: #029DFA;
  color: #FFF;
  border: solid 2px #FFF;
}
.button__solid:hover {
  background: #0287d7;
}

.nav__button {
  position: fixed;
  bottom: 0.5em;
  right: 0.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.5em;
  height: 1.5em;
  padding: 0;
  font-size: 2em;
  background: #FFF;
  color: #029DFA;
  border: solid 2px #029DFA;
  border-radius: 2em;
  box-shadow: 0 0 5px 0;
  z-index: 3000;
}

.fa-external-link-alt {
  margin: 0 1rem;
}

/* Forms */
.ul__noBullet {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ul__noBullet label:hover {
  cursor: pointer;
}

.submitOrder__no {
  opacity: 0.2;
  cursor: default !important;
}

#frontPage {
  overflow-x: hidden;
  /* Fonts */
  /* Layout */
  /* Images */
  /* Hero Area */
}
#frontPage h4 {
  margin: 0;
  padding: 0;
}
#frontPage h4 + p {
  margin-top: 0;
}
#frontPage section {
  width: 100%;
  padding: 2em 0;
}
#frontPage section .container__content h3 {
  margin: 0;
}
@media screen and (min-width: 750px) {
  #frontPage section .container__content h3 {
    margin: 1em 0;
  }
}
#frontPage section .container__content .button__solid, #frontPage section .container__content .button__thin {
  display: block;
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 750px) {
  #frontPage section .container__content .button__solid, #frontPage section .container__content .button__thin {
    display: inline-block;
    margin: 0;
  }
}
@media screen and (min-width: 320px) and (max-width: 750px) {
  #frontPage section .container__content img {
    max-width: 50%;
  }
}
@media screen and (min-width: 750px) {
  #frontPage section .container__content {
    min-height: 373px;
  }
}
#frontPage .container__content {
  position: relative;
  max-width: 1200px;
  min-width: 320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1em;
}
@media screen and (min-width: 1100px) {
  #frontPage .container__content {
    padding: 0;
  }
}
#frontPage .container__content.content__center {
  text-align: center;
}
#frontPage .container__flex, #frontPage .content__right, #frontPage .content__left {
  display: flex;
  width: 100%;
}
@media screen and (min-width: 960px) {
  #frontPage .container__flex .container__content--text, #frontPage .content__right .container__content--text, #frontPage .content__left .container__content--text {
    width: 60%;
  }
}
@media screen and (min-width: 1100px) {
  #frontPage .container__flex .container__content--text, #frontPage .content__right .container__content--text, #frontPage .content__left .container__content--text {
    width: 66.666666%;
  }
}
@media screen and (min-width: 750px) {
  #frontPage .content__left {
    justify-content: flex-start;
    width: 66.666%;
  }
}
#frontPage .content__right {
  justify-content: center;
}
@media screen and (min-width: 960px) {
  #frontPage .content__right {
    justify-content: flex-end;
  }
}
#frontPage .container__content--columns img {
  display: block;
  margin: 1em auto;
}
@media screen and (min-width: 960px) {
  #frontPage .container__content--columns {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #frontPage .container__content--columns.textLayout {
    align-items: flex-start;
  }
  #frontPage .container__content--columns .container__content--text {
    width: 48%;
  }
  #frontPage .container__content--columns img {
    margin: 0;
  }
}
#frontPage .curriculum__logos img {
  display: block;
  margin: 1em auto;
}
@media screen and (min-width: 750px) {
  #frontPage .curriculum__logos {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
  }
  #frontPage .curriculum__logos img {
    margin: 0;
  }
}
@media screen and (min-width: 960px) {
  #frontPage .curriculum__logos {
    width: 50%;
  }
}
#frontPage .image__positioning, #frontPage .image__story, #frontPage .image__literacy, #frontPage .image__needs, #frontPage .image__solution {
  display: block;
  margin: 1em auto;
  text-align: center;
}
@media screen and (min-width: 960px) {
  #frontPage .image__positioning, #frontPage .image__story, #frontPage .image__literacy, #frontPage .image__needs, #frontPage .image__solution {
    position: absolute;
    margin: 0;
    text-align: left;
  }
}
@media screen and (min-width: 960px) {
  #frontPage .image__solution {
    top: 0;
    left: -332px;
  }
}
@media screen and (min-width: 1100px) {
  #frontPage .image__offers::after {
    content: "";
    background-image: url("/public/images/content/frontPage2020/grad_hat_diploma_graphic.png");
    background-size: contain;
    position: absolute;
    right: -242px;
    bottom: -204px;
    width: 486px;
    height: 340px;
  }
}
@media screen and (min-width: 960px) {
  #frontPage .image__needs {
    top: 0;
    left: -427px;
  }
}
@media screen and (min-width: 960px) {
  #frontPage .image__literacy {
    top: 0;
    left: -540px;
  }
}
@media screen and (min-width: 960px) {
  #frontPage .image__story {
    top: 0;
    left: -400px;
  }
}
#frontPage .mainScreen {
  width: 100%;
  height: 80vh;
}
#frontPage .mainScreen .mainScreen__hero {
  position: relative;
  width: 100%;
  height: 100%;
  background-image: url("/public/images/content/frontPage2020/hero_image_full.jpg");
  background-repeat: no-repeat;
  background-position: 42% 0;
  background-size: cover;
}
#frontPage .mainScreen .mainScreen__hero .container__content {
  height: 100%;
  padding: 0;
}
#frontPage .mainScreen .mainScreen__hero .container__flex, #frontPage .mainScreen .mainScreen__hero .content__left, #frontPage .mainScreen .mainScreen__hero .content__right {
  height: 100%;
  justify-content: flex-end;
}
#frontPage .mainScreen .mainScreen__hero .mainScreen__hero--text {
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  padding: 1em;
  color: #FFF;
  font-size: 1rem;
  background-image: linear-gradient(transparent 30%, rgba(0, 0, 0, 0.8));
}
#frontPage .mainScreen .mainScreen__hero .mainScreen__hero--text h2 {
  margin: 0;
  text-shadow: 0 0 1px #000, 0 0 1px #000, 0 0 1px #000, 0 0 1px #000;
}
#frontPage .mainScreen .mainScreen__hero .mainScreen__hero--text .hero__text--links {
  text-align: center;
}
@media screen and (min-width: 750px) {
  #frontPage .mainScreen .mainScreen__hero {
    display: block;
    align-items: initial;
  }
  #frontPage .mainScreen .mainScreen__hero .container__content {
    height: 100%;
    padding: 0 1em;
  }
  #frontPage .mainScreen .mainScreen__hero .container__flex, #frontPage .mainScreen .mainScreen__hero .content__left, #frontPage .mainScreen .mainScreen__hero .content__right {
    align-items: center;
  }
  #frontPage .mainScreen .mainScreen__hero .mainScreen__hero--text {
    align-items: center;
    width: 60%;
    margin-top: calc(48px + 2em);
    background-image: none;
    text-align: right;
  }
  #frontPage .mainScreen .mainScreen__hero .mainScreen__hero--text .hero__text--links {
    text-align: right;
  }
  #frontPage .mainScreen .mainScreen__hero .mainScreen__hero--text h2 {
    text-shadow: none;
  }
}
@media screen and (min-width: 1100px) {
  #frontPage .mainScreen .mainScreen__hero .mainScreen__hero--text {
    width: 50%;
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1400px) {
  #frontPage .mainScreen .mainScreen__hero {
    background-position: 30% 50%;
  }
}
@media screen and (min-width: 750px) {
  #frontPage .mainScreen {
    height: 100vh;
  }
}

/* Header and Login */
header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 60px;
  background: #FFF;
  border-bottom: solid 1px #F1F1F1;
  box-shadow: 0 4px 4px -4px rgba(0, 0, 0, 0.5);
  z-index: 1000;
}
header a {
  width: 40%;
  font-size: 0;
}
header .container__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
@media screen and (min-width: 960px) {
  header {
    height: 100px;
    padding: 0 1em;
  }
  header button {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1200px) {
  header {
    padding: 1em 0;
  }
}

.login__area {
  position: fixed;
  top: 0;
  left: 101%;
  width: 100%;
  height: 100vh;
  padding: 1em 2.5em;
  background: #FFF;
  z-index: 10000;
  transition: left 750ms;
}
@media screen and (min-width: 960px) {
  .login__area {
    width: 50%;
    border-left: solid 2px #CCC;
    box-shadow: -2px 0 5px #CCC;
  }
}
@media screen and (min-width: 1400px) {
  .login__area {
    width: 33%;
  }
}
.login__area form input {
  width: 100%;
  margin: 0.5em 0;
  padding: 0.5em;
  font-size: 1.2em;
}
.login__area form input:focus {
  outline-color: #029DFA;
}
.login__area .loginLinks a {
  width: 100%;
  margin-bottom: 1em;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .login__area .loginLinks a {
    width: 48%;
    margin: 0;
    font-size: 0.7em;
  }
}

.login__area--show {
  left: 0;
}
@media screen and (min-width: 960px) {
  .login__area--show {
    left: 50%;
  }
}
@media screen and (min-width: 1400px) {
  .login__area--show {
    left: 67%;
  }
}

#login__close {
  position: absolute;
  top: 1em;
  right: 2.5em;
}

.login__fail--message {
  position: absolute;
  top: 100px;
  right: 0;
  padding: 1rem;
  color: red;
  background: #FFF;
  border: solid 2px red;
}
@media screen and (min-width: 960px) {
  .login__fail--message {
    top: auto;
    right: 7em;
  }
}

/* Footer */
footer {
  display: block;
  width: 100%;
  padding: 2em 0;
  background-color: #000;
  color: #FFF;
}
@media screen and (min-width: 960px) {
  footer .container__content--text {
    width: 50%;
  }
}

/* Activities */
.activity__textarea .instruction__text {
  text-align: center;
  font-weight: 700;
}
.activity__textarea textarea {
  width: 100%;
  min-height: 1em;
  padding: 0.25em;
  font-size: 1.5em;
}

.quoteType .textarea__group--item {
  opacity: 1;
  transition: opacity 3s;
}
.quoteType .textarea__group--item.hide, .quoteType header h1.textarea__group--item, header .quoteType h1.textarea__group--item, .quoteType .login__area label.textarea__group--item, .login__area .quoteType label.textarea__group--item {
  opacity: 0;
}

.activity__multipleChoice button {
  width: 48%;
}

/* Life Skills */
.lifeSkills {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.lifeSkills a {
  display: block;
  width: 100%;
  max-width: 500px;
  margin: 1em auto;
  color: inherit;
  border: solid 1px #CCC;
  border-radius: 0.5em;
  text-decoration: none;
  box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.7);
  transition: box-shadow 500ms;
}
.lifeSkills a:hover {
  box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.7);
}
.lifeSkills a:hover .lifeSkills__card--header {
  background-size: 105%;
}
.lifeSkills a .lifeSkills__card--header {
  display: flex;
  align-items: center;
  width: 100%;
  height: 179px;
  background-repeat: no-repeat;
  background-size: 100%;
  border-radius: 0.5em 0.5em 0 0;
  transition: background-size 500ms;
}
.lifeSkills a .lifeSkills__card--header h3 {
  width: 100%;
  margin: 0;
  padding: 0.5em 1em;
  color: #FFF;
  background-color: rgba(0, 0, 0, 0.5);
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.7);
}
.lifeSkills a .lifeSkills__card--textArea {
  padding: 1em;
}

.header__softSkills {
  background-image: url("/public/images/content/lifeSkills/soft_skills.jpg");
}

.header__conflict {
  background-image: url("/public/images/content/lifeSkills/conflict_resolution.jpg");
}

.header__securingEmployment {
  background-image: url("/public/images/content/lifeSkills/securing_employment.jpg");
}

.header__financialLiteracy {
  background-image: url("/public/images/content/lifeSkills/financial_literacy.jpg");
}

.header__buildingBlocksOfGeometry {
  background-image: url("/public/images/content/lifeSkills/building_blocks_of_geometry.jpg");
}

.header__foundationsOfMeasurement {
  background-image: url("/public/images/content/lifeSkills/foundations_of_measurement.jpg");
}

.header__applicationsOfGeometry {
  background-image: url("/public/images/content/lifeSkills/applications_of_geometry.jpg");
}

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