/*
* strip-unit - Unit stripper [10px = 10]
* param - $num : the value with a unit suffix, E.g: 10px
* return - $result : the value without any suffix, E.g: 10
* E.g. strip-unit(100px) = 100
*/
/*
* pxToEM - Convert PX value to EM value [100px = 6.25em]
* param - $target : the value in px without 'px' suffix, E.g: 100
* return - $result : the value in em with 'em' suffix, E.g: 6.25em
* E.g. pxToEM(100) = 6.25em
*/
/*
* u - PX and REM constrictor
* param - $property : css property, E.g: padding
* param - $values... : list of values for the property, note values are multiplied by $pixelBase, E.g.: 10, 20, 30, 40
* return - $result : the css property with values applied in pixels
* E.g. @include u(padding, 10, 20, 30, 40) = padding: 100px, 200px, 300px, 400px;
*/
/*! Global */
/* CSS Document - Author: Matt Oliver*/
@import url(https://fonts.googleapis.com/css?family=Roboto+Slab:400,%20700,%20300);
/* =============================================================================
   Base
   ========================================================================== */
body {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #445464;
  font-family: "sofia-pro-soft", sans-serif; }

::-moz-selection {
  background: #b3d76e;
  color: #fff;
  text-shadow: none; }

::selection {
  background: #b3d76e;
  color: #fff;
  text-shadow: none; }

/* =============================================================================
   Links
   ========================================================================== */
a,
a:link {
  color: #445464;
  text-decoration: none;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease; }

a:visited {
  color: #445464; }

a:hover {
  color: #8b6f4e; }

/*a:focus {outline: thin dotted;}*/
a:hover,
a:active {
  outline: 0; }

/* =============================================================================
   Typography
   ========================================================================== */
h1 {
  font-family: "Roboto Slab", Helvetica, Sans-serif;
  font-size: 48px;
  color: #445464;
  margin: 25px 0;
  line-height: 1.2;
  font-weight: 100;
  padding: 0;
  text-transform: uppercase; }

h2 {
  font-family: "Roboto Slab", Helvetica, Sans-serif;
  font-size: 36px;
  font-weight: 400;
  color: #445464;
  margin: 15px 0;
  line-height: 1.2;
  background: none;
  padding: 0;
  text-transform: uppercase; }

h3 {
  font-family: "caflisch-script-pro", sans-serif;
  font-size: 36px;
  font-weight: 400;
  color: #8b6f4e;
  margin: 15px 0;
  line-height: 1.2;
  padding: 0; }

h4,
h5,
h6 {
  font-family: "Roboto Slab", Helvetica, Sans-serif;
  font-size: 21px;
  font-weight: 400;
  color: #445464;
  margin: 25px 0;
  line-height: 1.2;
  padding: 0; }

h5 {
  font-weight: 900;
  font-size: 18px; }

h6 {
  font-size: 14px;
  font-weight: 100; }

p,
td,
li,
dd {
  font-size: 16px;
  font-weight: 100;
  line-height: 1.5; }

/* =============================================================================
   Lists
   ========================================================================== */
ul,
ol {
  margin: 1em 0;
  padding: 0 0 0 40px; }

dd {
  margin: 0 0 0 40px; }

img {
  max-width: 100%;
  height: auto;
  display: block; }

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box; }

/* =============================================================================
   Forms
   ========================================================================== */
.product-options {
  border-bottom: 1px solid #425363; }

.product-options .ldic_Filt .c2form_code {
  width: initial;
  display: inline-block;
  padding-right: 25px; }

.product-options .ldic_Filt .c2form_fieldset {
  float: none; }

.product-options .c2form_fldname {
  font-family: "Roboto Slab", Helvetica, Sans-serif;
  font-size: 36px;
  font-weight: 400;
  color: #445464;
  margin: 15px 0;
  line-height: 1.2;
  background: none;
  padding: 0;
  text-transform: uppercase; }

/* =============================================================================
   Site Structure
   ========================================================================== */
.container {
  width: 1180px;
  margin: 0 auto; }

.header .container,
.banner .container {
  position: relative; }

.nav ul li a.lev1.oneLiner,
.nav ul li span.lev1.oneLiner {
  padding: 20px 15px; }

.loader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: #dadfe1; }

@-webkit-keyframes rotating
/* Safari and Chrome */ {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg); } }

.loader:before {
  -webkit-animation: rotating 6s linear infinite;
  -moz-animation: rotating 6s linear infinite;
  -ms-animation: rotating 6s linear infinite;
  -o-animation: rotating 6s linear infinite;
  animation: rotating 6s linear infinite; }

.loader:before {
  background: url(/p/1/emblem.svg) 50% 50% no-repeat;
  width: 208px;
  height: 252px;
  display: block;
  margin: auto;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0; }

/* =============================================================================
   Menus
   ========================================================================== */
.nav ul li {
  float: left; }

.nav ul li a,
.nav ul li span {
  padding: 15px 10px;
  font-weight: 100;
  font-size: 15px;
  font-family: "Roboto Slab", Helvetica, Sans-serif; }

.nav ul li a.last,
.nav ul li span.last {
  padding-right: 0;
  margin-right: 50px; }

.nav ul.lev2 {
  display: none; }

.nav ul.lev3 {
  display: none; }

.nav ul li.lev2 {
  float: left;
  width: 50%; }

.nav ul li ul.lev2:before {
  width: 100%;
  content: "";
  position: absolute;
  top: -14px;
  height: 9px;
  background: none;
  left: 0; }

.nav ul li ul.lev2 {
  display: block;
  opacity: 0;
  visibility: hidden;
  margin: 0;
  left: 0;
  position: absolute;
  right: auto;
  left: -140px;
  padding: 20px 0;
  padding-left: 180px;
  width: 550px;
  height: 165px;
  top: 84px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
  border-top: 5px solid #8b6f4e;
  z-index: 2;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease; }

.nav ul li:hover ul.lev2 {
  /* display:block; */
  opacity: 1;
  visibility: visible; }

.nav li ul.lev2 li a:hover {
  color: #000; }

.nav li.lev1 {
  position: relative; }

.nav li ul.lev2 li a,
.nav li ul.lev2 li span {
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-align: left;
  display: block;
  width: 100%;
  padding: 7px 0px;
  font-size: 12px;
  color: #111;
  font-weight: 100; }

.nav li ul.lev2 li a:hover,
.nav li ul.lev2 li span {
  color: #8b6f4e;
  padding-left: 3px; }

/* Dropdowns */
.nav ul.lev2 {
  background-repeat: no-repeat;
  background-position: 0px 0px;
  background-size: 160px; }

.nav li ul.lev2:after {
  min-height: 297px;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 890px; }

.nav ul li.lev2:after {
  content: "";
  width: 60px;
  height: 1px;
  background: #9a7f46;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto; }

.nav ul.lev3 {
  display: none; }

.nav ul li a.lev1,
.nav ul li span.lev1 {
  padding: 20px 15px;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  display: block;
  text-align: center;
  border-left: 1px solid #dadfe1;
  min-height: 62px;
  position: relative;
  width: 140px; }

.nav ul li span.lev1,
.nav ul li a.lev1:hover {
  border-color: #8b6f4e;
  background: #8b6f4e;
  color: #fff; }

.nav ul li span.lev1:before,
.nav ul li a.lev1:before {
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 15px solid #fff;
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  margin: auto; }

.nav ul li span.lev1:before,
.nav ul li a.lev1:hover:before {
  border-top-color: #8b6f4e; }

.sticky .nav ul li span.lev1:before,
.sticky .nav ul li a.lev1:before {
  border-top-color: #425363; }

.sticky .nav ul li span.lev1:hover:before,
.sticky .nav ul li a.lev1:hover:before {
  border-top-color: #8b6f4e; }

.nav li.lev1 ul.lev2:after {
  content: " ";
  width: 140px;
  height: 140px;
  position: absolute;
  top: 15px;
  background-repeat: no-repeat;
  left: 17px; }

.nav li.lev1.explore ul.lev2:after {
  background-image: url("/p/1/2018-08-15_Menu_explore-image.png"); }

.nav li.lev1.planvisit ul.lev2:after {
  background-image: url("/p/1/2018-08-15_Menu_planvisit-image.png"); }

.nav li.lev1.info ul.lev2:after {
  background-image: url("/p/1/2018-08-15_Menu_info-image.png"); }

.nav li.lev1.visitorinfo ul.lev2:after {
  background-image: url("/p/1/2018-08-15_Menu_about-image.png"); }

.nav li.lev1.thingstodo ul.lev2:after {
  background-image: url(/p/1/thingstodo.jpg); }

.nav li.lev1.forfamilies ul.lev2:after {
  background-image: url(/p/1/families.jpg); }

.nav li.lev1.aboutus ul.lev2:after {
  background-image: url(/p/1/kioskcta.jpg); }

.nav li.lev1.history ul.lev2:after {
  background-image: url(/p/1/history.jpg); }

.nav li.lev1.downloads ul.lev2:after {
  background-image: url(/p/1/downloads.jpg); }

.standard #section03a img {
  width: 100%; }

/* =============================================================================
   Other Classes
   ========================================================================== */
.hide {
  display: none; }

#heading {
  padding: 0;
  background: #8d6f4d; }

#heading h1 {
  color: #fff; }

#bookNow {
  padding: 0;
  background: transparent; }

.standard #section02 {
  padding: 0;
  background: #dadfe1; }

#section03a {
  padding: 0; }

.inner_container {
  width: 80%;
  max-width: 920px;
  margin: 0 auto; }

.bannerText {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  width: 80%;
  height: 260px;
  display: block;
  margin: auto;
  max-width: 920px;
  padding: 20px 25px; }

.bannerText h2 {
  font-family: "caflisch-script-pro", sans-serif;
  font-weight: 100;
  text-transform: initial; }

.decoration {
  position: relative;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid #dadfe1;
  border-bottom: 1px solid #dadfe1;
  padding: 25px 0; }

.decoration:before {
  content: "";
  width: 50px;
  height: 60px;
  display: block;
  background: url(/p/1/emblem.svg);
  background-size: cover;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -35px; }

.centralBox {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #8b6f4e;
  width: 80%;
  max-width: 520px;
  padding: 20px 25px;
  height: 210px;
  display: block;
  margin: auto;
  text-align: center; }

.centralBox h3 {
  color: #fff;
  margin-top: 0; }

.cta_style {
  position: relative;
  cursor: pointer;
  padding: 15px 0px; }

.cta_style h3 a {
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  color: #fff;
  padding: 12px 10px;
  font-size: 21px;
  text-transform: uppercase;
  font-family: "Roboto Slab", Helvetica, Sans-serif;
  text-align: center;
  display: block;
  background: #768591;
  margin-top: 30px;
  position: relative;
  bottom: 0; }

.cta_style h3 {
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  margin: 0; }

.cta_style h3 a:before {
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 20px solid #768591;
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  margin: auto; }

.cta_style img {
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  border: 10px solid #fff; }

.cta_style:hover h3 a {
  bottom: 30px;
  background: #425363; }

.cta_style:hover img {
  border-color: #425363; }

.cta_style:hover h3 a:before {
  border-bottom-color: #425363; }

.cta_style:hover img {
  border-color: #768591;
  opacity: 0.85; }

.certified {
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  width: 20%;
  padding: 10px 0;
  float: left;
  position: relative;
  margin: 0%; }

.certified img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  height: 100%;
  width: auto;
  display: block; }

.bookNow a {
  color: #fff;
  background: #445464;
  padding: 20px 30px;
  position: absolute;
  bottom: 0;
  right: 0;
  text-transform: uppercase;
  font-size: 27px;
  font-family: "Roboto Slab", Helvetica, Sans-serif; }

.bookNow a:hover {
  background: #768591;
  /* padding: 30px 30px; */
  padding-bottom: 40px; }

img.footerLogo {
  float: left;
  width: 250px;
  margin-bottom: 25px;
  clear: both;
  display: block; }

.buttonGold a,
.buttonBlue a {
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  padding: 8px 17px;
  background: #8b6f4e;
  text-transform: uppercase;
  display: inline-block;
  color: #fff;
  font-family: "Roboto Slab";
  font-weight: 600;
  font-size: 16px; }

.buttonBlue a {
  font-size: 25px;
  background: #445464;
  font-weight: initial; }

.buttonGold a:hover {
  background: #c7b9ab; }

.buttonBlue a:hover {
  background: #768591; }

.buttonCTA {
  text-align: center;
  margin-bottom: 0;
  position: absolute;
  bottom: 0px;
  left: 41%;
  left: 50%;
  transform: translate(-50%, -120%); }

.sliderContainer .caption .sliderBtn {
  text-align: center;
  margin-bottom: 0; }

.standard .buyNow {
  margin-top: 104px;
  background: #445464; }

.standard .buyNow .buttonCTA {
  float: none;
  position: relative;
  left: 0;
  transform: none; }

.standard .buyNow .buttonCTA a:hover {
  background: #445464;
  text-decoration: underline; }

.footer .col-1-3.alpha,
.footer .col-1-3.omega {
  border: 0; }

.footer .col-1-3 {
  border-left: 1px solid #8b6f4e;
  border-right: 1px solid #8b6f4e; }

.copyright {
  color: #fff;
  float: left;
  font-weight: 100;
  font-family: "Roboto Slab", Helvetica, Sans-serif; }

.intergage {
  float: right;
  color: #fff;
  font-family: "Roboto Slab", Helvetica, Sans-serif; }

a.scrollArrow.smoothScroll {
  background-color: #fff;
  width: 48px;
  height: 48px;
  display: block;
  position: relative;
  float: left;
  display: inline-block;
  margin: 25px 0px;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  top: 0; }

a.scrollArrow.smoothScroll:before {
  font-size: 48px;
  color: #111;
  display: block;
  content: ">";
  position: absolute;
  top: -8px;
  left: 16px;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  font-weight: 900;
  text-align: center;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg); }

a.scrollArrow.smoothScroll:hover:before {
  color: #fff; }

a.scrollArrow.smoothScroll:hover {
  background-color: #8b6f4e;
  top: 10px; }

/* Template widths */
.col-2-3 {
  width: 65.666%;
  margin: 1.666%;
  float: left; }

.col-1-3 {
  width: 31.333%;
  margin: 1.333%;
  float: left; }

.col-1-2 {
  width: 48%;
  margin: 1% 2%;
  float: left; }

.col-1-4 {
  width: 23.5%;
  margin: 1%;
  float: left; }

.col-1-8 {
  width: 10.5%;
  margin: 1%;
  float: left; }

.alpha {
  margin-left: 0 !important; }

.omega {
  margin-right: 0 !important; }

/* hide the link until viewport size is reached */
a.meanmenu-reveal {
  display: none; }

/* when under viewport size, .mean-container is added to body */
.mean-container .mean-bar {
  float: left;
  width: 100%;
  position: absolute;
  left: 0;
  padding: 0px 0;
  height: 50px;
  top: 0;
  /* background: #8eabb8; */
  z-index: 999;
  top: 0; }

.mean-container a.meanmenu-reveal {
  width: 30px;
  height: 28px;
  padding: 10px 10px 10px 10px;
  position: absolute;
  top: 0px;
  left: 235px !important;
  right: 0px !important;
  cursor: pointer;
  text-decoration: none;
  font-size: 24px;
  text-indent: -9999em;
  line-height: 32px;
  font-size: 1px;
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 100; }

.mean-container a.meanmenu-reveal span {
  display: block;
  background: #445464;
  height: 2px;
  margin-top: 7px; }

.mean-container .mean-nav {
  float: left;
  width: 100%;
  background: #999;
  margin-top: 44px; }

.mean-container .mean-nav ul {
  padding: 0;
  margin: 0;
  width: 100% !important;
  list-style-type: none;
  position: relative !important; }

.mean-container .mean-nav ul li {
  position: relative;
  float: left;
  width: 100%; }

.mean-container .mean-nav ul li.mean-last a {
  border-bottom: none;
  margin-bottom: 0; }

.mean-container .mean-nav ul li li li a {
  width: 80%;
  padding: 5px 10%;
  background: #ccc !important;
  color: #333;
  border-bottom: 1px solid #bbb;
  font-size: 12px; }

.mean-container .mean-nav ul li li li li a {
  width: 60%;
  padding: 5px 20%;
  background: #ddd !important;
  border-bottom: 1px solid #bbb; }

.mean-container .mean-nav ul li li li li li a {
  width: 50%;
  padding: 1em 25%; }

.mean-container .mean-nav ul li a:hover {
  color: #fff;
  background: #8b6f4e !important; }

.mean-container .mean-nav ul li a.mean-expand {
  width: 30px;
  height: 30px;
  line-height: 1;
  padding: 6px !important;
  text-align: center;
  position: absolute;
  right: 4px;
  top: 5px;
  z-index: 2;
  background: #999;
  border: none !important;
  margin-top: 0px;
  color: #fff;
  font-weight: 100;
  font-size: 17px !important; }

.mean-container .mean-nav ul li a.mean-expand:hover {
  background: #8b6f4e; }

.mean-container .mean-push {
  float: left;
  width: 100%;
  padding: 0;
  margin: 0;
  clear: both; }

.mean-container .mean-nav ul li a,
.mean-container .mean-nav ul li span {
  display: block;
  float: left;
  width: 100%;
  padding: 7px 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -ms-sizing: border-box;
  margin: 0;
  text-align: center;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  /* text-transform:uppercase; */
  font-weight: 400;
  border-bottom: 1px solid #777;
  font-family: "Roboto Slab", Helvetica, Sans-serif;
  font-weight: 400;
  background: none;
  text-transform: uppercase; }

.mean-nav .wrapper {
  width: 100%;
  padding: 0;
  margin: 0; }

.mean-container .mean-nav ul li span {
  background: #555 !important;
  font-weight: 600;
  color: #fff; }

.mean-container .mean-nav {
  margin-top: 68px;
  overflow: hidden; }

/* Fix for box sizing on Foundation Framework etc. */
.mean-container .mean-bar,
.mean-container .mean-bar * {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box; }

.mean-remove {
  display: none !important; }

.mean-container .mean-nav ul li a.lev2,
.mean-container .mean-nav ul li span.lev2 {
  padding: 3px 0%;
  font-size: 12px;
  /* text-transform: uppercase; */
  border: 0;
  font-weight: 100;
  border-bottom: 1px solid #999; }

.mean-container .mean-nav ul li.lev2 {
  border-top: 0px solid #aaa; }

.stuck .mean-container a.meanmenu-reveal span {
  background: #fff; }

.stuck .mean-container a.meanmenu-reveal {
  color: #fff; }

.mean-container .mean-nav ul li.lev1 {
  background: #445464; }

.mean-container .mean-nav ul li.lev2 {
  background: #aaa; }

.mean-container .mean-nav ul li.lev2 a.mean-expand {
  width: 13px;
  height: 6px;
  line-height: 0.5; }

.mean-container a.meanmenu-reveal:after {
  content: "Menu";
  position: absolute;
  top: 12px;
  left: 50px;
  font-family: "Roboto Slab", Helvetica, Sans-serif;
  font-size: 15px;
  color: #445464;
  font-weight: 100;
  margin: 0;
  padding: 0;
  text-transform: uppercase; }

.video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden; }

.video iframe,
.video object,
.video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.header {
  position: relative;
  z-index: 99999;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease; }

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: #fff;
  padding: 20px 0; }

.top-section {
  background: #f2f2f2;
  padding: 0 15px;
  text-align: right; }

.top-section a {
  margin-right: 25px;
  color: #b3b1b1; }

.top-section p {
  font-size: 11px;
  margin: 7px 0px; }

.header_section {
  float: left;
  width: 100%;
  padding: 15px 15px;
  padding-bottom: 0px;
  position: relative;
  background: #fff;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease; }

.menu {
  display: inline-block;
  vertical-align: top; }

.logo {
  width: 250px;
  margin-top: -10px;
  position: relative;
  display: inline-block;
  vertical-align: top; }

.logo img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease; }

.sticky .logo img.light {
  opacity: 0; }

.sticky .logo img.dark {
  opacity: 1; }

.logo img.dark {
  opacity: 0; }

.logo img.light {
  opacity: 1; }

.header.sticky {
  background: #425363; }

.sticky .nav ul li a.lev1,
.sticky .nav ul li span.lev1 {
  color: #fff;
  border-color: #768591; }

.search_box {
  display: none; }

.home .banner {
  top: 0;
  position: relative; }

/*.banner img {
    position: fixed;
    top: 82px;
    z-index: -1;
    width: 100%
}*/
.banner .bxslider li {
  max-height: 777px;
  overflow: hidden; }

.caption {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  width: 100%;
  padding: 20px 25px;
  max-width: 920px;
  width: 80%;
  background: rgba(0, 0, 0, 0.4);
  font-size: 42px; }

.caption h2 {
  font-family: "caflisch-script-pro", sans-serif;
  font-weight: 100;
  text-transform: initial; }

.banner h1,
.banner h2 {
  color: #fff;
  margin: 20px 0;
  text-align: center; }

.mainIcon {
  float: left;
  background-color: #445464;
  width: 125px;
  margin: 5px;
  padding: 20px; }

.mainIcon:first-child {
  margin-left: 0; }

.mainIcon:last-child {
  margin-right: 0; }

.mainIcon a {
  color: #fff;
  font-size: 17px;
  font-weight: 100;
  text-align: center;
  width: 100%;
  display: block; }

.mainIcon h3 {
  margin: 0; }

.section {
  position: relative;
  background-color: #fff;
  float: left;
  width: 100%;
  padding: 75px 0px; }

.home #section02 {
  background: #8b6f4e; }

#section02 h2 {
  /* margin-top: 0; */ }

#section03 {
  background-color: #dadfe1;
  overflow: hidden;
  padding: 0; }

#section03 .container {
  padding: 70px 0;
  position: relative; }

#section04 {
  background: #445464;
  padding: 0; }

#section04 .container {
  -webkit-transition: all 2s ease;
  -moz-transition: all 2s ease;
  -o-transition: all 2s ease;
  transition: all 2s ease; }

#section04 h2 {
  margin: 0;
  padding: 0;
  margin: 10px 0px;
  font-size: 22px; }

#section04 h2 a {
  color: #fff;
  font-weight: 500;
  position: relative;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }

#section04:hover .container {
  background-position: 100% 5%; }

.landing #section01 {
  background: #fff; }

.container:empty {
  padding: 0 !important; }

.footer {
  float: left;
  width: 100%;
  background-color: #425363;
  padding: 50px 0; }

.footer h3 {
  text-transform: uppercase;
  margin: 0;
  font-family: "Roboto Slab", Helvetica, Sans-serif;
  color: #fff;
  font-size: 21px; }

.footer p {
  color: #fff;
  clear: both; }

.foot {
  float: left;
  width: 100%;
  background: #8b6f4e;
  padding: 10px 0; }

p.copyright a {
  font-weight: 900; }

.foot p {
  color: #fff;
  font-size: 13px; }

.foot a {
  color: #fff;
  font-family: "Roboto Slab", Helvetica, Sans-serif; }

.footlinks {
  float: left; }

p.copyright {
  float: right;
  text-align: right; }

.footlinks a {
  margin-right: 20px; }

.fotorama__thumb-border {
  border-color: #8b6f4e !important; }

.orangeBtn a {
  background: #8b6f4e;
  color: #fff;
  text-transform: uppercase;
  padding: 6px 12px;
  font-family: "Roboto Slab";
  font-weight: 900;
  display: inline-block; }

.blueBtn a {
  background: #445464;
  color: #fff;
  text-transform: uppercase;
  padding: 6px 12px;
  font-family: "Roboto Slab";
  font-weight: 900;
  display: inline-block; }

.header .top-section {
  height: 29px;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease; }

.header.fixed .top-section {
  height: 0; }

.landing .banner,
.standard .banner {
  /* padding-top: 27.5%; */ }

.arrowBtn a {
  background-color: #8b6f4e;
  font-size: 12px;
  padding: 7px 15px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  font-family: "Roboto Slab", Helvetica, Sans-serif;
  display: inline-block;
  position: relative;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }

.arrowBtn a:after {
  background-color: #445464;
  width: 30px;
  height: 30px;
  display: block;
  content: "";
  position: absolute;
  right: -35px;
  top: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }

.arrowBtn a:before {
  content: ">";
  position: absolute;
  right: -27px;
  top: -5px;
  color: #fff;
  z-index: 1;
  font-size: 27px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }

.arrowBtn a:hover:after {
  right: -32px;
  background-color: #8b6f4e; }

.arrowBtn a:hover:before {
  right: -23px;
  color: #445464; }

.arrowBtn a:hover {
  background-color: #445464;
  margin-left: 10px; }

.LocatorText a,
.LocatorSeparator,
.LocatorText {
  color: #425363;
  font-family: "Roboto Slab", Helvetica, Sans-serif;
  font-weight: 100;
  font-size: 15px; }

.breadcrumbs {
  background: #445464;
  padding: 7px 0;
  float: left;
  width: 100%; }

.cta {
  position: relative;
  float: left;
  cursor: pointer;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  overflow: hidden;
  display: block; }

.mainRight .cta {
  margin-top: 2%;
  margin-bottom: 2%; }

.cta h3 {
  margin: 0;
  font-size: 18px; }

.cta h3 a {
  font-family: "Roboto Slab", Helvetica, Sans-serif;
  display: block;
  position: absolute;
  bottom: 0;
  border-bottom: 5px solid;
  display: block;
  width: 100%;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.8);
  margin: 0;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease; }

.cta h3 a:hover {
  color: #445464; }

.cta:hover h3 a {
  color: #8b6f4e;
  padding: 20px 12px; }

.cta img {
  -webkit-transition: all 2s ease;
  -moz-transition: all 2s ease;
  -o-transition: all 2s ease;
  -ms-transition: all 2s ease;
  transition: all 2s ease;
  max-width: 100%;
  height: auto;
  width: 100%;
  display: block; }

.cta:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  opacity: 0.85; }

.products .mainRight p:first-child {
  margin-top: 35px; }

.landing .mainRight p:first-child {
  margin-top: 75px; }

.landing #section05 {
  padding-top: 0; }

#section04 {
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease; }

.social {
  float: left;
  max-width: 300px; }

.smIcon {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: #8b6f4e;
  width: 80px;
  height: 30px;
  display: block;
  float: left;
  margin-bottom: 0;
  position: relative;
  border-left: 1px solid #fff; }

.smIcon:before {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-family: fontawesome;
  font-size: 26px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: auto;
  display: block;
  height: 37px;
  text-align: center;
  color: #fff; }

a.smIcon:hover {
  color: #445464; }

.smIcon:hover:before {
  color: #445464;
  font-size: 38px;
  top: -13px; }

.facebook:before {
  content: "\f09a"; }

.twitter:before {
  content: "\f099"; }

.linkedin:before {
  content: "\f0e1"; }

.google:before {
  content: "\f0d5"; }

.pinterest:before {
  content: "\f231"; }

.youtube:before {
  content: "\f167"; }

.vimeo:before {
  content: "\f194"; }

.instagram:before {
  content: "\f16d"; }

.flickr:before {
  content: "\f16e"; }

/*
  .facebook:hover {background-color:#4d70a8;}
  .twitter:hover {background-color:#00bbf2;}
  .linkedin:hover {background-color:#1687b1;}
  .google:hover {background-color:#e3401d;}
  .pinterest:hover {background-color:#cb3737;}
  .youtube:hover {background-color:#bb0000;}
  .vimeo:hover {background-color:#aad34f;}
  .instagram:hover {background-color:#517fa4;}
*/
/* Search */
.searchButton {
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  display: block;
  float: right;
  cursor: pointer;
  position: absolute;
  z-index: 999;
  top: -20px;
  right: 0;
  opacity: 1;
  padding: 30px 30px;
  color: #445464;
  font-weight: 100;
  font-size: 28px;
  text-align: right;
  background: #dadfe1; }

.searchButton:hover {
  opacity: 0.8; }

.search_box {
  z-index: 9999999999999;
  display: none;
  position: absolute;
  right: 0px;
  padding: 0px;
  background: #808080;
  top: 84px;
  padding-right: 0;
  padding-top: 0;
  opacity: 1;
  border-top: 1px solid #ddd; }

.scbtn,
.sbtn {
  opacity: 0.8; }

.scbtn:hover,
.sbtn:hover {
  opacity: 1; }

.sbtn {
  opacity: 1;
  position: absolute;
  right: 0;
  top: 0;
  padding: 10px 20px !important;
  background: #445464 !important;
  color: #fff;
  border: 0;
  cursor: pointer;
  margin: 0 !important; }

.searchBoxInput {
  box-shadow: none;
  background: #dedede;
  width: 215px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 9px 15px;
  border: 1px solid #ddd;
  margin-right: 99px;
  font-weight: 100;
  font-size: 15px;
  font-family: "Roboto Slab", Helvetica, Sans-serif; }

.searchBoxInput:hover,
.searchBoxInput:focus {
  width: 335px;
  background: #fff; }

.top-section strong {
  color: #445464; }

.top-section a:hover {
  color: #8b6f4e; }

/* Tabs */
.igtab {
  color: #445464;
  font-family: "Roboto Slab", Helvetica, Sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
  padding: 12px 25px;
  margin-right: 2px;
  cursor: pointer;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border: 0;
  background: #eee;
  border-bottom: 4px solid #445464; }

.igtabselect {
  color: #445464;
  font-family: "Roboto Slab", Helvetica, Sans-serif;
  font-size: 20px;
  font-weight: 600;
  padding: 10px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-color: #ddd; }

.igtabheader {
  float: left;
  margin: 0; }

.igcurtab,
.igcurtab:hover {
  background: #445464;
  color: #fff !important;
  border-color: #8b6f4e; }

.igcurtabarea,
.igcurtabarea:hover {
  background: #fff;
  border: 1px solid #eee !important;
  color: #787878 !important;
  font-weight: 100; }

.igtab:hover {
  color: #8b6f4e;
  border-color: #8b6f4e; }

.igtabitem_jq {
  float: left;
  width: 100%;
  display: block;
  position: relative; }

.igtabheading {
  width: 33.333%;
  box-sizing: border-box;
  margin: 0;
  border-right: 1px solid #fff !important; }

.igtabheader {
  float: left;
  width: 100%;
  text-align: center; }

.fullWidthSection {
  width: 100%;
  float: left;
  margin: 15px 0;
  position: relative; }

.fullWidthSection:empty {
  margin: 0; }

#nav {
  padding-right: 35px; }

.cta p {
  position: absolute;
  color: #fff;
  padding: 20px;
  top: 0;
  margin: 0;
  z-index: 1; }

#train {
  background: url(/p/1/moving_train.png);
  display: block;
  width: 223px;
  height: 70px;
  background-size: cover;
  position: absolute;
  bottom: 0;
  right: 0; }

.footer {
  position: relative; }

.animatedTrain {
  -webkit-animation: train-move 1s 1s ease-out forwards;
  animation: train-move 1s 1s ease-out forwards;
  -ms-animation: train-move 1s 1s ease-out forwards;
  -moz-animation: train-move 1s 1s ease-out forwards;
  -o-animation: train-move 1s 1s ease-out forwards;
  animation-duration: 60s;
  -webkit-animation-duration: 60s;
  -ms-animation-duration: 60s;
  -o-animation-duration: 60s;
  -moz-animation-duration: 60s; }

.animatedTrain.goRight {
  -moz-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  filter: FlipH;
  -ms-filter: "FlipH";
  left: -225px;
  -webkit-animation: goBack 1s 1s ease-out forwards;
  animation: goBack 1s 1s ease-out forwards;
  -ms-animation: goBack 1s 1s ease-out forwards;
  -moz-animation: goBack 1s 1s ease-out forwards;
  -o-animation: goBack 1s 1s ease-out forwards;
  animation-duration: 60s;
  -webkit-animation-duration: 60s;
  -ms-animation-duration: 60s;
  -o-animation-duration: 60s;
  -moz-animation-duration: 60s; }

#train:after {
  animation-name: pulse;
  -webkit-animation-name: pulse;
  animation-duration: 3s;
  -webkit-animation-duration: 3s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  background: url(/p/1/train_after.png);
  width: 110px;
  height: 30px;
  content: "";
  display: block;
  background-size: cover;
  position: absolute;
  left: 7px;
  top: 0px; }

@-webkit-keyframes train-move {
  100% {
    right: 100%; } }

@keyframes train-move {
  100% {
    right: 100%; } }

@-moz-keyframes train-move {
  100% {
    right: 100%; } }

@-ms-keyframes train-move {
  100% {
    right: 100%; } }

@-o-keyframes train-move {
  100% {
    right: 100%; } }

@-webkit-keyframes goBack {
  100% {
    left: 100%; } }

@keyframes goBack {
  100% {
    left: 100%; } }

@-moz-keyframes goBack {
  100% {
    left: 100%; } }

@-ms-keyframes goBack {
  100% {
    left: 100%; } }

@-o-keyframes goBack {
  100% {
    left: 100%; } }

/*
==============================================
pulse
==============================================
*/
.pulse {
  animation-name: pulse;
  -webkit-animation-name: pulse;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite; }

@keyframes pulse {
  0% {
    transform: scale(0.6);
    opacity: 0.6;
    transform: translateY(0%) rotate(-4deg); }
  50% {
    transform: scale(1);
    opacity: 1;
    transform: translateY(8%) rotate(4deg); }
  100% {
    transform: scale(0.6);
    opacity: 0.6;
    transform: translateY(0%) rotate(-4deg); } }

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.65);
    opacity: 0.6;
    transform: translateY(0%) rotate(-4deg); }
  50% {
    -webkit-transform: scale(1);
    opacity: 1;
    transform: translateY(8%) rotate(4deg); }
  100% {
    -webkit-transform: scale(0.65);
    opacity: 0.6;
    transform: translateY(0%) rotate(-4deg); } }

/*  ----------------------------------------------------------------
  MaxCycle (Fullscreen Slideshow for use with jQuery Cycle Plugin)
  ----------------------------------------------------------------

  Demo at: http://www.aaronvanderzwan.com/maxcycle/
  Download and Info at: http://github.com/akv2/MaxCycle---jQuery-Plugin/
  Copyright (c) 2007-2011 Aaron Vanderzwan
  Dual licensed under the MIT and GPL licenses.

*/
/*! Version: 2.0.73 (12-Oct-2012) */
.mc-hide-scrolls {
  overflow: hidden; }

body .mc-cycle {
  height: 100%;
  left: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: -1; }

div.mc-image {
  -webkit-transition: opacity 1s ease-in-out;
  -moz-transition: opacity 1s ease-in-out;
  -o-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 100%;
  overflow: hidden;
  width: 100%; }

.mc-old-browser .mc-image {
  overflow: hidden; }

#maximage {
  position: fixed !important; }

/* Side Navigation */
.side-nav ul li a,
.side-nav ul li span {
  background: #768591;
  /* background-color: #8B6F4E; */
  font-size: 12px;
  padding: 7px 15px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 100;
  font-family: "roboto slab";
  position: relative;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin-bottom: 1px; }

.side-nav ul li a:before,
.side-nav ul li span:before {
  top: -5px;
  z-index: 1;
  font-size: 27px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  content: "";
  position: absolute;
  bottom: -7px;
  left: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 15px solid #768591; }

.side-nav ul li a:after,
.side-nav ul li span:after {
  /* background-color: #bbb; */
  /* width: 30px; */
  /* height: 30px; */
  /* display: block; */
  /* content: ''; */
  position: absolute;
  right: -30px;
  top: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }

#side-nav {
  margin-top: 10px;
  width: 100%; }

.side-nav ul li a:hover,
.side-nav ul li span {
  background-color: #425363;
  color: #fff;
  padding-left: 20px; }

.side-nav ul li a:hover:after,
.side-nav ul li span:after {
  /* right: -35px; */
  /* background-color: #445464; */ }

.side-nav ul li a:hover:before,
.side-nav ul li span:before {
  border-right: 15px solid #425363;
  left: -15px; }

.side-nav ul li a:hover {
  background-color: #8b6f4e; }

.side-nav ul li a:hover:before {
  border-right-color: #8b6f4e; }

/* ---- Masonry Styles ----- */
.news-item {
  width: 370px;
  margin-bottom: 35px;
  box-sizing: border-box;
  float: left;
  background: #f9f9f9;
  border: 0px solid #8b6f4e; }

.news-item h2 {
  position: absolute;
  top: 0;
  left: 0px;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
  background: #8b6f4e;
  background: #425363;
  padding: 10px 15px;
  text-align: center;
  color: #fff;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #fff;
  font-weight: 900;
  font-size: 17px; }

.news-item img {
  max-width: 100%;
  width: 100%;
  height: auto;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  /*-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	filter: grayscale(100%);
	filter: gray;
	-webkit-filter: grayscale(100%);*/ }

.news-item:hover h2 {
  background: #8b6f4e;
  color: #fff;
  margin-top: 15px; }

.news-item {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  /* border: 2px solid #ccc; */ }

.news-item:hover {
  border-color: #8b6f4e; }

.news-results .news_image {
  width: 100%;
  max-height: 100%; }

.news-results.clearfix {
  float: left;
  width: 100%;
  margin-top: 25px; }

.summary {
  position: absolute;
  bottom: 0;
  background: #dadfe1;
  padding: 0px 20px;
  padding-bottom: 40px;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  width: 100%;
  min-height: 135px;
  font-weight: 100; }

.summary:after {
  content: "Read More";
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  text-align: center;
  padding: 8px 0px;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  background: #c7b9ab;
  text-transform: uppercase;
  display: inline-block;
  color: #555;
  font-family: "Roboto Slab";
  font-weight: 600;
  font-size: 16px;
  border: 0px solid; }

.news-item:hover .summary:after {
  background: #8b6f4e;
  padding: 20px 0;
  color: #fff; }

.news-item:hover .summary {
  padding-bottom: 60px;
  background: #c7b9ab; }

.summary p {
  font-size: 13px;
  font-weight: 100;
  font-family: "Roboto Slab";
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  color: #111; }

.news-item:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  /*filter: none;
	-webkit-filter: grayscale(0%);*/ }

a.button {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: #445464;
  margin: 0px 3px;
  color: #fff;
  text-transform: uppercase;
  padding: 6px 12px;
  font-family: Raleway;
  font-weight: 900;
  display: inline-block; }

a.button:first-child {
  margin-left: 0; }

a.button:hover {
  background: #8b6f4e; }

.prodButtons {
  position: relative;
  float: left;
  margin: 25px 0px;
  margin-top: 15px; }

.c2form_box input[type="text"],
.c2form_box input[type="password"],
.c2form_box textarea,
.c2form_zero input[type="text"],
.c2form_zero input[type="password"],
.c2form_zero textarea {
  max-width: 100%;
  padding: 12px 15px;
  background: #dadfe1;
  border: 0;
  margin: 5px 0;
  width: 100%;
  font-weight: 100;
  font-size: 15px;
  font-family: "Roboto Slab", Helvetica, Sans-serif; }

.c2form_zero input,
.c2form_zero textarea {
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease; }

.c2form_zero input:focus,
.c2form_zero textarea:focus {
  background: #8d6f4d;
  color: #fff; }

.c2form_zero input:hover,
.c2form_zero textarea:hover {
  background: #c7b9ab; }

.c2form_zero input:focus:hover,
.c2form_zero textarea:focus:hover {
  background: #8d6f4d; }

input.button {
  cursor: pointer;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  padding: 8px 17px;
  background: #8b6f4e;
  text-transform: uppercase;
  display: inline-block;
  color: #fff;
  font-family: "Roboto Slab";
  font-weight: 600;
  font-size: 16px;
  border: 0;
  margin: 7px 7px; }

/* Search Results */
.search-results {
  float: left;
  width: 100%;
  position: relative;
  margin-top: 25px; }

a.search-item {
  float: left;
  width: 100%;
  margin: 15px 0;
  position: relative;
  margin-bottom: 0;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
  text-align: left; }

.search_number {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px;
  background: #445464;
  color: #fff;
  line-height: 15px;
  text-align: center;
  font-family: Raleway, Helvetica, Sans-serif;
  font-size: 20px;
  font-weight: 600; }

.news_image {
  width: 20%;
  float: left;
  margin-right: 25px;
  max-height: 175px;
  overflow: hidden; }

.search_container .search-item h2 {
  margin-top: 0;
  margin-left: 45px;
  font-size: 22px;
  line-height: 1.5;
  color: #445464;
  text-align: left; }

a.search-item:hover h2 {
  color: #8b6f4e; }

a.search-item:hover .search_number {
  background: #8b6f4e; }

.searchResultContainer input,
.searchResultContainer select {
  padding: 10px;
  border: 1px solid #ddd;
  color: #333;
  margin: 0px 10px;
  margin-right: 0;
  height: 40px; }

.search_container h2 {
  color: #8b6f4e;
  font-size: 23px;
  margin: 0;
  margin-top: 25px; }

a.search-item:last-child {
  /*border-bottom: 0;*/ }

.search_text {
  float: left;
  margin: 15px 0px;
  margin-bottom: 0;
  text-align: left; }

a.search-item.downloads {
  background: #ddd;
  height: 35px; }

a.search-item.downloads:hover h2,
a.search-item.downloads:hover {
  color: #fff;
  background: #8b6f4e; }

span.theButton {
  position: absolute;
  right: 0;
  bottom: 0px;
  margin: auto;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  padding: 8px 17px;
  background: #8b6f4e;
  background: #dadfe1;
  text-transform: uppercase;
  display: inline-block;
  font-family: "Roboto Slab";
  font-weight: 600;
  font-size: 15px;
  color: #555; }

a.search-item:hover span.theButton {
  background: #8b6f4e;
  color: #fff; }

.PageLinksContainer {
  float: left; }

.PageLinksContainer > span {
  margin-right: 5px;
  padding: 5px 10px;
  background: #445464;
  color: #fff; }

.PageLinksContainer > span a {
  color: #fff;
  font-weight: 900; }

span.PageLinkCurrent {
  background: #8b6f4e; }

span.PageLinks.PageLinksResponsive {
  margin-right: 0;
  background: none;
  display: none; }

.news-main span.theButton {
  position: relative;
  margin-top: 5px;
  float: left; }

.c2ssmatch {
  color: #8b6f4e;
  font-weight: bold; }

#section03:before {
  background-image: url(/p/1/bg_pattern.svg);
  background-repeat: no-repeat;
  content: "";
  width: 700px;
  height: 700px;
  display: block;
  position: absolute;
  top: -10%;
  left: -10%;
  opacity: 0.35; }

#section03 .fullWidthSection {
  margin: 0; }

#section03 h2 {
  margin-top: 0;
  width: 275px;
  margin: 0 auto;
  margin-bottom: 25px;
  display: block; }

#section03 h2:before {
  height: 0px;
  background: #8d6f4d;
  width: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 20px;
  left: 0; }

.home #section04,
.home #section02 {
  height: 500px;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover; }

ul.socialIcons li {
  float: left;
  list-style: none; }

ul.socialIcons {
  margin: 0; }

.centralBox.allAboard {
  height: 135px;
  width: 420px; }

.allAboard h2 {
  margin: 5px 0px; }

.centralBox.allAboard:before {
  background: url(/p/1/train.png);
  background-size: cover;
  width: 240px;
  height: 75px;
  margin: 0 auto;
  content: "";
  display: block;
  position: absolute;
  top: -75px;
  left: 0;
  right: 0; }

p.telNo {
  font-family: "roboto slab"; }

p.telNo:before {
  content: "\f098";
  font-family: fontawesome;
  margin-right: 6px;
  font-size: 18px;
  position: relative;
  top: 1px;
  color: #8b6f4e; }

.sticky .searchButton {
  background: #8b6f4e;
  color: #fff; }

blockquote {
  margin: 0 auto;
  width: 100%;
  position: relative;
  padding: 25px 0; }

blockquote p {
  font-family: "caflisch-script-pro", sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.3;
  text-align: left;
  margin: 15px 0px; }

blockquote p strong {
  font-family: "roboto slab";
  font-size: 18px;
  color: #8d6f4d; }

blockquote p:last-child {
  margin-bottom: 0; }

#breadcrumb {
  background: #dadfe1;
  padding: 10px 0px; }

.LocatorText a,
.LocatorSeparator {
  color: #425363; }

.LocatorText a:hover {
  color: #000; }

.standard #section01 {
  padding: 50px 0; }

/* Fix the video */
.mfp-wrap {
  position: fixed !important;
  top: 0 !important; }

/* Responsive Gallery */
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80); }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #ccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }

.mfp-preloader a {
  color: #ccc; }

.mfp-preloader a:hover {
  color: #fff; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  color: #fff;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
  filter: alpha(opacity=100); }

.mfp-close:active {
  top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #fff;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #ccc;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

.mfp-arrow:active {
  margin-top: -54px; }

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
  filter: alpha(opacity=100); }

.mfp-arrow:before,
.mfp-arrow:after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent; }

.mfp-arrow:after,
.mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px; }

.mfp-arrow:before,
.mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }

.mfp-arrow-left:after,
.mfp-arrow-left .mfp-a {
  border-right: 17px solid #fff;
  margin-left: 31px; }

.mfp-arrow-left:before,
.mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #3f3f3f; }

.mfp-arrow-right {
  right: 0; }

.mfp-arrow-right:after,
.mfp-arrow-right .mfp-a {
  border-left: 17px solid #fff;
  margin-left: 39px; }

.mfp-arrow-right:before,
.mfp-arrow-right .mfp-b {
  border-left: 27px solid #3f3f3f; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px; }

.mfp-iframe-holder .mfp-close {
  top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }

.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444; }

.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px; }

.mfp-figure figure {
  margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }

.mfp-ie7 .mfp-img {
  padding: 0; }

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px; }

.mfp-ie7 .mfp-container {
  padding: 0; }

.mfp-ie7 .mfp-content {
  padding-top: 44px; }

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0; }

.popup-gallery img {
  margin: 10px;
  cursor: zoom-in; }

.mean-container .mean-nav ul li a,
.mean-container .mean-nav ul li span {
  font-size: 18px; }

.mean-container .mean-nav ul li a.lev2,
.mean-container .mean-nav ul li span.lev2 {
  font-size: 16px; }

/**
       * Simple fade transition,
       */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out; }

.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8; }

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0; }

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out; }

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1; }

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0; }

a.popup-youtube:before {
  z-index: 2;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  background: #eee;
  width: 160px;
  height: 160px;
  display: block;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border: 20px solid rgba(255, 255, 255, 0.6);
  -webkit-background-clip: content-box; }

a.popup-youtube:after {
  z-index: 3;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  width: 140px;
  height: 140px;
  display: block;
  content: "";
  position: absolute;
  left: 0;
  right: -15px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-top: 45px solid transparent;
  border-bottom: 45px solid transparent;
  border-left: 70px solid #768591; }

a.popup-youtube:hover:before {
  background: #8b6f4e;
  border: 10px solid #eee;
  width: 170px;
  height: 170px; }

a.popup-youtube:hover:after {
  border-left-color: #ddd; }

a.popup-youtube img {
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  opacity: 1;
  width: 100%; }

a.popup-youtube:hover img {
  opacity: 0.5; }

.feature {
  position: relative;
  padding: 20px 0;
  padding-right: 200px; }

.feature img {
  border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-border-radius: 50%;
  position: absolute;
  right: 0;
  top: 0;
  width: 165px;
  height: 165px; }

.feature h2,
.feature p {
  color: #fff;
  font-family: "roboto slab"; }

.feature p {
  font-weight: 100;
  font-size: 14px; }

.standard #section04 {
  background: #768591;
  padding: 50px 0; }

.omega.feature {
  padding-left: 65px; }

/* Dropdowns */
.dropDownHeader {
  color: #fff;
  clear: both;
  font-weight: 100;
  font-size: 16px;
  margin: 0;
  background: #8b6f4e;
  padding: 12px 34px 12px 15px;
  -webkit-transition: background 0.5 ease-in-out;
  -moz-transition: background 0.5 ease-in-out;
  -ms-transition: background 0.5 ease-in-out;
  -o-transition: background 0.5 ease-in-out;
  transition: background 0.5 ease-in-out;
  cursor: pointer;
  border: 1px solid #fff;
  position: relative;
  text-transform: initial;
  padding-left: 25px;
  margin-top: -1px; }

.dropDownHeader:after {
  content: "\f067";
  position: absolute;
  right: 20px;
  top: 12px;
  color: #fff;
  font-family: fontawesome;
  font-size: 16px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px; }

.dropDownHeader.active:after {
  content: "\f068"; }

.dropDown {
  visibility: visible !important; }

.dropDown div p {
  margin: 0% 0% !important;
  padding: 10px 0%; }

.dropDownContent {
  border: 1px solid #ddd;
  box-sizing: border-box;
  padding: 2% 5%;
  background-color: #fff;
  border-radius: 3px;
  margin-top: -2px;
  border: 1px solid #fff; }

.dropDownItem {
  padding: 75px 0; }

.getDirections {
  width: 300px;
  height: 130px;
  background: #425363;
  border: 7px solid #768591;
  outline: 5px solid #dadfe1;
  text-align: center;
  padding: 20px;
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.35);
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.35); }

.getDirections input {
  border: 0;
  padding: 7px 15px;
  font-size: 17px;
  font-family: roboto slab;
  text-transform: uppercase;
  width: 100%;
  text-align: center; }

.getDirections p {
  margin: 0; }

input.goldButton {
  cursor: pointer;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  padding: 8px 17px;
  background: #8b6f4e;
  text-transform: uppercase;
  display: inline-block;
  color: #fff;
  font-family: "Roboto Slab";
  font-weight: 600;
  font-size: 16px;
  border: 0;
  display: block;
  text-align: center;
  width: 100%; }

input.goldButton:hover {
  background: #c7b9ab; }

.search-main {
  float: left;
  width: 100%;
  padding-right: 135px; }

a.exbury-event {
  width: 50%;
  float: left;
  position: relative;
  left: 0;
  top: 0;
  opacity: 1; }

.event-results.clearfix {
  width: 100% !important; }

.event_main {
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  padding: 25px; }

.event_main h2 {
  margin: 0;
  color: #fff; }

.eventDate {
  font-family: "caflisch-script-pro", sans-serif;
  font-size: 27px;
  font-weight: 400;
  color: #fff;
  line-height: 1.2; }

.footer {
  overflow: hidden; }

a.exbury-event:hover {
  opacity: 0.85; }

.filter-bar {
  background: #425363; }

.filter-bar h2 {
  color: #fff;
  float: left;
  margin: 35px 0;
  margin-right: 75px; }

.page-links {
  float: left;
  width: 100%;
  background: #dadfe1;
  padding: 20px 0; }

a.exbury-event:hover .event_main {
  padding: 50px 25px; }

#ldicdb5ops_name {
  display: none; }

label#ldicdb5ops_name {
  display: none; }

select#ldicdb5ops {
  background: #fff;
  border: 0;
  border-radius: 0;
  padding: 7px;
  margin-top: 35px;
  width: 360px;
  font-family: "Roboto Slab", Helvetica, Sans-serif;
  font-size: 18px; }

.allAboard {
  cursor: pointer;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease; }

.allAboard h2 a {
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  font-family: "Roboto Slab", Helvetica, Sans-serif;
  font-size: 36px;
  font-weight: 400;
  color: #445464;
  margin: 15px 0;
  line-height: 1.2;
  background: none;
  padding: 0;
  text-transform: uppercase; }

.centralBox.allAboard h3 {
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease; }

.centralBox.allAboard:hover {
  background: rgba(139, 111, 78, 0.75);
  background: rgba(255, 255, 255, 0.75); }

.centralBox.allAboard:hover h2 a,
.centralBox.allAboard:hover h3 {
  color: #8b6f4e; }

.centralBox.allAboard:before {
  -webkit-transition: all 3s ease;
  -moz-transition: all 3s ease;
  -o-transition: all 3s ease;
  transition: all 3s ease; }

.centralBox.allAboard:hover:before {
  left: 0;
  right: 100%; }

.centralBox.allAboard:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  top: 0;
  background: #8b6f4e;
  height: 2px;
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  -webkit-transition: all 3s ease;
  -moz-transition: all 3s ease;
  -o-transition: all 3s ease;
  transition: all 3s ease; }

.centralBox.allAboard:hover:after {
  right: 0; }

/* =============================================================================
   Media Queries
   ========================================================================== */
/* @media screen and (max-width: 1023px) { .container {width:880px;} } */
@media screen and (max-width: 1200px) {
  .container {
    width: 940px; }
  .logo {
    width: 200px;
    margin-top: -5px; }
  .searchButton {
    padding: 22px 30px; }
  .header.clearfix {
    height: 83px;
    padding: 15px 0; }
  .logo {
    z-index: 9999; }
  .banner h1 {
    font-size: 38px; }
  .bannerText {
    height: 200px; }
  .nav li.lev1 ul.lev2:after {
    display: none; }
  .feature {
    padding-right: 150px; }
  .omega.feature {
    padding-left: 20px; }
  .feature img {
    width: 135px;
    height: 135px; }
  .standard .buyNow {
    margin-top: 83px; }
  .search_box {
    top: 68px; } }

@media screen and (max-width: 1024px) {
  .banner h1 {
    font-size: 35px; }
  .banner h1 {
    line-height: 1;
    margin-top: 0; }
  .banner h2 {
    line-height: 1;
    font-size: 26px; } }

@media screen and (max-width: 960px) {
  .container {
    width: 710px; }
  .maximage {
    display: none; }
  .banner .container {
    bottom: auto;
    top: 20px;
    left: 20px; }
  .search_box {
    top: 68px; }
  /* Template widths */
  .col-1-4 {
    width: 48%;
    margin: 1%;
    float: left; }
  .col-1-8 {
    width: 23%;
    margin: 1%;
    float: left; }
  .col-1-4.alpha,
  .col-1-4.omega {
    width: 48%;
    margin: 1% !important; }
  .col-1-8.alpha,
  .col-1-8.omega {
    width: 24%; }
  .logo {
    margin-left: 5px; }
  .header .container {
    width: 100%; }
  .tab_heading ul li {
    width: 33.333%;
    text-align: center;
    font-size: 20px; }
  .tab_content {
    width: 100%;
    height: auto;
    top: 44px;
    left: 0 !important;
    height: 100%; }
  .tab_content > div {
    position: absolute;
    height: 100%; }
  .sliding_tabs_container {
    height: 202px;
    margin-bottom: 35px; }
  .certified {
    width: 33%;
    margin: 25px 0; }
  #section05 {
    padding: 25px 0; }
  .feature {
    width: 100%;
    margin: 18px 0px !important;
    padding: 10px 175px !important;
    padding-left: 0 !important; }
  .feature img {
    width: 135px;
    height: 135px; }
  .col-1-2.alpha.feature {
    margin-bottom: 20px; }
  .bookNow a {
    font-size: 20px;
    bottom: 20px; } }

/* TABLET AND UP */
@media screen and (min-width: 768px) {
  .hideOnDesktop {
    display: none; } }

/* TABLET AND BELOW */
@media screen and (max-width: 767px) {
  .container {
    width: 542px; }
  .col-1-3 {
    width: 49%;
    margin: 1%;
    float: left; }
  .col-2-3 {
    width: 100%;
    margin: 1 0%;
    float: left; }
  .col-1-2 {
    width: 100%;
    margin: 1% 0%;
    float: left; }
  .col-2-3.alpha,
  .col-2-3.omega {
    width: 100%;
    margin: 1% 0%; }
  .col-1-3.alpha,
  .col-1-3.omega {
    width: 49%;
    margin: 1%; }
  .col-1-2.alpha,
  .col-1-2.omega {
    width: 100%;
    margin: 1% 0%; }
  .mainRight .col-1-2 {
    width: 49%; }
  .col-1-2.omega.mainRight {
    width: 100%;
    margin: 0 !important; }
  .hideOnMob {
    display: none; }
  .smIcon {
    width: 50px; }
  ul.socialIcons {
    margin-left: -15px; }
  #section04 .centralBox {
    width: 300px; }
  #section04 .centralBox h3 {
    font-size: 32px;
    line-height: 1; }
  #section04 .centralBox h2 {
    margin-top: 0px; }
  .footer .col-1-3 {
    border: 0 !important;
    border-bottom: 1px solid #8b6f4e !important;
    padding: 20px 0;
    text-align: center;
    margin: 0 !important;
    width: 100%; }
  img.footerLogo {
    float: none;
    margin: 0 auto; }
  .footer .col-1-3.omega {
    border-bottom: 0 !important; }
  a.popup-youtube:before {
    width: 100px;
    height: 100px;
    border: 7px solid rgba(255, 255, 255, 0.6); }
  a.popup-youtube:after {
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 45px solid #768591; }
  a.popup-youtube:hover:before {
    background: #8b6f4e;
    border: 7px solid #eee;
    width: 100px;
    height: 100px; }
  .banner h1 {
    font-size: 30px;
    margin-top: 0; }
  .banner h2 {
    font-size: 25px; }
  .cta_style {
    margin: 1% !important; } }

@media screen and (max-width: 700px) {
  .caption {
    transform: translate(-50%, -43%); }
  .caption h2 {
    font-size: 20px;
    line-height: 20px; } }

@media screen and (max-width: 600px) {
  .container {
    width: 440px; }
  h1 {
    font-size: 31px; }
  h2 {
    font-size: 26px; }
  h3 {
    font-size: 23px; }
  .banner .container {
    position: initial; }
  .bookNow a {
    font-size: 15px;
    padding: 10px 15px;
    bottom: 0px; }
  .banner h1 {
    font-size: 24px;
    margin-top: 0; }
  .banner h2 {
    font-size: 24px; }
  a.exbury-event {
    width: 100%; }
  #section02 .filter-bar h2 {
    font-size: 19px;
    margin: 5px 0px; }
  .event_main h2 {
    font-size: 26px; }
  .event_main .eventDate {
    font-size: 22px; }
  select#ldicdb5ops {
    padding: 2px;
    margin-top: 0px;
    font-size: 14px;
    width: 260px;
    margin-bottom: 10px; }
  .buttonBlue a {
    font-size: 20px; }
  .caption {
    width: 100%; }
  .home .buttonCTA {
    z-index: 100;
    display: block;
    width: 100%;
    transform: translate(-50%, -34%); }
  .home .buttonCTA a {
    width: 100%;
    display: block; } }

@media screen and (max-width: 500px) {
  .container {
    width: 360px; }
  /* Template widths */
  .col-2-3,
  .col-1-3,
  .col-1-2,
  .col-1-4,
  .col-1-4.alpha,
  .col-1-4.omega,
  .col-1-8 {
    width: 100% !important;
    padding: 1%;
    float: left;
    margin: 0px !important;
    /* margin-bottom: 20px!important; */ }
  .logo {
    width: 150px;
    /* padding: 3px 0px; */ }
  .top-section a {
    margin-right: 10px; }
  .mainRight .col-1-2 {
    width: 100%;
    margin: 10px 0px;
    padding: 0; }
  .landing .banner,
  .standard .banner {
    position: relative;
    padding: 0;
    padding-top: 0; }
  .banner img {
    position: relative;
    top: 0; }
  #section04 h2 a {
    font-size: 18px; }
  #section05 {
    display: none; }
  .footer .container {
    text-align: center; }
  .social {
    margin: 0 auto;
    float: none;
    display: block;
    width: 195px; }
  .footer .container img {
    width: 100%;
    margin: 0 auto;
    display: block; }
  .footer .col-1-4.alpha {
    display: none; }
  .footer .col-1-4.omega {
    margin: 0 auto !important;
    float: none;
    display: block;
    width: 200px;
    clear: both; }
  .footer h3 {
    padding-top: 20px; }
  .logo img {
    width: 230px;
    max-width: none;
    margin-left: 17px;
    margin-top: 3px; }
  .logo {
    width: 68px;
    height: 58px;
    overflow: hidden;
    position: absolute;
    top: 0;
    margin: 0px 0;
    padding: 12px;
    box-sizing: content-box;
    border-right: 1px solid #dadfe1;
    -moz-box-sizing: content-box;
    -o-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    -ms-box-sizing: content-box; }
  .header.clearfix {
    padding: 0;
    height: 82px; }
  .search_box {
    top: 82px; }
  .searchBoxInput:hover,
  .searchBoxInput:focus {
    width: 300px; }
  .searchButton {
    padding: 23px 35px;
    padding-top: 35px; }
  .mean-container a.meanmenu-reveal {
    left: 110px !important;
    right: 0px !important;
    top: 15px; }
  .banner {
    margin-top: 82px; }
  .mean-container .mean-nav {
    margin-top: 82px; }
  .col-1-4.alpha.cta_style,
  .col-1-4.omega.cta_style {
    margin-bottom: 20px !important; }
  .col-1-3.feature {
    width: 100% !important;
    margin: 18px 0px !important; }
  .standard .buttonCTA {
    text-align: center;
    clear: both;
    float: none; }
  .landing .banner,
  .standard .banner {
    padding-top: 0 !important; } }

/* MOBILE (PORTRAIT) */
@media screen and (max-width: 400px) {
  .container {
    width: 260px; }
  .feature {
    text-align: center;
    padding: 0 !important; }
  .feature img {
    right: auto;
    top: auto;
    position: relative;
    margin: 0 auto; }
  .banner h1 {
    font-size: 18px;
    margin-top: 0; }
  .banner h2 {
    font-size: 20px; }
  .searchBoxInput:hover,
  .searchBoxInput:focus {
    width: 215px; }
  .centralBox.allAboard {
    width: 100%; }
  .allAboard h2,
  .allAboard h2 a {
    font-size: 32px; } }

/* ==|== non-semantic helper classes ========================================
   Please define your styles before this section.
   ========================================================================== */
.ir {
  display: block;
  border: 0;
  text-indent: -999em;
  overflow: hidden;
  background-color: transparent;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
  *line-height: 0; }

.ir br {
  display: none; }

.hidden {
  display: none !important;
  visibility: hidden; }

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto; }

.invisible {
  visibility: hidden; }

.clearfix:before,
.clearfix:after,
.container:before,
.container:after {
  content: "";
  display: table; }

.clearfix:after,
.container:after {
  clear: both; }

.clearfix,
.container {
  *zoom: 1; }

/* =============================================================================
   Print Styles
   ========================================================================== */
@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important; }
  /* Black prints faster: h5bp.com/s */
  a,
  a:visited {
    text-decoration: underline; }
  abbr[title]:after {
    content: " (" attr(title) ")"; }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  /* h5bp.com/t */
  tr,
  img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  @page {
    margin: 0.5cm; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; } }

#section03 .container {
  flex-wrap: wrap;
  justify-content: center;
  display: flex; }

.standard #section04 {
  padding: 0; }

.centralBox {
  height: 135px; }

.centralBox .socialIcons {
  display: flex;
  padding: 0;
  width: 100%;
  justify-content: center;
  align-items: center; }

/*! Video Banner */
.c2-video-banner {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; }
  .c2-video-banner__wrapper {
    display: flex;
    flex-direction: column; }
  .c2-video-banner__mobile {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center center; }
    @media screen and (min-width: 785px) {
      .c2-video-banner__mobile {
        display: none; } }
  .c2-video-banner__video {
    display: none;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    padding-bottom: 56.25%; }
    @media screen and (min-width: 785px) {
      .c2-video-banner__video {
        display: block; } }
    .c2-video-banner__video p {
      margin: 0;
      width: 100%;
      height: 100%;
      position: absolute;
      top: 50%;
      left: 0;
      transform: translateY(-50%); }
    .c2-video-banner__video .jp-video, .c2-video-banner__video .jp-type-single {
      width: 100% !important; }
    .c2-video-banner__video .jp-video, .c2-video-banner__video .jp-type-single {
      height: 100% !important; }
    .c2-video-banner__video .igvideo_bar {
      display: none; }
  .c2-video-banner__overlay {
    position: relative;
    width: auto;
    transform: none;
    z-index: 1;
    top: auto;
    left: auto; }

/*! Helpers */
.call-to-action,
.cta-feature {
  margin-top: 2rem; }
  .call-to-action a,
  .cta-feature a {
    display: block;
    box-sizing: border-box;
    width: 100%; }
  .call-to-action__image,
  .cta-feature__image {
    position: relative;
    padding-top: 60%;
    width: 100%;
    display: block; }
    .cta-feature .call-to-action__image, .cta-feature
    .cta-feature__image {
      padding-top: 100%; }
      .cta-feature .call-to-action__image img, .cta-feature
      .cta-feature__image img {
        border-radius: 1000px; }
    .call-to-action .call-to-action__image, .call-to-action
    .cta-feature__image {
      padding-top: 60%; }
    .call-to-action__image img,
    .cta-feature__image img {
      position: absolute;
      object-fit: cover;
      object-position: center center;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
  .call-to-action__content,
  .cta-feature__content {
    padding: 0.5rem 0; }
    .cta-feature .call-to-action__content, .cta-feature
    .cta-feature__content {
      text-align: center; }
    .call-to-action__content__title,
    .cta-feature__content__title {
      margin: 0;
      font-size: 1.3rem; }
    .call-to-action__content__subtitle,
    .cta-feature__content__subtitle {
      margin: 0;
      font-size: 1rem; }
  .call-to-action__link,
  .cta-feature__link {
    display: none; }

.thin-content {
  max-width: 768px;
  margin: 0 auto; }

.increased-line-spacing * {
  line-height: 2; }

.increased-line-spacing p, .increased-line-spacing li {
  font-size: 1.1rem; }

.styled-tables table {
  font-family: sofia pro;
  border-collapse: collapse;
  width: 100%; }

.styled-tables td, .styled-tables th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px; }

.styled-tables tr:nth-child(even) {
  background-color: #FFFFFF; }

.space-above {
  margin-top: 3rem; }

.space-below {
  margin-bottom: 3rem; }