@import url("../../global/CSS/global.css");
/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
.transition {
  -o-transition: all 0.33s ease;
  -moz-transition: all 0.33s ease;
  -webkit-transition: all 0.33s ease;
  transition: all 0.33s ease;
}
.centered {
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.flex-center {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
/* ====================== Colors ====================== */
/* ====================== Font cheat sheet ====================== */
/* ====================== Base Styles ====================== */
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'Lato', sans-serif;
  margin: 0;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  color: #2e2e3b;
  font-weight: 300;
  line-height: 170%;
}
body.locked {
  overflow: hidden;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
/* Change color & bg color of selected live text */
*::-moz-selection {
  background-color: #aa483d;
  color: #b7ce95;
}
*::selection {
  background-color: #aa483d;
  color: #b7ce95;
}
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}
/* if using a sticky nav, use this to add space above anchor links to go below navbar */
*:target:before {
  display: block;
  content: "";
  height: 90px;
  margin: -90px 0 0;
}
*:target:before:focus {
  outline: none !important;
}
*:target:focus {
  outline: none;
}
a,
a:visited,
a:hover,
a:focus,
input,
input:hover {
  -webkit-transition: all 0.33s ease;
  transition: all 0.33s ease;
  text-decoration: none;
}
.transition {
  -webkit-transition: all 0.33s ease;
  transition: all 0.33s ease;
}
.centered {
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.flex-center {
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.wrapper {
  float: none;
  margin: 0 auto 0;
  max-width: 100%;
}
/* ====================== Flex Layouts ====================== */
.flex-columns {
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  /* works with row or column */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.column {
  /* This will be twice as big as the small item. */
  -webkit-flex: 2 0 0;
  -webkit-box-flex: 2;
  -ms-flex: 2 0 0;
  flex: 2 0 0;
  padding: 0 2%;
  flex-basis: 33.33333333%;
  width: 33.3333333%;
  width: -webkit-calc(100% / 3);
  width: calc(100% / 3);
  /* To override and be more precise, if you wish */
}
@media (max-width: 768px) {
  .column {
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    -webkit-box-flex: 1;
    flex: 1;
  }
}
@media (max-width: 768px) {
  .mobile-gone {
    display: none;
  }
}
/* ====================== Typography ====================== */
/*
@iterations: 6;

.h(@index) when (@index > 0) {
h@{index} {
        font-size: 5em - @index*10;
}
.h(@index - 1);
}
.h(0) {}
.h(@iterations);*/
h1 {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 3em;
}
h2 {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 2.5em;
}
h3 {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 2em;
}
h5 {
  font-family: 'Lato', sans-serif;
  color: #3fcccb;
  text-transform: uppercase;
  font-weight: 900;
}
p {
  font-size: 1.15em;
  line-height: 170%;
  margin-bottom: 1.25em;
}
p a {
  color: #3fcccb;
  border-bottom: 1px dotted #ddd;
}
a {
  color: #3fcccb;
  border-bottom: 1px dotted #ddd;
}
.templatecontent a,
.templatecontent li a {
  color: #3fcccb;
  border-bottom: 1px dotted #ddd;
}
/* Remove excess margin / padding */
.no-padding {
  padding: 0;
}
.no-margin {
  margin: 0;
}
/* ====================== Gum Drop Buttons! ====================== */
.button {
  background: #6fd9d8;
  border-bottom: 3px solid #3fcccb;
  padding: 14px 50px;
  font-weight: bold;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 3px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff !important;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1em;
  font-weight: 900;
  text-align: center;
  display: inline-table;
}
.button:hover {
  background: #3fcccb;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all 0.33s ease;
  -moz-transition: all 0.33s ease;
  -webkit-transition: all 0.33s ease;
  transition: all 0.33s ease;
}
.button-text {
  border-bottom: 0px solid #b7ce95;
  padding-bottom: 10px;
  font-weight: bold;
  margin-top: 20px;
  -moz-appearance: none;
  -webkit-appearance: none;
  -moz-border-radius: 3px;
  /* -webkit-border-radius: 3px; */
  /* border-radius: 3px; */
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #aa483d !important;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 3px;
  text-align: center;
  display: inline-table;
  /* &:after {
	    content:"";
	    font-family: FontAwesome;
	    font-style: normal;
	    font-weight: normal;
	    text-decoration: inherit;
	    padding: .5em 0;
	    text-align: left;
	}*/
}
.button-text:hover {
  color: #b7ce95 !important;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all 0.33s ease;
  -moz-transition: all 0.33s ease;
  -webkit-transition: all 0.33s ease;
  transition: all 0.33s ease;
}
/* ====================== Header ====================== */
header {
  position: fixed;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: #eee 1px solid;
  z-index: 10;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all 0.33s ease;
  -moz-transition: all 0.33s ease;
  -webkit-transition: all 0.33s ease;
  transition: all 0.33s ease;
  width: 100vw;
  min-height: 115px;
  left: 0;
}
@media (max-width: 992px) {
  header {
    min-height: 80px;
  }
}
header a {
  border-bottom: 0px;
}
header ul.socials {
  list-style: none;
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 10vw;
  position: absolute;
  top: 25%;
  left: 2%;
}
@media (max-width: 992px) {
  header ul.socials {
    display: none;
  }
}
header ul.socials li {
  margin-right: 10%;
  float: left;
  display: inline-block;
}
header ul.socials li a {
  background: #71bdb3;
  text-align: center;
  font-weight: bold;
  border: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  padding: 0;
  border-radius: 3px;
  position: relative;
  /* margin: 0 15px 20px; */
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff !important;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  font-size: 1em;
  padding: 0.5em 0.8em !important;
  border-bottom: 3px solid #489a8f;
  /* padding-right: 40px !important; */
  /* padding-left: 37px !important; */
}
header ul.socials li a:hover {
  background: #489a8f;
}
.header-hide {
  margin-top: -115px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all 0.33s ease;
  -moz-transition: all 0.33s ease;
  -webkit-transition: all 0.33s ease;
  transition: all 0.33s ease;
}
header.active {
  left: -260px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all 0.33s ease;
  -moz-transition: all 0.33s ease;
  -webkit-transition: all 0.33s ease;
  transition: all 0.33s ease;
}
/* ====================== Logo mark / Unique Nav Buttons ====================== */
#mn-home {
  background: url(images/logo.svg) no-repeat;
  width: 240px;
  height: 100px;
  background-size: 85%;
  background-position: 50% 0%;
  text-indent: -9999px;
  margin: 1% 5% 0;
}
@media (max-width: 1100px) {
  #mn-home {
    margin: 1% 0 0;
  }
}
@media (max-width: 992px) {
  li#mn-home,
  li#mn-home.current {
    display: none !important;
  }
}
.sidecar-logo-wrap {
  background: url(images/logo-white.svg) no-repeat;
  width: 190px;
  height: 70px;
  background-size: 85%;
  text-indent: -9999px;
  position: absolute;
  left: 35px;
  top: 20px;
}
@media (max-width: 991px) {
  .logo {
    background: url(images/logo.svg) no-repeat;
    width: 220px;
    height: 90px;
    background-size: 85%;
    text-indent: -9999px;
    position: absolute;
    left: 0;
  }
}
nav.flex-nav ul#mainnav li#mn-donate > a.current {
  background: #aa483d;
}
li#mn-donate {
  position: absolute;
  right: 3%;
  top: 13px;
}
li#mn-donate:hover a {
  background: #7d352d;
}
li#mn-donate a {
  background: #aa483d;
  text-align: center;
  font-weight: bold;
  border: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  padding: 0;
  border-radius: 3px;
  position: relative;
  /* margin: 0 15px 20px; */
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff !important;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  font-size: 13px;
  /* line-height: 40px; */
  padding: 1em 3em !important;
  border-bottom: 3px solid #7d352d;
  /* padding-right: 40px !important; */
  /* padding-left: 37px !important; */
}
/* ====================== Side Drawer Styling ====================== */
.body-overlay {
  display: block;
  cursor: col-resize;
  /*background: linear-gradient(30deg, #2e3192, #1bffff);*/
  background: rgba(255, 255, 255, 0.9);
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  z-index: 9998;
  visibility: hidden;
  -webkit-transition: opacity 0.33s ease;
  transition: opacity 0.33s ease;
}
.body-overlay.active {
  opacity: 1;
  visibility: visible;
  height: 100%;
  width: 100%;
}
#siteWrapper {
  position: relative;
  min-height: 100vh;
}
#sidecar {
  position: fixed;
  height: 100%;
  width: 260px;
  background: #2e2e3b url(images/stardust.jpg) repeat;
  top: 0;
  text-align: left;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  webkit-box-shadow: 10px 0px 17px -5px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 10px 0px 17px -5px rgba(0, 0, 0, 0.5);
  box-shadow: 10px 0px 17px -5px rgba(0, 0, 0, 0.5);
}
#sidecar a {
  border-bottom: 0px;
}
/* Drawer Placement & Speed */
.slide-left,
.push-left,
.over-left {
  left: 0;
  right: inherit;
}
.slide-right,
.push-right,
.over-right {
  right: 0;
  left: inherit;
}
.slide-left,
.slide-right,
.push-left,
.push-right,
.over-left,
.over-right {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all 0.33s ease;
  -moz-transition: all 0.33s ease;
  -webkit-transition: all 0.33s ease;
  transition: all 0.33s ease;
}
/* SideCar Animation-Direction */
/* Push Right */
#sidecar.push-right {
  -webkit-transform: translatex(260px);
  -ms-transform: translatex(260px) translatez(0);
  -ms-transform: translate3d(260px, 0, 0);
  transform: translatex(260px) translatez(0);
  -webkit-transform: translate3d(260px, 0, 0);
  transform: translate3d(260px, 0, 0);
  right: -260px \9;
  /* ie9 support */
}
#sidecar.push-right.active {
  -webkit-transform: translatex(0);
  -ms-transform: translatex(0);
  transform: translatex(0);
  right: 0px \9;
  /* ie9 support */
}
#siteWrapper.push-right {
  -webkit-transform: translatex(0);
  -ms-transform: translatex(0);
  transform: translatex(0);
  right: 0px \9;
  /* ie9 support */
}
#siteWrapper.push-right.active {
  -webkit-transform: translatex(-260px);
  -ms-transform: translatex(-260px) translatez(0);
  -ms-transform: translate3d(-260px, 0, 0);
  transform: translatex(-260px) translatez(0);
  -webkit-transform: translate3d(-260px, 0, 0);
  transform: translate3d(-260px, 0, 0);
  right: 260px \9;
  /* ie9 support */
}
header p {
  position: absolute;
  right: 60px;
  top: 30px;
  font-size: 0.85em;
  text-transform: uppercase;
  font-weight: bold;
}
#drawer-toggle {
  position: absolute;
  top: 20px;
  background: transparent;
  width: 80px;
  height: 40px;
  border: none;
  /* img replace */
  overflow: hidden;
  text-indent: 100%;
  color: transparent;
  white-space: nowrap;
  cursor: pointer;
}
#drawer-toggle span,
#drawer-toggle span::before,
#drawer-toggle span::after {
  position: absolute;
  width: 34px;
  height: 3px;
  background: #2e2e3b;
  border-radius: 2px;
}
#drawer-toggle span {
  top: -webkit-calc(48%);
  top: calc(50% - 2px);
  left: -webkit-calc(33%);
  left: calc(50% - 17px);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
