* {
  box-sizing: border-box;
}
.img-responsive {
  width: 100%;
}
.visible-desktop {
  display: none;
}
@media only screen and (min-width : 1281px), only screen and (max-width : 1280px) {
  .visible-desktop {
    display: block;
  }
}
.visible-desktop-flex {
  display: none;
}
@media only screen and (min-width : 1281px), only screen and (max-width : 1280px) {
  .visible-desktop-flex {
    display: flex;
  }
}
.visible-tablets {
  display: none;
}
@media only screen and (min-width : 768px) and (max-width : 1024px) {
  .visible-tablets {
    display: block;
  }
}
.visible-phablets {
  display: none;
}
@media only screen and (min-width : 600px) and (max-width : 767px) {
  .visible-phablets {
    display: block;
  }
}
.visible-smartphone {
  display: none;
}
@media only screen and (min-width : 320px) and (max-width : 599px), only screen and (max-width : 320px) {
  .visible-smartphone {
    display: block;
  }
}
.display-flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@keyframes fadepushin {
  from {
    top: 25px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
.animation-fadepushin {
  position: relative;
  animation-name: fadepushin;
  animation-duration: 1s;
  animation-timing-function: ease-out;
}
@keyframes fadedropin {
  from {
    top: -25px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
.animation-fadedropin {
  position: relative;
  animation-name: fadedropin;
  animation-duration: 1s;
  animation-timing-function: ease-out;
}
@keyframes popin {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.animation-popin {
  position: relative;
  transform-origin: 50% 50%;
  animation-name: popin;
  animation-duration: 0.2s;
  animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes stamp {
  from {
    transform: scale(3);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.animation-stamp {
  position: relative;
  transform-origin: 50% 50%;
  animation-name: stamp;
  animation-duration: 0.2s;
  animation-timing-function: ease-in;
}
.orange {
  color: #2A4848;
}
.animated {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
/*
Mixins
*/
.font-opensans {
  font-family: 'Open Sans', sans-serif;
}
.font-roboto {
  font-family: 'Roboto', sans-serif;
}
.font-robotoslab {
  font-family: 'Roboto Slab', serif;
}
.standard-padding {
  padding: 3vw 2vw;
}
@media only screen and (max-width : 1280px) {
  .standard-padding {
    padding: 3vw 5vw;
  }
}
@media only screen and (min-width : 768px) and (max-width : 1024px), only screen and (min-width : 600px) and (max-width : 767px) {
  .standard-padding {
    padding: 5vw;
  }
}
@media only screen and (min-width : 320px) and (max-width : 599px) {
  .standard-padding {
    padding: 5vw 7vw;
  }
}
* {
  box-sizing: border-box;
}
@keyframes feedbackfinished {
  0% {
    top: 0;
  }
  100% {
    top: -200px;
  }
}
#busy-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/loader.gif') center center no-repeat rgba(0, 0, 0, 0.75);
  color: white;
  z-index: 100;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
}
#busy-overlay.hide {
  display: none;
}
#feedback {
  position: fixed;
  bottom: -200px;
  left: 0;
  width: 100%;
  height: auto;
  color: #294F54;
  color: white;
  padding: 1em 1em 1em 5%;
  transition: all 0.5s;
  z-index: 99;
  text-align: center;
}
#feedback:after {
  position: absolute;
  top: 0;
  left: 2%;
  padding-top: 1em;
  content: " ";
  text-align: center;
  font-family: 'FontAwesome';
  height: 100%;
  width: 5%;
}
#feedback.warn {
  background: red;
}
#feedback.warn:after {
  content: "\f071";
}
#feedback.success {
  background: rgba(0, 0, 0, 0.7);
  color: white;
}
#feedback.success:after {
  content: "\f058";
}
@media only screen and (min-width : 320px) and (max-width : 599px) {
  #feedback {
    font-size: 100%;
  }
}
#feedback.open {
  bottom: 0;
  transition: all 0.5s;
}
#mobi-menu-trigger {
  display: none;
}
.touch #mobi-menu-trigger {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  height: 55px;
  width: 45px;
  z-index: 11;
  color: white;
  font-size: 32px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
}
.mobi-bg-overlay {
  display: none;
  pointer-events: none;
}
.touch .mobi-bg-overlay {
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  position: fixed;
  opacity: 0;
  z-index: 5;
  transition: opacity 0.5s;
}
.touch .mobi-bg-overlay.open {
  transition: opacity 0.5s;
  opacity: 1;
}
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
}
@media only screen and (max-width : 1024px) {
  .container {
    width: 90%;
  }
}
#satori-fixed-header {
  padding: 0.75em 0;
  width: 100%;
  background: #423A37;
  color: #DBD2C1;
  font-size: 100%;
  text-transform: uppercase;
  font-family: 'Roboto Slab', serif;
}
#satori-fixed-header .container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
#satori-fixed-header a {
  color: #DBD2C1;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
