@import url("../../global/CSS/global.css");
/* ====================== Colors ====================== */
/* ====================== Fonts ====================== */
/* Flex Nav */
@import url(adsci.css);
nav.flex-nav {
  display: block;
  background: #eee; }
  nav.flex-nav ul#mainnav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    justify-content: flex-end;
    padding-right: 150px;
    /* Options: */
    /*justify-content: flex-start;*/
    /*justify-content: flex-end;*/
    /*justify-content: space-between;*/
    /*justify-content: space-around;*/ }
    @media screen and (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;
      flex: 0 1 auto;
      position: relative;
      padding: 0 1em;
      /* Options: */
      /*flex: 1 1 auto;*/
      /* 2nd Level ul */ }
      nav.flex-nav ul#mainnav > li > a {
        padding: 1.3em 0 1em 2em;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        color: #000000;
        font-family: "Oswald", sans-serif;
        text-transform: uppercase;
        font-size: 17px;
        letter-spacing: 1px;
        position: relative;
        border-bottom: 5px solid #fff;
        -webkit-transition: all .33s;
        -moz-transition: all .33s;
        -o-transition: all .33s;
        transition: all .33s; }
        @media screen and (max-width: 1200px) {
          nav.flex-nav ul#mainnav > li > a {
            padding: 1.7em 0 1.2em;
            font-size: 13px; } }
        nav.flex-nav ul#mainnav > li > a:hover {
          -webkit-transition: all .33s;
          -moz-transition: all .33s;
          -o-transition: all .33s;
          transition: all .33s;
          border-bottom: 5px solid #75B229; }
      nav.flex-nav ul#mainnav > li > a.current {
        border-bottom: 5px solid #75B229; }
      nav.flex-nav ul#mainnav > li ul {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        position: absolute;
        margin: 0;
        padding: 0;
        list-style: none;
        z-index: 2000;
        display: none;
        /* 2nd level li */ }
        nav.flex-nav ul#mainnav > li ul > li {
          position: relative;
          display: block;
          white-space: nowrap;
          z-index: 999;
          /* 3rd level ul */ }
          nav.flex-nav ul#mainnav > li ul > li a {
            display: block;
            background: #eee;
            padding: 5px 12px;
            width: 100%;
            font-size: 1.5rem; }
          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:hover > ul, nav.flex-nav ul#mainnav > li > ul > li:hover > ul {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; }

li#mn-home {
  display: none; }

li#mn-plan-your-adventure > a:before {
  font-family: "adsci";
  content: '\e800';
  display: inline-block;
  padding-right: 3px;
  vertical-align: middle;
  position: absolute;
  top: 22px;
  left: 5px;
  color: #4630A8; }
  @media screen and (max-width: 1200px) {
    li#mn-plan-your-adventure > a:before {
      display: none; } }

li#mn-see-and-do > a:before {
  font-family: "adsci";
  content: '\e805';
  display: inline-block;
  padding-right: 3px;
  vertical-align: middle;
  position: absolute;
  top: 22px;
  left: 5px;
  color: #029BFB; }
  @media screen and (max-width: 1200px) {
    li#mn-see-and-do > a:before {
      display: none; } }

li#mn-explore-science > a:before {
  font-family: "adsci";
  content: "\e808";
  display: inline-block;
  padding-right: 3px;
  vertical-align: middle;
  position: absolute;
  top: 22px;
  left: 5px;
  color: #E5B72E; }
  @media screen and (max-width: 1200px) {
    li#mn-explore-science > a:before {
      display: none !important; } }

li#mn-join-and-give > a:before {
  font-family: "adsci";
  content: "\e806";
  display: inline-block;
  padding-right: 3px;
  vertical-align: middle;
  position: absolute;
  top: 22px;
  left: 5px;
  color: #EA0F6D; }
  @media screen and (max-width: 1200px) {
    li#mn-join-and-give > a:before {
      display: none; } }

nav.flex-nav ul#mainnav > li:nth-child(5) > ul > li > ul {
  right: 100% !important;
  left: initial; }

/*header #mainnav li ul li.hasChild:after {
    content: "\f105";
    font-family: FontAwesome;
    position: absolute;
    color: rgba(0,0,0,.25);
    right: 5%;
    top: 20%;
}
*/
/* ====================== Side Drawer Styling ====================== */
.body-overlay {
  display: block;
  cursor: col-resize;
  /*background: linear-gradient(30deg, #2e3192, #1bffff);*/
  background: #888;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  z-index: 9998;
  visibility: hidden;
  -webkit-transition: opacity .55s ease;
  -o-transition: opacity .55s ease;
  -moz-transition: opacity .55s ease;
  -ms-transition: opacity .55s ease;
  transition: opacity .55s ease;
  -o-transition-delay: .44s !important;
  -moz-transition-delay: .44s !important;
  -webkit-transition-delay: .44s !important;
  transition-delay: .44s !important; }
  .body-overlay.active {
    opacity: 0.6;
    visibility: visible;
    height: 100%;
    width: 100%;
    z-index: 9;
    -webkit-transition: opacity .55s ease;
    -o-transition: opacity .55s ease;
    -moz-transition: opacity .55s ease;
    -ms-transition: opacity .55s ease;
    transition: opacity .55s ease;
    -o-transition-delay: .2s !important;
    -moz-transition-delay: .2s !important;
    -webkit-transition-delay: .2s !important;
    transition-delay: .2s !important; }

#siteWrapper {
  position: relative; }

#sidecar {
  position: fixed;
  height: 100%;
  width: 260px;
  top: 0;
  right: -260px;
  text-align: left;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  -o-transition: right .44s ease;
  -moz-transition: right .44s ease;
  -webkit-transition: right .44s ease;
  transition: right .44s ease;
  z-index: 99999 !important;
  padding: 0 15px;
  background: #75B229;
  background: -moz-linear-gradient(180deg, #75B229 29%, #75B229 59%, #00AC3D 100%);
  background: -webkit-linear-gradient(180deg, #75B229 29%, #75B229 59%, #00AC3D 100%);
  background: linear-gradient(180deg, #75B229 29%, #75B229 59%, #00AC3D 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#75B229',endColorstr='#00AC3D',GradientType=1); }
  #sidecar .horizontal-logo {
    margin-top: 70px;
    padding: 0px 5px; }
  #sidecar ul#mainnav {
    right: 0px; }

/* Open & Close Button Placement and Speed */
button.close-drawer {
  border: none;
  background: none;
  left: 0px;
  background: #fff;
  top: -10px;
  padding: 10px 8px 0;
  right: 0;
  top: 0;
  width: 40px;
  height: 40px;
  margin: 0px; }
  button.close-drawer .menu-text {
    float: left; }
  button.close-drawer img.menu-icon {
    float: left;
    width: 17px;
    margin-left: 5px;
    margin-top: 4px; }

button:focus {
  outline: none !important; }

button.close-drawer {
  position: absolute;
  border: none;
  outline: none !important; }

.close-drawer {
  cursor: pointer; }

.close-drawer span, .close-drawer span:before, .close-drawer span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 4px;
  width: 25px;
  background: #000;
  position: absolute;
  display: block;
  content: ''; }

.close-drawer span:before {
  top: -8px; }

.close-drawer span:after {
  bottom: 8px; }

.close-drawer span, .close-drawer span:before, .close-drawer span:after {
  transition: all 500ms ease-in-out; }

.close-drawer span {
  background-color: transparent; }

.close-drawer.active span:before, .close-drawer.active span:after {
  top: 0; }

.close-drawer span:before {
  transform: rotate(45deg); }

.close-drawer span:after {
  transform: rotate(-45deg); }

button.close-drawer {
  width: 40px;
  height: 40px; }

/* Drawer Placement & Speed */
.slide-right, .push-right, .over-right {
  right: 0;
  left: inherit; }

.slide-right {
  -webkit-transition: -webkit-transform 0.44s ease-in-out, left 0.44s ease-in-out, right 0.44s ease-in-out;
  -moz-transition: -moz-transform 0.44s ease-in-out, left 0.44s ease-in-out, right 0.44s ease-in-out;
  -ms-transition: -ms-transform 0.44s ease-in-out, left 0.44s ease-in-out, right 0.44s ease-in-out;
  -o-transition: -o-transform 0.44s ease-in-out, left 0.44s ease-in-out, right 0.44s ease-in-out;
  transition: transform 0.44s ease-in-out, left 0.44s ease-in-out, right 0.44s ease-in-out; }

/* Slide Right */
#sidecar.slide-right {
  opacity: 1;
  -o-transition: right .44s ease;
  -moz-transition: right .44s ease;
  -webkit-transition: right .44s ease;
  transition: right .44s ease; }
  #sidecar.slide-right.active {
    opacity: 1;
    right: 0px;
    -o-transition: all .44s ease;
    -moz-transition: all .44s ease;
    -webkit-transition: all .44s ease;
    transition: all .44s ease;
    box-shadow: 0px -5px 20px rgba(0, 0, 0, 0.3);
    /*ul#mainnav{
        right:0px;
        -o-transition: right .44s ease;
      -moz-transition: right .44s ease;
      -webkit-transition: right .44s ease;
      transition: right .44s ease;
      -o-transition-delay: .2s !important;
      -moz-transition-delay: .2s !important;
      -webkit-transition-delay: .2s !important;
      transition-delay:.2s !important;
      }*/ }
    #sidecar.slide-right.active ul#mainnav li a {
      margin-left: 0px;
      opacity: 1; }

/* ====================== Side Drawer Styling END ====================== */
/* Expand Collapse Styling */
nav#sidecar ul#mainnav {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  background: transparent;
  -webkit-padding-start: 0px;
  padding: 15px; }
  nav#sidecar ul#mainnav > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25); }
  nav#sidecar ul#mainnav li {
    position: relative;
    margin: 0;
    padding: 0px;
    float: none;
    display: block;
    width: 100%;
    height: auto;
    background: transparent;
    text-align: left; }
    nav#sidecar ul#mainnav li:hover ul {
      display: block; }
    nav#sidecar ul#mainnav li ul {
      padding: 0 0 0 0px;
      margin: 0;
      display: block;
      position: relative;
      max-height: 0px;
      overflow: hidden;
      float: none;
      transition: max-height 0.25s ease-in;
      float: left; }
      nav#sidecar ul#mainnav li ul li a {
        padding: 0px 25px;
        border: none;
        color: #fff;
        font-size: 14px;
        font-family: 'Muli', sans-serif;
        text-transform: none; }
      nav#sidecar ul#mainnav li ul.active {
        display: block;
        max-height: 500px;
        float: none;
        transition: max-height 0.25s ease-in; }
    nav#sidecar ul#mainnav li a {
      font-family: 'Oswald', sans-serif;
      text-transform: uppercase;
      display: inline-block;
      width: 100%;
      height: auto;
      padding: 15px 0px;
      position: relative;
      margin-left: 50px;
      opacity: 0;
      font-size: 15px;
      -webkit-transition: all .44s ease;
      -moz-transition: all .44s ease;
      -o-transition: all .44s ease;
      transition: all .44s ease;
      color: #fff;
      line-height: 1.25em;
      display: block; }
      nav#sidecar ul#mainnav li a:hover {
        color: #000; }
      nav#sidecar ul#mainnav li a.expand {
        display: block;
        height: 38px;
        width: 38px;
        position: absolute;
        top: 7px;
        right: 0;
        background: url("/SiteFiles/2181/CSS/images/arrow-dark.svg");
        background-repeat: no-repeat;
        background-position: 50% 50%;
        background-size: 50%;
        padding: 16px;
        cursor: pointer;
        border: none; }
        nav#sidecar ul#mainnav li a.expand.active {
          -webkit-transform: rotate(180deg);
          -moz-transform: rotate(180deg);
          -ms-transform: rotate(180deg);
          -o-transform: rotate(180deg);
          transform: rotate(180deg);
          border: none; }

ul.mobile-cta-nav {
  list-style-type: disc;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0px;
  -webkit-padding-start: 0;
  bottom: 25px;
  margin-top: 20px;
  padding: 0 15px; }
  @media screen and (min-width: 769px) {
    ul.mobile-cta-nav {
      display: none; } }
  ul.mobile-cta-nav li {
    list-style: none;
    display: block;
    margin-bottom: 10px;
    background: #a4c779; }
    ul.mobile-cta-nav li a {
      font-family: 'Oswald', sans-serif;
      text-transform: uppercase;
      padding: 10px 15px;
      font-size: 15px;
      letter-spacing: 1px;
      position: relative;
      color: #fff;
      display: block; }

/* End CTA Nav */
ul.mobile-socials {
  list-style-type: disc;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0px;
  -webkit-padding-start: 0;
  bottom: 25px;
  padding: 0 15px;
  text-align: center; }
  ul.mobile-socials li {
    list-style: none;
    display: inline-block; }
    ul.mobile-socials li a {
      margin-right: 10px;
      font-size: 19px;
      color: #416318; }

.searchPanel {
  margin-top: 30px;
  padding: 0px 15px;
  position: relative; }
  .searchPanel:after {
    font-family: FontAwesome;
    content: "\f002";
    display: inline-block;
    padding-right: 10px;
    vertical-align: middle;
    margin-top: -3px;
    position: absolute;
    top: 10px;
    right: 15px;
    color: #999; }
  .searchPanel input {
    width: 100%;
    border: none;
    padding: 7px 10px;
    color: #999;
    font-size: 14px;
    font-family: 'Muli', sans-serif;
    border: 1px solid #dadada; }
  .searchPanel input#searchButton {
    color: transparent;
    background: transparent;
    border: 0px;
    width: 35px;
    position: absolute;
    top: 0;
    right: 15px;
    z-index: 999; }

nav#sidecar ul#mainnav li ul li a.expand {
  margin-top: 2px; }

nav#sidecar ul#mainnav li > ul > li {
  padding: 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  margin: 0px !important; }

nav#sidecar ul#mainnav li > ul > li:last-of-type {
  border: none !important; }

nav#sidecar ul#mainnav li > ul > li > ul > li {
  border: none !important;
  background: transparent;
  padding-left: 10px; }

nav#sidecar ul#mainnav li > ul > li a {
  padding: 10px; }

nav#sidecar ul#mainnav li > ul > li > ul > li > ul > li {
  background: #dedede !important; }

nav#sidecar ul#mainnav li > ul > li > ul > li > ul > li a {
  padding-left: 35px; }

nav#sidecar ul#mainnav li > ul > li a.expand {
  top: -1px; }

.hours {
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding: 15px 15px 25px 15px;
  font-size: 15px; }
  .hours span {
    display: none; }

