/******************************************************************
Site Name:the Power of Possibility | BoardSource
Author:Paul Wilcox

Stylesheet: Main Stylesheet
******************************************************************/
/******************************************************************
Site Name:the Power of Possibility | BoardSource
Author:Paul Wilcox

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/*********************
BREAKPOINTS
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/******************************************************************
Site Name:
Author:

Stylesheet: Typography

Need to import a font or set of icons for your site? Drop them in
here or just use this to establish your typographical grid. Or not.
Do whatever you want to...GOSH!

Helpful Articles:
http://trentwalton.com/2012/06/19/fluid-type/
http://ia.net/blog/responsive-typography-the-basics/
http://alistapart.com/column/responsive-typography-is-a-physical-discipline

******************************************************************/
/*********************
FONT FACE (IN YOUR FACE)
*********************/
/*  To embed your own fonts, use this syntax
  and place your fonts inside the
  library/fonts folder. For more information
  on embedding fonts, go to:
  http://www.fontsquirrel.com/
  Be sure to remove the comment brackets.
*/
/*  @font-face {
      font-family: 'Font Name';
      src: url('library/fonts/font-name.eot');
      src: url('library/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('library/fonts/font-name.woff') format('woff'),
             url('library/fonts/font-name.ttf') format('truetype'),
             url('library/fonts/font-name.svg#font-name') format('svg');
      font-weight: normal;
      font-style: normal;
  }
*/
/*
The following is based of Typebase:
https://github.com/devinhunt/typebase.css
I've edited it a bit, but it's a nice starting point.
*/
/******************************************************************
Site Name:the Power of Possibility | BoardSource
Author:Paul Wilcox

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/*********************
BREAKPOINTS
*********************/
/*
 i imported this one in the functions file so bones would look sweet.
 don't forget to remove it for your site.
*/
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
p {
  -ms-word-wrap: break-word;
  word-break: break-word;
  word-wrap: break-word;
  -webkit-hyphenate-before: 2;
  -webkit-hyphenate-after: 3;
  hyphenate-lines: 3;
  -webkit-font-feature-settings: "liga", "dlig";
  -moz-font-feature-settings: "liga=1, dlig=1";
  -ms-font-feature-settings: "liga", "dlig";
  -o-font-feature-settings: "liga", "dlig";
  font-feature-settings: "liga", "dlig"; }

body {
  color: #555559;
  -webkit-font-smoothing: antialiased;
  font-family: 'Merriweather', serif;
  font-size: 1.9em;
  line-height: 1.9;
  font-weight: 300; }

a,
a:visited {
  color: #5BB9BC;
  /* on hover */
  /* on click */ }
  a:hover, a:focus,
  a:visited:hover,
  a:visited:focus {
    text-decoration: none;
    color: #ee794e; }
  a:link,
  a:visited:link {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3); }

h1 {
  font-family: 'Lato', serif;
  font-weight: 300;
  font-size: 4em;
  line-height: 1.2em;
  letter-spacing: -1px; }
  @media (max-width: 767px) {
    h1 {
      font-size: 3em; } }
  .page-title-container h1 {
    margin-top: .1em; }
  .teal-container h1 {
    display: inline-block;
    font-size: 5em; }
    @media (max-width: 1200px) {
      .teal-container h1 {
        font-size: 4em; } }
    @media (max-width: 767px) {
      .teal-container h1 {
        font-size: 2.9em; } }
    @media (max-width: 767px) {
      .teal-container h1 {
        font-size: 2.5em; } }