#satori-fixed-header a:hover {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: white;
}
#satori-fixed-header .fh-left {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex: 5;
}
#satori-fixed-header .fh-left i {
  margin-right: 0.5em;
}
#satori-fixed-header .fh-right {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex: 1;
  margin-left: auto;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
#satori-fixed-header .fh-right i {
  font-size: 160%;
  margin: -0.15em 0 -0.75em;
  color: #DBD2C1;
  transition: color 0.5s;
  cursor: pointer;
}
#satori-fixed-header .fh-right i:hover {
  color: white;
  transition: color 0.5s;
}
#satori-fixed-header .fh-item {
  margin-right: 1em;
}
#satori-fixed-header .fh-item:last-of-type {
  margin: 0;
}
@media only screen and (min-width : 768px) and (max-width : 1024px), only screen and (min-width : 600px) and (max-width : 767px), only screen and (min-width : 320px) and (max-width : 599px), only screen and (max-width : 320px) {
  #satori-fixed-header {
    display: none;
  }
}
#satori-menu-sticky-wrapper {
  position: relative;
  z-index: 99;
}
#satori-menu {
  background: url('../img/bg-with-static.gif') #DBD2C1 repeat;
  color: #423A37;
  box-sizing: border-box;
  padding: 1.5em 0;
  font-size: 90%;
  position: relative;
  z-index: 10;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
  font-family: 'Roboto Slab', serif;
}
#satori-menu:after {
  content: " ";
  position: absolute;
  z-index: 9;
  height: 7%;
  bottom: 0;
  left: 0;
  width: 100%;
  border-top: 1px dashed #759aa5;
}
@media only screen and (min-width : 768px) and (max-width : 1024px), only screen and (min-width : 600px) and (max-width : 767px), only screen and (min-width : 320px) and (max-width : 599px) {
  #satori-menu {
    padding: 0;
    height: 55px;
    position: fixed;
    top: 0;
    width: 100%;
  }
}
#satori-menu .satori-menu-wrapper {
  max-width: 1180px;
  margin: 0 auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  align-items: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
}
.touch #satori-menu .satori-menu-wrapper {
  position: fixed;
  z-index: 8;
  margin: 0;
  top: 55px;
  bottom: 0;
  width: 40%;
  left: 100%;
  background: url(../img/bg-with-static.gif) #DBD2C1 repeat;
  flex-direction: column;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  transition: left 0.5s;
  font-size: 110%;
}
@media only screen and (min-width : 600px) and (max-width : 767px) {
  .touch #satori-menu .satori-menu-wrapper {
    width: 50%;
  }
}
@media only screen and (min-width : 320px) and (max-width : 599px) {
  .touch #satori-menu .satori-menu-wrapper {
    width: 80%;
  }
}
@media only screen and (max-width : 320px) {
  .touch #satori-menu .satori-menu-wrapper {
    width: 90%;
  }
}
.touch #satori-menu .satori-menu-wrapper.open {
  transition: left 0.5s;
  left: 60%;
}
@media only screen and (min-width : 600px) and (max-width : 767px) {
  .touch #satori-menu .satori-menu-wrapper.open {
    left: 50%;
  }
}
@media only screen and (min-width : 320px) and (max-width : 599px) {
  .touch #satori-menu .satori-menu-wrapper.open {
    left: 20%;
  }
}
@media only screen and (max-width : 320px) {
  .touch #satori-menu .satori-menu-wrapper.open {
    left: 10%;
  }
}
.touch #satori-menu .satori-menu-wrapper .menu-item {
  width: 100%;
  padding: 0.5em 0 0.5em 1em;
  border-bottom: 1px dashed #6F9FA3;
}
.touch #satori-menu .satori-menu-wrapper .menu-item.active {
  padding: 0.5em 1em;
  border-bottom: none;
  background: #6F9FA3;
}
.touch #satori-menu .satori-menu-wrapper .menu-item.active a {
  color: white;
  display: block;
  width: 100%;
}
.touch #satori-menu .satori-menu-wrapper .menu-item.donate {
  display: none;
}
.touch #satori-menu .satori-menu-wrapper .touch-only {
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 0 1em 1em;
}
.touch #satori-menu .satori-menu-wrapper .touch-only .donate {
  margin-bottom: 1em;
}
.touch #satori-menu .satori-menu-wrapper .touch-only .fh-item {
  margin-bottom: 0.75em;
  text-transform: uppercase;
}
#satori-menu .satori-menu-wrapper a {
  color: #423A37;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
