@charset "UTF-8";
/*main.scss*/
/* -------------
LIB
3rd party vendors.
---------------*/
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400i,600,600i,700,700i");
html {
  box-sizing: border-box;
}

*, *::after, *::before {
  box-sizing: inherit;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-dots {
  position: absolute;
  bottom: 20px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 50px;
  line-height: 20px;
  text-align: center;
  color: white;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: #74d1ea;
  opacity: 0.75;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*type.scss*/
/* -------------
SETTINGS
Global settings. Not in alphabetical order so files compile in order.
---------------*/
/*vars.scss*/
/*colors.scss*/
.partner-color-a {
  background-color: #f77012;
}

.partner-color-b {
  background-color: #74d1ea;
}

.partner-color-c {
  background-color: #75787b;
}

/*body.scss*/
body {
  margin: 0;
}

.google-maps {
  position: relative;
  padding-bottom: 75%;
  height: 0;
  overflow: hidden;
}

.google-maps iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

/*type*/
h1 {
  font-family: "Source Sans Pro", sans-serif;
  font-style: normal;
  font-weight: 700;
  color: #00313c;
  font-size: 36px;
  line-height: 46px;
  margin-bottom: 30px;
  margin-top: 20px;
}
@media screen and (max-width: 770px) {
  h1 {
    font-size: 30px;
    line-height: 35px;
  }
}
@media screen and (max-width: 550px) {
  h1 {
    font-size: 30px;
    line-height: 35px;
  }
}

h2 {
  font-family: "Source Sans Pro", sans-serif;
  font-style: normal;
  font-weight: 600;
  color: #00313c;
  font-size: 34px;
  line-height: 44px;
  margin-top: 0;
}
@media screen and (max-width: 770px) {
  h2 {
    font-size: 28px;
    line-height: 32px;
  }
}
@media screen and (max-width: 550px) {
  h2 {
    font-size: 28px;
    line-height: 30px;
  }
}

h3 {
  font-family: "Source Sans Pro", sans-serif;
  font-style: normal;
  font-weight: 700;
  color: #00313c;
  font-size: 26px;
  line-height: 32px;
  margin-top: 0;
}

h4 {
  font-family: "Source Sans Pro", sans-serif;
  font-style: normal;
  font-weight: 700;
  color: #00313c;
  font-size: 22px;
  line-height: 32px;
  margin: 0;
}
@media screen and (max-width: 550px) {
  h4 {
    font-size: 24px;
    line-height: 28px;
  }
}
h4 em {
  font-family: "Source Sans Pro", sans-serif;
  font-style: normal;
  font-weight: 700;
}

h5 {
  font-family: "Source Sans Pro", sans-serif;
  font-style: normal;
  font-weight: 700;
  color: #74d1ea;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 28px;
  margin: 0;
}

h6 {
  font-family: "Source Sans Pro", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #75787b;
  font-size: 20px;
  line-height: 32px;
  margin: 0;
}
h6 a {
  color: #f77012;
  text-decoration: none;
}
h6 a:hover {
  color: #00313c;
}
@media screen and (max-width: 770px) {
  h6 {
    font-size: 20px;
    line-height: 24px;
  }
}
@media screen and (max-width: 550px) {
  h6 {
    font-size: 18px;
    line-height: 22px;
  }
}

em {
  font-family: "Source Sans Pro", sans-serif;
  font-style: normal;
  font-weight: 600;
}

p, body.blog .side-bar .authors ul li,
body.archive .side-bar .authors ul li,
body.category .side-bar .authors ul li,
body.search-results .side-bar .authors ul li,
body.category-events .side-bar .authors ul li,
ul,
ol {
  font-family: "Source Sans Pro", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #75787b;
  font-size: 17px;
  line-height: 26px;
  margin: 0 0 18px 0;
}
@media screen and (max-width: 770px) {
  p, body.blog .side-bar .authors ul li,
body.archive .side-bar .authors ul li,
body.category .side-bar .authors ul li,
body.search-results .side-bar .authors ul li,
body.category-events .side-bar .authors ul li,
ul,
ol {
    font-size: 16px;
    line-height: 20px;
  }
}
@media screen and (max-width: 550px) {
  p, body.blog .side-bar .authors ul li,
body.archive .side-bar .authors ul li,
body.category .side-bar .authors ul li,
body.search-results .side-bar .authors ul li,
body.category-events .side-bar .authors ul li,
ul,
ol {
    font-size: 14px;
    line-height: 18px;
  }
}
p a, body.blog .side-bar .authors ul li a,
body.archive .side-bar .authors ul li a,
body.category .side-bar .authors ul li a,
body.search-results .side-bar .authors ul li a,
body.category-events .side-bar .authors ul li a,
ul a,
ol a {
  font-family: "Source Sans Pro", sans-serif;
  font-style: italic;
  font-weight: 400;
  color: #f77012;
  text-decoration: none;
}
p a:hover, body.blog .side-bar .authors ul li a:hover,
body.archive .side-bar .authors ul li a:hover,
body.category .side-bar .authors ul li a:hover,
body.search-results .side-bar .authors ul li a:hover,
body.category-events .side-bar .authors ul li a:hover,
ul a:hover,
ol a:hover {
  text-decoration: underline;
}
p li, body.blog .side-bar .authors ul li li,
body.archive .side-bar .authors ul li li,
body.category .side-bar .authors ul li li,
body.search-results .side-bar .authors ul li li,
body.category-events .side-bar .authors ul li li,
ul li,
ol li {
  margin-bottom: 10px;
}

p.date, body.blog .side-bar .authors ul li.date,
body.archive .side-bar .authors ul li.date,
body.category .side-bar .authors ul li.date,
body.search-results .side-bar .authors ul li.date,
body.category-events .side-bar .authors ul li.date {
  font-family: "Source Sans Pro", sans-serif;
  font-style: italic;
  font-weight: 400;
}

p.caption, body.blog .side-bar .authors ul li.caption,
body.archive .side-bar .authors ul li.caption,
body.category .side-bar .authors ul li.caption,
body.search-results .side-bar .authors ul li.caption,
body.category-events .side-bar .authors ul li.caption {
  font-family: "Source Sans Pro", sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
}

blockquote p, blockquote body.blog .side-bar .authors ul li, body.blog .side-bar .authors ul blockquote li,
blockquote body.archive .side-bar .authors ul li,
body.archive .side-bar .authors ul blockquote li,
blockquote body.category .side-bar .authors ul li,
body.category .side-bar .authors ul blockquote li,
blockquote body.search-results .side-bar .authors ul li,
body.search-results .side-bar .authors ul blockquote li,
blockquote body.category-events .side-bar .authors ul li,
body.category-events .side-bar .authors ul blockquote li {
  font-family: Georgia, Times, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  line-height: 40px;
  color: #74d1ea;
}

/*table*/
table {
  font-family: "Source Sans Pro", sans-serif;
  font-style: normal;
  font-weight: 400;
}
table a {
  color: #f77012;
  text-decoration: none;
}
table a:hover {
  color: #f77012;
  text-decoration: none;
}

/*form*/
form :focus {
  outline: none;
}

/*backgrounds*/
.orange-bg {
  background-image: url("../images/orange-bokeh.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.orange-bg p, .orange-bg body.blog .side-bar .authors ul li, body.blog .side-bar .authors ul .orange-bg li,
.orange-bg body.archive .side-bar .authors ul li,
body.archive .side-bar .authors ul .orange-bg li,
.orange-bg body.category .side-bar .authors ul li,
body.category .side-bar .authors ul .orange-bg li,
.orange-bg body.search-results .side-bar .authors ul li,
body.search-results .side-bar .authors ul .orange-bg li,
.orange-bg body.category-events .side-bar .authors ul li,
body.category-events .side-bar .authors ul .orange-bg li {
  color: white;
}
.orange-bg h3 {
  color: white;
}

.navy-bg {
  background-image: url("../images/navy-bokeh.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.navy-bg p, .navy-bg body.blog .side-bar .authors ul li, body.blog .side-bar .authors ul .navy-bg li,
.navy-bg body.archive .side-bar .authors ul li,
body.archive .side-bar .authors ul .navy-bg li,
.navy-bg body.category .side-bar .authors ul li,
body.category .side-bar .authors ul .navy-bg li,
.navy-bg body.search-results .side-bar .authors ul li,
body.search-results .side-bar .authors ul .navy-bg li,
.navy-bg body.category-events .side-bar .authors ul li,
body.category-events .side-bar .authors ul .navy-bg li {
  color: white;
}
.navy-bg h3 {
  color: #a6c505;
}

.lightgray {
  background-color: #F7F7F7;
}

/* -------------
MIXINS
Reusable chunks of code.
---------------*/
/*containers.scss*/
/*reset.scss*/
/* -------------
COMPONENTS
Global or resuable pieces that are dependant on settings.
---------------*/
/*buttons.scss*/
button {
  border: none;
}

a.btn-white,
button.btn-white {
  color: #f77012 !important;
  border: 1px solid #f77012;
  background-color: white;
}

a.btn-small,
button.btn-small {
  font-family: "Source Sans Pro", sans-serif;
  font-style: normal;
  font-weight: 400;
  border-radius: 16px;
  font-size: 17px;
  padding: 7px 20px;
}
a.btn-small li,
button.btn-small li {
  padding: 5px 10px;
}

a.btn-small:hover,
button.btn-small:hover {
  cursor: pointer;
  cursor: hand;
}

a.btn-large,
button.btn-large,
input.btn-large {
  font-family: "Source Sans Pro", sans-serif;
  font-style: normal;
  font-weight: 400;
  display: inline-block;
  font-size: 19px;
  padding: 15px 25px;
  border-radius: 25px;
  text-decoration: none;
  color: #f2f2f2;
  border: none;
  outline: none;
}
a.btn-large span,
button.btn-large span,
input.btn-large span {
  padding: 15px 30px;
}
@media screen and (max-width: 770px) {
  a.btn-large,
button.btn-large,
input.btn-large {
    font-size: 15px;
    padding: 10px 20px;
  }
}

a.btn-large:hover,
button.btn-large:hover,
input.btn-large:hover {
  cursor: pointer;
  cursor: hand;
}

a.btn-white:hover,
button.btn-white:hover {
  color: #425563 !important;
  border: 1px solid #425563;
}

a.btn-orange,
button.btn-orange,
input.btn-orange {
  background-color: #FE9C3C;
  background-image: -webkit-linear-gradient(#FE9C3C, #F77012);
  background-image: linear-gradient(#FE9C3C, #F77012);
}

a.btn-lime,
button.btn-lime,
input.btn-lime {
  background-color: #a6c505;
  background-image: -webkit-linear-gradient(#a6c505, #859e04);
  background-image: linear-gradient(#a6c505, #859e04);
  color: white;
  border: none;
}

a.btn-lime:hover,
button.btn-lime:hover,
input.btn-lime:hover {
  background-color: #859e04;
  background-image: -webkit-linear-gradient(#859e04, #a6c505);
  background-image: linear-gradient(#859e04, #a6c505);
}

a.btn-orange:hover,
button.btn-orange:hover,
input.btn-orange:hover {
  background-color: #f77012;
  background-image: -webkit-linear-gradient(#f77012, #ff8f2e);
  background-image: linear-gradient(#f77012, #ff8f2e);
  cursor: pointer;
  cursor: hand;
}

/*footer*/
footer.footer {
  background-color: #00313c;
  border-top: 5px solid #c8c9c7;
  padding: 75px 0;
}
footer.footer::after {
  clear: both;
  content: "";
  display: table;
}
@media screen and (max-width: 770px) {
  footer.footer {
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  footer.footer::after {
    clear: both;
    content: "";
    display: table;
  }
}
footer.footer .footer-wrapper {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1180px) {
  footer.footer .footer-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 770px) {
  footer.footer .footer-wrapper {
    padding-top: 0;
  }
}
footer.footer p, footer.footer body.blog .side-bar .authors ul li, body.blog .side-bar .authors ul footer.footer li,
footer.footer body.archive .side-bar .authors ul li,
body.archive .side-bar .authors ul footer.footer li,
footer.footer body.category .side-bar .authors ul li,
body.category .side-bar .authors ul footer.footer li,
footer.footer body.search-results .side-bar .authors ul li,
body.search-results .side-bar .authors ul footer.footer li,
footer.footer body.category-events .side-bar .authors ul li,
body.category-events .side-bar .authors ul footer.footer li {
  color: #c8c9c7;
  font-size: 15px;
}
footer.footer p a, footer.footer body.blog .side-bar .authors ul li a, body.blog .side-bar .authors ul footer.footer li a,
footer.footer body.archive .side-bar .authors ul li a,
body.archive .side-bar .authors ul footer.footer li a,
footer.footer body.category .side-bar .authors ul li a,
body.category .side-bar .authors ul footer.footer li a,
footer.footer body.search-results .side-bar .authors ul li a,
body.search-results .side-bar .authors ul footer.footer li a,
footer.footer body.category-events .side-bar .authors ul li a,
body.category-events .side-bar .authors ul footer.footer li a {
  color: #c8c9c7;
}
footer.footer h6 {
  font-family: "Source Sans Pro", sans-serif;
  font-style: normal;
  font-weight: 600;
  color: #74d1ea;
  font-size: 16px;
  text-transform: uppercase;
}
footer.footer .column-one {
  display: inline-block;
  float: left;
  width: 33%;
}
@media screen and (max-width: 770px) {
  footer.footer .column-one {
    width: 100%;
    margin-bottom: 20px;
  }
}
footer.footer .column-one img {
  width: 285px;
}
@media screen and (max-width: 1030px) {
  footer.footer .column-one img {
    width: 100%;
    padding-right: 10px;
  }
}
@media screen and (max-width: 770px) {
  footer.footer .column-one img {
    width: 285px;
    padding-right: 0;
  }
}
footer.footer .column-one p, footer.footer .column-one body.blog .side-bar .authors ul li, body.blog .side-bar .authors ul footer.footer .column-one li,
footer.footer .column-one body.archive .side-bar .authors ul li,
body.archive .side-bar .authors ul footer.footer .column-one li,
footer.footer .column-one body.category .side-bar .authors ul li,
body.category .side-bar .authors ul footer.footer .column-one li,
footer.footer .column-one body.search-results .side-bar .authors ul li,
body.search-results .side-bar .authors ul footer.footer .column-one li,
footer.footer .column-one body.category-events .side-bar .authors ul li,
body.category-events .side-bar .authors ul footer.footer .column-one li {
  margin-top: 30px;
}
footer.footer .column-two {
  display: inline-block;
  float: left;
  width: 33%;
}
@media screen and (max-width: 770px) {
  footer.footer .column-two {
    width: 100%;
    margin-bottom: 20px;
  }
}
footer.footer .column-three {
  display: inline-block;
  float: left;
  width: 33%;
}
@media screen and (max-width: 770px) {
  footer.footer .column-three {
    width: 100%;
  }
}
footer.footer .column-three .fa {
  font-size: 20px;
  margin-right: 10px;
  margin-top: 10px;
}

/*header.scss*/
.header {
  -webkit-box-shadow: 0px 2px 10px 0px rgba(50, 50, 50, 0.2);
  -moz-box-shadow: 0px 2px 10px 0px rgba(50, 50, 50, 0.2);
  box-shadow: 0px 2px 10px 0px rgba(50, 50, 50, 0.2);
  position: relative;
  z-index: 1000;
  background-color: white;
}
.header .header-wrapper {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  clear: both;
  position: relative;
}
@media screen and (max-width: 1180px) {
  .header .header-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.header .header-wrapper::after {
  clear: both;
  content: "";
  display: table;
}
@media screen and (max-width: 910px) {
  .header .header-wrapper {
    clear: none;
  }
}
.header .logo {
  display: inline-block;
  float: left;
  width: 250px;
  margin-top: 25px;
}
.header .logo img {
  border: 0;
  width: 100%;
}
@media screen and (max-width: 550px) {
  .header .logo {
    width: 100%;
  }
  .header .logo img {
    width: 225px;
  }
}
.header .nav-expand {
  background-image: url("../images/nav-expand.svg");
  background-size: cover;
  background-repeat: no-repeat;
  display: none;
  height: 20px;
  position: absolute;
  right: 20px;
  top: 35px;
  width: 20px;
}
@media screen and (max-width: 910px) {
  .header .nav-expand {
    display: block;
  }
}
.header nav.nav {
  display: inline-block;
  float: right;
}
@media screen and (max-width: 550px) {
  .header nav.nav {
    float: left;
    display: block;
  }
}
@media screen and (max-width: 910px) {
  .header nav.nav {
    display: none;
    margin-top: 0;
    position: absolute;
    top: 94px;
    z-index: 1000;
  }
}
.header nav.nav > ul {
  list-style-type: none;
  line-height: 90px;
  margin-bottom: 0;
  padding-left: 0;
}
@media screen and (max-width: 910px) {
  .header nav.nav > ul {
    margin: 0 0 0 -20px;
  }
}
.header nav.nav li {
  display: inline-block;
  position: relative;
  margin-bottom: 0;
}
.header nav.nav li a {
  display: inline-block;
}
@media screen and (max-width: 910px) {
  .header nav.nav li {
    background-color: #425563;
    border-bottom: 1px solid #6A7C84;
    height: auto;
    margin-bottom: 0;
    width: 100%;
  }
}
.header nav.nav a.nav-link--search {
  position: relative;
}
.header nav.nav a.nav-link--search span.icon-text {
  position: absolute;
  top: -9999px;
}
.header nav.nav a.nav-link--search span.icon {
  display: block;
  height: 20px;
  line-height: 1;
  position: relative;
  top: 4px;
  width: 20px;
}
.header nav.nav a.nav-link--search span.icon svg {
  display: block;
  height: 100%;
  width: 100%;
}
.header nav.nav a.nav-link--search:hover span.icon svg path, .header nav.nav a.nav-link--search:focus span.icon svg path {
  fill: #F2BB91;
}
@media screen and (max-width: 910px) {
  .header nav.nav a.nav-link--search span.icon-text {
    position: relative;
    top: auto;
  }
  .header nav.nav a.nav-link--search span.icon {
    display: inline-block;
    margin-right: 5px;
  }
  .header nav.nav a.nav-link--search span.icon svg path {
    fill: #ffffff;
  }
  .header nav.nav a.nav-link--search:hover span.icon svg path, .header nav.nav a.nav-link--search:focus span.icon svg path {
    fill: #f77012;
  }
}
@media screen and (max-width: 910px) {
  .header nav.nav a.nav-link {
    color: white;
    display: inline-block;
    padding: 10px 20px;
  }
}
.header nav.nav li:hover > .nav-drop {
  display: block;
}
@media screen and (max-width: 910px) {
  .header nav.nav li:hover > .nav-drop {
    margin-top: 0;
  }
}
.header nav.nav a {
  font-family: "Source Sans Pro", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #75787b;
  text-decoration: none;
  margin-left: 35px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media screen and (max-width: 910px) {
  .header nav.nav a {
    margin-left: 0;
  }
}
.header nav.nav a:hover,
.header nav.nav a.current_page_item {
  color: #f77012;
}
.header nav.nav a.social {
  margin-left: 15px;
  color: #f77012;
  font-size: 19px;
}
.header .nav-drop {
  display: none;
  line-height: 50px;
  margin-bottom: 0;
  padding-left: 0;
  position: absolute;
  width: 100%;
  z-index: 1000;
}
@media screen and (max-width: 910px) {
  .header .nav-drop {
    display: block;
    height: 0;
    position: relative;
  }
}
.header .nav-drop:before {
  content: " ";
  display: none;
}
@media screen and (max-width: 910px) {
  .header .nav-drop:before {
    background-image: url("../images/nav-chevron.svg");
    background-position: center center;
    background-size: 100%;
    background-repeat: no-repeat;
    display: block;
    height: 40px;
    position: absolute;
    right: -20px;
    top: -40px;
    width: 40px;
  }
}
.header .nav-drop .nav-drop-item {
  background-color: #f77012;
  border-bottom: 1px solid #F2BB91;
  height: 50px;
  left: 35px;
  margin-bottom: 0;
  position: relative;
  width: 200px;
}
.header .nav-drop .nav-drop-item > a {
  display: inline-block;
  line-height: 50px;
  margin: 0;
  padding: 0 0 0 15px;
  width: 100%;
  color: white;
  text-transform: inherit;
}
@media screen and (max-width: 910px) {
  .header .nav-drop .nav-drop-item {
    display: none;
    padding-top: 0;
    width: 100%;
  }
}
.header .nav-drop .nav-drop-item:hover {
  background-color: #F2BB91;
}
.header .nav-drop .nav-drop-item:hover > a {
  color: white;
}
@media screen and (max-width: 910px) {
  .header .nav-drop.open {
    height: auto;
  }
  .header .nav-drop.open::after {
    clear: both;
    content: "";
    display: table;
  }
}
.header .nav-drop.open:before {
  background-color: #364751;
}
@media screen and (max-width: 910px) {
  .header .nav-drop.open .nav-drop-item {
    background-color: #5B6D72;
    display: block;
    height: auto;
    left: 0;
    margin-left: 20px;
  }
}
@media screen and (max-width: 910px) {
  .header .nav-drop.open .nav-drop-item > a {
    color: white;
    display: inline-block;
    padding: 10px 20px 10px 40px;
    width: 100%;
  }
}

/*layout.scss*/
.left-column {
  display: inline-block;
  float: left;
  width: 48%;
  margin-right: 1%;
}
@media screen and (max-width: 770px) {
  .left-column {
    width: 100%;
  }
}

.right-column {
  display: inline-block;
  float: right;
  width: 48%;
  margin-left: 1%;
}
@media screen and (max-width: 770px) {
  .right-column {
    width: 100%;
  }
}

/*voucher.scss*/
.voucher {
  width: 500px;
  height: 100%;
}
@media screen and (max-width: 550px) {
  .voucher {
    width: 100%;
  }
  .voucher br {
    display: none;
  }
}
.voucher h4 {
  text-align: center;
  color: #f77012;
  margin-top: 30px;
  margin-bottom: 20px;
}
@media screen and (max-width: 550px) {
  .voucher h4 {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.voucher form {
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (max-width: 550px) {
  .voucher form {
    padding: 0;
  }
}
.voucher form input#last,
.voucher form input#first {
  width: 49%;
  display: inline-block;
  font-family: "Source Sans Pro", sans-serif;
  font-style: italic;
  font-weight: 400;
  border: 2px solid #DFE3E5;
  border-radius: 25px;
  padding: 15px 25px;
  background-color: #c8c9c7;
  color: #75787b;
  font-size: 17px;
  margin-top: 10px;
}
@media screen and (max-width: 550px) {
  .voucher form input#last,
.voucher form input#first {
    width: 100%;
    display: block;
    padding: 10px 20px;
    font-size: 13px;
  }
}
.voucher form input#email,
.voucher form input#zip {
  font-family: "Source Sans Pro", sans-serif;
  font-style: italic;
  font-weight: 400;
  border: 2px solid #DFE3E5;
  border-radius: 25px;
  display: block;
  width: 100%;
  padding: 15px 25px;
  background-color: #c8c9c7;
  color: #75787b;
  font-size: 17px;
  margin-top: 10px;
}
@media screen and (max-width: 550px) {
  .voucher form input#email,
.voucher form input#zip {
    padding: 10px 20px;
    font-size: 13px;
  }
}
.voucher form input#submit_button {
  font-family: "Source Sans Pro", sans-serif;
  font-style: normal;
  font-weight: 400;
  background-color: silver;
  font-size: 19px;
  padding: 15px 25px;
  border-radius: 25px;
  text-decoration: none;
  color: #f2f2f2;
  box-sizing: none;
  border: none;
  display: block;
  margin-top: 10px;
}
@media screen and (max-width: 550px) {
  .voucher form input#submit_button {
    font-size: 15px;
    padding: 10px 20px;
  }
}
.voucher p, .voucher body.blog .side-bar .authors ul li, body.blog .side-bar .authors ul .voucher li,
.voucher body.archive .side-bar .authors ul li,
body.archive .side-bar .authors ul .voucher li,
.voucher body.category .side-bar .authors ul li,
body.category .side-bar .authors ul .voucher li,
.voucher body.search-results .side-bar .authors ul li,
body.search-results .side-bar .authors ul .voucher li,
.voucher body.category-events .side-bar .authors ul li,
body.category-events .side-bar .authors ul .voucher li {
  font-family: "Source Sans Pro", sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 13px;
  line-height: 15px;
  margin-top: 20px;
}

/* -------------
MODULES
Descrete pieces that are used to build a page or template. May or may not correspond to a module in Wordpress.
---------------*/
/*hero.scss*/
section.accordion.navy-bg {
  background-image: url("../images/orange-bokeh.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
section.accordion.navy-bg h1 {
  color: white;
}
section.accordion.navy-bg li {
  background-image: url("../images/accordion-inactive-white.svg");
  border-bottom: 1px dashed #708696;
}
section.accordion.navy-bg ul.accordion > li > a {
  color: white;
}

section.accordion {
  display: inline-block;
  background-size: cover;
  height: auto;
  width: 100%;
  background-attachment: fixed;
  background-position: 50% 0;
  background-repeat: no-repeat;
  position: relative;
}
section.accordion .accordion-wrapper {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 75px;
  padding-bottom: 75px;
}
@media screen and (max-width: 1180px) {
  section.accordion .accordion-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}
section.accordion .accordion-wrapper::after {
  clear: both;
  content: "";
  display: table;
}
@media screen and (max-width: 770px) {
  section.accordion .accordion-wrapper {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
section.accordion h2 {
  text-align: center;
}
section.accordion .accordion li {
  background-image: url("../images/accordion-inactive.svg");
  background-size: 15px 15px;
  background-repeat: no-repeat;
  border-bottom: 1px dashed #425563;
  list-style-type: none;
  padding-left: 25px;
  background-position-y: 25px;
  padding-bottom: 20px;
  padding-top: 20px;
}
@media screen and (max-width: 550px) {
  section.accordion .accordion li {
    background-size: 12px 12px;
  }
}
section.accordion .accordion li:last-child {
  border-bottom: none;
}
section.accordion .accordion > li > a {
  font-family: "Source Sans Pro", sans-serif;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 18px;
  letter-spacing: 1px;
  color: #f77012;
}
@media screen and (max-width: 550px) {
  section.accordion .accordion > li > a {
    font-size: 16px;
  }
}
section.accordion .accordion ul.submenu {
  display: none;
  padding-left: 0;
  padding-top: 15px;
}
section.accordion .accordion .is-expanded {
  display: block;
}

/*full-width-image-text.scss*/
.full-width-text.background-light-gray {
  background-color: #f7f7f7;
}

section.full-width-text-content {
  font-family: "Source Sans Pro", sans-serif;
  font-style: normal;
  font-weight: 400;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 70px 0;
}
@media screen and (max-width: 1180px) {
  section.full-width-text-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
section.full-width-text-content::after {
  clear: both;
  content: "";
  display: table;
}
@media screen and (max-width: 910px) {
  section.full-width-text-content img.size-full {
    width: 100%;
    height: auto;
  }
}
section.full-width-text-content .column-1-of-2 {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 48.821174201%;
  padding-left: 10px;
  padding-right: 10px;
}
section.full-width-text-content .column-1-of-2:last-child {
  margin-right: 0;
}
@media screen and (max-width: 550px) {
  section.full-width-text-content .column-1-of-2 {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 100%;
    margin-right: 0;
  }
  section.full-width-text-content .column-1-of-2:last-child {
    margin-right: 0;
  }
}
section.full-width-text-content .column-2-of-2 {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 48.821174201%;
  margin-right: 0;
  padding-left: 10px;
  padding-right: 10px;
}
section.full-width-text-content .column-2-of-2:last-child {
  margin-right: 0;
}
@media screen and (max-width: 550px) {
  section.full-width-text-content .column-2-of-2 {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 100%;
  }
  section.full-width-text-content .column-2-of-2:last-child {
    margin-right: 0;
  }
}
section.full-width-text-content .column-1-of-3 {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 31.7615656014%;
  padding-left: 10px;
  padding-right: 10px;
}
section.full-width-text-content .column-1-of-3:last-child {
  margin-right: 0;
}
@media screen and (max-width: 770px) {
  section.full-width-text-content .column-1-of-3 {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 100%;
    margin-right: 0;
  }
  section.full-width-text-content .column-1-of-3:last-child {
    margin-right: 0;
  }
}
section.full-width-text-content .column-2-of-3 {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 31.7615656014%;
  padding-left: 10px;
  padding-right: 10px;
}
section.full-width-text-content .column-2-of-3:last-child {
  margin-right: 0;
}
@media screen and (max-width: 770px) {
  section.full-width-text-content .column-2-of-3 {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 100%;
    margin-right: 0;
  }
  section.full-width-text-content .column-2-of-3:last-child {
    margin-right: 0;
  }
}
section.full-width-text-content .column-3-of-3 {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 31.7615656014%;
  margin-right: 0;
  padding-left: 10px;
  padding-right: 10px;
}
section.full-width-text-content .column-3-of-3:last-child {
  margin-right: 0;
}
@media screen and (max-width: 770px) {
  section.full-width-text-content .column-3-of-3 {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 100%;
  }
  section.full-width-text-content .column-3-of-3:last-child {
    margin-right: 0;
  }
}

/*hero.scss*/
section.hero {
  display: inline-block;
  background-size: cover;
  height: 600px;
  width: 100%;
}
@media screen and (max-width: 770px) {
  section.hero {
    height: auto;
  }
}
section.hero .slick-slide {
  background-size: cover;
}
section.hero .hero-wrapper {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  height: 600px;
  padding-top: 65px;
}
@media screen and (max-width: 1180px) {
  section.hero .hero-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 770px) {
  section.hero .hero-wrapper {
    height: 400px;
    padding-top: 0;
    padding-bottom: 50px;
  }
}
section.hero .hero-text {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 30px;
  width: 50%;
}
@media screen and (max-width: 1030px) {
  section.hero .hero-text {
    width: 65%;
  }
}
@media screen and (max-width: 770px) {
  section.hero .hero-text {
    width: 100%;
  }
}
@media screen and (max-width: 550px) {
  section.hero .hero-text br {
    display: none;
  }
}
section.hero .hero-text span.highlight {
  color: #f77012;
}
section.hero .hero-text a.btn-large:hover {
  cursor: pointer;
  cursor: hand;
}
section.hero .hero-text a.btn-large span {
  width: 200px;
  height: 55px;
}
section.hero h6 {
  margin-bottom: 35px;
}
@media screen and (max-width: 770px) {
  section.hero h6 {
    width: 65%;
  }
}
@media screen and (max-width: 550px) {
  section.hero h6 {
    width: 100%;
  }
}
section.hero span.highlight​ {
  color: #f77012;
}

/*icon-with-text.scss*/
section.icon-with-text {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 75px 0;
}
@media screen and (max-width: 1180px) {
  section.icon-with-text {
    padding-left: 20px;
    padding-right: 20px;
  }
}
section.icon-with-text::after {
  clear: both;
  content: "";
  display: table;
}
section.icon-with-text .single-icon-text {
  padding-bottom: 50px;
}
section.icon-with-text .single-icon-text::after {
  clear: both;
  content: "";
  display: table;
}
section.icon-with-text .icon {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 14.7019570017%;
}
section.icon-with-text .icon:last-child {
  margin-right: 0;
}
section.icon-with-text .icon img {
  width: 65%;
}
@media screen and (max-width: 550px) {
  section.icon-with-text .icon img {
    width: 100%;
    padding-right: 10px;
  }
}
section.icon-with-text .text {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 82.9403914003%;
}
section.icon-with-text .text:last-child {
  margin-right: 0;
}
section.icon-with-text .text button {
  margin-top: 50px;
}
section.icon-with-text .column-1-of-2 {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 48.821174201%;
}
section.icon-with-text .column-1-of-2:last-child {
  margin-right: 0;
}
@media screen and (max-width: 550px) {
  section.icon-with-text .column-1-of-2 {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 100%;
    margin-right: 0;
  }
  section.icon-with-text .column-1-of-2:last-child {
    margin-right: 0;
  }
}
section.icon-with-text .column-2-of-2 {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 48.821174201%;
  margin-right: 0;
}
section.icon-with-text .column-2-of-2:last-child {
  margin-right: 0;
}
@media screen and (max-width: 550px) {
  section.icon-with-text .column-2-of-2 {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 100%;
  }
  section.icon-with-text .column-2-of-2:last-child {
    margin-right: 0;
  }
}
section.icon-with-text .column-1-of-3 {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 31.7615656014%;
}
section.icon-with-text .column-1-of-3:last-child {
  margin-right: 0;
}
@media screen and (max-width: 770px) {
  section.icon-with-text .column-1-of-3 {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 100%;
    margin-right: 0;
  }
  section.icon-with-text .column-1-of-3:last-child {
    margin-right: 0;
  }
}
section.icon-with-text .column-2-of-3 {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 31.7615656014%;
}
section.icon-with-text .column-2-of-3:last-child {
  margin-right: 0;
}
@media screen and (max-width: 770px) {
  section.icon-with-text .column-2-of-3 {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 100%;
    margin-right: 0;
  }
  section.icon-with-text .column-2-of-3:last-child {
    margin-right: 0;
  }
}
section.icon-with-text .column-3-of-3 {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 31.7615656014%;
  margin-right: 0;
}
section.icon-with-text .column-3-of-3:last-child {
  margin-right: 0;
}
@media screen and (max-width: 770px) {
  section.icon-with-text .column-3-of-3 {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 100%;
  }
  section.icon-with-text .column-3-of-3:last-child {
    margin-right: 0;
  }
}

/*logo-grid.scss*/
section.logo-grid {
  display: inline-block;
  background-size: cover;
  height: auto;
  width: 100%;
}
section.logo-grid .logo-grid-wrapper {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 75px;
  padding-bottom: 75px;
  text-align: center;
}
@media screen and (max-width: 1180px) {
  section.logo-grid .logo-grid-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}
section.logo-grid .logo-grid-wrapper::after {
  clear: both;
  content: "";
  display: table;
}
section.logo-grid h2 {
  text-align: center;
  color: #425563;
}
section.logo-grid img {
  padding: 20px 10px;
}

/*hero.scss*/
section.short-image {
  height: 200px;
  background-position: center center;
  background-size: cover;
}

/*sign-up.scss*/
section.sign-up {
  display: inline-block;
  background-size: cover;
  height: auto;
  width: 100%;
  background-image: url("../images/blue-bokeh.jpg");
  color: white;
  background-attachment: fixed;
  background-position: 50% 0;
  background-repeat: no-repeat;
  position: relative;
}
section.sign-up .sign-up-wrapper {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 75px;
  padding-bottom: 75px;
  color: #f2f2f2;
  height: auto;
  text-align: center;
}
@media screen and (max-width: 1180px) {
  section.sign-up .sign-up-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}
section.sign-up .sign-up-wrapper::after {
  clear: both;
  content: "";
  display: table;
}
@media screen and (max-width: 770px) {
  section.sign-up .sign-up-wrapper {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
section.sign-up h2,
section.sign-up p,
section.sign-up body.blog .side-bar .authors ul li,
body.blog .side-bar .authors ul section.sign-up li,
section.sign-up body.archive .side-bar .authors ul li,
body.archive .side-bar .authors ul section.sign-up li,
section.sign-up body.category .side-bar .authors ul li,
body.category .side-bar .authors ul section.sign-up li,
section.sign-up body.search-results .side-bar .authors ul li,
body.search-results .side-bar .authors ul section.sign-up li,
section.sign-up body.category-events .side-bar .authors ul li,
body.category-events .side-bar .authors ul section.sign-up li,
section.sign-up h6 {
  color: white;
}
section.sign-up p, section.sign-up body.blog .side-bar .authors ul li, body.blog .side-bar .authors ul section.sign-up li,
section.sign-up body.archive .side-bar .authors ul li,
body.archive .side-bar .authors ul section.sign-up li,
section.sign-up body.category .side-bar .authors ul li,
body.category .side-bar .authors ul section.sign-up li,
section.sign-up body.search-results .side-bar .authors ul li,
body.search-results .side-bar .authors ul section.sign-up li,
section.sign-up body.category-events .side-bar .authors ul li,
body.category-events .side-bar .authors ul section.sign-up li {
  margin-bottom: 50px;
}
section.sign-up form {
  margin-top: 20px;
}
section.sign-up form input#email {
  font-family: "Source Sans Pro", sans-serif;
  font-style: italic;
  font-weight: 400;
  border: 2px solid white;
  border-radius: 25px;
  padding: 15px 25px;
  background-color: #f2f2f2;
  color: #75787b;
  font-size: 17px;
}
@media screen and (max-width: 770px) {
  section.sign-up form input#email {
    font-size: 14px;
    padding: 10px 20px;
  }
}
section.sign-up form input#submit_button {
  background-color: #FE9C3C;
  background-image: -webkit-linear-gradient(#FE9C3C, #F77012);
  background-image: linear-gradient(#FE9C3C, #F77012);
  font-family: "Source Sans Pro", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 19px;
  padding: 15px 25px;
  border-radius: 25px;
  text-decoration: none;
  color: #f2f2f2;
  box-sizing: none;
  border: none;
}
@media screen and (max-width: 770px) {
  section.sign-up form input#submit_button {
    font-size: 15px;
    padding: 10px 20px;
  }
}
section.sign-up form input#submit_button:hover {
  background-color: #f77012;
  background-image: -webkit-linear-gradient(#f77012, #ff8f2e);
  background-image: linear-gradient(#f77012, #ff8f2e);
  cursor: pointer;
  cursor: hand;
}
section.sign-up input#email {
  margin-right: 10px;
  width: 300px;
}
@media screen and (max-width: 550px) {
  section.sign-up input#email {
    width: 100%;
    margin-bottom: 20px;
  }
}
section.sign-up input#submit_button {
  margin-left: 10px;
}

/*simple-text-image.scss*/
section.simple-text-image {
  display: inline-block;
  background-size: cover;
  height: auto;
  width: 100%;
}
section.simple-text-image .simple-text-image-wrapper {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 75px;
  padding-bottom: 75px;
  color: #425563;
}
@media screen and (max-width: 1180px) {
  section.simple-text-image .simple-text-image-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}
section.simple-text-image .simple-text-image-wrapper::after {
  clear: both;
  content: "";
  display: table;
}
@media screen and (max-width: 770px) {
  section.simple-text-image .simple-text-image-wrapper {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  section.simple-text-image .simple-text-image-wrapper h2 {
    text-align: center;
  }
}
section.simple-text-image img {
  margin-right: 50px;
  width: 75%;
  padding-top: 50px;
}
@media screen and (max-width: 770px) {
  section.simple-text-image img {
    width: 65%;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}
@media screen and (max-width: 550px) {
  section.simple-text-image img {
    width: 85%;
  }
}
@media screen and (max-width: 450px) {
  section.simple-text-image img {
    width: 100%;
  }
}

/*partners.scss*/
section.partners {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 75px 0;
}
@media screen and (max-width: 1180px) {
  section.partners {
    padding-left: 20px;
    padding-right: 20px;
  }
}
section.partners::after {
  clear: both;
  content: "";
  display: table;
}
section.partners .partner-row {
  display: block;
  margin-bottom: 20px;
}
section.partners .partner-row::after {
  clear: both;
  content: "";
  display: table;
}
@media screen and (max-width: 770px) {
  section.partners .partner-row {
    margin-bottom: 0;
  }
}
section.partners .partner {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 18.1138787216%;
  position: relative;
}
section.partners .partner:last-child {
  margin-right: 0;
}
@media screen and (max-width: 770px) {
  section.partners .partner {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 100%;
    margin-bottom: 20px;
  }
  section.partners .partner:last-child {
    margin-right: 0;
  }
  section.partners .partner:nth-child(12) {
    margin-right: 0;
  }
}
section.partners .partner img {
  width: 100%;
}
section.partners .partner .text-content {
  bottom: 0;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  opacity: 0;
  width: 100%;
  padding: 10px;
  -webkit-transition: opacity 500ms;
  -moz-transition: opacity 500ms;
  transition: opacity 500ms;
}
section.partners .partner .text-content h6,
section.partners .partner .text-content p,
section.partners .partner .text-content body.blog .side-bar .authors ul li,
body.blog .side-bar .authors ul section.partners .partner .text-content li,
section.partners .partner .text-content body.archive .side-bar .authors ul li,
body.archive .side-bar .authors ul section.partners .partner .text-content li,
section.partners .partner .text-content body.category .side-bar .authors ul li,
body.category .side-bar .authors ul section.partners .partner .text-content li,
section.partners .partner .text-content body.search-results .side-bar .authors ul li,
body.search-results .side-bar .authors ul section.partners .partner .text-content li,
section.partners .partner .text-content body.category-events .side-bar .authors ul li,
body.category-events .side-bar .authors ul section.partners .partner .text-content li {
  color: white;
}
section.partners .partner .text-content h6 {
  font-family: "Source Sans Pro", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 17px;
  line-height: 22px;
  margin-bottom: 10px;
}
section.partners .partner .text-content p, section.partners .partner .text-content body.blog .side-bar .authors ul li, body.blog .side-bar .authors ul section.partners .partner .text-content li,
section.partners .partner .text-content body.archive .side-bar .authors ul li,
body.archive .side-bar .authors ul section.partners .partner .text-content li,
section.partners .partner .text-content body.category .side-bar .authors ul li,
body.category .side-bar .authors ul section.partners .partner .text-content li,
section.partners .partner .text-content body.search-results .side-bar .authors ul li,
body.search-results .side-bar .authors ul section.partners .partner .text-content li,
section.partners .partner .text-content body.category-events .side-bar .authors ul li,
body.category-events .side-bar .authors ul section.partners .partner .text-content li {
  font-size: 15px;
  line-height: 18px;
}
section.partners .partner:hover {
  background-color: #f77012;
}
section.partners .partner:hover .text-content {
  opacity: 1;
}

/*text-slider.scss*/
section.text-slider {
  padding: 75px 0;
}
section.text-slider::after {
  clear: both;
  content: "";
  display: table;
}
section.text-slider .text-slider-content {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1180px) {
  section.text-slider .text-slider-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
section.text-slider .icon {
  margin-left: auto;
  margin-right: auto;
  width: 80px;
}
section.text-slider h1 {
  color: white;
  text-align: center;
}
section.text-slider .slide {
  text-align: center;
}
section.text-slider p, section.text-slider body.blog .side-bar .authors ul li, body.blog .side-bar .authors ul section.text-slider li,
section.text-slider body.archive .side-bar .authors ul li,
body.archive .side-bar .authors ul section.text-slider li,
section.text-slider body.category .side-bar .authors ul li,
body.category .side-bar .authors ul section.text-slider li,
section.text-slider body.search-results .side-bar .authors ul li,
body.search-results .side-bar .authors ul section.text-slider li,
section.text-slider body.category-events .side-bar .authors ul li,
body.category-events .side-bar .authors ul section.text-slider li,
section.text-slider h3 {
  margin-left: auto;
  margin-right: auto;
  width: 75%;
}
section.text-slider .slick-slide {
  height: auto;
}
section.text-slider .slick-dots {
  bottom: -50px;
}
section.text-slider .slick-prev:before {
  content: "<";
}
section.text-slider .slick-next:before {
  content: ">";
}
section.text-slider .slick-prev:before,
section.text-slider .slick-next:before {
  font-size: 45px;
}
@media screen and (max-width: 1450px) {
  section.text-slider .slick-next {
    right: 0;
  }
  section.text-slider .slick-prev {
    left: 0;
  }
}

/*hero.scss*/
section.third-width-image .third-width-image-content {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 75px 0;
}
@media screen and (max-width: 1180px) {
  section.third-width-image .third-width-image-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
section.third-width-image .third-width-image-content::after {
  clear: both;
  content: "";
  display: table;
}
@media screen and (max-width: 770px) {
  section.third-width-image .third-width-image-content {
    padding: 20px;
  }
}
section.third-width-image .text {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 65.8807828007%;
}
section.third-width-image .text:last-child {
  margin-right: 0;
}
@media screen and (max-width: 770px) {
  section.third-width-image .text {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 100%;
    margin-right: 0;
  }
  section.third-width-image .text:last-child {
    margin-right: 0;
  }
}
section.third-width-image .image {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 31.7615656014%;
  padding-right: 20px;
}
section.third-width-image .image:last-child {
  margin-right: 0;
}
@media screen and (max-width: 770px) {
  section.third-width-image .image {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 100%;
    margin-right: 0;
    padding: 0;
  }
  section.third-width-image .image:last-child {
    margin-right: 0;
  }
}
section.third-width-image .image img {
  width: 100%;
  padding: 0 30px;
}
section.third-width-image .push-right {
  float: right;
}

/*three-column-image.scss*/
section.three-column-image {
  padding-top: 75px;
}
section.three-column-image::after {
  clear: both;
  content: "";
  display: table;
}
section.three-column-image h4 {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 50px;
}
@media screen and (max-width: 1180px) {
  section.three-column-image h4 {
    padding-left: 20px;
    padding-right: 20px;
  }
}
section.three-column-image h4::after {
  clear: both;
  content: "";
  display: table;
}
section.three-column-image .three-column-image-wrapper {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1180px) {
  section.three-column-image .three-column-image-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}
section.three-column-image .single-column {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 31.7615656014%;
  padding-bottom: 50px;
}
section.three-column-image .single-column:last-child {
  margin-right: 0;
}
section.three-column-image .single-column:nth-child(3n) {
  margin-right: 0;
}
section.three-column-image .single-column:nth-child(3n+1) {
  clear: left;
}
@media screen and (max-width: 770px) {
  section.three-column-image .single-column {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 100%;
    margin-right: 0;
  }
  section.three-column-image .single-column:last-child {
    margin-right: 0;
  }
}
section.three-column-image .single-column .image img {
  width: 100%;
}
section.three-column-image .single-column h5 {
  padding: 10px 0 5px 0;
}

/*request.scss*/
section.voucher-sign-up {
  background-color: #E0E0E0;
  display: inline-block;
  width: 100%;
}
section.voucher-sign-up::after {
  clear: both;
  content: "";
  display: table;
}
@media screen and (max-width: 770px) {
  section.voucher-sign-up {
    padding-bottom: 50px;
  }
}
section.voucher-sign-up .voucher-sign-up-wrapper {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 75px 0;
}
@media screen and (max-width: 1180px) {
  section.voucher-sign-up .voucher-sign-up-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}
section.voucher-sign-up h2 {
  text-align: center;
}
section.voucher-sign-up p, section.voucher-sign-up body.blog .side-bar .authors ul li, body.blog .side-bar .authors ul section.voucher-sign-up li,
section.voucher-sign-up body.archive .side-bar .authors ul li,
body.archive .side-bar .authors ul section.voucher-sign-up li,
section.voucher-sign-up body.category .side-bar .authors ul li,
body.category .side-bar .authors ul section.voucher-sign-up li,
section.voucher-sign-up body.search-results .side-bar .authors ul li,
body.search-results .side-bar .authors ul section.voucher-sign-up li,
section.voucher-sign-up body.category-events .side-bar .authors ul li,
body.category-events .side-bar .authors ul section.voucher-sign-up li {
  margin-bottom: 50px;
  text-align: center;
}
section.voucher-sign-up h6 {
  text-align: center;
}
section.voucher-sign-up form {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  padding-bottom: 50px;
}
@media screen and (max-width: 1180px) {
  section.voucher-sign-up form {
    padding-left: 20px;
    padding-right: 20px;
  }
}
section.voucher-sign-up form input#first,
section.voucher-sign-up form input#last,
section.voucher-sign-up form input#email,
section.voucher-sign-up form input#zip {
  font-family: "Source Sans Pro", sans-serif;
  font-style: italic;
  font-weight: 400;
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 18.9668591516%;
  border: 2px solid white;
  border-radius: 25px;
  padding: 15px 25px;
  background-color: #f2f2f2;
  color: #75787b;
  font-size: 17px;
  display: inline-block;
  float: left;
}
section.voucher-sign-up form input#first:last-child,
section.voucher-sign-up form input#last:last-child,
section.voucher-sign-up form input#email:last-child,
section.voucher-sign-up form input#zip:last-child {
  margin-right: 0;
}
@media screen and (max-width: 770px) {
  section.voucher-sign-up form input#first,
section.voucher-sign-up form input#last,
section.voucher-sign-up form input#email,
section.voucher-sign-up form input#zip {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 100%;
    margin-right: 0;
    font-size: 14px;
    padding: 10px 20px;
    margin-bottom: 10px;
  }
  section.voucher-sign-up form input#first:last-child,
section.voucher-sign-up form input#last:last-child,
section.voucher-sign-up form input#email:last-child,
section.voucher-sign-up form input#zip:last-child {
    margin-right: 0;
  }
}
section.voucher-sign-up form input#submit_button {
  background-color: #FE9C3C;
  background-image: -webkit-linear-gradient(#FE9C3C, #F77012);
  background-image: linear-gradient(#FE9C3C, #F77012);
  font-family: "Source Sans Pro", sans-serif;
  font-style: normal;
  font-weight: 400;
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 14.7019570017%;
  font-size: 19px;
  padding: 15px 0;
  border-radius: 25px;
  text-decoration: none;
  color: #f2f2f2;
  box-sizing: none;
  border: none;
  text-align: center;
}
section.voucher-sign-up form input#submit_button:last-child {
  margin-right: 0;
}
@media screen and (max-width: 770px) {
  section.voucher-sign-up form input#submit_button {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 100%;
    margin-right: 0;
    font-size: 15px;
    padding: 10px 20px;
    margin-bottom: 10px;
  }
  section.voucher-sign-up form input#submit_button:last-child {
    margin-right: 0;
  }
}
section.voucher-sign-up form input#submit_button:hover {
  background-color: #f77012;
  background-image: -webkit-linear-gradient(#f77012, #ff8f2e);
  background-image: linear-gradient(#f77012, #ff8f2e);
  cursor: pointer;
  cursor: hand;
}

.search-intro {
  background-color: #f2f2f2;
  padding: 5rem 2rem;
  text-align: center;
}
.search-intro__title {
  margin: 0;
}
.search-intro__lead {
  margin: 2rem 0 2.5rem;
}
@media screen and (max-width: 550px) {
  .search-intro {
    padding: 3rem 1.5rem;
  }
  .search-intro__lead {
    margin: 1rem 0 1.5rem;
  }
}

.searchform {
  margin: 0 auto;
  max-width: 500px;
  overflow: hidden;
  position: relative;
  text-align: center;
  width: 100%;
}
.searchform label {
  position: absolute;
  top: -9999px;
}
.searchform input[type=text] {
  font-family: "Source Sans Pro", sans-serif;
  font-style: italic;
  font-weight: 400;
  border: 2px solid #f77012;
  border-radius: 25px;
  padding: 15px 25px;
  background-color: #ffffff;
  color: #75787b;
  font-size: 17px;
}
@media screen and (max-width: 770px) {
  .searchform input[type=text] {
    font-size: 14px;
    padding: 10px 20px;
  }
}
.searchform input[type=submit] {
  font-size: 19px;
  padding: 15px 25px;
  border-radius: 25px;
  text-decoration: none;
  color: #f2f2f2;
  background-color: #f77012;
  box-sizing: none;
  border: none;
}
@media screen and (max-width: 770px) {
  .searchform input[type=submit] {
    font-size: 15px;
    padding: 10px 20px;
  }
}
.searchform input[type=submit]:hover {
  cursor: pointer;
  cursor: hand;
}
.searchform input[type=text] {
  margin-right: 10px;
  width: 300px;
}
@media screen and (max-width: 550px) {
  .searchform input[type=text] {
    width: 100%;
    margin-bottom: 20px;
  }
}
.searchform input[type=submit] {
  margin-left: 10px;
}

/* -------------
TEMPLATES
Styles specific to templates.
---------------*/
section.four-o-four {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 75px;
}
@media screen and (max-width: 1180px) {
  section.four-o-four {
    padding-left: 20px;
    padding-right: 20px;
  }
}
section.four-o-four::after {
  clear: both;
  content: "";
  display: table;
}
section.four-o-four img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100px;
}
section.four-o-four h1,
section.four-o-four p,
section.four-o-four body.blog .side-bar .authors ul li,
body.blog .side-bar .authors ul section.four-o-four li,
section.four-o-four body.archive .side-bar .authors ul li,
body.archive .side-bar .authors ul section.four-o-four li,
section.four-o-four body.category .side-bar .authors ul li,
body.category .side-bar .authors ul section.four-o-four li,
section.four-o-four body.search-results .side-bar .authors ul li,
body.search-results .side-bar .authors ul section.four-o-four li,
section.four-o-four body.category-events .side-bar .authors ul li,
body.category-events .side-bar .authors ul section.four-o-four li,
section.four-o-four a {
  text-align: center;
}
section.four-o-four .links {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  width: 230px;
}
section.four-o-four a {
  display: inline-block;
  float: left;
  margin: 0 10px;
}

body.events .events {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 75px 0;
}
@media screen and (max-width: 1180px) {
  body.events .events {
    padding-left: 20px;
    padding-right: 20px;
  }
}
body.events .events::after {
  clear: both;
  content: "";
  display: table;
}
body.events .events .event-image {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 31.7615656014%;
}
body.events .events .event-image:last-child {
  margin-right: 0;
}
@media screen and (max-width: 550px) {
  body.events .events .event-image {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 100%;
    margin-right: 0;
  }
  body.events .events .event-image:last-child {
    margin-right: 0;
  }
}
body.events .events .event-image img {
  width: 100%;
}
body.events .events .single-event {
  margin-bottom: 50px;
}
body.events .events .single-event::after {
  clear: both;
  content: "";
  display: table;
}
body.events .events .text {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 65.8807828007%;
  margin-right: 0;
  padding-left: 20px;
}
body.events .events .text:last-child {
  margin-right: 0;
}
@media screen and (max-width: 550px) {
  body.events .events .text {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 100%;
  }
  body.events .events .text:last-child {
    margin-right: 0;
  }
}
body.events .events .heading {
  text-decoration: none;
}
body.events .events h2 {
  margin-bottom: 20px;
}
body.events .events h5 {
  margin-bottom: 10px;
}
body.events .events h6 {
  margin-bottom: 10px;
}
body.events .events p.past-events, body.events .events body.blog .side-bar .authors ul li.past-events, body.blog .side-bar .authors ul body.events .events li.past-events,
body.events .events body.archive .side-bar .authors ul li.past-events,
body.archive .side-bar .authors ul body.events .events li.past-events,
body.events .events body.category .side-bar .authors ul li.past-events,
body.category .side-bar .authors ul body.events .events li.past-events,
body.events .events body.search-results .side-bar .authors ul li.past-events,
body.search-results .side-bar .authors ul body.events .events li.past-events,
body.events .events body.category-events .side-bar .authors ul li.past-events,
body.category-events .side-bar .authors ul body.events .events li.past-events {
  text-align: right;
}

body.single-event section.article {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
  padding: 75px 0;
}
@media screen and (max-width: 1180px) {
  body.single-event section.article {
    padding-left: 20px;
    padding-right: 20px;
  }
}
body.single-event section.article::after {
  clear: both;
  content: "";
  display: table;
}
body.single-event .info h1.title {
  margin-top: 0;
}
body.single-event .info h5 {
  margin-bottom: 30px;
}
body.single-event .info p, body.single-event .info body.blog .side-bar .authors ul li, body.blog .side-bar .authors ul body.single-event .info li,
body.single-event .info body.archive .side-bar .authors ul li,
body.archive .side-bar .authors ul body.single-event .info li,
body.single-event .info body.category .side-bar .authors ul li,
body.category .side-bar .authors ul body.single-event .info li,
body.single-event .info body.search-results .side-bar .authors ul li,
body.search-results .side-bar .authors ul body.single-event .info li,
body.single-event .info body.category-events .side-bar .authors ul li,
body.category-events .side-bar .authors ul body.single-event .info li {
  margin-bottom: 50px;
}
body.single-event .featured-image img {
  width: 100%;
}
body.single-event .content {
  margin-top: 30px;
}
body.single-event .share {
  padding: 50px 0;
  width: 100%;
}
body.single-event .share p.caption, body.single-event .share body.blog .side-bar .authors ul li.caption, body.blog .side-bar .authors ul body.single-event .share li.caption,
body.single-event .share body.archive .side-bar .authors ul li.caption,
body.archive .side-bar .authors ul body.single-event .share li.caption,
body.single-event .share body.category .side-bar .authors ul li.caption,
body.category .side-bar .authors ul body.single-event .share li.caption,
body.single-event .share body.search-results .side-bar .authors ul li.caption,
body.search-results .side-bar .authors ul body.single-event .share li.caption,
body.single-event .share body.category-events .side-bar .authors ul li.caption,
body.category-events .side-bar .authors ul body.single-event .share li.caption {
  font-family: "Source Sans Pro", sans-serif;
  font-style: italic;
  font-weight: 400;
  color: #75787b;
  display: inline-block;
  float: left;
  padding-top: 15px;
  width: 120px;
}
body.single-event .share ul {
  list-style-type: none;
  float: left;
  width: calc(100% - 120px);
  display: inline-block;
}
body.single-event .share li {
  display: inline-block;
  width: 26px;
  margin-right: 10px;
}
body.single-event hr {
  color: #75787b;
}
body.single-event .prev-next {
  margin-top: 30px;
}
body.single-event .prev-next .prev {
  display: inline-block;
  float: left;
  width: 50%;
}
body.single-event .prev-next .next {
  display: inline-block;
  float: right;
  text-align: right;
  width: 50%;
}
body.single-event .prev-next a {
  font-family: "Source Sans Pro", sans-serif;
  font-style: italic;
  font-weight: 600;
  color: #f77012;
}

body.blog,
body.archive,
body.category,
body.search-results,
body.category-events {
  background-color: #f2f2f2;
}
body.blog .main-content,
body.archive .main-content,
body.category .main-content,
body.search-results .main-content,
body.category-events .main-content {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 75px 0;
}
@media screen and (max-width: 1180px) {
  body.blog .main-content,
body.archive .main-content,
body.category .main-content,
body.search-results .main-content,
body.category-events .main-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
body.blog .main-column,
body.archive .main-column,
body.category .main-column,
body.search-results .main-column,
body.category-events .main-column {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 74.4105871005%;
}
body.blog .main-column:last-child,
body.archive .main-column:last-child,
body.category .main-column:last-child,
body.search-results .main-column:last-child,
body.category-events .main-column:last-child {
  margin-right: 0;
}
@media screen and (max-width: 770px) {
  body.blog .main-column,
body.archive .main-column,
body.category .main-column,
body.search-results .main-column,
body.category-events .main-column {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 100%;
    margin-right: 0;
  }
  body.blog .main-column:last-child,
body.archive .main-column:last-child,
body.category .main-column:last-child,
body.search-results .main-column:last-child,
body.category-events .main-column:last-child {
    margin-right: 0;
  }
}
body.blog .main-column .single-post,
body.archive .main-column .single-post,
body.category .main-column .single-post,
body.search-results .main-column .single-post,
body.category-events .main-column .single-post {
  margin-bottom: 50px;
  background-color: white;
  padding: 30px 50px;
  border-left: 7px solid #74d1ea;
  box-shadow: 2px 2px 5px 2px rgba(179, 179, 179, 0.4);
}
body.blog .main-column .single-post::after,
body.archive .main-column .single-post::after,
body.category .main-column .single-post::after,
body.search-results .main-column .single-post::after,
body.category-events .main-column .single-post::after {
  clear: both;
  content: "";
  display: table;
}
body.blog .main-column .heading,
body.archive .main-column .heading,
body.category .main-column .heading,
body.search-results .main-column .heading,
body.category-events .main-column .heading {
  text-decoration: none;
}
body.blog .main-column .heading h4,
body.archive .main-column .heading h4,
body.category .main-column .heading h4,
body.search-results .main-column .heading h4,
body.category-events .main-column .heading h4 {
  margin-bottom: 10px;
}
body.blog .main-column hr,
body.archive .main-column hr,
body.category .main-column hr,
body.search-results .main-column hr,
body.category-events .main-column hr {
  margin-top: 75px;
}
body.blog .main-column .pagination,
body.archive .main-column .pagination,
body.category .main-column .pagination,
body.search-results .main-column .pagination,
body.category-events .main-column .pagination {
  margin-bottom: 75px;
}
body.blog .main-column .pagination p, body.blog .main-column .pagination .side-bar .authors ul li, body.blog .side-bar .authors ul .main-column .pagination li,
body.archive .main-column .pagination p,
body.archive .main-column .pagination .side-bar .authors ul li,
body.archive .side-bar .authors ul .main-column .pagination li,
body.category .main-column .pagination p,
body.category .main-column .pagination .side-bar .authors ul li,
body.category .side-bar .authors ul .main-column .pagination li,
body.search-results .main-column .pagination p,
body.search-results .main-column .pagination .side-bar .authors ul li,
body.search-results .side-bar .authors ul .main-column .pagination li,
body.category-events .main-column .pagination p,
body.category-events .main-column .pagination .side-bar .authors ul li,
body.category-events .side-bar .authors ul .main-column .pagination li {
  text-align: right;
}
body.blog .main-column .pagination a,
body.archive .main-column .pagination a,
body.category .main-column .pagination a,
body.search-results .main-column .pagination a,
body.category-events .main-column .pagination a {
  margin-left: 15px;
}
body.blog .main-column .pagination a.selected,
body.archive .main-column .pagination a.selected,
body.category .main-column .pagination a.selected,
body.search-results .main-column .pagination a.selected,
body.category-events .main-column .pagination a.selected {
  text-decoration: underline;
}
body.blog .main-column .pagination a.next,
body.archive .main-column .pagination a.next,
body.category .main-column .pagination a.next,
body.search-results .main-column .pagination a.next,
body.category-events .main-column .pagination a.next {
  margin-left: 30px;
}
body.blog .side-bar,
body.archive .side-bar,
body.category .side-bar,
body.search-results .side-bar,
body.category-events .side-bar {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 23.2317613015%;
  margin-right: 0;
  padding-left: 25px;
}
body.blog .side-bar:last-child,
body.archive .side-bar:last-child,
body.category .side-bar:last-child,
body.search-results .side-bar:last-child,
body.category-events .side-bar:last-child {
  margin-right: 0;
}
@media screen and (max-width: 770px) {
  body.blog .side-bar,
body.archive .side-bar,
body.category .side-bar,
body.search-results .side-bar,
body.category-events .side-bar {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 100%;
    margin-right: 0;
  }
  body.blog .side-bar:last-child,
body.archive .side-bar:last-child,
body.category .side-bar:last-child,
body.search-results .side-bar:last-child,
body.category-events .side-bar:last-child {
    margin-right: 0;
  }
}
body.blog .side-bar h6,
body.archive .side-bar h6,
body.category .side-bar h6,
body.search-results .side-bar h6,
body.category-events .side-bar h6 {
  color: #74d1ea;
  margin-bottom: 10px;
  text-transform: uppercase;
}
body.blog .side-bar a,
body.archive .side-bar a,
body.category .side-bar a,
body.search-results .side-bar a,
body.category-events .side-bar a {
  font-family: "Source Sans Pro", sans-serif;
  font-style: normal;
  font-weight: 400;
}
body.blog .side-bar p.date, body.blog .side-bar .authors ul li.date,
body.archive .side-bar p.date,
body.archive .side-bar .authors ul li.date,
body.category .side-bar p.date,
body.category .side-bar .authors ul li.date,
body.search-results .side-bar p.date,
body.search-results .side-bar .authors ul li.date,
body.category-events .side-bar p.date,
body.category-events .side-bar .authors ul li.date {
  font-size: 16px;
  margin-bottom: 0;
}
body.blog .side-bar .recent-posts,
body.blog .side-bar .authors,
body.archive .side-bar .recent-posts,
body.archive .side-bar .authors,
body.category .side-bar .recent-posts,
body.category .side-bar .authors,
body.search-results .side-bar .recent-posts,
body.search-results .side-bar .authors,
body.category-events .side-bar .recent-posts,
body.category-events .side-bar .authors {
  margin-top: 50px;
}
body.blog .side-bar .authors ul,
body.archive .side-bar .authors ul,
body.category .side-bar .authors ul,
body.search-results .side-bar .authors ul,
body.category-events .side-bar .authors ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
body.blog .side-bar .authors ul > li > a,
body.archive .side-bar .authors ul > li > a,
body.category .side-bar .authors ul > li > a,
body.search-results .side-bar .authors ul > li > a,
body.category-events .side-bar .authors ul > li > a {
  font-style: normal;
}
body.blog p.date, body.blog .side-bar .authors ul li.date,
body.archive p.date,
body.archive .side-bar .authors ul li.date,
body.category p.date,
body.category .side-bar .authors ul li.date,
body.search-results p.date,
body.search-results .side-bar .authors ul li.date,
body.category-events p.date,
body.category-events .side-bar .authors ul li.date {
  color: #75787b;
}

body.single section.article {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
  padding: 75px 0;
}
@media screen and (max-width: 1180px) {
  body.single section.article {
    padding-left: 20px;
    padding-right: 20px;
  }
}
body.single section.article::after {
  clear: both;
  content: "";
  display: table;
}
body.single h1.title {
  margin-top: 0;
}
body.single p.date, body.single body.blog .side-bar .authors ul li.date, body.blog .side-bar .authors ul body.single li.date,
body.single body.archive .side-bar .authors ul li.date,
body.archive .side-bar .authors ul body.single li.date,
body.single body.category .side-bar .authors ul li.date,
body.category .side-bar .authors ul body.single li.date,
body.single body.search-results .side-bar .authors ul li.date,
body.search-results .side-bar .authors ul body.single li.date,
body.single body.category-events .side-bar .authors ul li.date,
body.category-events .side-bar .authors ul body.single li.date {
  color: #75787b;
  margin-bottom: 30px;
}
body.single .featured-image img {
  width: 100%;
}
body.single .content {
  margin-top: 30px;
}
body.single .content img.size-full {
  width: 100%;
  height: auto;
}
body.single .share {
  padding: 50px 0;
  width: 100%;
}
body.single .share p.caption, body.single .share body.blog .side-bar .authors ul li.caption, body.blog .side-bar .authors ul body.single .share li.caption,
body.single .share body.archive .side-bar .authors ul li.caption,
body.archive .side-bar .authors ul body.single .share li.caption,
body.single .share body.category .side-bar .authors ul li.caption,
body.category .side-bar .authors ul body.single .share li.caption,
body.single .share body.search-results .side-bar .authors ul li.caption,
body.search-results .side-bar .authors ul body.single .share li.caption,
body.single .share body.category-events .side-bar .authors ul li.caption,
body.category-events .side-bar .authors ul body.single .share li.caption {
  font-family: "Source Sans Pro", sans-serif;
  font-style: italic;
  font-weight: 400;
  color: #75787b;
  display: inline-block;
  float: left;
  width: 120px;
}
body.single .share ul {
  list-style-type: none;
  float: left;
  width: calc(100% - 120px);
  display: inline-block;
}
body.single .share li {
  display: inline-block;
  width: 26px;
  margin-right: 10px;
}
body.single hr {
  color: #75787b;
}
body.single .prev-next {
  margin-top: 30px;
}
body.single .prev-next .prev {
  display: inline-block;
  float: left;
  width: 50%;
}
body.single .prev-next .next {
  display: inline-block;
  float: right;
  text-align: right;
  width: 50%;
}
body.single .prev-next a {
  font-family: "Source Sans Pro", sans-serif;
  font-style: italic;
  font-weight: 400;
  color: #f77012;
  text-decoration: none;
}
body.single .related {
  background-color: #f2f2f2;
  padding: 75px 0;
}
body.single .related .related-content {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1180px) {
  body.single .related .related-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
body.single .related p.date, body.single .related body.blog .side-bar .authors ul li.date, body.blog .side-bar .authors ul body.single .related li.date,
body.single .related body.archive .side-bar .authors ul li.date,
body.archive .side-bar .authors ul body.single .related li.date,
body.single .related body.category .side-bar .authors ul li.date,
body.category .side-bar .authors ul body.single .related li.date,
body.single .related body.search-results .side-bar .authors ul li.date,
body.search-results .side-bar .authors ul body.single .related li.date,
body.single .related body.category-events .side-bar .authors ul li.date,
body.category-events .side-bar .authors ul body.single .related li.date {
  margin-bottom: 0;
}
body.single .related h5 {
  color: #f77012;
  text-transform: inherit;
}
body.single .related .single-related {
  margin-bottom: 30px;
}
body.single .related a {
  text-decoration: none;
}

/* -------------
PAGES
Styles specific to pages.
---------------*/
/*home.scss*/
body.home section.three-blocks {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 20px;
  display: flex;
}
body.home section.three-blocks::after {
  clear: both;
  content: "";
  display: table;
}
body.home section.three-blocks .block {
  text-align: center;
}
@media screen and (max-width: 1260px) {
  body.home section.three-blocks .block {
    height: 450px;
  }
}
@media screen and (max-width: 1030px) {
  body.home section.three-blocks .block {
    height: 525px;
  }
}
@media screen and (max-width: 770px) {
  body.home section.three-blocks .block {
    margin-bottom: 20px;
    margin-right: 0;
  }
}
body.home section.three-blocks .block .icon {
  margin-left: auto;
  margin-right: auto;
  padding-top: 50px;
  padding-bottom: 30px;
  width: 80px;
}
body.home section.three-blocks .block h3,
body.home section.three-blocks .block p,
body.home section.three-blocks .block body.blog .side-bar .authors ul li,
body.blog .side-bar .authors ul body.home section.three-blocks .block li,
body.home section.three-blocks .block body.archive .side-bar .authors ul li,
body.archive .side-bar .authors ul body.home section.three-blocks .block li,
body.home section.three-blocks .block body.category .side-bar .authors ul li,
body.category .side-bar .authors ul body.home section.three-blocks .block li,
body.home section.three-blocks .block body.search-results .side-bar .authors ul li,
body.search-results .side-bar .authors ul body.home section.three-blocks .block li,
body.home section.three-blocks .block body.category-events .side-bar .authors ul li,
body.category-events .side-bar .authors ul body.home section.three-blocks .block li, body.home section.three-blocks .block > a.btn {
  color: #f2f2f2;
  text-align: center;
}
body.home section.three-blocks .block h3,
body.home section.three-blocks .block p,
body.home section.three-blocks .block body.blog .side-bar .authors ul li,
body.blog .side-bar .authors ul body.home section.three-blocks .block li,
body.home section.three-blocks .block body.archive .side-bar .authors ul li,
body.archive .side-bar .authors ul body.home section.three-blocks .block li,
body.home section.three-blocks .block body.category .side-bar .authors ul li,
body.category .side-bar .authors ul body.home section.three-blocks .block li,
body.home section.three-blocks .block body.search-results .side-bar .authors ul li,
body.search-results .side-bar .authors ul body.home section.three-blocks .block li,
body.home section.three-blocks .block body.category-events .side-bar .authors ul li,
body.category-events .side-bar .authors ul body.home section.three-blocks .block li {
  padding: 0 30px;
}
body.home section.three-blocks .block > a.btn {
  display: inline-block;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}
body.home section.three-blocks .block a {
  text-decoration: none;
}
body.home section.three-blocks .blue-block {
  background-color: #74d1ea;
}
body.home section.three-blocks .blue-block > a.btn {
  background-color: #9edff0;
}
body.home section.three-blocks .gray-block {
  background-color: #75787b;
}
body.home section.three-blocks .gray-block > a.btn {
  background-color: #9ea1a3;
}
body.home section.three-blocks .orange-block {
  background-color: #f77012;
}
body.home section.three-blocks .orange-block > a.btn {
  background-color: #f99b59;
}
body.home section.blog-highlights {
  background-color: #f2f2f2;
  padding: 75px 0;
}
body.home section.blog-highlights .blog-highlights-content {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1180px) {
  body.home section.blog-highlights .blog-highlights-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
body.home section.blog-highlights h1 {
  display: inline-block;
  float: left;
  margin: 0;
  width: 70%;
}
@media screen and (max-width: 770px) {
  body.home section.blog-highlights h1 {
    width: 100%;
  }
}
body.home section.blog-highlights a {
  font-family: "Source Sans Pro", sans-serif;
  font-style: italic;
  font-weight: 400;
  color: #f77012;
  display: inline-block;
  float: right;
  margin-top: 20px;
  width: 30%;
  text-decoration: none;
  text-align: right;
}
@media screen and (max-width: 770px) {
  body.home section.blog-highlights a {
    float: left;
    width: 100%;
  }
}
body.home section.blog-highlights .posts::after {
  clear: both;
  content: "";
  display: table;
}
body.home section.blog-highlights .single-post {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 48.821174201%;
  background-color: white;
  margin-top: 50px;
  box-shadow: 2px 2px 5px 2px rgba(179, 179, 179, 0.4);
}
body.home section.blog-highlights .single-post:last-child {
  margin-right: 0;
}
body.home section.blog-highlights .single-post.accent-blue {
  border-left: 7px solid #74d1ea;
}
body.home section.blog-highlights .single-post.accent-light-gray {
  border-left: 7px solid #c8c9c7;
}
body.home section.blog-highlights .single-post.accent-orange {
  border-left: 7px solid #f77012;
}
body.home section.blog-highlights .single-post.accent-med-gray {
  border-left: 7px solid #75787b;
}
@media screen and (max-width: 770px) {
  body.home section.blog-highlights .single-post {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 100%;
    margin-right: 0;
    margin-top: 20px;
  }
  body.home section.blog-highlights .single-post:last-child {
    margin-right: 0;
  }
}
body.home section.blog-highlights .single-post .text {
  padding: 30px;
}
body.home section.blog-highlights .single-post p.date, body.home section.blog-highlights .single-post body.blog .side-bar .authors ul li.date, body.blog .side-bar .authors ul body.home section.blog-highlights .single-post li.date,
body.home section.blog-highlights .single-post body.archive .side-bar .authors ul li.date,
body.archive .side-bar .authors ul body.home section.blog-highlights .single-post li.date,
body.home section.blog-highlights .single-post body.category .side-bar .authors ul li.date,
body.category .side-bar .authors ul body.home section.blog-highlights .single-post li.date,
body.home section.blog-highlights .single-post body.search-results .side-bar .authors ul li.date,
body.search-results .side-bar .authors ul body.home section.blog-highlights .single-post li.date,
body.home section.blog-highlights .single-post body.category-events .side-bar .authors ul li.date,
body.category-events .side-bar .authors ul body.home section.blog-highlights .single-post li.date {
  color: #c8c9c7;
}
body.home section.blog-highlights .single-post h4 {
  padding-bottom: 15px;
}
body.home section.blog-highlights .single-post a {
  display: block;
  float: none;
  margin-top: 0;
  width: inherit;
  text-align: left;
}
body.home section.blog-highlights .single-post a:hover {
  text-decoration: underline;
}
body.home section.blog-highlights .single-post:hover h4 {
  color: #f77012;
  text-decoration: none;
}
body.home section.blog-highlights .single-post:hover a {
  text-decoration: underline;
}
body.home section.event-highlight {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 75px 0;
}
@media screen and (max-width: 1180px) {
  body.home section.event-highlight {
    padding-left: 20px;
    padding-right: 20px;
  }
}
body.home section.event-highlight::after {
  clear: both;
  content: "";
  display: table;
}
@media screen and (max-width: 770px) {
  body.home section.event-highlight {
    padding: 20px;
  }
}
body.home section.event-highlight .image {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 31.7615656014%;
}
body.home section.event-highlight .image:last-child {
  margin-right: 0;
}
@media screen and (max-width: 770px) {
  body.home section.event-highlight .image {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 100%;
    margin-right: 0;
  }
  body.home section.event-highlight .image:last-child {
    margin-right: 0;
  }
}
body.home section.event-highlight .image img {
  padding-right: 75px;
  width: 100%;
}
@media screen and (max-width: 770px) {
  body.home section.event-highlight .image img {
    display: block;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    padding-right: 0;
    width: 150px;
  }
}
body.home section.event-highlight .text {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 65.8807828007%;
}
body.home section.event-highlight .text:last-child {
  margin-right: 0;
}
@media screen and (max-width: 770px) {
  body.home section.event-highlight .text {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 100%;
    margin-right: 0;
  }
  body.home section.event-highlight .text:last-child {
    margin-right: 0;
  }
}
body.home section.event-highlight .text h3,
body.home section.event-highlight .text h4 {
  margin-bottom: 30px;
}
body.home section.event-highlight .text h5,
body.home section.event-highlight .text h6,
body.home section.event-highlight .text p,
body.home section.event-highlight .text body.blog .side-bar .authors ul li,
body.blog .side-bar .authors ul body.home section.event-highlight .text li,
body.home section.event-highlight .text body.archive .side-bar .authors ul li,
body.archive .side-bar .authors ul body.home section.event-highlight .text li,
body.home section.event-highlight .text body.category .side-bar .authors ul li,
body.category .side-bar .authors ul body.home section.event-highlight .text li,
body.home section.event-highlight .text body.search-results .side-bar .authors ul li,
body.search-results .side-bar .authors ul body.home section.event-highlight .text li,
body.home section.event-highlight .text body.category-events .side-bar .authors ul li,
body.category-events .side-bar .authors ul body.home section.event-highlight .text li {
  padding-bottom: 15px;
}
body.home section.event-highlight .text a.btn-large {
  margin-bottom: 35px;
}
@media screen and (min-width: 911px) {
  body.home section.simple-text-image .mobile {
    display: none;
  }
  body.home section.simple-text-image .desktop {
    display: block;
  }
}
@media screen and (max-width: 910px) {
  body.home section.simple-text-image .mobile {
    display: block;
  }
  body.home section.simple-text-image .desktop {
    display: none;
  }
}
body.home section.simple-text-image .left-column {
  position: relative;
}
body.home section.simple-text-image img {
  position: absolute;
}
@media screen and (max-width: 910px) {
  body.home section.simple-text-image img {
    position: relative;
  }
}
body.home section.simple-text-image .plug {
  width: 270px;
}
body.home section.simple-text-image .blue-bubble {
  width: 175px;
  top: 20px;
  left: 260px;
}
body.home section.simple-text-image .green-bubble {
  width: 220px;
  top: 150px;
  left: 200px;
}
body.home section.full-width-text-image .text-container {
  background-color: #74d1ea;
}
body.home section.full-width-text-image .image-container {
  background-image: url("../images/drive-electric-efficiency-plug-in-car.jpg");
  background-color: #74d1ea;
}
body.home section.full-width-text-image h2,
body.home section.full-width-text-image p,
body.home section.full-width-text-image body.blog .side-bar .authors ul li,
body.blog .side-bar .authors ul body.home section.full-width-text-image li,
body.home section.full-width-text-image body.archive .side-bar .authors ul li,
body.archive .side-bar .authors ul body.home section.full-width-text-image li,
body.home section.full-width-text-image body.category .side-bar .authors ul li,
body.category .side-bar .authors ul body.home section.full-width-text-image li,
body.home section.full-width-text-image body.search-results .side-bar .authors ul li,
body.search-results .side-bar .authors ul body.home section.full-width-text-image li,
body.home section.full-width-text-image body.category-events .side-bar .authors ul li,
body.category-events .side-bar .authors ul body.home section.full-width-text-image li,
body.home section.full-width-text-image h6 {
  color: #425563;
}

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