#drawer-toggle span::before,
#drawer-toggle span::after {
  content: '';
  left: 0;
  -webkit-transition: width 0.3s, -webkit-transform 0.3s;
  transition: width 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, width 0.3s;
  transition: transform 0.3s, width 0.3s, -webkit-transform 0.3s;
}
#drawer-toggle span::before {
  bottom: 8px;
}
#drawer-toggle span::after {
  top: 8px;
}
#drawer-toggle.active span::after {
  display: none;
}
#drawer-toggle.active {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
#drawer-toggle.active span {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#drawer-toggle.active span:before {
  -webkit-transform: translateY(8px) rotate(-90deg);
  -ms-transform: translateY(8px) rotate(-90deg);
  transform: translateY(8px) rotate(-90deg);
}
button.close-drawer.pull-right {
  display: none;
}
/* ====================== Side Drawer Styling END ====================== */
/* Expand Collapse Styling */
nav#sidecar ul#mainnav {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin: 80px 0 0 0;
  padding: 20px;
  background: transparent;
}
nav#sidecar ul#mainnav li {
  position: relative;
  margin: 0;
  padding: 0;
  float: none;
  display: inline-block;
  width: 100%;
  height: auto;
  background: transparent;
  text-align: left;
}
nav#sidecar ul#mainnav li:hover ul {
  display: none;
}
nav#sidecar ul#mainnav li ul {
  padding: 0 0 0 8px;
  margin: 0;
  display: none;
  position: relative;
  float: none;
}
nav#sidecar ul#mainnav li ul a {
  font-weight: 300;
  padding: 3px;
  font-size: 0.85em;
}
nav#sidecar ul#mainnav li ul.active {
  display: block;
}
nav#sidecar ul#mainnav li a {
  display: inline-block;
  width: 100%;
  height: auto;
  padding: 8px;
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.95em;
}
nav#sidecar ul#mainnav li a:hover {
  color: #ffffff;
  text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all 0.33s ease;
  -moz-transition: all 0.33s ease;
  -webkit-transition: all 0.33s ease;
  transition: all 0.33s ease;
}
nav#sidecar ul#mainnav li a.expand {
  display: block;
  height: 38px;
  width: 38px;
  position: absolute;
  top: 0;
  right: 0;
  background: url('../CSS/images/arrow-light.svg');
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 50%;
  padding: 16px;
  cursor: pointer;
}
nav#sidecar ul#mainnav li a.expand.active {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
nav#sidecar ul.socials {
  list-style: none;
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  margin-top: 20px;
  left: 0;
  right: 0;
  -webkit-padding-start: 0;
}
@media (min-width: 992px) {
  nav#sidecar ul.socials {
    display: none;
  }
}
nav#sidecar ul.socials li {
  margin-right: 10%;
}
nav#sidecar ul.socials li a {
  background: #71bdb3;
  text-align: center;
  font-weight: bold;
  border: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  padding: 0;
  border-radius: 3px;
  position: relative;
  /* margin: 0 15px 20px; */
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff !important;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  font-size: 1em;
  padding: 0.5em 0.75em !important;
  border-bottom: 3px solid #489a8f;
  /* padding-right: 40px !important; */
  /* padding-left: 37px !important; */
}
nav#sidecar ul.socials li a:hover {
  background: #489a8f;
}
/* Side Drawer Styling END */
/* Flex Nav */
nav.flex-nav {
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100vw;
}
nav.flex-nav ul#mainnav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  width: 100vw;
  /* Options: */
  /*justify-content: flex-start;*/
  /*justify-content: flex-end;*/
  /*justify-content: space-between;*/
  /*justify-content: space-around;*/
}
@media (max-width: 992px) {
  nav.flex-nav ul#mainnav {
    display: none;
  }
}
nav.flex-nav ul#mainnav li {
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  -webkit-box-flex: 0;
  flex: 0 1 auto;
  padding: 10px 10px;
  /* Options: */
  /*flex: 1 1 auto;*/
  /* 2nd Level ul */
}
nav.flex-nav ul#mainnav li a {
  padding: 1.5em 0.5em;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  color: #2e2e3b;
}
nav.flex-nav ul#mainnav li a:hover {
  color: #5b5b74;
}
nav.flex-nav ul#mainnav li > a.current {
  background: transparent;
}
nav.flex-nav ul#mainnav li ul {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  position: absolute;
  margin: 0;
  padding: 0;
  list-style: none;
  z-index: 2000;
  display: none;
  background: #2e2e3b;
  border-radius: 3px;
  border-bottom: 3px solid #000000;
  -webkit-box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.3);
  /* 2nd level li */
}
nav.flex-nav ul#mainnav li ul > li {
  position: relative;
  display: block;
  white-space: nowrap;
  z-index: 999;
  border-bottom: 1px solid #444458;
  /* 3rd level ul */
}
nav.flex-nav ul#mainnav li ul > li a {
  display: block;
  background: transprent;
  padding: 5px 30px 5px 12px;
  width: 100%;
  color: #ffffff;
  font-size: 0.85em;
}
nav.flex-nav ul#mainnav li ul > li a:hover {
  color: #6fd9d8;
}
nav.flex-nav ul#mainnav li ul > li ul {
  left: 100%;
  top: 0;
  /* 3rd level li */
}
nav.flex-nav ul#mainnav a {
  text-decoration: none;
}
nav.flex-nav ul#mainnav > li > ul.hasMega {
  display: none !important;
}
nav.flex-nav ul#mainnav > li:hover > ul,
nav.flex-nav ul#mainnav > li > ul > li:hover > ul {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}
@media (min-width: 992px) {
  nav.flex-nav button {
    display: none;
  }
}
@media (max-width: 991px) {
  nav.flex-nav button {
    display: block;
    border: 0px;
    outline: none;
  }
}
/* Drop down bubble arrow */
ul.sw-menucode-list:before {
  content: ' ';
  height: 0;
  width: 0;
  border: 10px solid transparent;
  border-bottom-color: #2e2e3b;
  position: absolute;
  top: -20px;
  left: 20px;
}
/* Fade Main Nav on Hover */
nav.flex-nav > ul#mainnav:hover a {
  color: rgba(46, 46, 59, 0.6);
}
nav.flex-nav > ul#mainnav:hover a ul a {
  color: #ffffff !important;
}
/* ====================== Footer ====================== */
footer {
  background: #ffffff;
  padding: 350px 0 2%;
  text-align: center;
}
footer .fa {
  display: block;
  font-size: 1.35em;
  color: rgba(46, 46, 59, 0.2);
  padding: 20px 0;
}
footer p {
  font-size: 0.85em;
}
footer p span {
  font-weight: bold;
}
footer ul.socials {
  background: transparent;
  list-style: none;
  margin: 0 auto;
  display: inline-block;
  -webkit-padding-start: 0px;
}
footer ul.socials li {
  background: transparent;
  padding: 0 10px;
  display: inline-block;
}
footer ul.socials li a {
  color: #2e2e3b !important;
  font-size: 0.95em;
  text-align: center;
}
footer ul.socials li a .fa {
  display: block;
  color: #2e2e3b;
  font-size: 1em;
  padding: 0px;
  text-align: center;
}
.bottom-footer {
  background: #2e2e3b;
  border-top: rgba(46, 46, 59, 0.2);
  height: 75px;
  text-align: center;
  padding: 2%;
}
.bottom-footer p {
  font-size: 0.75em;
  color: rgba(255, 255, 255, 0.8);
}
.bottom-footer a {
  text-transform: none;
  color: #ffffff;
  border-bottom: 1px dotted #ddd;
}
/* ====================== Video Components ====================== */
/* -------------------------------- 

Video components 

-------------------------------- */
video {
  opacity: 1;
  min-width: 100%;
  opacity: 0.25;
  -webkit-filter: grayscale(1);
  background-size: cover;
  position: absolute;
  width: 100%;
}
@media (max-width: 992px) {
  video {
    display: none;
  }
}
section.video-bg {
  background-attachment: fixed;
  background-color: #000;
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
}
/*video {
  -webkit-filter: grayscale(1) opacity(0.3);
  background: @sky;
}*/
@media only screen and (max-width: 800px) {
  video {
    display: none;
  }
}
/* ====================== Home Page ====================== */
/*.animatable {
  -webkit-transition: all .77s ease-out;
  transition: all .77s ease-out;
}

.scaled {
  -webkit-transform: scale(1.25);
  transform: scale(1.25);
}

#hero {
	zoom:1;
}*/
section.home-main {
  position: relative;
  background: #000;
  min-height: 800px;
}
section.home-main .item {
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: 25% 0%;
  zoom: 1;
  width: 100vw !important;
  background-size: cover !important;
}
section.home-main .swRotator .scrollable .items .item .caption {
  right: auto;
  bottom: auto;
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 90%;
}
section.home-main .swRotator .scrollable .items .item .caption .title {
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 4.5em;
  text-align: center;
  text-shadow: 0px 10px 10px rgba(0, 0, 0, 0.7);
}
@media (max-width: 1100px) {
  section.home-main .swRotator .scrollable .items .item .caption .title {
    font-size: 3em;
  }
}
@media (max-width: 768px) {
  section.home-main .swRotator .scrollable .items .item .caption .title {
    font-size: 2em;
  }
}
section.home-main .swRotator .scrollable .items .item .caption .description {
  color: #fff;
  font-weight: 300;
  text-align: center;
  font-size: 1.5em;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
  padding: 50px;
}
section.home-main .wrapper {
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  -webkit-transform: translateX(-50%) translateY(-40%);
  -ms-transform: translateX(-50%) translateY(-40%);
  transform: translateX(-50%) translateY(-40%);
}
section.home-main .wrapper h1 {
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 3.5em;
  text-align: center;
  text-shadow: 0px 10px 10px rgba(0, 0, 0, 0.7);
}
section.home-main .wrapper h3 {
  color: #fff;
  font-weight: 300;
  text-align: center;
  font-size: 1.5em;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
  /*&:before {
				content:" ";
				position:absolute;  
				width: 55px;
				height: 70px;
				background-size: 100%;
				top: -80px;
				left: 46%;
				background: url(images/heart-bright.svg);
			}*/
}
section.home-main .wrapper .button {
  background: transparent;
  border-bottom: 3px solid #9bbb6b;
  padding: 14px 60px;
  font-weight: bold;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 3px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff !important;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1em;
  font-weight: 900;
  text-align: center;
  display: table;
  margin: 60px auto -20px;
  /* border: 1px solid #fff; */
  background: #b7ce95;
}
section.home-main .wrapper .button:hover {
  background: #9bbb6b;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all 0.33s ease;
  -moz-transition: all 0.33s ease;
  -webkit-transition: all 0.33s ease;
  transition: all 0.33s ease;
}
@-webkit-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -ms-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
section.home-main .arrow {
  position: fixed;
  bottom: -200px;
  left: 50%;
  margin-left: -20px;
  width: 20px;
  height: 20px;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNi4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iNTEycHgiIGhlaWdodD0iNTEycHgiIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA1MTIgNTEyIiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik0yOTMuNzUxLDQ1NS44NjhjLTIwLjE4MSwyMC4xNzktNTMuMTY1LDE5LjkxMy03My42NzMtMC41OTVsMCwwYy0yMC41MDgtMjAuNTA4LTIwLjc3My01My40OTMtMC41OTQtNzMuNjcyICBsMTg5Ljk5OS0xOTBjMjAuMTc4LTIwLjE3OCw1My4xNjQtMTkuOTEzLDczLjY3MiwwLjU5NWwwLDBjMjAuNTA4LDIwLjUwOSwyMC43NzIsNTMuNDkyLDAuNTk1LDczLjY3MUwyOTMuNzUxLDQ1NS44Njh6Ii8+DQo8cGF0aCBmaWxsPSIjRkZGRkZGIiBkPSJNMjIwLjI0OSw0NTUuODY4YzIwLjE4LDIwLjE3OSw1My4xNjQsMTkuOTEzLDczLjY3Mi0wLjU5NWwwLDBjMjAuNTA5LTIwLjUwOCwyMC43NzQtNTMuNDkzLDAuNTk2LTczLjY3MiAgbC0xOTAtMTkwYy0yMC4xNzgtMjAuMTc4LTUzLjE2NC0xOS45MTMtNzMuNjcxLDAuNTk1bDAsMGMtMjAuNTA4LDIwLjUwOS0yMC43NzIsNTMuNDkyLTAuNTk1LDczLjY3MUwyMjAuMjQ5LDQ1NS44Njh6Ii8+DQo8L3N2Zz4=);
  background-size: contain;
}
section.home-main .bounce {
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}
/* Responsive Banner Rotator */
.slider {
  position: relative !important;
  z-index: 2000;
  height: auto !important;
  width: 100%;
}
.slider .swRotator {
  position: relative !important;
  background-color: #000;
}
.slider .scrollable {
  position: relative !important;
  overflow: visible !important;
  width: 100% !important;
}
.slider .scrollable .items {
  width: 100% !important;
  position: relative !important;
  top: 0;
  left: 0;
  right: 0;
}
.slider .scrollable .items .item {
  width: 100% !important;
}
.slider .scrollable .item img {
  width: 100%;
  max-width: 100%;
  height: auto;
  opacity: 0.95;
}
.swRotator .scrollable .items .item .caption {
  right: auto;
  bottom: auto;
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 90%;
}
.swRotator .scrollable .items .item .caption .title {
  letter-spacing: 1px;
  font-size: 64px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 5px;
}
@media screen and (max-width: 767px) {
  .swRotator .scrollable .items .item .caption .title {
    font-size: 20px;
    letter-spacing: 0.7px;
  }
}
.swRotator .scrollable .items .item .caption .description {
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
  text-transform: lower;
  text-align: center;
  letter-spacing: 1px;
  line-height: 2rem;
}
@media screen and (max-width: 767px) {
  .swRotator .scrollable .items .item .caption .description {
    font-size: 16px;
  }
}
section.home-stats {
  background: #b7ce95 url(images/facts-bg.png) no-repeat;
  background-size: cover;
  min-height: 120px;
  padding: 3% 0;
  text-align: center;
}
section.home-stats h2 {
  color: #ffffff;
  padding: 10px 0 20px;
  margin-top: 0 !important;
  text-align: center;
}
section.home-stats h5 {
  text-align: center;
  color: #aa483d;
}
section.home-stats ul {
  list-style: none;
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-padding-start: 0;
  -moz-padding-start: 0 !important;
  text-align: center;
  margin-bottom: 0px;
}
section.home-stats ul li {
  display: inline-block;
  float: left;
  width: 30%;
  padding: 20px 50px 40px;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0);
  background: rgba(0, 0, 0, 0.07);
  margin: 10px;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all 0.33s ease;
  -moz-transition: all 0.33s ease;
  -webkit-transition: all 0.33s ease;
  transition: all 0.33s ease;
}
@media (max-width: 992px) {
  section.home-stats ul li {
    width: 40%;
  }
}
@media (max-width: 768px) {
  section.home-stats ul li {
    width: 100%;
  }
}
section.home-stats ul li span {
  font-weight: bold;
  display: block;
  text-transform: uppercase;
  padding: 10px;
}
section.home-stats ul li:hover {
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all 0.33s ease;
  -moz-transition: all 0.33s ease;
  -webkit-transition: all 0.33s ease;
  transition: all 0.33s ease;
  background: rgba(255, 255, 255, 0.75);
}
@media screen and (max-width: 500px) {
  .tile {
    -webkit-flex-basis: 100% !important;
    -ms-flex-preferred-size: 100% !important;
    flex-basis: 100% !important;
    max-width: 100%;
  }
}
section.home-intro {
  padding: 3% 0 8%;
  background: #ffffff url(images/tiles.jpg) no-repeat;
  background-position: 120% 0%;
  background-size: 65%;
  /*&:before {
		  content: '';
		  position: absolute;
		  left: 0;
		  margin-top: -50px;
		  overflow: visible;
		  width: 100%;
		  height: 40px;
		  background: #fff;
		  z-index: 1;
		  -webkit-transform: skewY(-1deg);
		  -moz-transform: skewY(-1deg);
		  -ms-transform: skewY(-1degdeg);
		  -o-transform: skewY(-1deg);
		  transform: skewY(-1deg);
		    -webkit-backface-visibility: hidden;
		}*/
}
@media (max-width: 992px) {
  section.home-intro {
    background: #ffffff;
  }
}
section.home-intro h2 {
  padding: 20px 0;
}
section.home-intro h2:before {
  content: '';
  display: block;
  height: 2px;
  margin: 20px 0 50px;
  background: #6fd9d8;
  width: 50px;
}
section.home-body {
  padding: 3% 0;
  background: url(images/stardust.jpg) repeat;
  position: relative;
}
section.home-body .column {
  text-align: center;
  padding: 5% 2%;
}
section.home-body h2 {
  color: #b7ce95;
}
section.home-body h3 {
  font-size: 1.6em;
  line-height: 150%;
  color: #ffffff;
  margin-bottom: 20px;
  padding: 0 15%;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}