#satori-menu .satori-menu-wrapper a:hover {
  color: white;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
#satori-menu .satori-menu-wrapper .touch-only {
  display: none;
}
#satori-menu .satori-menu-wrapper .menu-item {
  text-transform: uppercase;
}
#satori-menu .satori-menu-wrapper .menu-item.active {
  border-bottom: 2px solid #2A4848;
  padding: 0.5em 0;
}
#satori-menu .satori-menu-wrapper .menu-item.logo {
  margin: -18px 0 -37px;
  position: relative;
  z-index: 10;
}
.touch #satori-menu .satori-menu-wrapper .menu-item.logo {
  position: fixed;
  margin: -5px 0;
  top: 9px;
  left: 0;
  z-index: 11;
  padding-top: 0;
  border: 0;
  width: 140px;
}
#satori-menu .satori-menu-wrapper .menu-item.logo a {
  color: #294F54;
  display: block;
}
#satori-menu .satori-menu-wrapper .menu-item.donate {
  margin: -0.5em 0;
}
#strap {
  padding: 0.5em 1em;
  background: #294F54;
  color: white;
  text-align: center;
  font-size: 110%;
  font-family: 'Roboto', sans-serif;
}
@media only screen and (min-width : 768px) and (max-width : 1024px) {
  #strap {
    font-size: 90%;
  }
}
#strap a {
  color: white;
  text-decoration: underline;
  font-weight: bold;
}
#wrapper {
  font-family: 'Roboto', sans-serif;
  z-index: 1;
  width: 100%;
}
@media only screen and (min-width : 768px) and (max-width : 1024px), only screen and (min-width : 600px) and (max-width : 767px), only screen and (min-width : 320px) and (max-width : 599px) {
  #wrapper {
    padding-top: 55px;
  }
}
#footer {
  background: #423A37;
  color: #DBD2C1;
  padding: 2em 0 2em;
}
@media only screen and (max-width : 768px), only screen and (min-width : 600px) and (max-width : 767px), only screen and (min-width : 320px) and (max-width : 599px), only screen and (max-width : 320px) {
  #footer {
    padding-bottom: 2em;
  }
}
#footer a {
  color: #DBD2C1 !important;
}
#footer .strap {
  padding: 1em;
  border: 1px dashed #DBD2C1;
  margin-top: 2em;
  text-align: center;
}
#footer #footer-newsletter {
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  padding: 1em;
  border: 1px dashed #DBD2C1;
  margin-bottom: 2em;
}
@media only screen and (min-width : 600px) and (max-width : 767px), only screen and (min-width : 320px) and (max-width : 599px), only screen and (max-width : 320px) {
  #footer #footer-newsletter {
    flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
  }
}
#footer #footer-newsletter .column-1 {
  flex: 2;
  font-style: italic;
  text-align: right;
  padding-right: 1em;
  font-size: 90%;
}
@media only screen and (min-width : 600px) and (max-width : 767px), only screen and (min-width : 320px) and (max-width : 599px), only screen and (max-width : 320px) {
  #footer #footer-newsletter .column-1 {
    padding: 0;
    text-align: center;
  }
}
#footer #footer-newsletter .column-2 {
  flex: 3 1;
  margin: 0 0.5rem;
}
@media only screen and (min-width : 600px) and (max-width : 767px), only screen and (min-width : 320px) and (max-width : 599px), only screen and (max-width : 320px) {
  #footer #footer-newsletter .column-2 {
    width: 100%;
    margin: 0.75em 0;
  }
}
#footer #footer-newsletter .column-2 input {
  width: 100%;
  border: 1px solid #DBD2C1;
  padding: 0.5em 0.5em;
  background: none;
  color: #DBD2C1;
  font-family: 'Roboto', sans-serif;
}
#footer #footer-newsletter .column-3 {
  flex: 2;
  margin-left: auto;
  justify-content: center;
  -webkit-justify-content: center;
  padding-left: 1em;
}
#footer #footer-newsletter .column-3 .subscribe-button {
  padding: 0.5em 1em;
  border: 2px solid #DBD2C1;
  font-family: 'Roboto Slab', serif;
  background: none;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