/*_mmmmmmmmmmmmmmm_
        `/ymmmmmmmmmmmmmmmmmmy+.
      -ymmmmmmmmmmmmmmmmmmmmmmmmy:
    -hmmmmmmmmmmmmmmmmmmmmmmmmmmmmh:
   +mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmms
  smmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmy`
 ommmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmy
-mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm:
smmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmy
dmmmmmmmm                     mmmmmmmmmm
dmmmmmmmm    made by speak    mmmmmmmmmm
dmmmmmmmm                     mmmmmmmmmh
dmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm/
dmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmy
dmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmh`
dmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmms`
dmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmd:
dmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmh/
dmmmmmmmmmmmmmmmmmmmmmmmmmmmmho-
dmmmmmmmmmmmmmmmmmmmmmmmmms+:*/
/* ====================== Colors ====================== */
/* ====================== Base Styles ====================== */
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: 'Muli', sans-serif;
  line-height: 1.65em;
  font-size: 19px;
  color: #777777;
  font-weight: 300; }

b, strong {
  color: #111; }

body.locked {
  overflow: hidden; }

img {
  max-width: 100%; }

a {
  color: #75B229; }
  a:hover {
    color: #000; }

blockquote {
  width: 100%;
  font-style: italic;
  position: relative;
  display: block;
  height: auto;
  margin: 0 auto 20px auto;
  padding: 40px;
  border: 1px solid #ddd;
  text-align: center;
  font-size: 23px; }
  blockquote p {
    position: relative;
    display: block;
    line-height: 130%;
    font-style: italic;
    font-size: 23px;
    color: #AAA; }
    blockquote p:before, blockquote p:after {
      font-family: "FontAwesome";
      font-size: 20px; }
    blockquote p:before {
      content: "\f10d";
      margin: 0 10px 0 0; }
    blockquote p:after {
      content: "\f10e";
      margin: 0 0 0 10px; }

.flex-row {
  margin: 0px !important; }

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 */
*::selection {
  background-color: #75B229;
  color: white; }

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-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:focus {
  outline: none !important; }

*:target:focus {
  outline: none; }

a, a:visited, a:hover, a:focus, input, input:hover {
  -webkit-transition: all .33s;
  -moz-transition: all .33s;
  -o-transition: all .33s;
  transition: all .33s;
  text-decoration: none; }

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0; }

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

/* ====================== Typography ====================== */
h1 {
  font-family: "Oswald", sans-serif;
  font-size: 40px;
  color: #75B229;
  line-height: 1.35em;
  margin: 0 0 25px; }
  @media screen and (min-width: 769px) {
    h1 {
      font-size: 60px; } }

h2 {
  font-family: "Oswald", sans-serif;
  font-size: 30px;
  margin: 0 0 25px;
  color: #029BFB; }
  @media screen and (min-width: 769px) {
    h2 {
      font-size: 40px; } }

h3 {
  font-family: "Oswald", sans-serif;
  color: #75B229;
  margin-bottom: 20px; }

h4 {
  font-family: "Oswald", sans-serif; }

h5 {
  font-family: "Oswald", sans-serif; }

h6 {
  font-family: "Oswald", sans-serif; }

p {
  font-family: "Muli", sans-serif;
  line-height: 1.65em;
  font-size: 19px;
  margin: 0 0 25px;
  color: #777777;
  font-weight: 300; }

h1.explore {
  position: relative; }
  @media screen and (min-width: 993px) {
    h1.explore:after {
      content: 'Visit Today';
      color: #f1f1f1;
      position: absolute;
      left: 0;
      top: 0;
      font-size: 230px;
      z-index: -9;
      width: 100%;
      text-align: center;
      opacity: 0.6; } }

h1.directions {
  position: relative;
  margin-bottom: -75px;
  margin-top: 100px; }
  @media screen and (min-width: 993px) {
    h1.directions:after {
      content: 'Directions';
      color: #f1f1f1;
      position: absolute;
      left: 0;
      top: 0;
      font-size: 230px;
      z-index: -9;
      width: 100%;
      text-align: center;
      opacity: 0.6; } }

.small {
  font-size: 70%;
  color: #bbb; }
  .small br {
    height: 50px;
    display: block;
    line-height: 3em; }

/* ====================== Buttons ====================== */
.centered-btn {
  display: table !important;
  margin: 15px auto !important; }

a.blue-btn {
  color: #fff;
  background: #029BFB;
  padding: 15px 30px;
  border-radius: 200px;
  font-family: "Muli", sans-serif;
  font-size: 18px;
  font-weight: 300;
  display: inline-block;
  margin: 0px 15px 15px 0px;
  text-align: center;
  line-height: 130%; }
  a.blue-btn:hover {
    background: #75B229;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2); }

a.green-btn {
  color: #fff;
  background: #75B229;
  padding: 15px 30px;
  border-radius: 200px;
  font-family: "Muli", sans-serif;
  font-size: 18px;
  font-weight: 300;
  display: inline-block;
  margin: 0px 15px 15px 0px;
  text-align: center;
  line-height: 130%; }
  a.green-btn:hover {
    background: #029BFB;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2); }

a.purple-btn {
  color: #fff;
  background: #4630A8;
  padding: 15px 30px;
  border-radius: 200px;
  font-family: "Muli", sans-serif;
  font-size: 18px;
  font-weight: 300;
  display: inline-block;
  margin: 0px 15px 15px 0px;
  text-align: center;
  line-height: 130%; }
  a.purple-btn:hover {
    background: #75B229;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2); }

/* ====================== Mix-ins ==================== */
/* ====================== Assorted Classes and Adjustments ==================== */
.no-padding {
  padding: 0px !important; }

.bg-image {
  background-size: cover !important;
  background-position: center center !important; }

.flex-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

.overlay {
  position: relative; }
  .overlay:after {
    content: '';
    background: rgba(0, 0, 0, 0.35);
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    -webkit-transition: all .44s;
    -moz-transition: all .44s;
    -o-transition: all .44s;
    transition: all .44s;
    border: 0px solid transparent; }

.overlay-green:hover:after {
  background: #75B229;
  opacity: .6;
  -webkit-transition: all .44s;
  -moz-transition: all .44s;
  -o-transition: all .44s;
  transition: all .44s;
  border: 20px solid rgba(0, 0, 0, 0.5); }

.overlay-blue:hover:after {
  background: #029BFB;
  opacity: .6;
  -webkit-transition: all .44s;
  -moz-transition: all .44s;
  -o-transition: all .44s;
  transition: all .44s;
  border: 20px solid rgba(0, 0, 0, 0.5); }

.overlay-purple:hover:after {
  background: #C01FCF;
  opacity: .6;
  -webkit-transition: all .44s;
  -moz-transition: all .44s;
  -o-transition: all .44s;
  transition: all .44s;
  border: 20px solid rgba(0, 0, 0, 0.5); }

.overlay-pink:hover:after {
  background: #EA0F6D;
  opacity: .6;
  -webkit-transition: all .44s;
  -moz-transition: all .44s;
  -o-transition: all .44s;
  transition: all .44s;
  border: 20px solid rgba(0, 0, 0, 0.5); }

/* ===================== Responsive Tables ==================== */
.group-pricing, .educator-pricing, .spark-pricing, .private-pricing, .birthdays-pricing, .blank-pricing {
  width: 50%;
  text-align: center;
  float: left;
  padding: 25px !important;
  margin: -20px 0px 0px !important; }
  .group-pricing a, .educator-pricing a, .spark-pricing a, .private-pricing a, .birthdays-pricing a, .blank-pricing a {
    color: #fff;
    padding: 20px 15px;
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 25px;
    font-size: 25px;
    width: 100%;
    display: block; }

.group-pricing {
  background: #029BFB;
  -webkit-transition: all .44s;
  -moz-transition: all .44s;
  -o-transition: all .44s;
  transition: all .44s; }
  .group-pricing:hover {
    background: #4630A8; }

.educator-pricing {
  background: #75B229;
  -webkit-transition: all .44s;
  -moz-transition: all .44s;
  -o-transition: all .44s;
  transition: all .44s; }
  .educator-pricing:hover {
    background: #4630A8; }

.spark-pricing {
  background: #C01FCF;
  margin: 0px 0px 0px !important;
  -webkit-transition: all .44s;
  -moz-transition: all .44s;
  -o-transition: all .44s;
  transition: all .44s; }
  .spark-pricing:hover {
    background: #4630A8; }

.private-pricing {
  background: #4630A8;
  margin: 0px 0px 0px !important;
  -webkit-transition: all .44s;
  -moz-transition: all .44s;
  -o-transition: all .44s;
  transition: all .44s; }
  .private-pricing:hover {
    background: #4630A8; }

.birthdays-pricing {
  background: #FF0036;
  margin: 0px 0px 0px !important;
  -webkit-transition: all .44s;
  -moz-transition: all .44s;
  -o-transition: all .44s;
  transition: all .44s; }
  .birthdays-pricing:hover {
    background: #4630A8; }

.blank-pricing {
  background: transparent;
  margin: 0px 0px 0px !important;
  -webkit-transition: all .44s;
  -moz-transition: all .44s;
  -o-transition: all .44s;
  transition: all .44s; }
  .blank-pricing:hover {
    background: transparent; }

.rwd-table {
  margin: 1em 0;
  min-width: 300px;
  position: relative; }
  @media screen and (max-width: 992px) {
    .rwd-table {
      padding-right: 20px; }
      .rwd-table:after {
        content: '';
        position: absolute;
        height: 100%;
        width: 20px;
        top: 0;
        right: 0;
        background: #fff; }
      .rwd-table:before {
        content: 'scroll right';
        position: absolute;
        color: #8d8f92;
        right: -21px;
        top: 50%;
        font-size: 12px;
        -ms-transform: rotate(-90deg);
        /* IE 9 */
        -webkit-transform: rotate(-90deg);
        /* Chrome, Safari, Opera */
        transform: rotate(-90deg);
        z-index: 999; } }
  @media screen and (max-width: 992px) {
    .rwd-table table {
      display: block;
      width: 100%;
      overflow-x: auto; } }
  .rwd-table tr {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd; }

.rwd-table {
  background: #34495E;
  color: #fff;
  overflow: hidden;
  font-family: "Muli", sans-serif; }
  .rwd-table a.green-btn {
    font-size: 12px !important;
    padding: 10px 15px !important;
    white-space: nowrap !important;
    margin: auto; }
  .rwd-table tr {
    border-color: #46637f; }
  .rwd-table th, .rwd-table td {
    margin: .5em 1em;
    padding: 1em;
    text-align: center; }
  .rwd-table th {
    color: #75B229;
    font-size: 14px;
    text-align: center;
    line-height: 1.45em; }
  .rwd-table td {
    border-left: 1px solid #46627f; }
  .rwd-table td.blue-td {
    color: #fff; }

/* ====================== Alignment ====================== */
/* Remove excess margin / padding */
.no-border {
  border: 0; }

.no-padding {
  padding: 0; }

.no-margin {
  margin: 0; }

/* ====================== Header ====================== */
header {
  position: fixed;
  width: 100%;
  top: 0px;
  left: 0px;
  z-index: 999;
  padding: 0px 15px;
  -webkit-transition: -webkit-transform 0.2s ease-in-out, left 0.2s ease-in-out, right 0.2s ease-in-out;
  -moz-transition: -moz-transform 0.2s ease-in-out, left 0.2s ease-in-out, right 0.2s ease-in-out;
  -ms-transition: -ms-transform 0.2s ease-in-out, left 0.2s ease-in-out, right 0.2s ease-in-out;
  -o-transition: -o-transform 0.2s ease-in-out, left 0.2s ease-in-out, right 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, left 0.2s ease-in-out, right 0.2s ease-in-out;
  background: #fff;
  height: 75px;
  box-shadow: 0px 0px 60px transparent;
  -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
  /* End CTA Nav */ }
  @media screen and (max-width: 768px) {
    header {
      top: 0px !important;
      position: fixed !important; } }
  header .logo-wrap {
    position: absolute;
    top: 0;
    left: 10px;
    z-index: 9999;
    height: 75px;
    width: 250px; }
    @media screen and (min-width: 400px) {
      header .logo-wrap {
        left: 20px; } }
    header .logo-wrap a.logo-link {
      height: 75px;
      width: 220px;
      position: absolute;
      top: 0;
      left: 0; }
      @media screen and (min-width: 400px) {
        header .logo-wrap a.logo-link {
          width: 250px; } }
      header .logo-wrap a.logo-link img.horizontal-logo {
        width: 220px;
        margin-top: 21px;
        z-index: 9999; }
        @media screen and (min-width: 400px) {
          header .logo-wrap a.logo-link img.horizontal-logo {
            width: 250px;
            margin-top: 19px; } }
  header ul.cta-nav {
    display: none; }
    @media screen and (min-width: 768px) {
      header ul.cta-nav {
        display: block;
        list-style-type: disc;
        -webkit-margin-before: 0;
        -webkit-margin-after: 0;
        -webkit-margin-start: 0;
        -webkit-margin-end: 0px;
        -webkit-padding-start: 0;
        bottom: 21px;
        position: absolute;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%); }
        header ul.cta-nav li {
          list-style: none;
          display: inline-block; }
          header ul.cta-nav li a {
            font-family: "Oswald", sans-serif;
            text-transform: uppercase;
            padding: 0px 15px;
            font-size: 17px;
            letter-spacing: 1px;
            position: relative; }
        header ul.cta-nav li:first-of-type a {
          color: #029BFB; }
          header ul.cta-nav li:first-of-type a:hover {
            color: #000; }
          header ul.cta-nav li:first-of-type a:after {
            content: "|";
            position: absolute;
            right: -4px;
            color: #e6e6e6; }
        header ul.cta-nav li:nth-child(2) {
          cursor: pointer;
          -webkit-transition: all .44s;
          -moz-transition: all .44s;
          -o-transition: all .44s;
          transition: all .44s;
          color: #75B229;
          font-family: "Oswald", sans-serif;
          text-transform: uppercase;
          padding: 0px 15px;
          font-size: 17px;
          letter-spacing: 1px;
          position: relative; }
          header ul.cta-nav li:nth-child(2):hover {
            color: #000;
            -webkit-transition: all .44s;
            -moz-transition: all .44s;
            -o-transition: all .44s;
            transition: all .44s; }
          header ul.cta-nav li:nth-child(2):after {
            content: "|";
            position: absolute;
            right: -4px;
            color: #e6e6e6; }
        header ul.cta-nav li:last-of-type a {
          color: #4630A8; }
          header ul.cta-nav li:last-of-type a:hover {
            color: #000; } }
  header ul.socials {
    display: none; }
    @media screen and (min-width: 993px) {
      header ul.socials {
        display: block;
        list-style-type: disc;
        -webkit-margin-before: 0;
        -webkit-margin-after: 0;
        -webkit-margin-start: 0;
        -webkit-margin-end: 0px;
        -webkit-padding-start: 0;
        position: absolute;
        top: 0;
        z-index: 9999;
        border-left: 1px solid #BFBFC0;
        height: 75px;
        padding: 20px 20px; } }
  @media screen and (min-width: 993px) and (min-width: 769px) {
    header ul.socials {
      right: 0px; } }
    @media screen and (min-width: 993px) {
        header ul.socials li {
          list-style: none;
          display: inline-block; }
          header ul.socials li a {
            font-family: "Oswald", sans-serif;
            text-transform: uppercase;
            padding: 0px 5px;
            font-size: 17px;
            letter-spacing: 1px;
            position: relative;
            color: #75B229; }
            header ul.socials li a:hover {
              color: #029BFB; } }

.header-hide {
  margin-top: -75px !important;
  -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  box-shadow: 0 0 40px transparent; }

button#drawer-toggle {
  border: none;
  background: transparent;
  position: absolute;
  top: 0px;
  right: 5px;
  width: 45px;
  height: 75px;
  margin: 0px !important;
  color: #fff;
  cursor: pointer;
  z-index: 999999;
  font-size: 12px;
  font-size: 20px; }
  button#drawer-toggle:focus {
    outline: none !important; }
  @media screen and (min-width: 993px) {
    button#drawer-toggle {
      display: none; } }

#drawer-toggle span {
  top: 37px;
  left: 5px; }

#drawer-toggle {
  cursor: pointer;
  padding: 10px 35px 16px 0px; }

#drawer-toggle span, #drawer-toggle span:before, #drawer-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 4px;
  width: 25px;
  background: #000;
  position: absolute;
  display: block;
  content: ''; }

#drawer-toggle span:before {
  top: -8px; }

#drawer-toggle span:after {
  bottom: -8px; }

#drawer-toggle span, #drawer-toggle span:before, #drawer-toggle span:after {
  transition: all 500ms ease-in-out; }

.shelf-nav {
  visibility: hidden;
  -webkit-transition: all .44s;
  -moz-transition: all .44s;
  -o-transition: all .44s;
  transition: all .44s;
  position: fixed;
  top: 75px;
  left: 0px;
  width: 100;
  background: #f1f1f1;
  border-left: 20px solid #fff;
  border-right: 20px solid #fff;
  border-bottom: 20px solid #fff;
  box-shadow: 0px 30px 45px rgba(0, 0, 0, 0.3);
  padding: 60px 30px;
  z-index: 9999;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  opacity: 0; }
  .shelf-nav .map-wrapper {
    margin-bottom: 35px; }
  .shelf-nav .close-shelf {
    display: table;
    margin: -40px auto 20px;
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #999;
    font-size: 13px; }

.shelf-nav:after,
.shelf-nav:before {
  bottom: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none; }

.shelf-nav:after {
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #f1f1f1;
  border-width: 14px;
  left: 50%;
  margin-left: -25px; }

.shelf-nav.active {
  height: 100vh;
  visibility: visible;
  -webkit-transition: all .44s;
  -moz-transition: all .44s;
  -o-transition: all .44s;
  transition: all .44s;
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
  opacity: 1;
  overflow: scroll; }

div.scrolltonav {
  z-index: 9999995 !important;
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.2s ease-in-out, left 0.2s ease-in-out, right 0.2s ease-in-out;
  -moz-transition: -moz-transform 0.2s ease-in-out, left 0.2s ease-in-out, right 0.2s ease-in-out;
  -ms-transition: -ms-transform 0.2s ease-in-out, left 0.2s ease-in-out, right 0.2s ease-in-out;
  -o-transition: -o-transform 0.2s ease-in-out, left 0.2s ease-in-out, right 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, left 0.2s ease-in-out, right 0.2s ease-in-out;
  left: 0;
  background: transparent;
  display: inline-block;
  width: 42px;
  left: -42px;
  height: 140px; }

div.scrolltonav.hidenav {
  -webkit-transition: -webkit-transform 0.2s ease-in-out, left 0.2s ease-in-out, right 0.2s ease-in-out;
  -moz-transition: -moz-transform 0.2s ease-in-out, left 0.2s ease-in-out, right 0.2s ease-in-out;
  -ms-transition: -ms-transform 0.2s ease-in-out, left 0.2s ease-in-out, right 0.2s ease-in-out;
  -o-transition: -o-transform 0.2s ease-in-out, left 0.2s ease-in-out, right 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, left 0.2s ease-in-out, right 0.2s ease-in-out;
  width: 42px;
  left: -100px; }

div.scrolltonav.shownav {
  -webkit-transition: -webkit-transform 0.2s ease-in-out, left 0.2s ease-in-out, right 0.2s ease-in-out;
  -moz-transition: -moz-transform 0.2s ease-in-out, left 0.2s ease-in-out, right 0.2s ease-in-out;
  -ms-transition: -ms-transform 0.2s ease-in-out, left 0.2s ease-in-out, right 0.2s ease-in-out;
  -o-transition: -o-transform 0.2s ease-in-out, left 0.2s ease-in-out, right 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, left 0.2s ease-in-out, right 0.2s ease-in-out;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.7);
  left: 0; }

div.scrolltonav:hover {
  background: #fff;
  z-index: 9999999 !important; }

div.scrolltonav ul {
  list-style: none;
  padding: 10px;
  margin: 0;
  cursor: pointer;
  display: inline-block;
  z-index: 9999996 !important; }

div.scrolltonav ul li {
  list-style: none;
  z-index: 9999997 !important;
  -webkit-transition: 0.15s ease-in-out;
  -moz-transition: 0.15s ease-in-out;
  -o-transition: 0.15s ease-in-out;
  transition: 0.15s ease-in-out;
  height: 30px; }

div.scrolltonav ul li a {
  position: relative;
  font-size: 15px; }

div.scrolltonav ul li span {
  display: block;
  width: 100%;
  display: none;
  z-index: 9999998 !important;
  font-weight: 400; }

div.scrolltonav:hover {
  width: auto; }

div.scrolltonav ul:hover > li span {
  display: block;
  width: 130px;
  z-index: 9999999 !important; }

div.scrolltonav ul li:before {
  content: "";
  display: inline-block;
  height: 12px;
  width: 12px;
  border-radius: 100px;
  float: left;
  margin: 8px 7px 6px 5px; }

li.scrollto-today:before {
  background: #75B229 !important; }

li.scrollto-exhibits:before {
  background: #029BFB !important; }

li.scrollto-explore:before {
  background: #4630A8 !important; }

li.scrollto-next-steps:before {
  background: #E5B72E !important; }

/* ====================== Side Drawer Styling ====================== */
.body-overlay {
  display: block;
  cursor: pointer;
  /*background: linear-gradient(30deg, #2e3192, #1bffff);*/
  background: #000;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  z-index: 9998;
  visibility: hidden;
  -webkit-transition: opacity .33s ease;
  -o-transition: opacity .33s ease;
  -moz-transition: opacity .33s ease;
  -ms-transition: opacity .33s ease;
  transition: opacity .33s ease; }

.body-overlay.active {
  opacity: 0.5;
  visibility: visible;
  height: 100%;
  width: 100%;
  z-index: 9999;
  -webkit-transition: opacity .33s ease;
  -o-transition: opacity .33s ease;
  -moz-transition: opacity .33s ease;
  -ms-transition: opacity .33s ease;
  transition: opacity .33s ease; }

#siteWrapper {
  position: relative; }

/* ====================== Footer ====================== */
footer {
  padding: 80px 0 30px 0;
  background: #f1f1f1; }
  @media screen and (min-width: 768px) {
    footer {
      padding: 100px 0; } }
  footer img.horizontal-logo {
    max-width: 275px;
    margin-bottom: 45px; }
  footer .container {
    padding: 0px 2.9914529914529915%; }
  footer .footer-socials {
    margin-bottom: 30px;
    text-align: center; }
    footer .footer-socials h4 {
      display: block;
      margin: 0 auto 20px auto; }
      @media screen and (min-width: 768px) {
        footer .footer-socials h4 {
          display: inline-block;
          margin: 0 20px 0 0; } }
    footer .footer-socials .footer-socials-wrapper {
      display: block;
      margin: 0 auto; }
      @media screen and (min-width: 768px) {
        footer .footer-socials .footer-socials-wrapper {
          display: inline-block;
          margin: 0; } }
    footer .footer-socials .fa {
      vertical-align: middle;
      line-height: 38px;
      border: 2px solid #75B229;
      height: 40px;
      width: 40px;
      text-align: center;
      margin-top: -8px;
      border-radius: 50%;
      margin-right: 5px;
      background: #fff; }
      footer .footer-socials .fa:hover {
        color: #75B229;
        background: #f1f1f1; }
    @media screen and (min-width: 768px) {
      footer .footer-socials {
        text-align: left; } }
  footer h4 {
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    color: #75B229; }
    @media screen and (min-width: 769px) {
      footer h4 {
        text-align: left; } }
  footer ul {
    -webkit-margin-before: 0;
    -webkit-margin-after: 0;
    -webkit-margin-start: 0;
    -webkit-margin-end: 0px;
    -webkit-padding-start: 0;
    padding: 0px;
    list-style: none;
    margin-bottom: 30px; }
    @media screen and (min-width: 769px) {
      footer ul {
        max-width: 275px;
        margin-bottom: 0px; } }
    footer ul li a {
      color: #8d8f92;
      padding: 7px 0px;
      display: block;
      text-align: center;
      font-size: 16px; }
      @media screen and (min-width: 769px) {
        footer ul li a {
          text-align: left; } }
    footer ul li:last-of-type {
      border: none !important; }
  footer p {
    text-align: center;
    font-size: 16px; }
    @media screen and (min-width: 769px) {
      footer p {
        text-align: left; } }
  footer a.blue-btn {
    display: table;
    margin: auto; }
    @media screen and (min-width: 769px) {
      footer a.blue-btn {
        display: inline-block; } }
  footer ul.footer-socials {
    max-width: 100%;
    display: table;
    margin: 0 auto 50px; }
    footer ul.footer-socials li {
      border: 0;
      display: inline-block;
      margin: 0 10px; }
      footer ul.footer-socials li .fa {
        border: 2px solid;
        height: 50px;
        width: 50px;
        text-align: center;
        line-height: 2em;
        border-radius: 50%;
        font-size: 25px; }
  footer #footer-links {
    margin-top: 40px; }
    @media screen and (min-width: 768px) {
      footer #footer-links {
        margin-top: 0; } }

.credit {
  background: #fff;
  padding: 10px 0;
  font-size: 13px;
  color: #8d8f92; }
  .credit .container {
    padding: 0px 2.9914529914529915%; }
    .credit .container .footeraddress {
      text-align: center; }
      @media screen and (min-width: 768px) {
        .credit .container .footeraddress {
          text-align: left; } }
  .credit a {
    font-size: 13px;
    margin: 0 10px 0 0;
    color: #8d8f92; }
  .credit img.vertical-logo {
    width: 100px;
    height: 129px;
    margin: 0 auto;
    display: block; }
    @media screen and (min-width: 768px) {
      .credit img.vertical-logo {
        display: inline-block;
        margin: 0 35px 0 0; } }
  .credit .address-wrap {
    vertical-align: middle;
    display: inline-block; }
  .credit a.site-credit-link {
    vertical-align: middle;
    margin-top: 50px;
    display: block;
    text-align: center; }
    @media screen and (min-width: 768px) {
      .credit a.site-credit-link {
        text-align: right; } }

section.footer-cta {
  background: #75B229;
  text-align: center;
  color: #fff;
  padding: 40px 15px; }
  section.footer-cta h4 {
    color: #fff;
    font-size: 35px;
    font-family: "Squada One", sans-serif;
    text-transform: uppercase;
    display: block; }
    @media screen and (min-width: 769px) {
      section.footer-cta h4 {
        font-size: 52px; } }
    section.footer-cta h4 a {
      color: #fff;
      position: Relative;
      border-bottom: 3px solid #fff; }
      section.footer-cta h4 a:hover {
        color: #000;
        border-bottom: 3px solid #000; }

/* ====================== REM font size with pixel fallback ====================== */
/* === Usage === */
/*p {
  @include font-size(14px)
}*/
/* === Output === */
/*p {
  font-size: 14px; //Will be overridden if browser supports rem
  font-size: 0.8rem;
}*/
/* ====================== Breakpoints ====================== */
/* ==== Usage ==== */
/*.class {
  width: 60%;
  float: left;
  margin: 0 2% 0 0;
  @include bp-small {
    width: 100%;
    float: none;
    margin: 0;
  }
}*/
/* ==== End ==== */
/* ====================== Homepage Header and Video Hero ====================== */
section.home-hero {
  height: 90vh;
  position: relative;
  -webkit-transition: -webkit-transform 0.2s ease-in-out, left 0.2s ease-in-out, right 0.2s ease-in-out;
  -moz-transition: -moz-transform 0.2s ease-in-out, left 0.2s ease-in-out, right 0.2s ease-in-out;
  -ms-transition: -ms-transform 0.2s ease-in-out, left 0.2s ease-in-out, right 0.2s ease-in-out;
  -o-transition: -o-transform 0.2s ease-in-out, left 0.2s ease-in-out, right 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, left 0.2s ease-in-out, right 0.2s ease-in-out;
  /* End section.home-hero inital stylng */
  /* End Hero Message */ }
  @media screen and (max-width: 768px) {
    section.home-hero {
      height: 500px;
      background: url(/SiteFiles/2431/css/images/mobile-bg.jpg);
      background-size: cover;
      background-position: center center; }
      section.home-hero video {
        display: none; } }
  section.home-hero img.reversed-logo {
    margin: 50px auto;
    width: 110px;
    display: table; }
  section.home-hero .hero-message {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translatex(-50%) translatey(-50%);
    -moz-transform: translatex(-50%) translatey(-50%);
    -ms-transform: translatex(-50%) translatey(-50%);
    -o-transform: translatex(-50%) translatey(-50%);
    transform: translatex(-50%) translatey(-50%);
    width: 100%;
    padding: 0px 35px;
    z-index: 99; }
    @media screen and (min-width: 769px) {
      section.home-hero .hero-message {
        margin-top: 35px;
        max-width: 900px; } }
    section.home-hero .hero-message h1 {
      text-transform: uppercase;
      color: #fff;
      font-size: 50px;
      line-height: .85em;
      margin-top: 0px;
      font-family: "Squada One", sans-serif; }
      @media screen and (min-width: 769px) {
        section.home-hero .hero-message h1 {
          font-size: 100px; } }
      @media screen and (min-width: 1060px) {
        section.home-hero .hero-message h1 {
          font-size: 150px; } }
    section.home-hero .hero-message p {
      color: #fff;
      font-size: 20px; }
  section.home-hero #home-hero-slider {
    position: relative !important;
    width: 100% !important;
    height: 100% !important; }
    section.home-hero #home-hero-slider .swRotator {
      position: relative !important;
      width: 100% !important;
      height: 100% !important;
      padding: 0 !important;
      margin: 0 auto !important;
      left: 0 !important;
      right: 0 !important;
      top: 0 !important; }
      section.home-hero #home-hero-slider .swRotator .scrollable {
        position: relative !important;
        width: 100% !important;
        height: 100% !important;
        padding: 0 !important;
        margin: 0 auto !important;
        left: 0 !important;
        right: 0 !important;
        top: 0 !important; }
        section.home-hero #home-hero-slider .swRotator .scrollable .items {
          position: relative !important;
          width: 100% !important;
          height: 100% !important;
          padding: 0 !important;
          margin: 0 auto !important;
          left: 0 !important;
          right: 0 !important;
          top: 0 !important; }
          section.home-hero #home-hero-slider .swRotator .scrollable .items .item {
            position: relative !important;
            display: flex;
            width: 100% !important;
            height: 100% !important;
            padding: 0 !important;
            margin: 0 auto !important;
            left: initial !important;
            right: initial !important;
            top: initial !important;
            justify-content: center;
            align-items: center; }
            section.home-hero #home-hero-slider .swRotator .scrollable .items .item a {
              position: absolute;
              display: block;
              top: 0;
              left: 0;
              width: 100%;
              height: 100%;
              z-index: 900;
              cursor: pointer;
              background-color: transparent;
              border-radius: 0; }
            section.home-hero #home-hero-slider .swRotator .scrollable .items .item .caption {
              margin: 77px auto 0 auto;
              text-align: center;
              max-width: 800px;
              z-index: 10;
              position: initial; }
              section.home-hero #home-hero-slider .swRotator .scrollable .items .item .caption .title {
                color: #FFF;
                font-size: 50px;
                font-weight: normal;
                font-family: "Squada One", sans-serif;
                padding: 0;
                margin: 0 auto 22px auto;
                text-transform: uppercase;
                line-height: .85em; }
                @media screen and (min-width: 600px) {
                  section.home-hero #home-hero-slider .swRotator .scrollable .items .item .caption .title {
                    font-size: 75px; } }
                @media screen and (min-width: 960px) {
                  section.home-hero #home-hero-slider .swRotator .scrollable .items .item .caption .title {
                    font-size: 100px; } }
                @media screen and (min-width: 1200px) {
                  section.home-hero #home-hero-slider .swRotator .scrollable .items .item .caption .title {
                    font-size: 125px; } }
                @media screen and (min-width: 1400px) {
                  section.home-hero #home-hero-slider .swRotator .scrollable .items .item .caption .title {
                    font-size: 150px; } }
              section.home-hero #home-hero-slider .swRotator .scrollable .items .item .caption .description {
                color: #FFF;
                font-size: 12px;
                padding: 2px 4px 4px; }
      section.home-hero #home-hero-slider .swRotator .prev, section.home-hero #home-hero-slider .swRotator .next {
        position: absolute;
        top: 50%;
        color: #FFFFFF;
        z-index: 9999;
        font-size: 50px; }
      section.home-hero #home-hero-slider .swRotator .prev {
        left: 1%; }
        section.home-hero #home-hero-slider .swRotator .prev:before {
          content: "\f053";
          font-family: "FontAwesome"; }
      section.home-hero #home-hero-slider .swRotator .next {
        right: 1%; }
        section.home-hero #home-hero-slider .swRotator .next:before {
          content: "\f054";
          font-family: "FontAwesome"; }
      section.home-hero #home-hero-slider .swRotator .pager {
        position: absolute;
        display: block;
        bottom: 20px;
        width: 100%;
        text-align: center;
        list-style: none;
        margin: 0;
        padding: 0;
        z-index: 99999; }
        section.home-hero #home-hero-slider .swRotator .pager a {
          color: #FFFFFF; }
          section.home-hero #home-hero-slider .swRotator .pager a.current .pager-index:before {
            content: "\f111"; }
          section.home-hero #home-hero-slider .swRotator .pager a .pager-index {
            margin: 0 3px;
            font-size: 0; }
            section.home-hero #home-hero-slider .swRotator .pager a .pager-index:before {
              font-family: "FontAwesome";
              font-weight: 100;
              content: "\f10c";
              font-size: 20px;
              margin: 0 3px; }
    section.home-hero #home-hero-slider .swRotator.overlay .scrollable .items .item:after {
      content: "";
      background: #029BFB;
      opacity: 0.5;
      position: absolute;
      height: 100%;
      width: 100%;
      top: 0;
      left: 0;
      z-index: 1; }
  section.home-hero .vertical-line {
    display: none; }
    @media screen and (min-width: 769px) {
      section.home-hero .vertical-line {
        display: block;
        height: 70px;
        width: 3px;
        background: #fff;
        top: auto;
        bottom: 0px;
        z-index: 10;
        position: absolute;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%); }
        section.home-hero .vertical-line a {
          color: #fff;
          text-align: center;
          font-family: "Oswald", sans-serif;
          text-transform: uppercase;
          font-size: 16px;
          display: block;
          position: absolute;
          left: 50%;
          -webkit-transform: translateX(-50%);
          -moz-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
          -o-transform: translateX(-50%);
          transform: translateX(-50%);
          top: -40px;
          letter-spacing: 2px; }
          section.home-hero .vertical-line a:hover {
            letter-spacing: 4px; } }

section.home-main {
  background: #f1f1f1; }
  section.home-main .content-pad {
    padding: 5%; }
  section.home-main h1 {
    max-width: 600px; }
  section.home-main .order-one {
    min-height: 300px;
    -webkit-box-ordinal-group: 2;
    /* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-ordinal-group: 2;
    /* OLD - Firefox 19- */
    -ms-flex-order: 2;
    /* TWEENER - IE 10 */
    -webkit-order: 2;
    /* NEW - Chrome */
    order: 2; }
    @media screen and (min-width: 769px) {
      section.home-main .order-one {
        -webkit-box-ordinal-group: 1;
        /* OLD - iOS 6-, Safari 3.1-6 */
        -moz-box-ordinal-group: 1;
        /* OLD - Firefox 19- */
        -ms-flex-order: 1;
        /* TWEENER - IE 10 */
        -webkit-order: 1;
        /* NEW - Chrome */
        order: 1; } }
  section.home-main .order-two {
    -webkit-box-ordinal-group: 1;
    /* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-ordinal-group: 1;
    /* OLD - Firefox 19- */
    -ms-flex-order: 1;
    /* TWEENER - IE 10 */
    -webkit-order: 1;
    /* NEW - Chrome */
    order: 1; }
    @media screen and (min-width: 769px) {
      section.home-main .order-two {
        -webkit-box-ordinal-group: 2;
        /* OLD - iOS 6-, Safari 3.1-6 */
        -moz-box-ordinal-group: 2;
        /* OLD - Firefox 19- */
        -ms-flex-order: 2;
        /* TWEENER - IE 10 */
        -webkit-order: 2;
        /* NEW - Chrome */
        order: 2; } }

section.home-visit {
  background: #fff;
  border-left: 20px solid #fff;
  border-right: 20px solid #fff;
  padding-bottom: 5%; }
  section.home-visit .content-pad {
    padding: 5%; }
  section.home-visit .visit-img {
    display: none; }
    @media screen and (min-width: 769px) {
      section.home-visit .visit-img {
        display: block;
        margin-top: -30px;
        max-width: 600px; }
        section.home-visit .visit-img img {
          margin-left: 70px; } }

section.home-exhibits {
  background: #fff; }
  section.home-exhibits .section-title h3 {
    font-size: 29px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #029BFB;
    margin-bottom: 40px;
    margin-top: 60px; }
  section.home-exhibits .left-bg {
    background: url(/SiteFiles/2431/css/images/building-bg.jpg);
    background-size: cover;
    background-position: center center; }
  section.home-exhibits .explore-exhibits {
    position: relative;
    background: #029BFB;
    -webkit-transition: all .44s;
    -moz-transition: all .44s;
    -o-transition: all .44s;
    transition: all .44s; }
    section.home-exhibits .explore-exhibits img.img-icon {
      width: 26px;
      vertical-align: middle;
      margin-top: -8px; }
    section.home-exhibits .explore-exhibits a {
      font-family: "Oswald", sans-serif;
      position: relative;
      z-index: 99;
      color: #fff;
      position: relative;
      font-size: 29px;
      padding: 25px;
      z-index: 99;
      margin: 0px;
      text-align: center;
      text-transform: uppercase;
      letter-spacing: 2px;
      display: inline-block;
      -webkit-transition: all .44s;
      -moz-transition: all .44s;
      -o-transition: all .44s;
      transition: all .44s; }
    section.home-exhibits .explore-exhibits:hover a {
      letter-spacing: 3px; }
  section.home-exhibits .explore-exhibits.overlay:after {
    background: transparent; }
  section.home-exhibits .flex-height {
    min-height: 350px; }
  section.home-exhibits .featured-exhibit {
    position: relative;
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column; }
    section.home-exhibits .featured-exhibit:hover h1 {
      margin-top: -10px;
      -webkit-transition: all .44s;
      -moz-transition: all .44s;
      -o-transition: all .44s;
      transition: all .44s; }
    section.home-exhibits .featured-exhibit:hover h1:after {
      opacity: 1;
      right: calc(50% - 6px); }
    section.home-exhibits .featured-exhibit h1 {
      color: #fff;
      position: relative;
      font-size: 29px;
      padding: 25px;
      z-index: 99;
      margin: 0px;
      text-align: center;
      text-transform: uppercase;
      letter-spacing: 2px;
      -webkit-transition: all .44s;
      -moz-transition: all .44s;
      -o-transition: all .44s;
      transition: all .44s; }
      section.home-exhibits .featured-exhibit h1 a {
        color: #fff; }
      section.home-exhibits .featured-exhibit h1:after {
        background: url(/SiteFiles/2431/css/images/white-arrow.svg);
        right: 52%;
        bottom: 0;
        position: absolute;
        width: 16px;
        background-size: cover;
        height: 10px;
        background-position: center center;
        opacity: 0;
        content: '';
        -webkit-transition: right 0.24s cubic-bezier(0.445, 0.05, 0.55, 0.95), left 0.24s cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity 0.24s cubic-bezier(0.455, 0.03, 0.515, 0.955);
        -o-transition: right 0.24s cubic-bezier(0.445, 0.05, 0.55, 0.95), left 0.24s cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity 0.24s cubic-bezier(0.455, 0.03, 0.515, 0.955);
        transition: right 0.24s cubic-bezier(0.445, 0.05, 0.55, 0.95), left 0.24s cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity 0.24s cubic-bezier(0.455, 0.03, 0.515, 0.955); }
  @media screen and (min-width: 768px) {
    section.home-exhibits .explore-exhibits {
      border-top: 20px solid #fff;
      border-right: 10px solid #fff;
      border-bottom: 20px solid #fff;
      border-left: 20px solid #fff; }
    section.home-exhibits .box-one {
      border-top: 20px solid #fff;
      border-right: 20px solid #fff;
      border-bottom: 20px solid #fff;
      border-left: 10px solid #fff; }
    section.home-exhibits .box-two {
      border-top: 20px solid #fff;
      border-right: 20px solid #fff;
      border-bottom: 20px solid #fff; }
    section.home-exhibits .box-three {
      border-bottom: 20px solid #fff;
      border-left: 20px solid #fff;
      border-right: 10px solid #fff; }
    section.home-exhibits .box-four {
      border-bottom: 20px solid #fff;
      border-right: 20px solid #fff;
      border-left: 10px solid #fff; } }

body.home p.upcoming-events-view-link {
  display: none !important; }

section.home-events {
  padding: 50px 0px;
  background: #f1f1f1; }
  @media screen and (min-width: 769px) {
    section.home-events {
      padding: 50px; } }
  section.home-events a.blue-btn {
    display: table;
    margin: 10px auto 0; }
  section.home-events .container {
    width: 100% !important;
    padding: 0px 20px; }
  section.home-events h3 {
    font-size: 29px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #029BFB;
    margin-bottom: 65px; }
  section.home-events .upcoming-events-wrapper {
    /* End ul */ }
    section.home-events .upcoming-events-wrapper p.upcoming-events-view-link {
      -webkit-transition: all .44s;
      -moz-transition: all .44s;
      -o-transition: all .44s;
      transition: all .44s;
      background: #75B229;
      padding: 15px 30px;
      border-radius: 200px;
      font-family: "Muli", sans-serif;
      font-size: 18px;
      font-weight: 300;
      display: table;
      margin: auto;
      text-align: center; }
      section.home-events .upcoming-events-wrapper p.upcoming-events-view-link a {
        color: #fff; }
      section.home-events .upcoming-events-wrapper p.upcoming-events-view-link:hover {
        -webkit-transition: all .44s;
        -moz-transition: all .44s;
        -o-transition: all .44s;
        transition: all .44s;
        background: #029BFB;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2); }
    section.home-events .upcoming-events-wrapper ul {
      list-style: none;
      -webkit-margin-before: 0;
      -webkit-margin-after: 0;
      -webkit-margin-start: 0px;
      -webkit-margin-end: 0px;
      -webkit-padding-start: 0;
      /* End li*/ }
      section.home-events .upcoming-events-wrapper ul li {
        margin: 0 0 30px 0;
        list-style: none;
        padding: 0 15px;
        width: 100%;
        float: left;
        -webkit-transition: all .44s;
        -moz-transition: all .44s;
        -o-transition: all .44s;
        transition: all .44s; }
        section.home-events .upcoming-events-wrapper ul li:hover {
          -webkit-transform: translateY(-10px);
          -moz-transform: translateY(-10px);
          -ms-transform: translateY(-10px);
          -o-transform: translateY(-10px);
          transform: translateY(-10px);
          -webkit-transition: all .44s;
          -moz-transition: all .44s;
          -o-transition: all .44s;
          transition: all .44s; }
        @media screen and (min-width: 480px) {
          section.home-events .upcoming-events-wrapper ul li {
            width: 50% !important; } }
        @media screen and (min-width: 769px) {
          section.home-events .upcoming-events-wrapper ul li {
            width: 25% !important; } }
        section.home-events .upcoming-events-wrapper ul li .upcoming-events-image {
          float: none;
          margin-right: 10px;
          display: block !important;
          width: 100%; }
          section.home-events .upcoming-events-wrapper ul li .upcoming-events-image img {
            width: 100%;
            display: block; }
        section.home-events .upcoming-events-wrapper ul li .inner-event-wrap {
          background: #fff;
          border-bottom: 4px solid #75B229; }
        section.home-events .upcoming-events-wrapper ul li .event-meta {
          background: transparent;
          padding: 7% 0;
          margin: 0 7%; }
        section.home-events .upcoming-events-wrapper ul li p.upcoming-events-date {
          font-size: 13px;
          margin-bottom: 5px; }
        section.home-events .upcoming-events-wrapper ul li span.upcoming-events-date {
          font-size: 13px; }
        section.home-events .upcoming-events-wrapper ul li span.upcoming-events-time {
          display: none; }
        section.home-events .upcoming-events-wrapper ul li p.upcoming-events-name {
          margin-bottom: 0;
          line-height: 1.1em; }
          section.home-events .upcoming-events-wrapper ul li p.upcoming-events-name a {
            font-family: "Oswald", sans-serif;
            text-transform: uppercase; }
            section.home-events .upcoming-events-wrapper ul li p.upcoming-events-name a:hover {
              color: #000; }

/* ========== HOMEPAGE CTA BLOCKS =========== */
section.news-cta-block .flex-wrap {
  position: relative; }

section.news-cta-block .container-fluid, section.news-cta-block .flex-col-sm-6 {
  padding: 0px !important; }

section.news-cta-block .cta-block {
  position: relative;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }
  section.news-cta-block .cta-block:hover h1, section.news-cta-block .cta-block:hover p, section.news-cta-block .cta-block:hover a.yellow-btn-small {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-transition: all .44s;
    -moz-transition: all .44s;
    -o-transition: all .44s;
    transition: all .44s; }
  section.news-cta-block .cta-block:hover h1:after {
    opacity: 1;
    right: calc(50% - 0px); }

section.news-cta-block .membership-block {
  background: url(/SiteFiles/2431/css/images/membership-bg.jpg); }
  @media screen and (min-width: 769px) {
    section.news-cta-block .membership-block {
      position: absolute !important;
      height: 50%;
      width: 100%;
      top: 0;
      left: 0;
      border-top: 20px solid #fff;
      border-right: 20px solid #fff;
      border-bottom: 10px solid #fff;
      border-left: 10px solid #fff; } }
  section.news-cta-block .membership-block h1:after {
    display: none !important; }

section.news-cta-block .planetarium-block {
  background: url(/SiteFiles/2431/css/images/planetarium-bg.jpg); }
  @media screen and (min-width: 769px) {
    section.news-cta-block .planetarium-block {
      position: absolute !important;
      height: 50%;
      width: 50%;
      bottom: 0;
      left: 0;
      border-top: 10px solid #fff;
      border-left: 10px solid #fff;
      border-bottom: 20px solid #fff;
      border-right: 10px solid #fff; } }

section.news-cta-block .last-cta-block {
  background: url(/SiteFiles/2431/css/images/homepage-cta-bg.jpg); }
  @media screen and (min-width: 769px) {
    section.news-cta-block .last-cta-block {
      position: absolute !important;
      height: 50%;
      width: 50%;
      bottom: 0;
      right: 0;
      border-top: 10px solid #fff;
      border-right: 20px solid #fff;
      border-bottom: 20px solid #fff;
      border-left: 10px solid #fff; } }

section.news-cta-block .news-block {
  background: #4630A8;
  padding: 10% 5%;
  /* End Recent Blog Posts Wrapper */ }
  @media screen and (min-width: 769px) {
    section.news-cta-block .news-block {
      border-top: 20px solid #fff;
      border-left: 20px solid #fff;
      border-bottom: 20px solid #fff;
      border-right: 10px solid #fff; } }
  section.news-cta-block .news-block:hover p {
    -webkit-transform: translateY(0px) !important;
    -moz-transform: translateY(0px) !important;
    -ms-transform: translateY(0px) !important;
    -o-transform: translateY(0px) !important;
    transform: translateY(0px) !important; }
  section.news-cta-block .news-block p {
    margin-bottom: 50px; }
  section.news-cta-block .news-block a.blue-btn {
    margin-bottom: 0px;
    position: relative;
    z-index: 9; }
  section.news-cta-block .news-block .recent-blog-posts-wrapper {
    margin-bottom: 30px;
    display: block; }
    section.news-cta-block .news-block .recent-blog-posts-wrapper ul {
      -webkit-margin-before: 0;
      -webkit-margin-after: 0;
      -webkit-margin-start: 0;
      -webkit-margin-end: 0px;
      -webkit-padding-start: 0;
      padding: 0px;
      list-style: none; }
      section.news-cta-block .news-block .recent-blog-posts-wrapper ul li {
        position: relative;
        padding-bottom: 20px; }
        section.news-cta-block .news-block .recent-blog-posts-wrapper ul li:after {
          content: '';
          height: 3px;
          width: 40px;
          position: absolute;
          bottom: 0px;
          left: 50%;
          margin-left: -20px;
          background: #6a55c5; }
        section.news-cta-block .news-block .recent-blog-posts-wrapper ul li .recent-blog-posts-date-wrapper {
          display: block;
          text-align: center;
          color: #6a55c5;
          font-family: "Muli", sans-serif;
          margin: 0;
          padding: 0 25px; }
        section.news-cta-block .news-block .recent-blog-posts-wrapper ul li .recent-blog-posts-body {
          color: rgba(255, 255, 255, 0.5); }
        section.news-cta-block .news-block .recent-blog-posts-wrapper ul li a.recent-blog-posts-title {
          font-family: "Oswald", sans-serif;
          color: #fff;
          position: relative;
          font-size: 29px;
          padding: 10px 25px;
          z-index: 99;
          margin: 0px auto;
          text-align: center;
          text-transform: uppercase;
          letter-spacing: 2px;
          display: block; }
          section.news-cta-block .news-block .recent-blog-posts-wrapper ul li a.recent-blog-posts-title:hover {
            color: #241567; }

section.news-cta-block .flex-height {
  min-height: 300px; }

section.news-cta-block .bg-image {
  position: relative; }

section.news-cta-block p {
  color: #fff;
  margin: 0px;
  line-height: 1em;
  position: relative;
  z-index: 99;
  text-align: center;
  -webkit-transition: all .44s;
  -moz-transition: all .44s;
  -o-transition: all .44s;
  transition: all .44s; }

section.news-cta-block h1 {
  color: #fff;
  position: relative;
  font-size: 29px;
  padding: 10px 25px;
  z-index: 99;
  margin: 0px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  -webkit-transition: all .44s;
  -moz-transition: all .44s;
  -o-transition: all .44s;
  transition: all .44s; }
  section.news-cta-block h1:after {
    background: url(/SiteFiles/2431/css/images/white-arrow.svg);
    right: 52%;
    bottom: -10px;
    position: absolute;
    width: 16px;
    background-size: cover;
    height: 10px;
    background-position: center center;
    opacity: 0;
    content: '';
    -webkit-transition: right 0.24s cubic-bezier(0.445, 0.05, 0.55, 0.95), left 0.24s cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity 0.24s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    -o-transition: right 0.24s cubic-bezier(0.445, 0.05, 0.55, 0.95), left 0.24s cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity 0.24s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition: right 0.24s cubic-bezier(0.445, 0.05, 0.55, 0.95), left 0.24s cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity 0.24s cubic-bezier(0.455, 0.03, 0.515, 0.955); }

section.news-cta-block a.yellow-btn-small {
  background: #E5B72E;
  padding: 10px 25px;
  border-radius: 200px;
  font-family: "Muli", sans-serif;
  font-size: 18px;
  font-weight: 300;
  display: table;
  margin: 10px auto;
  z-index: 999;
  position: relative;
  color: #000; }
  section.news-cta-block a.yellow-btn-small:hover {
    background: #029BFB;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2); }

section.default-hero {
  height: 350px;
  background-size: cover;
  background-position: center center;
  position: relative; }
  @media screen and (min-width: 769px) {
    section.default-hero {
      height: 500px; } }
  section.default-hero:after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background: rgba(37, 46, 53, 0.65); }
  section.default-hero .intro-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translatex(-50%) translatey(-50%);
    -moz-transform: translatex(-50%) translatey(-50%);
    -ms-transform: translatex(-50%) translatey(-50%);
    -o-transform: translatex(-50%) translatey(-50%);
    transform: translatex(-50%) translatey(-50%);
    width: 100%;
    max-width: 800px;
    padding: 85px 20px 0px;
    z-index: 99; }
  section.default-hero h1.default-page-title {
    color: #fff;
    text-align: center;
    font-family: "Squada One", sans-serif;
    text-transform: uppercase;
    z-index: 99;
    font-size: 35px;
    line-height: 1em; }
    @media screen and (min-width: 769px) {
      section.default-hero h1.default-page-title {
        font-size: 82px; } }
  section.default-hero p {
    color: #fff;
    text-align: center; }

section.default-main {
  padding: 70px 0px; }
  @media screen and (min-width: 769px) {
    section.default-main .default-padding-right {
      padding-right: 50px; } }

section.default-middle {
  background: url(/SiteFiles/2431/css/images/purple-bg.jpg);
  background-size: cover;
  background-position: center center;
  border-left: 20px solid #fff;
  border-right: 20px solid #fff; }
  section.default-middle .templatecontent {
    margin-top: 100px;
    margin-bottom: 100px; }
  section.default-middle h1, section.default-middle h2, section.default-middle h3, section.default-middle h4, section.default-middle h5, section.default-middle h6, section.default-middle p {
    color: #fff; }
  section.default-middle .bottom-heading {
    margin-bottom: -100px; }
    section.default-middle .bottom-heading h1 {
      color: #fff; }

section.default-middle.admission {
  background: transparent;
  margin: 0px 0px 50px !important;
  padding: 0px !important;
  border-top: 0px;
  border-bottom: 0px; }
  section.default-middle.admission .templatecontent {
    margin-top: 0px !important;
    margin-bottom: 0px !important; }

.special-block {
  box-shadow: 0px 0px 80px rgba(0, 0, 0, 0.12);
  padding: 50px;
  margin: 20px 20px 60px 20px; }

section.body-tiles {
  background: transparent;
  margin: 0px 0px 50px !important;
  padding: 0px !important;
  border-top: 0px;
  border-bottom: 0px; }
  section.body-tiles .templatecontent {
    margin-top: 0px !important;
    margin-bottom: 0px !important; }
  section.body-tiles p {
    color: #fff;
    margin: 0px;
    line-height: 1em;
    position: relative;
    z-index: 99;
    text-align: center;
    -webkit-transition: all .44s;
    -moz-transition: all .44s;
    -o-transition: all .44s;
    transition: all .44s; }
  section.body-tiles h1 {
    color: #fff;
    position: relative;
    font-size: 29px;
    padding: 10px 25px;
    z-index: 99;
    margin: 0px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    -webkit-transition: all .44s;
    -moz-transition: all .44s;
    -o-transition: all .44s;
    transition: all .44s;
    /*    &:after{
      background: url(/SiteFiles/2431/css/images/white-arrow.svg);
      right: 52%;
      bottom: -10px;
      position: absolute;
      width: 16px;
      background-size: cover;
      height: 10px;
      background-position: center center;
      opacity: 0;
      content: '';
      -webkit-transition: right 0.24s cubic-bezier(0.445, 0.05, 0.55, 0.95), left 0.24s cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity 0.24s cubic-bezier(0.455, 0.03, 0.515, 0.955);
      -o-transition: right 0.24s cubic-bezier(0.445, 0.05, 0.55, 0.95), left 0.24s cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity 0.24s cubic-bezier(0.455, 0.03, 0.515, 0.955);
      transition: right 0.24s cubic-bezier(0.445, 0.05, 0.55, 0.95), left 0.24s cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity 0.24s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    }*/ }
  section.body-tiles a.yellow-btn-small {
    background: #E5B72E;
    padding: 10px 25px;
    border-radius: 200px;
    font-family: "Muli", sans-serif;
    font-size: 18px;
    font-weight: 300;
    display: table;
    margin: 10px auto;
    z-index: 1;
    position: relative;
    color: #000; }
    section.body-tiles a.yellow-btn-small:hover {
      background: #029BFB;
      box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2); }
  section.body-tiles .cta-block {
    position: relative;
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column; }
    section.body-tiles .cta-block:hover h1, section.body-tiles .cta-block:hover p, section.body-tiles .cta-block:hover a.yellow-btn-small {
      -webkit-transform: translateY(-10px);
      -moz-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
      -o-transform: translateY(-10px);
      transform: translateY(-10px);
      -webkit-transition: all .44s;
      -moz-transition: all .44s;
      -o-transition: all .44s;
      transition: all .44s; }
    section.body-tiles .cta-block:hover h1:after {
      opacity: 1;
      right: calc(50% - 0px); }
  section.body-tiles .membership-block {
    background: url(/SiteFiles/2431/css/images/membership-bg.jpg); }
    @media screen and (min-width: 769px) {
      section.body-tiles .membership-block {
        border-top: 20px solid #fff;
        border-right: 20px solid #fff;
        border-bottom: 10px solid #fff;
        border-left: 10px solid #fff;
        height: 350px !important; } }
    section.body-tiles .membership-block h1:after {
      display: none !important; }
  section.body-tiles .planetarium-block {
    background: url(/SiteFiles/2431/css/images/planetarium-bg.jpg); }
    @media screen and (min-width: 769px) {
      section.body-tiles .planetarium-block {
        border-top: 20px solid #fff;
        border-right: 20px solid #fff;
        border-bottom: 10px solid #fff;
        border-left: 10px solid #fff;
        height: 350px !important; } }
  section.body-tiles .last-cta-block {
    background: url(/SiteFiles/2431/css/images/homepage-cta-bg.jpg); }
    @media screen and (min-width: 769px) {
      section.body-tiles .last-cta-block {
        border-top: 20px solid #fff;
        border-right: 20px solid #fff;
        border-bottom: 10px solid #fff;
        border-left: 10px solid #fff;
        height: 350px !important; } }

.annual-report-wrap {
  position: relative;
  max-width: 550px; }
  .annual-report-wrap img {
    margin: 30px 0px 0px 30px; }
  .annual-report-wrap .report-title {
    background: #029BFB;
    display: table;
    padding: 50px;
    position: absolute;
    top: 0px;
    left: 0px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    max-width: 330px;
    font-size: 25px;
    color: #fff;
    -webkit-transition: all .44s;
    -moz-transition: all .44s;
    -o-transition: all .44s;
    transition: all .44s; }
    .annual-report-wrap .report-title:hover {
      background: #75B229;
      -webkit-transition: all .44s;
      -moz-transition: all .44s;
      -o-transition: all .44s;
      transition: all .44s; }

/* ====================== EXHIBIT PAGE STYLES (SPECIFIC) ====================== */
.see-do-tiles h3 a {
  float: left;
  background: #82C041;
  margin: 2%;
  padding: 3%;
  text-align: center;
  color: white !important;
  font-size: 2rem;
  padding: 30px;
  letter-spacing: -.25px;
  margin: 0 20px 20px 0;
  width: 30%;
  font-weight: bold;
  height: 220px;
  text-align: center;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center; }
  @media (max-width: 768px) {
    .see-do-tiles h3 a {
      width: 100%;
      height: 150px;
      margin: 0 0 20px 0; } }
  .see-do-tiles h3 a:hover {
    background: #34495E !important;
    -webkit-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -webkit-transition: all .33s ease;
    transition: all .33s ease;
    transform: scale(1.05);
    cursor: pointer; }
  .see-do-tiles h3 a h2 {
    display: table !important;
    float: none; }

/* ====================== EVENT PAGE LIST VIEW STYLES (SPECIFIC) ====================== */
.event-listing-date {
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  margin: 0 0 15px;
  color: #029BFB; }

.event-listing-time-column {
  font-weight: bold; }

/* EVENT DETAIL */
a.public-ical-feed-link.public-ical-feed-link--event {
  color: #fff;
  background: #4630A8;
  padding: 15px 30px;
  border-radius: 200px;
  font-family: "Muli", sans-serif;
  font-size: 18px;
  font-weight: 300;
  display: inline-block;
  margin: 0px 15px 15px 0px;
  text-align: center;
  line-height: 130%; }
  a.public-ical-feed-link.public-ical-feed-link--event:hover {
    background: #75B229;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2); }

p.event-detail-location-name label, p.event-detail-description {
  font-weight: bold;
  font-family: "Oswald", sans-serif;
  display: block; }

p.event-detail-calendarlink a {
  color: #fff;
  background: #75B229;
  padding: 15px 30px;
  border-radius: 200px;
  font-family: "Muli", sans-serif;
  font-size: 18px;
  font-weight: 300;
  display: inline-block;
  margin: 0px 15px 15px 0px;
  text-align: center;
  line-height: 130%; }
  p.event-detail-calendarlink a:hover {
    background: #029BFB;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2); }

p.event-detail-sharelink a {
  color: #029BFB;
  background: white;
  padding: 15px 30px;
  border-radius: 200px;
  border: 1px solid #eee;
  font-family: "Muli", sans-serif;
  font-size: 18px;
  font-weight: 300;
  display: inline-block;
  margin: 0px 15px 15px 0px;
  text-align: center;
  line-height: 130%; }

/* ====================== BLOG PAGE POST LIST VIEW STYLES (SPECIFIC) ====================== */
body.default .blog {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start; }
  body.default .blog div.blog-entry {
    position: relative !important;
    border: 0;
    padding: 0;
    margin: 0 4% 4% 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    width: 44%;
    box-shadow: 0px 0px 80px rgba(0, 0, 0, 0.12);
    padding: 50px;
    margin: 0 4% 4% 0; }
    body.default .blog div.blog-entry div.blog-meta-wrap {
      position: relative;
      padding: 22% 30px 30px 30px;
      z-index: 2;
      height: 100%; }
    body.default .blog div.blog-entry h4.post-date {
      margin: 0 0 8px 0;
      letter-spacing: .04em;
      font-size: 14px;
      opacity: 0.7;
      color: #C01FCF; }
      body.default .blog div.blog-entry h4.post-date:before {
        display: inline-block;
        font-family: FontAwesome;
        font-size: inherit;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0);
        content: '\f073';
        margin: 0 8px 0 0; }
    body.default .blog div.blog-entry h4.post-title {
      display: block;
      letter-spacing: .02em;
      font-size: 1.5em;
      margin: 0 0 .85em 0;
      line-height: 1.25em; }
      body.default .blog div.blog-entry h4.post-title a {
        font-family: "Oswald", sans-serif;
        font-size: 20px;
        margin: 0 0 25px;
        color: #029BFB; }
        @media screen and (min-width: 769px) {
          body.default .blog div.blog-entry h4.post-title a {
            font-size: 30px; } }
    body.default .blog div.blog-entry div.post-body {
      padding: 0;
      margin: 0;
      font-family: "Muli", sans-serif;
      line-height: 1.65em;
      font-size: 19px;
      margin: 0 0 25px;
      color: #777777;
      font-weight: 300; }
    body.default .blog div.blog-entry div.post-image, body.default .blog div.blog-entry div.post-profileinfo, body.default .blog div.blog-entry div.post-tags {
      display: none; }

@media (max-width: 991px) {
  .blog div.blog-entry {
    width: 100%;
    margin: 0 0 15px 0; } }

@media (max-width: 767px) {
  .blog div.blog-entry div.blog-meta-wrap {
    padding: 20% 15px 15px 15px; } }

a.post-summary-read-more {
  font-size: 12px !important;
  padding: 10px 15px !important;
  margin: auto;
  color: #fff;
  background: #75B229;
  padding: 15px 30px;
  border-radius: 200px;
  font-weight: 300;
  display: inline-table;
  margin: 10px 15px 15px 0px;
  text-align: center;
  line-height: 130%; }
  a.post-summary-read-more:hover {
    background: #029BFB;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2); }

.blog img {
  max-width: 900px;
  height: auto; }

/* BLOG POST INDIVIDUAL */
body.blog-post .blog {
  padding: 0 10%; }
  body.blog-post .blog .blog-entry {
    border-bottom: 1px solid #eee; }
  body.blog-post .blog .textarea {
    border: 1px solid #eee; }

body.blog-post h4.post-title {
  font-family: "Oswald", sans-serif;
  font-size: 30px;
  margin: 0 0 25px;
  color: #029BFB; }

body.blog-post h4.post-date {
  margin: 0 0 8px 0;
  letter-spacing: .04em;
  font-size: 14px;
  opacity: 0.7;
  color: #C01FCF; }
  body.blog-post h4.post-date:before {
    display: inline-block;
    font-family: FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    content: '\f073';
    margin: 0 8px 0 0; }

body.blog-post .post-profileinfo {
  display: none; }

li.sw-blog-nav-prev a, li.sw-blog-nav-next a, input#tbCommentButton {
  font-size: 12px !important;
  padding: 10px 15px !important;
  margin: auto;
  color: #fff;
  background: #75B229;
  padding: 15px 30px;
  border-radius: 200px;
  font-weight: 300;
  display: inline-table;
  margin: 10px 15px 15px 0px;
  text-align: center;
  line-height: 130%;
  border: 0px; }
  li.sw-blog-nav-prev a:hover, li.sw-blog-nav-next a:hover, input#tbCommentButton:hover {
    background: #029BFB;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2); }

/* ===============================================================================
==================================================================================

                    BEGIN SUDEKUM PLANETARIUM TEMPLATE STYLING

==================================================================================
=============================================================================== */
/* ====================== Homepage Header and Video Hero ====================== */
section.home-hero.sudekum {
  height: 90vh;
  position: relative;
  background: url(/assets/2431/sudekem-hero-bg.jpg);
  background-size: cover;
  background-position: center center;
  -webkit-transition: -webkit-transform 0.2s ease-in-out, left 0.2s ease-in-out, right 0.2s ease-in-out;
  -moz-transition: -moz-transform 0.2s ease-in-out, left 0.2s ease-in-out, right 0.2s ease-in-out;
  -ms-transition: -ms-transform 0.2s ease-in-out, left 0.2s ease-in-out, right 0.2s ease-in-out;
  -o-transition: -o-transform 0.2s ease-in-out, left 0.2s ease-in-out, right 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, left 0.2s ease-in-out, right 0.2s ease-in-out;
  /* End section.home-hero inital stylng */
  /* End Hero Message */ }
  @media screen and (min-width: 769px) {
    section.home-hero.sudekum {
      background-attachment: fixed; } }
  section.home-hero.sudekum:after {
    content: "";
    background: rgba(37, 46, 53, 0.65);
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0; }
  @media screen and (max-width: 768px) {
    section.home-hero.sudekum {
      height: 500px;
      background-size: cover;
      background-position: center center; } }
  section.home-hero.sudekum img.reversed-logo {
    margin: 50px auto;
    width: 110px;
    display: table; }
  section.home-hero.sudekum .hero-message {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translatex(-50%) translatey(-50%);
    -moz-transform: translatex(-50%) translatey(-50%);
    -ms-transform: translatex(-50%) translatey(-50%);
    -o-transform: translatex(-50%) translatey(-50%);
    transform: translatex(-50%) translatey(-50%);
    width: 100%;
    padding: 0px 35px;
    z-index: 99; }
    @media screen and (min-width: 769px) {
      section.home-hero.sudekum .hero-message {
        margin-top: 35px;
        max-width: 900px; } }
    section.home-hero.sudekum .hero-message h1 {
      text-transform: uppercase;
      color: #fff;
      font-size: 50px;
      line-height: .85em;
      margin-top: 0px;
      font-family: "Squada One", sans-serif; }
      @media screen and (min-width: 769px) {
        section.home-hero.sudekum .hero-message h1 {
          font-size: 100px; } }
      @media screen and (min-width: 1060px) {
        section.home-hero.sudekum .hero-message h1 {
          font-size: 150px; } }
    section.home-hero.sudekum .hero-message p {
      color: #fff;
      font-size: 20px; }
  section.home-hero.sudekum .vertical-line {
    display: none; }
    @media screen and (min-width: 769px) {
      section.home-hero.sudekum .vertical-line {
        display: block;
        height: 70px;
        width: 3px;
        background: #fff;
        top: auto;
        bottom: 0px;
        z-index: 10;
        position: absolute;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%); }
        section.home-hero.sudekum .vertical-line a {
          color: #fff;
          text-align: center;
          font-family: "Oswald", sans-serif;
          text-transform: uppercase;
          font-size: 16px;
          display: block;
          position: absolute;
          left: 50%;
          -webkit-transform: translateX(-50%);
          -moz-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
          -o-transform: translateX(-50%);
          transform: translateX(-50%);
          top: -40px;
          letter-spacing: 2px; }
          section.home-hero.sudekum .vertical-line a:hover {
            letter-spacing: 4px; } }

section.home-main.sudekum {
  background: #fff; }
  section.home-main.sudekum .bg-image {
    position: relative;
    border: 20px solid #fff; }

section.home-exhibits.sudekum .show-schedule i.demo-icon.icon-clock-icon {
  margin-top: -12px;
  display: inline-block;
  vertical-align: middle; }

@media screen and (min-width: 769px) {
  section.home-exhibits.sudekum .explore-exhibits {
    border-top: 20px solid #fff;
    border-right: 10px solid #fff;
    border-bottom: 10px solid #fff;
    border-left: 20px solid #fff; }
  section.home-exhibits.sudekum .show-schedule {
    background: #75B229;
    border-top: 20px solid #fff;
    border-right: 20px solid #fff;
    border-bottom: 10px solid #fff;
    border-left: 10px solid #fff; }
  section.home-exhibits.sudekum .box-one {
    border-top: 10px solid #fff;
    border-right: 10px solid #fff;
    border-bottom: 10px solid #fff;
    border-left: 20px solid #fff; }
  section.home-exhibits.sudekum .box-two {
    border-top: 10px solid #fff;
    border-right: 10px solid #fff;
    border-bottom: 10px solid #fff;
    border-left: 10px solid #fff; }
  section.home-exhibits.sudekum .box-three {
    border-left: 20px solid #fff;
    border-right: 10px solid #fff;
    border-bottom: 10px solid #fff;
    border-top: 10px solid #fff; }
  section.home-exhibits.sudekum .box-four {
    border-bottom: 10px solid #fff;
    border-right: 20px solid #fff;
    border-left: 10px solid #fff;
    border-top: 10px solid #fff; }
  section.home-exhibits.sudekum .box-five {
    border-top: 10px solid #fff;
    border-right: 10px solid #fff;
    border-bottom: 20px solid #fff;
    border-left: 20px solid #fff; }
  section.home-exhibits.sudekum .box-six {
    border-bottom: 20px solid #fff;
    border-right: 20px solid #fff;
    border-left: 10px solid #fff;
    border-top: 10px solid #fff; } }

section.home-cta.sudekum {
  background: url(/SiteFiles/2431/css/images/space-bg.jpg);
  background-size: cover;
  background-position: center center;
  position: relative;
  min-height: 95vh; }
  section.home-cta.sudekum canvas {
    display: block;
    -moz-opacity: 0.2;
    /* For older FF versions */
    -khtml-opacity: 0.2;
    opacity: 0.2;
    filter: alpha(opacity=20); }
  @media screen and (min-width: 769px) {
    section.home-cta.sudekum {
      background-attachment: fixed; } }
  section.home-cta.sudekum .intro-bg {
    display: table;
    margin: auto;
    max-width: 240px;
    box-shadow: 0px 0px 30px #000; }
  section.home-cta.sudekum .intro-message:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 250px;
    -webkit-transform: translateX(-50%) scale(1, 0);
    transform: translateX(-50%) scale(1, 0);
    transition: 1.5s cubic-bezier(0.23, 1, 0.32, 1);
    content: '';
    background: url(/assets/2431/sudekum-intro-bg.jpg);
    background-size: cover;
    height: 500px;
    margin-top: -60px;
    display: none; }
  section.home-cta.sudekum .intro-message.animated:before {
    -webkit-transform: translateX(-50%) scale(1, 1);
    transform: translateX(-50%) scale(1, 1);
    transition-delay: 1.5s; }
  section.home-cta.sudekum ul.sudekum-menu {
    -webkit-margin-before: 0;
    -webkit-margin-after: 0;
    -webkit-margin-start: 0;
    -webkit-margin-end: 0px;
    -webkit-padding-start: 0;
    padding: 0px;
    list-style: none; }
    section.home-cta.sudekum ul.sudekum-menu li {
      display: inline-block;
      width: 100%; }
      @media screen and (min-width: 769px) {
        section.home-cta.sudekum ul.sudekum-menu li {
          width: 24%;
          text-align: center; } }
      section.home-cta.sudekum ul.sudekum-menu li a {
        color: #fff;
        text-align: center;
        font-family: "Oswald", sans-serif;
        text-transform: uppercase; }
  section.home-cta.sudekum .intro-message {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translatex(-50%) translatey(-50%);
    -moz-transform: translatex(-50%) translatey(-50%);
    -ms-transform: translatex(-50%) translatey(-50%);
    -o-transform: translatex(-50%) translatey(-50%);
    transform: translatex(-50%) translatey(-50%);
    max-width: 450px; }
    section.home-cta.sudekum .intro-message h1, section.home-cta.sudekum .intro-message p {
      color: #fff;
      text-align: center;
      text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.85);
      position: relative; }
    section.home-cta.sudekum .intro-message h1 {
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: 54px;
      line-height: 1.5em; }
    section.home-cta.sudekum .intro-message .blue-btn {
      display: table;
      margin: auto;
      text-align: center;
      position: relative; }

/* =========== MODAL STYLING ============= */
.modal-btn {
  display: table;
  margin: 0 auto;
  color: #fff;
  line-height: 50px;
  background: rgba(255, 255, 255, 0.75);
  font-size: 22px;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 5px 5px -5px #333;
  transition: background 0.3s ease-in;
  border-radius: 50%;
  padding: 15px 30px;
  color: #4630A8;
  border: 5px solid #4630A8;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translatex(-50%) translatey(-50%);
  -moz-transform: translatex(-50%) translatey(-50%);
  -ms-transform: translatex(-50%) translatey(-50%);
  -o-transform: translatex(-50%) translatey(-50%);
  transform: translatex(-50%) translatey(-50%); }
  .modal-btn:hover {
    background: #4630A8;
    color: #fff; }

@media screen and (min-width: 768px) {
  .modal-dialog {
    width: 70%;
    margin: 30px auto; }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0px 105px #000; } }

.fade.in {
  background: rgba(10, 10, 10, 0.85); }

/* =========== RESPONSIVE IFRAME ============= */
.videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0; }

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

#map {
  width: 100%;
  height: 170px; }
  @media screen and (min-width: 500px) {
    #map {
      height: 270px; } }
  @media screen and (min-width: 600px) {
    #map {
      height: 295px; } }
  @media screen and (min-width: 700px) {
    #map {
      height: 380px; } }
  @media screen and (min-width: 800px) {
    #map {
      height: 440px; } }
  @media screen and (min-width: 900px) {
    #map {
      height: 500px; } }
  @media screen and (min-width: 1000px) {
    #map {
      height: 550px; } }
  @media screen and (min-width: 1100px) {
    #map {
      height: 600px; } }
  @media screen and (min-width: 1200px) {
    #map {
      height: 650px; } }
  @media screen and (min-width: 1300px) {
    #map {
      height: 700px; } }
  @media screen and (min-width: 1400px) {
    #map {
      height: 750px; } }
  @media screen and (min-width: 1500px) {
    #map {
      height: 800px; } }

/* =========== ACCORDION STYLING ============= */
.admissions-faq:before {
  content: "Admissions FAQ";
  font-family: "Oswald", sans-serif;
  margin: 0 0 25px;
  font-size: 60px;
  color: #75B229; }

.sw-accordion {
  padding: 0; }

h3.tabbedcontent-header.ui-accordion-header.ui-helper-reset.ui-state-active.ui-corner-top {
  position: relative;
  border-bottom: none;
  padding: 10px 65px 10px 0;
  margin-bottom: 0px;
  background: #fff;
  cursor: pointer;
  color: #4630A8;
  font-size: 18px; }
  h3.tabbedcontent-header.ui-accordion-header.ui-helper-reset.ui-state-active.ui-corner-top:focus {
    outline: none !important; }
  h3.tabbedcontent-header.ui-accordion-header.ui-helper-reset.ui-state-active.ui-corner-top:after {
    font-family: FontAwesome;
    content: "\f077";
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
    position: absolute;
    right: 20px; }

.tabbedcontent-content.ui-accordion-content.ui-helper-reset.ui-widget-content.ui-corner-bottom.ui-accordion-content-active {
  padding: 0 !important;
  border-top: none;
  background: #fff; }
  .tabbedcontent-content.ui-accordion-content.ui-helper-reset.ui-widget-content.ui-corner-bottom.ui-accordion-content-active p {
    color: #777777; }

h3.tabbedcontent-header.ui-accordion-header.ui-helper-reset.ui-state-default.ui-corner-all {
  position: relative;
  padding: 10px 65px 10px 0;
  margin-bottom: 0px;
  background: #fff;
  cursor: pointer;
  color: #4630A8;
  font-size: 18px; }
  h3.tabbedcontent-header.ui-accordion-header.ui-helper-reset.ui-state-default.ui-corner-all:focus {
    outline: none !important; }
  h3.tabbedcontent-header.ui-accordion-header.ui-helper-reset.ui-state-default.ui-corner-all:after {
    font-family: FontAwesome;
    content: "\f078";
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
    position: absolute;
    right: 20px; }

.private-cta-box {
  padding: 20px !important; }
  .private-cta-box img {
    width: 100%; }

#planetarium #calendar-import ul {
  display: block;
  list-style-type: disc;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
  -webkit-padding-start: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-justify-content: space-between;
  justify-content: space-between; }
  #planetarium #calendar-import ul li {
    position: relative !important;
    display: inline-block !important;
    background-color: #fff;
    border: 3px solid #75B229;
    padding: 15px;
    -webkit-flex-basis: 30%;
    flex-basis: 100%;
    max-width: 30%;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    margin-right: 2%;
    vertical-align: top;
    margin-bottom: 25px;
    height: auto !important;
    -webkit-transition: all .33s;
    -moz-transition: all .33s;
    -o-transition: all .33s;
    transition: all .33s; }
    @media (max-width: 768px) {
      #planetarium #calendar-import ul li {
        max-width: 40%; } }
    @media (max-width: 600px) {
      #planetarium #calendar-import ul li {
        max-width: 100%; } }
    #planetarium #calendar-import ul li:hover {
      box-shadow: 0px 0px 35px rgba(0, 0, 0, 0.2);
      -webkit-transition: all .33s;
      -moz-transition: all .33s;
      -o-transition: all .33s;
      transition: all .33s; }
    #planetarium #calendar-import ul li span.showtime {
      font-family: "Muli", sans-serif;
      line-height: 1.65em;
      font-size: 19px;
      color: #777777;
      font-weight: 300; }
    #planetarium #calendar-import ul li span.showname {
      font-size: 25px;
      margin: 10px 0;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-family: "Oswald", sans-serif;
      display: block; }

@media screen and (min-width: 768px) {
  #planetarium #calendar-import ul li {
    flex-basis: 30%; } }

#planetarium #calendar-import .showname {
  padding-left: 0px; }

#DailyCalendar {
  font-size: 1em;
  color: #81be41; }

#DailyCalendar div:nth-child(7n-6) {
  clear: both;
  padding-right: 0; }

.day {
  width: 13.88%;
  padding-left: 0.25%;
  margin-right: 0.35%;
  margin-bottom: 4px;
  vertical-align: top;
  float: left;
  border-top: 10px solid #81be41;
  padding-bottom: 9999px;
  margin-bottom: -9999px;
  background-color: #efe; }

.week {
  overflow: hidden;
  margin-bottom: 0.2em; }

div#weekday {
  padding-bottom: 2em;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  color: #000;
  margin-bottom: 0.3em;
  padding-top: 0.3em; }

#weekday B {
  font-size: 2em;
  display: inline-block;
  width: 13.88%;
  padding-left: 0.25%;
  margin-right: 0.35%;
  float: left; }

.day UL {
  padding: 0;
  margin: 0; }

.day LI {
  padding: 0;
  margin: 0;
  list-style-type: none;
  margin-bottom: 0.5em; }

.day A {
  text-decoration: none;
  color: #81be41;
  font-weight: bold; }

.today {
  border-top: 10px solid #ea0f6d;
  color: #ea0f6d;
  background-color: #fee; }

.today A {
  color: #ea0f6d; }

.past {
  color: #999;
  border-top: 10px solid #aaa;
  background-color: #eee; }

.nextmonth {
  color: #029bfb;
  border-top: 10px solid #029bfb;
  background-color: #eef; }

.nextmonth A {
  color: #029bfb; }

.date {
  display: block;
  font-size: 3em;
  margin-bottom: 0.3em;
  margin-top: 0.3em; }

.dow {
  display: none;
  margin-bottom: 0.4em; }

.showblock {
  min-width: 300px;
  display: flex;
  margin-bottom: 0.5em; }

.showtime {
  width: 3.5em;
  text-align: left;
  margin-right: 0.2em;
  font-size: 1.3em;
  display: block;
  color: #666;
  font-weight: bold; }

.showname {
  font-family: 'Oswald';
  display: block;
  font-weight: 300;
  padding-left: 0.5em;
  padding-top: 0.3em;
  padding-bottom: 0.3em;
  font-size: 1.1em; }

.todayshowblock {
  font-size: 18pt;
  width: 100%;
  display: flex;
  margin-bottom: 1em; }

.todayshowtime {
  width: 100px;
  font-weight: bold;
  text-align: right;
  margin-right: 1em; }

.todayshowname {
  flex-grow: 1; }

@media only screen and (max-width: 800px) {
  #DailyCalendar {
    width: 100%;
    margin-left: 0; }
  #DailyCalendar div {
    clear: both; }
  .day {
    width: 100%;
    max-width: 100%; }
  .past {
    display: none; }
  .date {
    display: none; }
  .showtime {
    display: inline; }
  .dow {
    display: block;
    font-size: 2em;
    margin-top: 0.5em; }
  #weekday {
    display: none; } }

.event-module .calendar-controls {
  border-bottom: 1px solid #999;
  margin-bottom: 70px;
  padding-bottom: 70px; }
  .event-module .calendar-controls .current-month {
    font-family: "Oswald", sans-serif;
    color: #75B229;
    letter-spacing: 1px;
    font-size: 40px;
    margin-right: 20px;
    vertical-align: middle; }
  .event-module .calendar-controls span.monthyear-jumper {
    vertical-align: middle;
    float: right; }
    .event-module .calendar-controls span.monthyear-jumper select {
      border: 1px solid #000;
      background: url(/SiteFiles/2431/css/images/selectbox-arrow.png) right center no-repeat;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      padding: 12px 14px 12px 20px;
      font-size: 12px;
      line-height: 14px;
      color: #252525;
      -webkit-border-radius: 0 !important;
      -moz-border-radius: 0 !important;
      border-radius: 0 !important;
      font-weight: 700;
      min-width: 240px;
      max-width: 100%;
      display: inline;
      width: 150px !important;
      height: auto !important;
      min-width: 150px !important;
      color: #000;
      font-size: 13px;
      margin-bottom: 4px;
      outline: 0 none;
      padding: 6px 12px;
      margin-left: 0px !important;
      clear: both;
      line-height: normal;
      margin-right: 5px; }

section.home-today {
  padding: 50px 0;
  background: #f1f1f1;
  -webkit-transition: all .33s;
  -moz-transition: all .33s;
  -o-transition: all .33s;
  transition: all .33s; }
  section.home-today p.upcoming-events-date, section.home-today span.upcoming-events-date {
    font-size: 15px; }
  section.home-today p.upcoming-events-name {
    font-size: 25px;
    margin: 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: "Oswald", sans-serif; }
  section.home-today .section-title h3 {
    font-size: 29px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #029BFB;
    margin-bottom: 40px;
    margin-top: 0px; }
  section.home-today .nav-tabs {
    border-bottom: 0;
    display: table;
    margin: 0;
    width: 100%; }
    section.home-today .nav-tabs li {
      width: 33.333333333%;
      height: 64px; }
      @media screen and (min-width: 600px) {
        section.home-today .nav-tabs li {
          height: 50px; } }
      @media screen and (min-width: 768px) {
        section.home-today .nav-tabs li {
          height: auto; } }
    section.home-today .nav-tabs li > a {
      border-radius: 0;
      font-size: 10px;
      margin: 0;
      color: #b5b4ad;
      background: #e4e4e4;
      border-top: 2px solid #e4e4e4;
      border-bottom: 0;
      text-align: center;
      cursor: pointer;
      line-height: 100%;
      height: 100%; }
      section.home-today .nav-tabs li > a:hover {
        border-bottom: 0; }
      section.home-today .nav-tabs li > a i {
        position: relative;
        display: block; }
        @media screen and (min-width: 768px) {
          section.home-today .nav-tabs li > a i {
            display: inline; } }
      @media screen and (min-width: 600px) {
        section.home-today .nav-tabs li > a {
          font-size: 13px;
          height: auto; } }
      @media screen and (min-width: 768px) {
        section.home-today .nav-tabs li > a {
          font-size: 14px; } }
      @media screen and (min-width: 992px) {
        section.home-today .nav-tabs li > a {
          font-size: 18px; } }
      @media screen and (min-width: 1200px) {
        section.home-today .nav-tabs li > a {
          font-size: 22px; } }
    section.home-today .nav-tabs > li.active > a {
      border: 0;
      background: #fff !important;
      border-top: 3px solid #75B229;
      color: #75B229; }
    section.home-today .nav-tabs .tab-content > .active {
      display: block;
      background: #fff;
      padding: 50px; }
  section.home-today .tab-content {
    background: #fff;
    padding: 50px;
    box-shadow: 0px 0px 80px rgba(0, 0, 0, 0.12);
    -webkit-transition: all .33s;
    -moz-transition: all .33s;
    -o-transition: all .33s;
    transition: all .33s; }
  section.home-today .upcoming-events-wrapper ul {
    display: block;
    list-style-type: disc;
    -webkit-margin-before: 0;
    -webkit-margin-after: 0;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
    -webkit-padding-start: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: stretch;
    align-items: stretch;
    -webkit-justify-content: space-between;
    justify-content: space-between; }
    section.home-today .upcoming-events-wrapper ul li {
      position: relative !important;
      display: inline-block !important;
      background-color: #fff;
      border: 3px solid #75B229;
      padding: 15px;
      -webkit-flex-basis: 30%;
      flex-basis: 100%;
      -webkit-flex-grow: 1;
      flex-grow: 1;
      margin-right: 2%;
      vertical-align: top;
      margin-bottom: 25px;
      height: auto !important;
      -webkit-transition: all .33s;
      -moz-transition: all .33s;
      -o-transition: all .33s;
      transition: all .33s; }
      section.home-today .upcoming-events-wrapper ul li:hover {
        box-shadow: 0px 0px 35px rgba(0, 0, 0, 0.2);
        -webkit-transition: all .33s;
        -moz-transition: all .33s;
        -o-transition: all .33s;
        transition: all .33s; }
      @media screen and (min-width: 768px) {
        section.home-today .upcoming-events-wrapper ul li {
          flex-basis: 30%; } }

section.home-today.planetarium a.green-btn {
  margin: 25px auto 0;
  display: table; }

/* INSTAGRAMFEED SECTION STYLING */
#instafeed {
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-align: start;
  -moz-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start; }

#instafeed a.insta-link {
  width: 12.5%;
  display: block;
  position: relative;
  margin: 0;
  padding: 0; }

#instafeed a.insta-link:hover img.insta-pic {
  filter: url('data:image/svg+xml;charset=utf-8,<svgxmlns="http://www.w3.org/2000/svg"><filterid="filter"><feGaussianBlurstdDeviation="1.4"/></filter></svg>#filter');
  -webkit-filter: blur(1.4px);
  filter: blur(1.4px); }

#instafeed img.insta-pic {
  display: block;
  width: 100%;
  height: auto;
  -webkit-transition: .3s ease-out;
  transition: .3s ease-out; }

#instafeed .insta-meta {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: rgba(47, 47, 47, 0.5);
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 5px;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity .2s ease-out;
  transition: opacity .2s ease-out; }

#instafeed a.insta-link:hover .insta-meta {
  opacity: 1; }

#instafeed .insta-meta .likes {
  color: #fff;
  margin: 0 6px;
  font-size: 15px;
  font-weight: 700;
  display: inline-block; }

#instafeed .insta-meta .comments {
  color: #fff;
  margin: 0 6px;
  font-size: 15px;
  font-weight: 700;
  display: inline-block; }

#instafeed .insta-meta i {
  font-size: 13px;
  color: #fff;
  margin: 0 3px 0 0;
  position: relative;
  top: -1px; }

@media screen and (max-width: 991px) {
  div#instafeed a.insta-link {
    width: 25%; } }

@media screen and (max-width: 620px) {
  div#instafeed a.insta-link {
    width: 33.333%; } }

@media screen and (max-width: 480px) {
  div#instafeed a.insta-link {
    width: 50%; } }

/* INSTAGRAMFEED SECTION END */
/* =========== Custom Content Styling ============= */
.inline-image {
  width: auto;
  height: auto;
  max-width: 100%; }

.inline-image.small {
  width: 100%;
  height: auto;
  max-width: 100%; }
  @media screen and (min-width: 400px) {
    .inline-image.small {
      max-width: 200px; } }

.inline-image.medium {
  width: 100%;
  height: auto;
  max-width: 100%; }
  @media screen and (min-width: 600px) {
    .inline-image.medium {
      max-width: 450px; } }

.inline-image.left {
  float: none;
  display: block;
  margin: 0 auto 20px auto; }
  @media screen and (min-width: 400px) {
    .inline-image.left {
      float: left;
      margin: 9px 50px 20px 0; } }

.inline-image.right {
  float: none;
  margin: 0 auto 20px auto; }
  @media screen and (min-width: 400px) {
    .inline-image.right {
      float: right;
      margin: 9px 0 20px 50px; } }

.inline-image.border {
  border: 8px solid #fff;
  -webkit-box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.25); }

hr.separator {
  position: relative;
  display: block;
  clear: both;
  width: 100%;
  height: 1px;
  padding: 0;
  margin: 30px auto;
  border: 0;
  background-color: #ddd; }

/* =========== End Custom Content Styling ============= */
/* ====================== FORM STYLING ====================== */
.formmodule {
  display: block;
  position: relative;
  /* ====== Keyframes ====== */
  /* Tada */
  /* Shake */
  /* .formmodule-form */
  /* .form-bot-stopper */ }

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px); }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px); } }

@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-6px);
    -ms-transform: translateX(-6px);
    transform: translateX(-6px); }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(6px);
    -ms-transform: translateX(6px);
    transform: translateX(6px); } }
  .formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_1_pnlMessage,
  .formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_2_pnlMessage {
    position: relative;
    font-size: 1rem;
    color: #fff !important;
    background: #4EB75E;
    border: 1px solid #419c4f;
    border-radius: 2px;
    padding: 8px;
    margin: 0 0 30px 0;
    overflow: hidden;
    padding-left: 45px !important;
    -webkit-animation: tada 1s ease-out 0.3s normal 1;
    animation: tada 1s ease-out 0.3s normal 1; }
    @media (min-width: 768px) {
      .formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_1_pnlMessage,
      .formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_2_pnlMessage {
        padding: 12px; } }
    .formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_1_pnlMessage:before, .formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_1_pnlMessage:after,
    .formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_2_pnlMessage:before,
    .formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_2_pnlMessage:after {
      content: '';
      display: block;
      background: #fff;
      position: absolute;
      top: 50%;
      left: 24px;
      border-radius: 1px; }
    .formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_1_pnlMessage:before,
    .formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_2_pnlMessage:before {
      width: 4px;
      height: 20px;
      margin: -10px 0 0 0px;
      -webkit-transform: rotate(42deg);
      -ms-transform: rotate(42deg);
      transform: rotate(42deg); }
    .formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_1_pnlMessage:after,
    .formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_2_pnlMessage:after {
      width: 4px;
      height: 10px;
      margin: -1px 0 0 -8px;
      -webkit-transform: rotate(-47deg);
      -ms-transform: rotate(-47deg);
      transform: rotate(-47deg); }
  .formmodule h3:first-of-type {
    display: none; }
  .formmodule .formmodule-form {
    /* table */ }
    .formmodule .formmodule-form table, .formmodule .formmodule-form tbody, .formmodule .formmodule-form tr, .formmodule .formmodule-form td {
      display: inline-block;
      width: 100%; }
    .formmodule .formmodule-form table {
      /* tbody */ }
      .formmodule .formmodule-form table tbody {
        /* tr */ }
        .formmodule .formmodule-form table tbody tr {
          /* td */
          /* td.formmodule-column2 */ }
          .formmodule .formmodule-form table tbody tr.formmodule-row, .formmodule .formmodule-form table tbody tr.formmodule-altrow {
            margin: 0 0 10px 0; }
            @media (min-width: 768px) {
              .formmodule .formmodule-form table tbody tr.formmodule-row, .formmodule .formmodule-form table tbody tr.formmodule-altrow {
                margin: 0 0 15px 0; } }
          .formmodule .formmodule-form table tbody tr td {
            padding: 0;
            /* CheckBox & RadioButton */ }
            .formmodule .formmodule-form table tbody tr td span, .formmodule .formmodule-form table tbody tr td label {
              font-weight: bold;
              font-style: normal;
              font-size: 1.225rem;
              font-family: "Oswald", sans-serif; }
            .formmodule .formmodule-form table tbody tr td input[type="text"],
            .formmodule .formmodule-form table tbody tr td input[type="file"],
            .formmodule .formmodule-form table tbody tr td textarea {
              font-size: 16px;
              background: #fff;
              color: #888;
              border: 1px solid #dcdcdc;
              border-radius: 2px;
              padding: 4px 8px;
              width: 100%; }
              .formmodule .formmodule-form table tbody tr td input[type="text"]:-moz-placeholder, .formmodule .formmodule-form table tbody tr td input[type="text"]::-moz-placeholder, .formmodule .formmodule-form table tbody tr td input[type="text"]:-ms-input-placeholder, .formmodule .formmodule-form table tbody tr td input[type="text"]::-webkit-input-placeholder,
              .formmodule .formmodule-form table tbody tr td input[type="file"]:-moz-placeholder,
              .formmodule .formmodule-form table tbody tr td input[type="file"]::-moz-placeholder,
              .formmodule .formmodule-form table tbody tr td input[type="file"]:-ms-input-placeholder,
              .formmodule .formmodule-form table tbody tr td input[type="file"]::-webkit-input-placeholder,
              .formmodule .formmodule-form table tbody tr td textarea:-moz-placeholder,
              .formmodule .formmodule-form table tbody tr td textarea::-moz-placeholder,
              .formmodule .formmodule-form table tbody tr td textarea:-ms-input-placeholder,
              .formmodule .formmodule-form table tbody tr td textarea::-webkit-input-placeholder {
                color: #999;
                opacity: 1; }
              @media (min-width: 768px) {
                .formmodule .formmodule-form table tbody tr td input[type="text"],
                .formmodule .formmodule-form table tbody tr td input[type="file"],
                .formmodule .formmodule-form table tbody tr td textarea {
                  padding: 8px 12px; } }
            .formmodule .formmodule-form table tbody tr td input.formmodule-phone {
              width: 32%;
              margin: 0 2% 0 0;
              text-align: center; }
              .formmodule .formmodule-form table tbody tr td input.formmodule-phone:nth-of-type(3) {
                margin-right: 0; }
            .formmodule .formmodule-form table tbody tr td select,
            .formmodule .formmodule-form table tbody tr td input[type="file"] {
              display: block;
              clear: both; }
            .formmodule .formmodule-form table tbody tr td input[type="file"] {
              background: #f7f7f7; }
            .formmodule .formmodule-form table tbody tr td table.formmodule-checkboxlist tbody tr td input[type="checkbox"],
            .formmodule .formmodule-form table tbody tr td table.formmodule-checkboxlist tbody tr td input[type="radio"],
            .formmodule .formmodule-form table tbody tr td table.formmodule-radiobuttonlist tbody tr td input[type="checkbox"],
            .formmodule .formmodule-form table tbody tr td table.formmodule-radiobuttonlist tbody tr td input[type="radio"] {
              margin: 2px 0; }
            .formmodule .formmodule-form table tbody tr td table.formmodule-checkboxlist tbody tr td label,
            .formmodule .formmodule-form table tbody tr td table.formmodule-radiobuttonlist tbody tr td label {
              font-size: 1.15rem;
              margin: 0 0 0 6px;
              padding: 4px 0; }
          .formmodule .formmodule-form table tbody tr td.formmodule-column1 {
            margin: 0; }
          .formmodule .formmodule-form table tbody tr td.formmodule-column2 {
            /* error message */ }
            .formmodule .formmodule-form table tbody tr td.formmodule-column2 span[style*="color: red;"] {
              padding: 5px 8px;
              position: relative;
              font-size: 13px;
              color: #fff !important;
              background: #E63A3A;
              border: 1px solid #ce2233;
              border-radius: 2px; }
              .formmodule .formmodule-form table tbody tr td.formmodule-column2 span[style*="color: red;"]:before {
                content: '';
                display: block;
                position: absolute;
                top: -6px;
                left: 8px;
                height: 10px;
                width: 10px;
                background: #E63A3A;
                border-top: 1px solid #ce2233;
                border-left: 1px solid #ce2233;
                -webkit-border-top-left-radius: 2px;
                -moz-border-radius-topleft: 2px;
                border-top-left-radius: 2px;
                -webkit-transform: rotate(45deg);
                -ms-transform: rotate(45deg);
                transform: rotate(45deg); }
  .formmodule .form-bot-stopper {
    margin: 0 0 15px 0; }
    .formmodule .form-bot-stopper .form-bot-stopper-info {
      font-size: 1.15rem; }
    .formmodule .form-bot-stopper .form-bot-stopper-question {
      font-size: 0.85rem; }
      .formmodule .form-bot-stopper .form-bot-stopper-question input.form-bot-stopper-value {
        height: 32px;
        width: 40px !important;
        text-align: center;
        font-size: 16px;
        background: #fff;
        color: #222;
        border: 1px solid #dcdcdc;
        border-radius: 2px;
        padding: 4px; }
  .formmodule .formmodule-errors {
    margin: 15px 0 0 0; }
    .formmodule .formmodule-errors div {
      position: relative;
      font-size: 0.85rem;
      color: #fff !important;
      background: #e63a3a;
      border: 1px solid #ce2233;
      border-radius: 2px;
      padding: 8px;
      padding-left: 38px !important;
      -webkit-animation: shake 1s ease-out 0.3s normal 1;
      animation: shake 1s ease-out 0.3s normal 1; }
      @media (min-width: 768px) {
        .formmodule .formmodule-errors div {
          padding: 12px; } }
      .formmodule .formmodule-errors div:before, .formmodule .formmodule-errors div:after {
        content: '';
        display: block;
        position: absolute;
        top: 50%;
        left: 18px;
        height: 18px;
        width: 4px;
        margin: -9px 0 0 -2px;
        background: #fff;
        border-radius: 1px; }
      .formmodule .formmodule-errors div:before {
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg); }
      .formmodule .formmodule-errors div:after {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg); }

/* .formmodule */
.formmodule-submit input {
  font-size: 12px !important;
  padding: 10px 15px !important;
  margin: auto;
  color: #fff;
  background: #75B229;
  padding: 15px 30px;
  border-radius: 200px;
  font-weight: 300;
  display: inline-table;
  margin: 10px 15px 15px 0px;
  text-align: center;
  line-height: 130%;
  border: 0px; }
  .formmodule-submit input:hover {
    background: #029BFB;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2); }

/* ====================== FORM STYLING END ====================== */
/* ====================== Page Alert Styling ====================== */
.page-alert-wrapper {
  background: #333;
  bottom: 0px;
  filter: alpha(opacity=50);
  height: auto !important;
  left: 0px;
  opacity: 0.5;
  position: fixed;
  right: 0px;
  top: 0px;
  z-index: 1000; }

.page-alert-message {
  background-color: #029BFB;
  color: white;
  border: none;
  border-radius: 0;
  left: 50%;
  position: fixed;
  text-align: left;
  top: 25%;
  width: 400px;
  z-index: 1001;
  padding: 20px;
  margin-left: -210px; }

.page-alert-message .controls {
  margin: 1em 0 0;
  position: relative; }

input#page-alert-dismiss {
  background: #75B229;
  border: none;
  padding: 8px;
  font-size: smaller;
  height: 48px;
  width: 100px;
  border-radius: 34px; }

/* Main Search Styles */
.mainSearchPanel {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: #75B229;
  height: 100px;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999999999; }
  .mainSearchPanel.active {
    display: flex; }
  .mainSearchPanel a.close-search {
    position: absolute;
    display: block;
    font-size: 30px;
    top: calc(50% - 15px);
    right: 20px;
    color: #FFFFFF; }
  .mainSearchPanel .mainSearchField {
    background-color: rgba(255, 255, 255, 0.25);
    padding: 10px;
    width: 70%;
    border: 0;
    color: #FFFFFF;
    margin: 0 0 0 -50px; }
    .mainSearchPanel .mainSearchField::-webkit-input-placeholder {
      /* Chrome/Opera/Safari */
      color: rgba(255, 255, 255, 0.8); }
    .mainSearchPanel .mainSearchField::-moz-placeholder {
      /* Firefox 19+ */
      color: rgba(255, 255, 255, 0.8); }
    .mainSearchPanel .mainSearchField:-ms-input-placeholder {
      /* IE 10+ */
      color: rgba(255, 255, 255, 0.8); }
    .mainSearchPanel .mainSearchField:-moz-placeholder {
      /* Firefox 18- */
      color: rgba(255, 255, 255, 0.8); }
    @media screen and (min-width: 600px) {
      .mainSearchPanel .mainSearchField {
        width: 80%;
        margin: 0; } }
  .mainSearchPanel .mainSearchButton {
    border: 0;
    color: #FFFFFF;
    width: 50px;
    margin: 0 0 0 -50px;
    text-align: center; }

header.header.active {
  top: 100px !important; }

/*padding issues for links*/
section#today.home-today.planetarium
.container .section-title #planetarium div#calendar-import ul li a {
  position: relative;
  display: block;
  padding: 15px;
  width: 100%;
  height: 100%; }

section#today.home-today.planetarium
.container .section-title #planetarium div#calendar-import ul li {
  padding: 0 !important; }

/* End Main Search Styles */