section.home-body p {
  color: #ffffff;
  padding: 0 15%;
  margin: 0 auto 2em;
}
section.home-four-tiles {
  padding: 0;
  position: relative;
  z-index: 2;
}
section.home-four-tiles .poster {
  margin-bottom: -400px;
  width: auto;
  text-align: center;
}
section.home-four-tiles .poster h3 {
  position: absolute;
  padding: 10% 20%;
  color: #fff;
  /* background: rgba(0,0,0,0.3); */
  /* width: 900px; */
  margin: -20px auto 0;
  /* left: 25%; */
  /* font-weight: bold; */
  text-shadow: 0 2px 5px #000000;
  font-size: 1.6em;
  line-height: 150%;
}
section.home-four-tiles .poster h3:before {
  content: "“";
  display: block;
  color: #b7ce95;
  font-size: 3em;
  font-family: "Georgia";
}
section.home-four-tiles .poster h3 span {
  display: block;
  margin-top: 50px;
  color: #6fd9d8;
  font-weight: 400;
}
section.home-four-tiles .poster img {
  margin-bottom: 80px;
  width: 100%;
}
section.home-four-tiles .container-fluid {
  padding-left: 0px;
  padding-right: 0px;
}
section.home-four-tiles .tile-quadrant {
  padding: 3%;
  min-height: 450px;
  text-align: center;
  /*&:nth-child(2) {
			padding:0;
			background:#000;
		}*/
}
section.home-four-tiles .tile-quadrant h5 {
  color: #ddd;
}
section.home-four-tiles .tile-quadrant:nth-child(1) {
  background: #0C3346;
  padding: 0;
  min-height: 600px;
}
section.home-four-tiles .tile-quadrant:nth-child(1) img {
  padding-top: 8%;
}
section.home-four-tiles .tile-quadrant:nth-child(1) h5 {
  color: #6fd9d8;
  padding-top: 10px;
}
section.home-four-tiles .tile-quadrant:nth-child(1) h2 {
  color: #ffffff;
}
section.home-four-tiles .tile-quadrant:nth-child(1) p {
  color: #ffffff;
  padding: 0 20%;
}
section.home-four-tiles .tile-quadrant:nth-child(1) .button-text {
  color: #ffffff !important;
}
section.home-four-tiles .tile-quadrant:nth-child(2) {
  background: #ffffff;
}
section.home-four-tiles .tile-quadrant:nth-child(3) {
  background: #ffffff;
}
/* ====================== Inner Default Page ====================== */
/* ======================
Hero Inner
====================== */
/* BG IMG Styling */
.hero-banner {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 500px;
  max-height: 500px;
  overflow: hidden !important;
}
/* Styles for template assigned for using image banner */
@media screen {
  body.inner-image section.hero-inner {
    width: 100%;
    text-align: center;
    margin-top: 150px;
    position: relative;
    padding-bottom: 50px;
  }
  body.inner-image section.hero-inner h1 {
    font-family: 'Lato', sans-serif;
    color: #aa483d;
    font-size: 3.2em;
    text-transform: none;
    padding-bottom: 20px;
    text-transform: uppercase;
    font-weight: bold;
  }
  body.inner-image section.hero-inner p {
    font-family: 'Lato', sans-serif;
    font-size: 1em;
    color: #2e2e3b;
    text-transform: none;
    letter-spacing: 1px;
    padding: 0 15%;
    margin: 0 auto;
  }
  body.inner-image section.hero-inner img {
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  body.inner-image section.hero-inner {
    margin-top: 80px;
  }
}
@media (max-width: 767px) {
  body.inner-image section.hero-inner {
    min-height: 700px;
    zoom: 1;
    text-align: center;
  }
  body.inner-image section.hero-inner .wrapper {
    top: 32%;
  }
  body.inner-image section.hero-inner h1 {
    font-size: 2.2em;
  }
}
@media (max-width: 600px) {
  body.inner-image section.hero-inner {
    max-height: 400px;
    min-height: 400px;
  }
  body.inner-image section.hero-inner .wrapper {
    top: 200px;
  }
  body.inner-image section.hero-inner h1 {
    font-size: 2em;
  }
}
/* Styles for template assigned for using plum banner */
@media screen {
  body.inner-plum section.hero-inner {
    width: 100%;
    text-align: center;
    margin-top: 115px;
    position: relative;
    padding: 50px 0;
    background: #2e2e3b;
  }
  body.inner-plum section.hero-inner h1 {
    font-family: 'Lato', sans-serif;
    color: #ffffff;
    font-size: 3.2em;
    text-transform: none;
    padding-bottom: 20px;
    text-transform: uppercase;
    font-weight: bold;
  }
  body.inner-plum section.hero-inner p {
    font-family: 'Lato', sans-serif;
    font-size: 1em;
    color: #ffffff;
    text-transform: none;
    letter-spacing: 1px;
    padding: 0 15%;
    margin: 0 auto;
  }
  body.inner-plum section.hero-inner img {
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  body.inner-plum section.hero-inner {
    margin-top: 80px;
  }
}
@media (max-width: 767px) {
  body.inner-plum section.hero-inner {
    zoom: 1;
    text-align: center;
  }
  body.inner-plum section.hero-inner .wrapper {
    top: 32%;
  }
  body.inner-plum section.hero-inner h1 {
    font-size: 2.2em;
  }
}
@media (max-width: 600px) {
  body.inner-plum section.hero-inner .wrapper {
    top: 200px;
  }
  body.inner-plum section.hero-inner h1 {
    font-size: 2em;
  }
}
.animatable {
  -webkit-transition: all 0.77s ease-out;
  transition: all 0.77s ease-out;
}
.scaled {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
section.inner-main {
  padding: 3% 0 8%;
  background: url(images/inner-right-cluster.jpg), url(images/inner-left-cluster.jpg);
  background-position: 100% 0, 0 0;
  background-repeat: no-repeat, no-repeat;
  background-size: 15%;
}
@media (max-width: 991px) {
  section.inner-main {
    background: #ffffff;
  }
}
.inner-left-cluster {
  padding: 3% 0 8%;
  background: transparent url(images/inner-left-cluster.jpg) no-repeat;
  /* background-position: 100% 0; */
  /* background-size: 15%; */
  position: absolute;
  display: block;
  height: 800px;
  width: 15%;
  z-index: 1;
  top: 10%;
}
section.inner-body {
  padding: 3% 0;
  background: #F9F9FE;
  position: relative;
}
section.inner-body .poster {
  margin-bottom: -400px;
  width: auto;
  text-align: center;
}
section.inner-body .poster h3 {
  position: absolute;
  padding: 10% 20%;
  color: #aa483d;
  /* background: rgba(0,0,0,0.3); */
  /* width: 900px; */
  margin: -20px auto 0;
  /* left: 25%; */
  /* font-weight: bold; */
  text-shadow: 0 2px 5px #000000;
  font-size: 1.6em;
  line-height: 150%;
}
section.inner-body .poster h3 span {
  display: block;
  margin-top: 50px;
  color: #6fd9d8;
  font-weight: 400;
}
section.inner-body .poster img {
  margin-bottom: 60px;
  width: 100%;
}
section.inner-body .column {
  text-align: center;
  padding: 5% 2%;
}
section.inner-body h5 {
  color: #b7ce95;
  margin-top: 50px;
}
section.inner-body h3 {
  font-size: 2em;
  line-height: 150%;
  color: #2e2e3b;
  margin-bottom: 20px;
  padding: 0 15%;
  font-weight: bold;
}
section.inner-body p {
  color: #2e2e3b;
  font-weight: 300;
  padding: 0 15%;
  margin: 0 auto 2em;
}
/* ====================== SiteWrench Page Parts ====================== */
/* ======================
Widgets
====================== */
/* Blog Widget */
.recent-blog-posts-wrapper ul {
  list-style: none;
  -webkit-padding-start: 0px;
}
.recent-blog-posts-title {
  color: #6fd9d8;
  font-size: 2em;
  font-weight: 900;
  margin-bottom: 1em;
  display: block;
  border-bottom: 0px;
}
.recent-blog-posts-title:hover,
.recent-blog-posts-title:focus {
  color: #c0eeee;
}
.recent-blog-posts-date-wrapper {
  color: #b7ce95;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 10px;
  position: relative;
  display: block;
  padding-bottom: 20px;
}
.recent-blog-posts-date-wrapper:before {
  content: "\f1ea";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  color: #aa483d;
  font-size: 1.5em;
  padding: 0.5em 0;
  text-align: center;
  display: block;
}
.recent-blog-posts-body {
  line-height: 150%;
  height: 30px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* Calendar Widget */
.upcoming-events-wrapper ul {
  list-style: none;
  -webkit-padding-start: 0px;
}
p.upcoming-events-name a {
  color: #6fd9d8;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 10px;
  display: block;
  border-bottom: 0px;
}
p.upcoming-events-name a:hover {
  color: #c0eeee;
}
p.upcoming-events-date {
  color: #b7ce95;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 10px;
  position: relative;
  display: block;
  margin-bottom: 20px;
  font-size: 16px;
}
p.upcoming-events-date:before {
  content: "\f073";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  color: #aa483d;
  font-size: 24px;
  padding: 0.5em 0;
  text-align: center;
  display: block;
}
p.upcoming-events-description {
  line-height: 150%;
}
p.upcoming-events-view-link a,
p.recent-blog-posts-view-link a {
  padding-bottom: 10px;
  font-weight: bold;
  margin-top: 20px;
  -moz-appearance: none;
  -webkit-appearance: none;
  -moz-border-radius: 3px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #ffffff !important;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  display: inline-table;
  padding: 8px 30px;
  background: rgba(183, 206, 149, 0.8);
  border-radius: 3px;
  border-bottom: 3px solid #b7ce95;
}
p.upcoming-events-view-link a:hover,
p.recent-blog-posts-view-link a:hover {
  background: #b7ce95;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all 0.33s ease;
  -moz-transition: all 0.33s ease;
  -webkit-transition: all 0.33s ease;
  transition: all 0.33s ease;
}
p.upcoming-events-view-link a:after,
p.recent-blog-posts-view-link a:after {
  content: "\f105";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  margin-left: 10px;
}
/* ======================
Calendar
====================== */
.calendar-controls select {
  -moz-box-shadow: 0 0 4px rgba(34, 34, 34, 0.2);
  background: #f9f9f9;
  border-radius: 0;
  border: 0;
  -webkit-box-shadow: 0 0 4px rgba(34, 34, 34, 0.2);
  box-shadow: 0 0 4px rgba(34, 34, 34, 0.2);
  height: 35px;
  margin-bottom: 10px;
  margin-left: 5px;
  margin-top: 10px;
  padding: 10px;
  width: 125px;
}
td.event-listing-event-column a {
  color: #3fcccb;
  font-size: 1.5em;
  font-weight: bold;
}
td.event-listing-time-column {
  font-weight: bold;
}
/* ======================
Blog
====================== */
h4.post-title a,
h4.post-title {
  color: #6fd9d8;
  font-size: 1.5em;
  font-weight: bold;
}
.blog .post-date {
  font-size: 11px;
  text-transform: uppercase;
  padding-bottom: 10px;
  color: #aa483d;
  display: table;
}
.blog .blog-entry {
  margin: 20px 0;
  border-bottom: 2px solid #f9f9fe;
  padding-bottom: 30px;
}
a.post-summary-read-more {
  color: #3fcccb;
  border-bottom: 1px dotted #ddd;
}
.post-profileinfo {
  display: none;
}
/* ======================
Forms
====================== */
.formmodule-form input {
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  background-color: #f5f5f5;
  background-image: none;
  border-radius: 0 !important;
  border: 0 solid #ccc;
  border: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.2);
  color: #555;
  display: block;
  font-size: 14px;
  height: 34px;
  line-height: 1.42857143;
  margin: 5px;
  padding: 6px 12px;
  padding: 8px;
  transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  width: 100%;
  width: 300px;
}
.formmodule-form input:focus {
  -moz-box-shadow: 0 0 8px rgba(183, 206, 149, 0.7);
  -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 0 0 rgba(183, 206, 149, 0.7);
  border: 0;
  outline: 0;
  -webkit-box-shadow: 0 0 8px rgba(183, 206, 149, 0.7);
  box-shadow: 0 0 8px rgba(183, 206, 149, 0.7);
  -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 0 8px rgba(183, 206, 149, 0);
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 0 8px rgba(183, 206, 149, 0);
}
.formmodule-form select {
  -moz-box-shadow: 0 0 4px rgba(34, 34, 34, 0.2);
  background: #f9f9f9;
  border-radius: 0;
  border: 0;
  -webkit-box-shadow: 0 0 4px rgba(34, 34, 34, 0.2);
  box-shadow: 0 0 4px rgba(34, 34, 34, 0.2);
  height: 35px;
  margin-bottom: 10px;
  margin-left: 5px;
  margin-top: 10px;
  padding: 10px;
  width: 250px;
}
textarea.formmodule-multiline {
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  background-color: #f5f5f5;
  background-image: none;
  border-radius: 0 !important;
  border: 0 solid #ccc;
  border: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.2);
  color: #555;
  display: block;
  font-size: 14px;
  line-height: 1.42857143;
  margin: 5px;
  padding: 6px 12px;
  padding: 8px;
  transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  width: 100%;
  width: 300px;
}
textarea.formmodule-multiline:focus {
  -moz-box-shadow: 0 0 8px rgba(183, 206, 149, 0.7);
  -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 0 0 rgba(183, 206, 149, 0.7);
  border: 0;
  outline: 0;
  -webkit-box-shadow: 0 0 8px rgba(183, 206, 149, 0.7);
  box-shadow: 0 0 8px rgba(183, 206, 149, 0.7);
  -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 0 8px rgba(183, 206, 149, 0);
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 0 8px rgba(183, 206, 149, 0);
}
.formmodule-submit input[type=submit] {
  background: #6fd9d8;
  border: 0px;
  border-bottom: 3px solid #3fcccb;
  padding: 14px 50px;
  font-weight: bold;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 3px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff !important;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1em;
  font-weight: 900;
  text-align: center;
  display: inline-table;
}
.formmodule-submit input[type=submit]:hover {
  background: #3fcccb;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all 0.33s ease;
  -moz-transition: all 0.33s ease;
  -webkit-transition: all 0.33s ease;
  transition: all 0.33s ease;
}
@media (min-width: 992px) {
  p.mobile-show {
    display: none;
  }
}
@media (max-width: 991px) {
  p.mobile-show {
    display: block;
  }
}
#stories {
  display: flex !important;
  flex-direction: row;
  justify-content: flex-start;
  position: relative;
  align-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: -300px;
}
@media (max-width: 991px) {
  #stories {
    flex-direction: column;
  }
}
#stories > div {
  flex-basis: 60%;
  width: 60%;
}
@media (max-width: 991px) {
  #stories > div {
    width: 100% !important;
    flex-basis: 100% !important;
    padding-left: 30px;
    padding-right: 30px;
  }
}
#stories > div.bg-img {
  min-height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-position: 0 50%;
  animation: backnforth 40s linear infinite;
}
#stories > div.blog-bit {
  flex-basis: 30%;
  width: 30%;
  max-width: 350px;
  margin-left: 25px;
}
@media (max-width: 991px) {
  #stories > div.blog-bit {
    margin-left: 0;
    margin-top: 25px;
    text-align: center;
  }
}
#stories > div.blog-bit h5 {
  font-size: 4vw;
  margin: 50px 0 50px -20px;
  text-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}