#footer #footer-newsletter .column-3 .subscribe-button:hover {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background: #DBD2C1;
  color: #294F54;
}
#footer #footer-newsletter .column-3 .subscribe-success {
  display: none;
  border: 2px solid #423A37;
  padding: 0.5em 1em;
  font-family: 'Roboto Slab', serif;
  background: none;
  text-align: center;
  font-weight: bold;
}
#footer #footer-flex-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media only screen and (min-width : 600px) and (max-width : 767px), only screen and (min-width : 320px) and (max-width : 599px), only screen and (max-width : 320px) {
  #footer #footer-flex-wrapper {
    flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
  }
}
#footer #footer-flex-wrapper .footer-logo img {
  width: 86%;
}
@media only screen and (min-width : 600px) and (max-width : 767px), only screen and (min-width : 320px) and (max-width : 599px), only screen and (max-width : 320px) {
  #footer #footer-flex-wrapper .footer-logo img {
    width: 100%;
  }
}
#footer .footer-header {
  font-family: 'Roboto Slab', serif;
  font-size: 120%;
  margin-bottom: 1em;
}
#footer .footer-bodytext {
  font-size: 90%;
}
@media only screen and (max-width : 768px), only screen and (min-width : 600px) and (max-width : 767px), only screen and (min-width : 320px) and (max-width : 599px), only screen and (max-width : 320px) {
  #footer .column.project {
    flex: 2;
  }
}
#footer .column.friends {
  line-height: 150%;
}
@media only screen and (max-width : 768px), only screen and (min-width : 600px) and (max-width : 767px), only screen and (min-width : 320px) and (max-width : 599px), only screen and (max-width : 320px) {
  #footer .column.friends {
    display: none;
  }
}
#footer .column {
  flex: 1;
}
@media only screen and (min-width : 600px) and (max-width : 767px), only screen and (min-width : 320px) and (max-width : 599px), only screen and (max-width : 320px) {
  #footer .column {
    margin-top: 1.5em;
  }
}
#footer .footer-item {
  color: #DBD2C1;
  margin-top: 1em;
}
#footer a {
  color: #DBD2C1;
  text-decoration: none;
  border-bottom: 1px dashed #423A37;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  padding-bottom: 0.25em;
}
#footer a:hover {
  color: white;
  border-bottom: 1px dashed white;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
