/* Media Query Mixin */
/* Based off of: http://blog.grayghostvisuals.com/sass/sass-media-query-mixin/ */
section#intro {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  background-image: url(/assets/images/home/intro-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat; }
  section#intro.mobile {
    height: 70vh;
    max-height: 700px; }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-moz-min-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
    section#intro {
      background-image: url(/assets/images/home/intro-bg@2x.jpg); } }
  @media screen and (max-width: 480px) {
    section#intro {
      background-image: url(/assets/images/home/intro-bg-mobile.jpg); } }
  section#intro video {
    width: 100%;
    height: auto;
    display: block; }
  section#intro div.text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10; }
    section#intro div.text h2 {
      padding: 20px 0 20px 20px;
      border: 2px solid #ffffff;
      font-size: 72px;
      color: #ffffff;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 30px; }
      @media screen and (max-width: 1024px) {
        section#intro div.text h2 {
          font-size: 60px;
          letter-spacing: 20px; } }
      @media screen and (max-width: 768px) {
        section#intro div.text h2 {
          padding: 15px 5px 15px 15px;
          font-size: 42px;
          letter-spacing: 12px; } }
      @media screen and (max-width: 480px) {
        section#intro div.text h2 {
          padding: 10px 5px 10px 10px;
          font-size: 24px;
          letter-spacing: 5px; } }
  section#intro img {
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    margin: auto;
    position: absolute;
    z-index: 7;
    top: -9999px;
    bottom: -9999px;
    right: -9999px;
    left: -9999px; }

section#about {
  padding: 65px 120px;
  background-color: #f1f1f1;
  font-family: "baskerville-urw", serif;
  color: #666666;
  font-size: 32px;
  line-height: 42px;
  text-align: center; }
  @media screen and (max-width: 768px) {
    section#about {
      padding: 45px 70px;
      font-size: 24px;
      line-height: 32px; } }
  @media screen and (max-width: 480px) {
    section#about {
      padding: 30px;
      font-size: 20px;
      line-height: 28px; } }
  section#about strong {
    font-weight: 700; }
  section#about a:link, section#about a:visited {
    color: #77b800; }

section#newsletter {
  background-color: #77b800;
  padding: 20px 0 15px;
  margin: 10px 0; }
  section#newsletter div.inner {
    width: 100%;
    max-width: 650px;
    padding: 0 15px;
    margin: 0 auto; }
    section#newsletter div.inner div.newsletter-title {
      padding: 0 0 15px;
      text-align: center; }
    @media screen and (min-width: 481px) {
      section#newsletter div.inner form div.elements-wrap {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex; } }
    @media screen and (min-width: 481px) {
      section#newsletter div.inner form div.elements-wrap div.element {
        width: 50%; } }
    @media screen and (min-width: 481px) {
      section#newsletter div.inner form div.elements-wrap div.element:first-child input[type=text],
      section#newsletter div.inner form div.elements-wrap div.element:first-child input[type=email] {
        margin-right: 5px; } }
    @media screen and (min-width: 481px) {
      section#newsletter div.inner form div.elements-wrap div.element:last-child input[type=text],
      section#newsletter div.inner form div.elements-wrap div.element:last-child input[type=email] {
        margin-left: 5px; } }
    @media screen and (min-width: 481px) {
      section#newsletter div.inner form div.elements-wrap div.element input[type=text],
      section#newsletter div.inner form div.elements-wrap div.element input[type=email] {
        width: calc(100% - 5px); } }
    section#newsletter div.inner form input[type=submit] {
      margin: 0 auto; }

section#ctas {
  display: flex;
  display: -ms-flexbox;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -ms-flex-direction: row;
  flex-direction: row; }
  @media screen and (max-width: 480px) {
    section#ctas {
      display: block; } }
  section#ctas a:link, section#ctas a:visited {
    width: 50%;
    min-height: 200px;
    display: flex;
    display: -ms-flexbox;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-direction: column;
    flex-direction: column;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    text-decoration: none; }
    @media screen and (max-width: 480px) {
      section#ctas a:link, section#ctas a:visited {
        width: 100%;
        border: none !important;
        border-bottom: 5px solid #ffffff !important; } }
    section#ctas a:link.policy-advocacy, section#ctas a:visited.policy-advocacy {
      border-right: 5px solid #ffffff;
      border-bottom: 5px solid #ffffff;
      background-image: url(/assets/images/home/cta-policy-advocacy-bg.jpg); }
      @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-moz-min-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
        section#ctas a:link.policy-advocacy, section#ctas a:visited.policy-advocacy {
          background-image: url(/assets/images/home/cta-policy-advocacy-bg@2x.jpg); } }
    section#ctas a:link.quality-standards, section#ctas a:visited.quality-standards {
      border-left: 5px solid #ffffff;
      border-bottom: 5px solid #ffffff;
      background-image: url(/assets/images/home/cta-quality-standards-bg.jpg); }
      @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-moz-min-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
        section#ctas a:link.quality-standards, section#ctas a:visited.quality-standards {
          background-image: url(/assets/images/home/cta-quality-standards-bg@2x.jpg); } }
    section#ctas a:link.healthy-green, section#ctas a:visited.healthy-green {
      border-right: 5px solid #ffffff;
      border-top: 5px solid #ffffff;
      background-image: url(/assets/images/home/cta-healthy-green-bg.jpg); }
      @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-moz-min-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
        section#ctas a:link.healthy-green, section#ctas a:visited.healthy-green {
          background-image: url(/assets/images/home/cta-healthy-green-bg@2x.jpg); } }
    section#ctas a:link.about-aoopa, section#ctas a:visited.about-aoopa {
      border-left: 5px solid #ffffff;
      border-top: 5px solid #ffffff;
      background-image: url(/assets/images/home/cta-about-aoopa-bg.jpg); }
      @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-moz-min-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
        section#ctas a:link.about-aoopa, section#ctas a:visited.about-aoopa {
          background-image: url(/assets/images/home/cta-about-aoopa-bg@2x.jpg); } }
      section#ctas a:link.about-aoopa div.text span, section#ctas a:visited.about-aoopa div.text span {
        font-size: 40px; }
        @media screen and (max-width: 480px) {
          section#ctas a:link.about-aoopa div.text span, section#ctas a:visited.about-aoopa div.text span {
            font-size: 32px; } }
    section#ctas a:link div.text, section#ctas a:visited div.text {
      display: flex;
      display: -ms-flexbox;
      -ms-flex-pack: center;
      justify-content: center;
      -ms-flex-direction: row;
      flex-direction: row;
      font-size: 32px;
      color: #ffffff; }
      @media screen and (max-width: 480px) {
        section#ctas a:link div.text, section#ctas a:visited div.text {
          font-size: 24px; } }
      section#ctas a:link div.text span, section#ctas a:visited div.text span {
        font-family: "baskerville-urw", serif;
        font-size: 48px;
        color: #77b800; }
        @media screen and (max-width: 480px) {
          section#ctas a:link div.text span, section#ctas a:visited div.text span {
            font-size: 36px; } }

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