h2 {
  color: #555559;
  font-family: 'Lato', serif;
  font-size: 2em;
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 25px;
  padding: 0.5em 0;
  position: relative; }
  h2 a {
    color: #555559; }
  .home h2 {
    font-size: 3em;
    font-weight: 300;
    margin-bottom: .8em; }

h3,
h4 {
  line-height: 1.5em; }
  h3.sidebar-heading,
  h4.sidebar-heading {
    font-weight: 400;
    text-transform: uppercase;
    font-size: 18px; }

body {
  color: #555559;
  margin: 0;
  margin-top: 80px;
  padding: 0; }
  body.home {
    margin-top: 0; }
  @media (max-width: 767px) {
    body {
      margin-top: 50px; } }

aside, footer {
  font-size: .8em;
  line-height: 1.3em; }

img {
  max-width: 100%; }

small {
  line-height: 1.2em; }

aside {
  font-weight: 400; }
  aside hr {
    margin-top: 10px;
    margin-bottom: 10px; }

blockquote,
.quote,
.blockquote {
  position: relative;
  margin: 1em 0;
  padding: 1.25em 0.625em;
  border-left-color: #53B2B6; }
  blockquote p,
  .quote p,
  .blockquote p {
    border-left: 5px solid #53B2B6;
    padding-left: 1em; }
    blockquote p.quote__cite,
    .quote p.quote__cite,
    .blockquote p.quote__cite {
      border-left-width: 0;
      padding-left: 0;
      margin: 1em 0; }
  blockquote--invert,
  .quote--invert,
  .blockquote--invert {
    background-color: #53B2B6;
    color: #fff; }
    blockquote--invert a,
    .quote--invert a,
    .blockquote--invert a {
      color: inherit;
      text-decoration: underline; }
    blockquote--invert p,
    .quote--invert p,
    .blockquote--invert p {
      border-left-color: #fff; }

.border-list {
  margin: 1em 0;
  padding: 0; }
  .border-list > li {
    list-style-type: none;
    border-bottom: 1px solid #eee;
    padding: 1.25em 0.625em;
    margin: 0;
    line-height: 1.2; }
  .border-list cite,
  .border-list small {
    font-size: .8em; }

.button {
  display: inline-block;
  font-family: 'Lato', serif;
  text-transform: uppercase;
  color: #fff;
  font-size: 1.2em;
  font-weight: 400;
  margin: 1em 1em 1em 0;
  padding: 1em 2em;
  border: none;
  background: none;
  color: inherit;
  vertical-align: middle;
  position: relative;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale; }
  footer .button {
    margin: 1em; }
  @media (max-width: 767px) {
    .button {
      font-size: .8em; } }
  .button:visited {
    color: #fff; }
  .button:focus {
    outline: none; }
  .button > span {
    vertical-align: middle; }
  .button-fancy {
    background: #56b8bc;
    color: #fff;
    -webkit-transition: background-color 0.3s, color 0.3s;
    transition: background-color 0.3s, color 0.3s; }
    .button-fancy::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 3px solid #ee794e;
      z-index: -1;
      border-radius: inherit;
      opacity: 0;
      transform: scale3d(0.6, 0.6, 1);
      transition: transform 0.3s, opacity 0.3s;
      transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1); }
    .button-fancy:hover {
      background-color: #fff;
      color: #ee794e; }
      footer .button-fancy:hover {
        background-color: #3c3c40; }
      .button-fancy:hover::before {
        transform: scale3d(1, 1, 1);
        opacity: 1; }
  .button.small-button {
    line-height: 1.1em;
    font-family: 'Lato', serif;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase; }
    @media (max-width: 1200px) {
      .button.small-button {
        font-size: 14px; } }
    @media (min-width: 768px) and (max-width: 992px) {
      .button.small-button {
        font-size: 13px; } }

.button {
  display: inline-block;
  font-family: 'Lato', serif;
  text-transform: uppercase;
  color: #fff;
  font-size: 1.2em;
  font-weight: 400;
  margin: 1em 1em 1em 0;
  padding: 1em 2em;
  border: none;
  background: none;
  color: inherit;
  vertical-align: middle;
  position: relative;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale; }
  footer .button {
    margin: 1em; }
  @media (max-width: 767px) {
    .button {
      font-size: .8em; } }
  .button:visited {
    color: #fff; }
  .button:focus {
    outline: none; }
  .button > span {
    vertical-align: middle; }
  .button-fancy {
    background: #56b8bc;
    color: #fff;
    -webkit-transition: background-color 0.3s, color 0.3s;
    transition: background-color 0.3s, color 0.3s; }
    .button-fancy::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 3px solid #ee794e;
      z-index: -1;
      border-radius: inherit;
      opacity: 0;
      transform: scale3d(0.6, 0.6, 1);
      transition: transform 0.3s, opacity 0.3s;
      transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1); }
    .button-fancy:hover {
      background-color: #fff;
      color: #ee794e; }
      footer .button-fancy:hover {
        background-color: #3c3c40; }
      .button-fancy:hover::before {
        transform: scale3d(1, 1, 1);
        opacity: 1; }
  .button.small-button {
    line-height: 1.1em;
    font-family: 'Lato', serif;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase; }
    @media (max-width: 1200px) {
      .button.small-button {
        font-size: 14px; } }
    @media (min-width: 768px) and (max-width: 992px) {
      .button.small-button {
        font-size: 13px; } }

.editor {
  padding: 3em 1em; }
  @media (min-width: 768px) {
    .editor--sidebar .editor__content {
      float: left;
      width: calc( 100% - 280px ); }
    .editor--sidebar .editor__aside {
      float: left;
      margin-left: 30px;
      width: 250px; } }
  .editor__content h1:first-child,
  .editor__content h2:first-child,
  .editor__content h3:first-child,
  .editor__content h4:first-child,
  .editor__content h5:first-child,
  .editor__content h6:first-child,
  .editor__content p:first-child {
    margin-top: 0;
    padding-top: 0; }

.footnotes {
  font-size: 75%;
  line-height: 1.3em;
  margin: 1em 0;
  padding: 0; }
  .footnotes li {
    margin: 0.6em 0;
    list-style: none; }

/* Icon Effect 1 */
.hi-icon {
  display: inline-block;
  font-size: 0px;
  cursor: pointer;
  margin: 35px 30px 0;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  text-align: center;
  position: relative;
  z-index: 1;
  color: #fff; }
  .hi-icon:after {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    content: '';
    box-sizing: content-box; }
  .hi-icon:before {
    font-family: 'ecoicon';
    speak: none;
    font-size: 48px;
    line-height: 90px;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    display: block;
    -webkit-font-smoothing: antialiased; }
  .hi-icon-effect-1 .hi-icon {
    background: rgba(255, 255, 255, 0.1);
    -webkit-transition: background 0.2s, color 0.2s;
    -moz-transition: background 0.2s, color 0.2s;
    transition: background 0.2s, color 0.2s; }
  .hi-icon-effect-1 .hi-icon:after {
    top: -7px;
    left: -7px;
    padding: 7px;
    box-shadow: 0 0 0 4px #fff;
    -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
    -webkit-transform: scale(0.8);
    -moz-transition: -moz-transform 0.2s, opacity 0.2s;
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transition: transform 0.2s, opacity 0.2s;
    transform: scale(0.8);
    opacity: 0; }

hr {
  background-color: #56b8bc;
  border: none;
  height: 3px; }

.hr--short {
  width: 60px; }
.hr--silver {
  background-color: #eee; }

.lead {
  font-size: 1.8em; }

.list-icon {
  width: 75px;
  float: right;
  margin-left: 1em; }
  .list-icon path {
    fill: #56b8bc; }

cite {
  font-size: .8em; }

section.starting-points {
  color: #ffffff;
  text-align: center; }
  section.starting-points h2 {
    margin-bottom: 0;
    padding-bottom: 0; }
  section.starting-points hr {
    background: #ffffff;
    margin: 2em auto; }
  section.starting-points a {
    color: inherit;
    display: block; }
    section.starting-points a:hover, section.starting-points a:focus {
      color: inherit; }
      section.starting-points a:hover svg path, section.starting-points a:focus svg path {
        fill: #56b8bc !important; }

a.hover-area:hover {
  background-color: black; }

.page-title-container {
  color: #fff;
  min-height: 150px;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
  background-color: #56b8bc; }

blockquote p {
  margin: 0; }

.header-icon {
  width: 100px;
  float: right;
  margin-left: 1em; }

aside ul {
  margin-left: 0;
  padding-left: 0; }
aside li {
  list-style-type: none;
  border-top: 1px solid #eee;
  line-height: 1.2em;
  padding: 5px 0 5px 10px; }
  aside li.active {
    border-left: solid 3px #56b8bc;
    background-color: #eee; }
aside a.download-link {
  padding-left: 10px; }

table {
  border-color: #eee;
  border: none; }
  table td {
    padding: 10px; }
  table tr {
    border-color: #eee; }

.navbar {
  min-height: 80px;
  margin-bottom: 0;
  border: none;
  border-bottom: 1px solid #eee; }
  @media (max-width: 767px) {
    .navbar {
      min-height: 1px; } }

.navbar-nav {
  float: right;
  min-width: 704;
  padding-top: 15px; }
  @media (max-width: 767px) {
    .navbar-nav {
      float: left;
      margin: auto;
      width: 100%;
      padding-top: 0; } }

.navbar-default {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.9);
  border-radius: inherit;
  background-color: white; }
  .home .navbar-default {
    background-color: rgba(255, 255, 255, 0.9); }
    @media (max-width: 767px) {
      .home .navbar-default {
        background-color: white; } }
  .admin-bar .navbar-default {
    top: 46px; }
    @media (min-width: 782px) {
      .admin-bar .navbar-default {
        top: 32px; } }

@media (max-width: 767px) {
  .navbar-header {
    padding-bottom: 5px; } }

.navbar-default .nav > li > a, .footer-nav .nav > li > a {
  font-family: 'Lato', serif;
  color: #5BB9BC;
  font-weight: 400;
  font-size: 18px;
  text-transform: uppercase; }
  .navbar-default .nav > li > a:hover, .footer-nav .nav > li > a:hover {
    color: #ee794e; }
  @media (max-width: 1200px) {
    .navbar-default .nav > li > a, .footer-nav .nav > li > a {
      font-size: 17px; } }
  @media (min-width: 768px) and (max-width: 992px) {
    .navbar-default .nav > li > a, .footer-nav .nav > li > a {
      font-size: 13px;
      padding-left: 15px;
      padding-right: 0; } }
  @media (max-width: 767px) {
    .navbar-default .nav > li > a, .footer-nav .nav > li > a {
      text-align: left;
      font-size: 1.7em;
      border-bottom: 1px solid #eee;
      padding: 7vh 0; } }

.navbar-brand {
  width: 317px;
  margin-top: -5px; }
  .navbar-brand img:nth-of-type(1) {
    display: none; }
  .navbar-brand img:nth-of-type(2) {
    height: 60px; }
  @media (max-width: 1200px) {
    .navbar-brand {
      width: 150px;
      margin-top: -10px; }
      .navbar-brand img:nth-of-type(1) {
        display: inline;
        height: 64px; }
      .navbar-brand img:nth-of-type(2) {
        display: none; } }
  @media (max-width: 767px) {
    .navbar-brand {
      width: 235px; }
      .navbar-brand img:nth-of-type(1) {
        display: none; }
      .navbar-brand img:nth-of-type(2) {
        display: inline;
        height: 40px; } }

.navbar-default .nav > li.current-menu-item a, .navbar-default .nav > li.current-page-ancestor a {
  color: #ee794e;
  background-color: inherit; }

.navbar-collapse {
  height: 100vh;
  max-height: none !important;
  opacity: 1.0; }

.navbar-toggle {
  z-index: 999999;
  border: none;
  background: transparent !important; }
  .navbar-toggle:hover {
    background: transparent !important; }
  .navbar-toggle .icon-bar {
    width: 22px;
    transition: all 0.2s; }
  .navbar-toggle .top-bar {
    transform: rotate(45deg);
    transform-origin: 10% 10%; }
  .navbar-toggle .middle-bar {
    opacity: 0; }
  .navbar-toggle .bottom-bar {
    transform: rotate(-45deg);
    transform-origin: 10% 90%; }
  .navbar-toggle.collapsed .top-bar {
    transform: rotate(0); }
  .navbar-toggle.collapsed .middle-bar {
    opacity: 1; }
  .navbar-toggle.collapsed .bottom-bar {
    transform: rotate(0); }

footer {
  padding: 1em 0 0;
  color: #8b8b8e;
  background-color: #3c3c40;
  text-align: left; }
  @media (max-width: 767px) {
    footer {
      text-align: center; } }
  footer .textwidget {
    display: inline-block; }
  footer h2 {
    padding: .1em 0;
    color: #8b8b8e; }
  footer h3 {
    font-size: 23px;
    padding: .2em 0 0; }
    @media (max-width: 1200px) {
      footer h3 {
        font-size: 18px; } }
  footer p {
    font-weight: 400; }

.base {
  margin-top: 15px;
  border-top: 1px solid #555559;
  padding: 15px 0 0;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif; }

h2.contact {
  float: left;
  margin-top: 15px;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 400; }
  h2.contact:after {
    content: none; }
  @media (max-width: 1200px) {
    h2.contact {
      border-left: none;
      padding-left: 0;
      margin-left: 0;
      margin: 0;
      font-size: 18px; } }
  @media (max-width: 767px) {
    h2.contact {
      float: none; } }

@media (max-width: 767px) {
  .contact-info {
    float: none;
    text-align: center;
    margin: auto; } }

.contact-info p {
  float: left;
  margin-top: 0;
  border-left: solid 1px #555559;
  padding-left: 10px;
  margin-left: 10px;
  text-align: left; }
  @media (max-width: 1200px) {
    .contact-info p {
      border-left: none;
      padding-left: 0;
      margin-left: 0; } }
  @media (max-width: 767px) {
    .contact-info p {
      float: none;
      text-align: center; } }

p.copywrite {
  margin-top: 0;
  text-align: right; }
  @media (max-width: 767px) {
    p.copywrite {
      float: none !important;
      text-align: center; } }

/* fancy button */
button.small-button {
  line-height: 1.1em;
  font-family: 'Lato', serif;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase; }
  @media (max-width: 1200px) {
    button.small-button {
      font-size: 14px; } }
  @media (min-width: 768px) and (max-width: 992px) {
    button.small-button {
      font-size: 13px; } }

.outer-container:hover .hi-icon {
  background: white;
  color: #41ab6b; }

#starting-points h3 {
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1em;
  font-weight: 600;
  color: #ddf1f2;
  padding: 0;
  margin: 1em 0; }

#starting-points .outer-container h3, #starting-points .outer-container svg path {
  transition: background-color 0.5s ease; }

#starting-points .outer-container:hover h3 {
  color: #fff; }

#starting-points .outer-container .hi-icon svg path {
  fill: #ddf1f2 !important; }

#starting-points .outer-container:hover .hi-icon svg path {
  fill: #56b8bc !important; }

.outer-container:hover .hi-icon:after {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1; }

.hi-icon-effect-1 svg {
  margin: 8px auto;
  width: 75px; }

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  /* IE10+ specific styles go here */
  .hi-icon-effect-1 svg {
    margin: 0; } }
.highlight {
  font-size: .8em;
  color: #555559;
  font-style: italic;
  font-weight: 400; }

.pre-title {
  font-size: 13px;
  letter-spacing: 0;
  color: #fff;
  text-transform: uppercase;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  background-color: #89abc2;
  padding: 2px; }
  aside .pre-title {
    color: #ee794e;
    background-color: transparent; }

.dark-text {
  color: #555559; }

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

.bg-1 {
  background-color: #56b8bc;
  color: #fff; }

.bg-1 h1, .bg-1 h2, .bg-1 p {
  color: #fff; }

.padding-1 {
  padding-right: 0 !important;
  padding-left: 5px !important; }

.padding-2 {
  padding-left: 15px; }

.padding-3 {
  padding-left: 25px; }

.padding-4 {
  padding-bottom: 3em;
  padding-top: 1em; }

.padding-5 {
  padding-bottom: 5em;
  padding-top: 1em; }

.margin-1 {
  margin-top: -105px; }

.margin-2 {
  margin: .5em 0 1em; }

.margin-3 {
  margin-top: -8px; }

#container-1 {
  background: #45453f none repeat scroll 0 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10%;
  position: relative;
  width: 30px;
  position: absolute;
  left: 47%;
  bottom: 8vh; }
  @media (max-width: 767px) {
    #container-1 {
      bottom: 14vh; } }

.teal-container {
  background-color: rgba(12, 157, 170, 0.7);
  padding: 0 10px 10px;
  display: inline-block;
  width: 80%; }
  @media (max-width: 767px) {
    .teal-container {
      width: 100%; } }

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

.icon-1 {
  max-width: 103px; }

.hero {
  color: #fff;
  background-color: #d5eeef;
  background: transparent url("img/impact.jpg") no-repeat scroll center center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  width: 100%;
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center; }

.more {
  box-sizing: border-box;
  display: block;
  margin: 1em auto;
  position: relative;
  width: 36px;
  height: 36px;
  background-color: #56b8bc;
  border-radius: 50%;
  text-align: center; }
  .more__anchor {
    display: block;
    padding: 5px;
    position: relative;
    z-index: 1; }
  .more__pulse {
    position: absolute;
    top: -18px;
    left: -18px;
    height: 72px;
    width: 72px;
    animation: pulse 3s ease-out;
    animation-iteration-count: infinite;
    border: 5px solid #56b8bc;
    border-radius: 50%; }
  .hero .more {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%); }

.pulse {
  width: 35px;
  height: 35px;
  border: 5px solid #56b8bc;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background-color: #56b8bc;
  z-index: 10;
  position: absolute; }

.dot {
  border: 7px solid #56b8bc;
  background: transparent;
  -webkit-border-radius: 60px;
  visibility: visible;
  -moz-border-radius: 60px;
  border-radius: 60px;
  height: 110px;
  width: 110px;
  -webkit-animation: pulse 3s ease-out;
  -moz-animation: pulse 3s ease-out;
  animation: pulse 3s ease-out;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  position: absolute;
  top: -35px;
  left: -37px;
  z-index: 1;
  opacity: 0; }

@keyframes pulse {
  0% {
    transform: scale(0);
    opacity: 0.0; }
  25% {
    transform: scale(0);
    opacity: 0.1; }
  50% {
    transform: scale(0.1);
    opacity: 0.3; }
  75% {
    transform: scale(0.5);
    opacity: 0.5; }
  100% {
    transform: scale(1);
    opacity: 0.0; } }
aside .nav > li > a {
  display: inline;
  padding: 0; }

.box-1 {
  padding: 1.5em;
  margin-top: 3em;
  background-color: #ddf1f2; }
  .box-1 h2 {
    padding: 0 0 0.5em;
    margin-top: 0; }
  .box-1 h3 {
    padding: 0 0 0.5em;
    margin-top: 0;
    font-family: 'Merriweather', serif;
    color: #f4794c; }

.quote {
  color: #fff;
  padding: 20px;
  position: relative;
  margin: 1em 0 2em;
  background-color: #53B2B6; }

#sticky {
  font-family: lato, sans-serif !important; }

.h1 .small, .h1 small, .h2 .small, .h2 small, .h3 .small, .h3 small, .h4 .small, .h4 small, .h5 .small, .h5 small, .h6 .small, .h6 small, h1 .small, h1 small, h2 .small, h2 small, h3 .small, h3 small, h4 .small, h4 small, h5 .small, h5 small, h6 .small, h6 small {
  color: inherit;
  font-weight: inherit;
  line-height: inherit; }

.filetype-pdf, .filetype-icon {
  background-image: none;
  padding-left: 0; }

/*********************
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't make
sense to print at the bottom. Things like nav, ads, and forms should
be set to display none.
*********************/
@media print {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: Print Stylesheet
  
  This is the print stylesheet. There's probably not a lot
  of reasons to edit this stylesheet. If you want to
  though, go for it.
  
  ******************************************************************/
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important; }

  a, a:visited {
    color: #444 !important;
    text-decoration: underline; }
    a:after, a:visited:after {
      content: " (" attr(href) ")"; }
    a abbr[title]:after, a:visited abbr[title]:after {
      content: " (" attr(title) ")"; }

  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: ""; }

  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }

  thead {
    display: table-header-group; }

  tr, img {
    page-break-inside: avoid; }

  img {
    max-width: 100% !important; }

  @page {
    margin: 0.5cm; }
  p, h2, h3 {
    orphans: 3;
    widows: 3; }

  h2,
  h3 {
    page-break-after: avoid; }

  .sidebar,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  nav {
    display: none; } }

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