#footer ul {
  padding: 0;
  margin: 0;
}
#footer ul li {
  list-style: none;
  margin: 0;
  padding: 0.25em 0;
}
#footer .project {
  font-size: 100%;
  font-family: 'Roboto Slab', serif;
  text-transform: uppercase;
}
#footer .social a {
  position: relative;
  bottom: 8px;
}
a {
  color: #5B818C;
  text-decoration: none;
}
.disabled {
  opacity: 0.5 !important;
  pointer-events: none !important;
}
.contact-success {
  display: none;
}
.button {
  padding: 1em !important;
  border: 2px solid #2A4848;
  color: #294F54;
  font-weight: bold;
  font-family: 'Roboto Slab', serif;
  background: none;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.button:hover {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background: #2A4848;
  color: white;
}
.button:hover input[type=submit] {
  color: white;
}
.button.short {
  display: inline-block;
}
.major-heading {
  padding: 4em 0 1.5em;
  background-image: url('../img/page-heading-bg.jpg');
  background-size: cover;
  background-position: center center;
}
@media only screen and (min-width : 320px) and (max-width : 599px) {
  .major-heading {
    padding: 2em 0 1em;
  }
}
.major-heading .heading-text {
  font-family: 'Roboto Slab', serif;
  font-size: 170%;
  font-weight: bold;
  color: #8e8d8d;
  text-transform: uppercase;
  padding-bottom: 0.5em;
  border-bottom: 1px dashed #294F54;
  width: 50%;
  margin-bottom: 1em;
}
.major-heading .heading-subtext {
  width: 50%;
  color: #8e8d8d;
}
.page-heading {
  color: #5B818C;
  font-weight: bold;
  margin-bottom: 1em;
  font-size: 230%;
  font-family: 'Roboto Slab', serif;
}
@media only screen and (min-width : 320px) and (max-width : 599px) {
  .page-heading {
    margin-bottom: 0.8em;
  }
}
.text-body {
  font-size: 90%;
  line-height: 140%;
  color: white;
  font-family: opensanslite;
}
@media only screen and (min-width : 320px) and (max-width : 599px) {
  .text-body {
    line-height: 120%;
  }
}
.section-heading {
  font-family: 'Roboto Slab', serif;
  font-size: 170%;
  font-weight: bold;
  color: #8e8d8d;
  padding-bottom: 0.5em;
  margin-bottom: 1em;
  border-bottom: 1px dashed #294F54;
  text-transform: uppercase;
}
.section-subheading {
  font-family: 'Roboto', sans-serif;
  font-size: 120%;
  color: #2A4848;
  margin-bottom: 1em;
  line-height: 150%;
}
.section-content-subheading {
  font-family: 'Roboto', sans-serif;
  font-size: 140%;
  color: #2A4848;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
  border-bottom: 1px dashed #8e8d8d;
}
.section-bodytext {
  color: #8e8d8d;
  font-size: 90%;
  line-height: 160%;
  margin-bottom: 0.5em;
}
.box-subheading {
  font-family: 'Roboto Slab', serif;
  color: #2A4848;
  font-size: 120%;
  margin: 0.5em 0;
}
.box-bodytext {
  color: #8e8d8d;
  font-size: 90%;
  line-height: 160%;
  margin-bottom: 1em;
}
.vision-wrapper {
  margin-bottom: 1.5em;
}
@media only screen and (max-width : 768px) {
  .vision-wrapper {
    margin-top: 1.5em;
  }
}
.vision-icon {
  color: #2A4848;
  margin-right: 0.5em;
}
.vision-heading {
  font-family: 'Roboto Slab', serif;
  margin-bottom: 0.5em;
  color: #294F54;
}
.vision-bodytext {
  color: #8e8d8d;
  font-size: 90%;
  line-height: 160%;
}
.vision-readmore {
  color: #2A4848;
  margin-top: 0.5em;
  font-size: 90%;
  font-weight: bold;
}
.vision-readmore a {
  color: #2A4848;
  text-decoration: none;
  padding-bottom: 0.25em;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border-bottom: 1px dashed #DBD2C1;
}
.vision-readmore a:hover {
  border-bottom: 1px dashed #2A4848;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.stitched {
  position: relative;
  border: 1px dashed #294F54;
  padding: 3%;
  background: white;
  line-height: 0;
}
form input[type='submit'] {
  background: none;
  font-family: 'Roboto Slab', serif;
  color: #2A4848;
  font-weight: bold;
  cursor: pointer;
  outline: none !important;
}
form input[type='submit']:focus {
  border: none;
  outline: none;
}
.touch form input[type='submit'] {
  width: 100%;
}
.touch form#desktop-form {
  display: none;
}
form#mobile-form {
  display: none;
}
.touch form#mobile-form {
  display: block;
}
form#contact-form .form-entry {
  margin-bottom: 1em;
}
form#contact-form .form-entry .form-label {
  margin-bottom: 0.5em;
  color: #5B818C;
  font-size: 120%;
}
form#contact-form .form-entry input[type=text],
form#contact-form .form-entry input[type=tel],
form#contact-form .form-entry input[type=email],
form#contact-form .form-entry textarea,
form#contact-form .form-entry select {
  border: 1px dashed #5B818C;
  padding: 0.5em;
  font-size: 120%;
}
form#contact-form .form-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media only screen and (min-width : 320px) and (max-width : 599px), only screen and (max-width : 320px) {
  form#contact-form .form-wrapper {
    flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
  }
  form#contact-form .form-wrapper .form-entry {
    width: 100% !important;
  }
  form#contact-form .form-wrapper .form-entry:first-of-type {
    margin: 0 0 0.5em 0;
  }
}
form#contact-form .form-wrapper .form-entry {
  width: 50%;
}
form#contact-form .form-wrapper .form-entry:first-of-type {
  margin-right: 2em;
}
form#contact-form input[type=text],
form#contact-form input[type=tel],
form#contact-form input[type=email],
form#contact-form textarea {
  width: 100%;
}
form#contact-form .contact-success {
  font-family: 'Roboto Slab', serif;
  padding: 1em !important;
  border: 2px solid #2A4848;
  font-weight: bold;
  text-align: center;
  background: #2A4848;
  color: white;
}
.sending-email {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #5B818C;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  color: white;
}
#welcome-page #heropic {
  padding-top: 36%;
  background: url('../img/heropic.jpg') no-repeat center center;
  -webkit-background-size: cover;
  background-size: cover;
  position: relative;
}
@media only screen and (min-width : 320px) and (max-width : 599px), only screen and (max-width : 320px) {
  #welcome-page #heropic {
    padding-top: 70%;
    background-position: 40% 50%;
  }
}
#welcome-page #heropic .hero-cta {
  width: 20%;
  position: absolute;
  right: 0;
  bottom: 45px;
  background: url(../img/bg-with-static.gif) repeat rgba(219, 210, 193, 0.85);
  padding: 0.5em;
}
@media only screen and (max-width : 1024px) {
  #welcome-page #heropic .hero-cta {
    width: 30%;
  }
}
@media only screen and (max-width : 768px) {
  #welcome-page #heropic .hero-cta {
    display: none;
  }
}
#welcome-page #heropic .hero-cta .inner {
  padding: 0.75em;
  border: 1px dashed #294F54;
}
#welcome-page #heropic .hero-cta .artwork-thumb {
  margin-bottom: 0.5em;
}
#welcome-page #heropic .hero-cta .get-involved {
  text-transform: uppercase;
  font-family: 'Roboto Slab', serif;
  font-weight: bold;
  font-size: 130%;
  color: #294F54;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
  border-bottom: 2px solid #294F54;
}
#welcome-page #heropic .hero-cta .involved-text {
  font-size: 80%;
  margin-bottom: 1.25em;
}
#welcome-page #frontpage-welcome {
  padding: 4em 0;
}
@media only screen and (max-width : 768px), only screen and (min-width : 600px) and (max-width : 767px), only screen and (min-width : 320px) and (max-width : 599px), only screen and (max-width : 320px) {
  #welcome-page #frontpage-welcome {
    padding: 2em 0;
  }
}
#welcome-page #frontpage-welcome .container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media only screen and (min-width : 600px) and (max-width : 767px), only screen and (min-width : 320px) and (max-width : 599px), only screen and (max-width : 320px) {
  #welcome-page #frontpage-welcome .container {
    flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
  }
}
#welcome-page #frontpage-welcome .container .fp-welcome-left {
  flex: 2;
  margin-right: 3em;
}
@media only screen and (min-width : 600px) and (max-width : 767px), only screen and (min-width : 320px) and (max-width : 599px), only screen and (max-width : 320px) {
  #welcome-page #frontpage-welcome .container .fp-welcome-left {
    margin-right: 0;
  }
}
#welcome-page #frontpage-welcome .container .fp-welcome-right {
  flex: 1;
  margin-right: 3em;
}
@media only screen and (min-width : 600px) and (max-width : 767px), only screen and (min-width : 320px) and (max-width : 599px), only screen and (max-width : 320px) {
  #welcome-page #frontpage-welcome .container .fp-welcome-right {
    margin-right: 0;
    margin-top: 1.5em;
  }
}
#welcome-page #frontpage-welcome .container .fp-welcome-right:last-of-type {
  margin-right: 0;
}
#welcome-page #frontpage-welcome .container .dictionary {
  margin-bottom: 1em;
  color: #6F9FA3;
}
#welcome-page #frontpage-welcome .container .dictionary .word {
  font-family: 'Roboto Slab', serif;
  font-size: 1.5em;
  color: #5B818C;
}
#welcome-page #frontpage-welcome .container .dictionary .type {
  font-style: italic;
  font-weight: bold;
}
#welcome-page #frontpage-vision {
  position: relative;
  padding: 4em 0 2.5em;
  background: url(../img/bg-with-static.gif) #DBD2C1 repeat;
}
@media only screen and (max-width : 768px) {
  #welcome-page #frontpage-vision {
    padding: 2em 0 0.5em;
  }
}
#welcome-page #frontpage-vision .container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media only screen and (max-width : 768px) {
  #welcome-page #frontpage-vision .container {
    flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
  }
}
#welcome-page #frontpage-vision .container .fp-vision {
  flex: 1;
  margin-right: 3em;
}
#welcome-page #frontpage-vision .container .fp-vision:last-of-type {
  margin-right: 0;
}
@media only screen and (max-width : 768px) {
  #welcome-page #frontpage-vision .container .fp-vision {
    margin-right: 0;
  }
  #welcome-page #frontpage-vision .container .fp-vision:last-of-type {
    margin-top: -1.5em;
  }
}
#welcome-page #frontpage-vision .container .vision-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
#welcome-page #frontpage-vision:after {
  content: " ";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 8px;
  border-top: 1px dashed #6F9FA3;
}
#pandemic-page #epi-text,
#contact-page #epi-text {
  padding: 2em 0 4em;
}
@media only screen and (min-width : 320px) and (max-width : 599px) {
  #pandemic-page #epi-text,
  #contact-page #epi-text {
    padding: 2em 0;
  }
}
#pandemic-page #epi-text .container,
#contact-page #epi-text .container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media only screen and (min-width : 320px) and (max-width : 599px) {
  #pandemic-page #epi-text .container,
  #contact-page #epi-text .container {
    flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
  }
}
#pandemic-page #epi-text .container .lhs,
#contact-page #epi-text .container .lhs {
  flex: 1;
  margin-right: 2em;
}
@media only screen and (min-width : 320px) and (max-width : 599px) {
  #pandemic-page #epi-text .container .lhs,
  #contact-page #epi-text .container .lhs {
    margin-right: 0;
    margin-bottom: 1em;
  }
}
#pandemic-page #epi-text .container .rhs,
#contact-page #epi-text .container .rhs {
  flex: 3;
}
#contribute-page .major-heading {
  background-image: url('../img/contribute-page-bg.jpg');
}
#contribute-page a {
  color: #5B818C;
  text-decoration: underline;
  cursor: pointer;
}
#contribute-page #mailinglist {
  color: #5B818C;
  text-decoration: underline;
  cursor: pointer;
}
#contribute-page .container .columns {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media only screen and (min-width : 320px) and (max-width : 599px) {
  #contribute-page .container .columns {
    flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
  }
}
#contribute-page .container .col1 {
  flex: 2;
  margin-right: 2em;
}
#contribute-page .container .col2 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex: 1;
  flex-direction: column;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
}
#contribute-page #epi-text {
  padding: 2em 0 4em;
}
@media only screen and (min-width : 320px) and (max-width : 599px) {
  #contribute-page #epi-text {
    padding: 2em 0;
  }
}
#contribute-page #epi-text .container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media only screen and (min-width : 320px) and (max-width : 599px) {
  #contribute-page #epi-text .container {
    flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
  }
}
#contribute-page #epi-text .container .lhs {
  flex: 1;
  margin-right: 2em;
}
@media only screen and (min-width : 320px) and (max-width : 599px) {
  #contribute-page #epi-text .container .lhs {
    margin-right: 0;
    margin-bottom: 1em;
  }
}
#contribute-page #epi-text .container .rhs {
  flex: 3;
}
#exhibition-page .major-heading {
  background-image: url('../img/exhibition-page-bg.jpg');
}
#whoweare-page .major-heading {
  background-image: url('../img/about-page-bg.jpg');
}
#whoweare-page .section-content-subheading {
  margin-top: 0;
  margin-bottom: 1em;
  display: inline-block;
}
#whoweare-page #epi-text {
  padding: 2em 0 2em;
}
@media only screen and (min-width : 320px) and (max-width : 599px) {
  #whoweare-page #epi-text {
    padding: 2em 0;
  }
}
#whoweare-page #epi-text .container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media only screen and (min-width : 320px) and (max-width : 599px) {
  #whoweare-page #epi-text .container {
    flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
  }
}
#whoweare-page #epi-text .container .lhs {
  flex: 1;
  margin-right: 2em;
}
@media only screen and (min-width : 320px) and (max-width : 599px) {
  #whoweare-page #epi-text .container .lhs {
    margin-right: 0;
    margin-bottom: 1em;
  }
}
#whoweare-page #epi-text .container .rhs {
  flex: 3;
}
#whoweare-page .whoweare-text {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
@media only screen and (min-width : 320px) and (max-width : 599px) {
  #whoweare-page .whoweare-text {
    flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
  }
}
#whoweare-page .whoweare-text .bio-container {
  box-sizing: content-box;
  width: 48%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-bottom: 2em;
}
@media only screen and (min-width : 768px) and (max-width : 1024px) {
  #whoweare-page .whoweare-text .bio-container {
    width: 100%;
  }
}
#whoweare-page .whoweare-text .bio-container .bio-subheading {
  font-family: 'Roboto', sans-serif;
  font-size: 120%;
  color: #2a4848;
  margin-bottom: 0.25em;
  line-height: 150%;
}
#whoweare-page .whoweare-text .bio-container .bio-title {
  margin-bottom: 1em;
  font-weight: bold;
  font-size: 70%;
  text-transform: uppercase;
}
@media only screen and (min-width : 320px) and (max-width : 599px), only screen and (max-width : 320px) {
  #whoweare-page .whoweare-text .bio-container {
    flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    margin-bottom: 1em;
    width: 100%;
  }
}
#whoweare-page .whoweare-text .bio-container img {
  line-height: 0;
}
#whoweare-page .whoweare-text .bio-container:nth-child(odd) {
  margin-right: 2em;
}
@media only screen and (min-width : 320px) and (max-width : 599px) {
  #whoweare-page .whoweare-text .bio-container:nth-child(odd) {
    margin-right: 0;
  }
}
#whoweare-page .whoweare-text .bio-container .lhs {
  flex: 1;
  margin-right: 2em;
}
@media only screen and (min-width : 320px) and (max-width : 599px) {
  #whoweare-page .whoweare-text .bio-container .lhs {
    margin-right: 0;
  }
}
#whoweare-page .whoweare-text .bio-container .rhs {
  flex: 3;
}
@media only screen and (min-width : 320px) and (max-width : 599px) {
  #whoweare-page .whoweare-text .bio-container .rhs {
    flex: 1;
    margin-top: 1em;
  }
}
#wellness-page .major-heading {
  background-image: url('../img/wellness-page-heading.jpg');
}
#wellness-page .major-heading .container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media only screen and (min-width : 320px) and (max-width : 599px) {
  #wellness-page .major-heading .container {
    flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
  }
}
#wellness-page .major-heading .col1 {
  flex: 3;
  margin-right: 7.5%;
}
#wellness-page .major-heading .col2,
#wellness-page .major-heading .col3,
#wellness-page .major-heading .col4 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex: 1;
  margin-right: 5%;
}
@media only screen and (min-width : 320px) and (max-width : 599px) {
  #wellness-page .major-heading .col2,
  #wellness-page .major-heading .col3,
  #wellness-page .major-heading .col4 {
    margin-bottom: 1em;
  }
}
#wellness-page .major-heading .col4 {
  margin-right: 0;
}
#wellness-page .major-heading .button-holder {
  margin-top: auto;
}
#wellness-page #wellness-text {
  padding: 2em 0 4em;
}
@media only screen and (min-width : 320px) and (max-width : 599px) {
  #wellness-page #wellness-text {
    padding: 2em 0;
  }
}
#wellness-page #wellness-text .container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media only screen and (min-width : 320px) and (max-width : 599px) {
  #wellness-page #wellness-text .container {
    flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
  }
}
#wellness-page #wellness-text .container .lhs {
  flex: 1;
  margin-right: 2em;
}
@media only screen and (min-width : 320px) and (max-width : 599px) {
  #wellness-page #wellness-text .container .lhs {
    margin-right: 0;
    margin-bottom: 1em;
  }
}
#wellness-page #wellness-text .container .rhs {
  flex: 3;
}
#exhibition-page #exhibition-gallery {
  max-height: 10000px;
}
#exhibition-page #exhibition-gallery .loading-overlay {
  display: none;
}
#exhibition-page #exhibition-gallery .isotope-gallery {
  margin: 1em auto;
  max-width: 1170px;
  opacity: 1;
}
#exhibition-page #exhibition-gallery.loading {
  max-height: 100px;
  overflow: hidden;
  position: relative;
}
#exhibition-page #exhibition-gallery.loading .isotope-gallery {
  opacity: 0;
}
#exhibition-page #exhibition-gallery.loading .loading-overlay {
  display: block;
  height: 100px;
  line-height: 100px;
  color: #294F54;
  background: url('../img/ajax-loader.gif') 70% center no-repeat;
  text-align: center;
  position: relative;
}
#exhibition-page #exhibition-gallery.loading .loading-overlay .loading-progress {
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  background: #294F54;
  -webkit-transition: width 0.2s;
  -moz-transition: width 0.2s;
  -ms-transition: width 0.2s;
  -o-transition: width 0.2s;
  transition: width 0.2s;
}
#exhibition-page .gallery-template {
  width: 24%;
  border: 1px solid gray;
  border-radius: 5px;
  padding: 1%;
  margin: 0.5%;
  font-family: 'Roboto', sans-serif;
}
#exhibition-page .gallery-template .artwork-title {
  font-family: 'Roboto Slab', serif;
  color: #294F54;
  font-size: 1.1em;
  margin-top: 1em;
}
#exhibition-page .gallery-template .artwork-medium {
  margin-top: 0.25em;
  font-size: 0.8em;
}
#exhibition-page .gallery-template .artwork-artist {
  margin-top: 0.5em;
}
#exhibition-page .gallery-template .artwork-description {
  margin-top: 0.5em;
  font-size: 0.9em;
  color: #8e8d8d;
}
#exhibition-page .gallery-template .artwork-description.ready {
  max-height: 0;
  overflow: hidden;
}
#exhibition-page .gallery-template .artwork-description.active {
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  max-height: 750px !important;
}
#exhibition-page .gallery-template .artwork-readmore {
  font-size: 0.8em;
  padding: 0.25em;
  margin-top: 1em;
}
#exhibition-page .gallery-template .artwork-link {
  margin-top: 1em;
  text-align: center;
  font-weight: bold;
}
#exhibition-page .gallery-template .artwork-link a {
  color: #6F9FA3;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
#exhibition-page .gallery-template .artwork-link a:hover {
  color: #294F54;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
#friends-page .major-heading {
  background-image: url('../img/friends-page-bg.jpg');
}
#friends-page #friends-text {
  padding: 2em 0 4em;
}
@media only screen and (min-width : 320px) and (max-width : 599px) {
  #friends-page #friends-text {
    padding: 2em 0;
  }
}
#friends-page #friends-text .container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media only screen and (min-width : 320px) and (max-width : 599px) {
  #friends-page #friends-text .container {
    flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
  }
}
#friends-page #friends-text .container .lhs {
  flex: 1;
  margin-right: 2em;
}
@media only screen and (min-width : 320px) and (max-width : 599px) {
  #friends-page #friends-text .container .lhs {
    margin-right: 0;
    margin-bottom: 1em;
  }
}
#friends-page #friends-text .container .rhs {
  flex: 3;
}