@media (max-width: 991px) {
  #stories > div.blog-bit h5 {
    margin-left: 0;
    font-size: 50px;
  }
}
#stories > div.blog-bit .recent-blog-posts-wrapper ul li {
  display: flex;
  flex-direction: column;
}
#stories > div.blog-bit .recent-blog-posts-wrapper ul li .recent-blog-posts-title {
  order: 1;
  margin-bottom: 10px;
  line-height: 1.3;
}
#stories > div.blog-bit .recent-blog-posts-wrapper ul li .recent-blog-posts-date-wrapper {
  order: 2;
  margin-top: 0;
  padding-bottom: 0;
  font-size: 15px;
}
#stories > div.blog-bit .recent-blog-posts-wrapper ul li .recent-blog-posts-date-wrapper:before {
  display: none;
}
#stories > div.blog-bit .recent-blog-posts-wrapper ul li .recent-blog-posts-body {
  order: 3;
  line-height: inherit;
  height: inherit;
  white-space: inherit;
  overflow: visible;
}
@keyframes backnforth {
  0%,
  100% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.page-alert-message {
  top: 50%;
  width: 90vw;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  display: flex;
  flex-direction: column;
  padding: 0 20px 20px;
}
@media (min-width: 767px) {
  .page-alert-message {
    width: 50vw;
  }
}
.page-alert-message .controls {
  order: -1;
  display: flex;
  justify-content: flex-end;
  margin: 0 -20px;
}
.page-alert-message .controls #page-alert-dismiss {
  background: #aa483d;
  text-align: center;
  font-weight: bold;
  border: 0;
  padding: 0;
  border-radius: 3px;
  position: relative;
  margin: 10px;
  transition: 0.3s;
  color: #fff !important;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  font-size: 14px;
  padding: 3px 8px !important;
  border-bottom: 3px solid #7d352d;
}
/*# sourceMappingURL=master.css.map */