@import url("../../global/CSS/global.css");
/* Flex Nav */
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;
  /* Options: */
  /*justify-content: flex-start;*/
  /*justify-content: flex-end;*/
  /*justify-content: space-between;*/
  /*justify-content: space-around;*/
}
nav.flex-nav ul#mainnav li {
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  /* Options: */
  /*flex: 1 1 auto;*/
  /* 2nd Level ul */
}
nav.flex-nav ul#mainnav li a {
  padding: 1.5em 0.5em;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
nav.flex-nav ul#mainnav li a:hover {
  background: #ddd;
}
nav.flex-nav ul#mainnav li > a.current {
  background: #ddd;
}
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: 10px 12px;
  width: 100%;
}
nav.flex-nav ul#mainnav li ul > li ul {
  left: 100%;
  top: 0;
  /* 3rd level li */
}
nav.flex-nav ul#mainnav a {
  text-decoration: none;
}
nav.flex-nav ul#mainnav > li > ul.hasMega {
  display: none!important;
}
nav.flex-nav ul#mainnav > li:hover > ul,
nav.flex-nav ul#mainnav > li > ul > li:hover > ul {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
/*_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: "futura-pt", sans-serif;
}
body.locked {
  overflow: hidden;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
/* Change color & bg color of selected live text */
*::selection {
  background-color: ;
  color: ;
}
*,
*: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 {
  display: block;
  content: "";
  height: 90px;
  margin: -90px 0 0;
}
*:target:before:focus {
  outline: none!important;
}
*:target:focus {
  outline: none;
}
a,
a:visited,
a:hover,
a:focus,
input,
input:hover {
  -webkit-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -o-transition: all .33s ease;
  transition: all .33s ease;
  text-decoration: none;
}
.transition {
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
}
.slow-transition {
  -o-transition: all .66s ease;
  -moz-transition: all .66s ease;
  -webkit-transition: all .66s ease;
  transition: all .66s ease;
}
.centered {
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  -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%);
}
.center-this {
  display: table !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.section {
  padding: 10% 0px;
}
.flex-container {
  width: 100%;
  height: auto;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .flex-container {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.flex-item {
  /*   I DISABLED DISPLAY: INHERIT BECAUSE TEXT IN FLEX-ITEM FORCED INLINE
  display: inherit;*/
  height: auto;
}
.btn {
  font-size: 18px;
  padding: 20px 35px;
  position: relative;
}
.blue-btn {
  background: #005cb8;
  color: #fff;
  font-size: 18px;
  padding: 20px 35px;
  position: relative;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
  display: inline-block;
}
.blue-btn:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0%;
  background: url(/SiteFiles/2380/css/images/cta-triangle.svg);
  background-size: cover;
  bottom: 0px;
  right: -1px;
  opacity: 0.2;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
  z-index: 99;
}
.blue-btn:hover {
  color: #fff !important;
}
.blue-btn:hover:after {
  height: 100%;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
}
.yellow-btn {
  background: #c9910d;
  color: #fff;
  font-size: 18px;
  padding: 20px 35px;
  position: relative;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
  display: inline-block;
}
.yellow-btn:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0%;
  background: url(/SiteFiles/2380/css/images/cta-triangle.svg);
  background-size: cover;
  bottom: 0px;
  right: -1px;
  opacity: 0.2;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
  z-index: 99;
}
.yellow-btn:hover {
  color: #fff !important;
}
.yellow-btn:hover:after {
  height: 100%;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
}
.orange-btn {
  background: #ff6b0b;
  color: #fff;
  font-size: 18px;
  padding: 20px 35px;
  position: relative;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
  display: inline-block;
}
.orange-btn:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0%;
  background: url(/SiteFiles/2380/css/images/cta-triangle.svg);
  background-size: cover;
  bottom: 0px;
  right: -1px;
  opacity: 0.2;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
  z-index: 99;
}
.orange-btn:hover {
  color: #fff !important;
}
.orange-btn:hover:after {
  height: 100%;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
}
.red-btn {
  background: #79232e;
  color: #fff;
  font-size: 18px;
  padding: 20px 35px;
  position: relative;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
  display: inline-block;
}
.red-btn:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0%;
  background: url(/SiteFiles/2380/css/images/cta-triangle.svg);
  background-size: cover;
  bottom: 0px;
  right: -1px;
  opacity: 0.2;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
  z-index: 99;
}
.red-btn:hover {
  color: #fff !important;
}
.red-btn:hover:after {
  height: 100%;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
}
.purple-btn {
  background: #2e3195;
  color: #fff;
  font-size: 18px;
  padding: 20px 35px;
  position: relative;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
  display: inline-block;
}
.purple-btn:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0%;
  background: url(/SiteFiles/2380/css/images/cta-triangle.svg);
  background-size: cover;
  bottom: 0px;
  right: -1px;
  opacity: 0.2;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
  z-index: 99;
}
.purple-btn:hover {
  color: #fff !important;
}
.purple-btn:hover:after {
  height: 100%;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
}
.tan-btn {
  background: #c7b683;
  color: #fff;
  font-size: 18px;
  padding: 20px 35px;
  position: relative;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
  display: inline-block;
}
.tan-btn:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0%;
  background: url(/SiteFiles/2380/css/images/cta-triangle.svg);
  background-size: cover;
  bottom: 0px;
  right: -1px;
  opacity: 0.2;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
  z-index: 99;
}
.tan-btn:hover {
  color: #fff !important;
}
.tan-btn:hover:after {
  height: 100%;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
}
/* ====================== Typography ====================== */
a {
  color: #ff6b0b;
}
blockquote {
  font-size: 26px;
  line-height: 37px;
  margin-bottom: 25px;
}
h1 {
  font-size: 47px;
  line-height: 1em;
  margin: 0px 0px 5px 0px;
  font-family: "futura-pt", sans-serif;
  color: #005cb8;
  font-weight: bold;
}
h2 {
  font-size: 37px;
  line-height: 1em;
  margin: 0px 0px 0.5em 0px;
  font-family: "futura-pt", sans-serif;
  color: #00aeef;
  font-weight: bold;
}
h2.intro {
  color: #ff6b0b;
  position: relative;
  padding-bottom: 25px;
  font-size: 55px;
  padding: 40px;
  box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.1);
  border-left: 6px solid #ff6b0b;
  font-weight: normal;
  line-height: 1.2em;
}
h3 {
  font-size: 31px;
  line-height: 1em;
  margin: 0px 0px 0.5em 0px;
  font-family: "futura-pt", sans-serif;
  color: #00aeef;
  font-weight: bold;
  margin-bottom: 5px;
  line-height: 1.25em;
}
h3 a {
  color: #005cb8;
}
h4 {
  font-weight: 600;
  font-size: 26px;
  font-style: normal;
  font-family: "futura-pt", sans-serif;
  color: #c9910d;
  line-height: 1.25em;
}
h5 {
  margin-bottom: 21px;
  font-size: 24px;
  font-style: normal;
  font-weight: normal;
  font-family: "futura-pt", sans-serif;
}
h6 {
  margin-bottom: 21px;
  font-weight: 400;
  margin-bottom: 18px;
  font-family: "futura-pt", sans-serif;
}
p {
  margin: 0px 0px 35px 0px;
  font-family: "futura-pt", sans-serif;
  font-size: 21px;
  line-height: 28.89px;
}
p em {
  color: #999899;
}
p em a {
  text-decoration: underline;
}
p.intro {
  font-size: 25px;
  line-height: 1em;
  margin: 0px 0px 20px 0px;
  font-family: "futura-pt", sans-serif;
  color: #00aeef;
  border-bottom: 2px solid #00aeef;
  padding-bottom: 5px;
  display: inline-block;
}
blockquote.pull-quote {
  margin: 0em 1em 1em 0em;
  border-left: 3px solid #ccc;
  padding: 0em 0em 0em 0.7em;
}
p.quote {
  font-size: 26px;
  line-height: 1.4em;
  font-style: italic;
  color: #c7b683;
  margin: 0px;
}
/* Remove excess margin / padding */
.no-padding {
  padding: 0;
}
.no-margin {
  margin: 0;
}
/* ====================== To the top link ====================== */
.to-the-top {
  position: fixed;
  top: 500px;
  left: 0px;
  margin-left: -200px;
  z-index: 99999;
  -ms-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  font-family: "futura-pt", sans-serif;
  font-size: 15px;
  opacity: 0;
  -webkit-font-smoothing: antialiased;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
}
.to-the-top a {
  color: #999899;
  padding: 10px 10px 15px 10px;
}
@media screen and (max-width: 767px) {
  .to-the-top {
    display: none;
  }
}
.to-the-top .fa {
  position: absolute;
  top: 7px;
  right: -5px;
  font-size: 11px;
}
.to-the-top.active {
  margin-left: 0px;
  opacity: 1;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
}
@media screen and (max-width: 767px) {
  .to-the-top.active {
    display: none;
  }
}
/* ====================== CTA Button Styling ====================== */
.mainButton {
  position: fixed;
  display: block;
  bottom: 20px;
  right: 20px;
  text-align: center;
  color: #005cb8;
  cursor: pointer;
  z-index: 100000;
  background: #fff;
  height: 70px;
  width: 70px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
  padding: 20px 0px;
  line-height: 1em;
  font-weight: bold;
  box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.15);
}
.mainButton:hover {
  z-index: 9999;
  box-shadow: 0px 0px 80px rgba(0, 0, 0, 0.25);
}
.mainButton .fa {
  color: #c9910d;
}
.mainButton .link-wrap {
  opacity: 0;
  max-height: 0px !important;
  overflow: hidden;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
}
.mainButton .link-wrap a {
  color: #c9910d;
  display: block;
  font-weight: normal;
  padding: 7px 0px 0px;
}
.mainButton .link-wrap.active {
  opacity: 1;
  max-height: none;
  overflow: visible;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
}
.mainButton.active {
  height: 120px;
  width: 120px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
}
.icon-wrap {
  font-size: 10px;
  position: absolute;
  top: -5px;
  left: -5px;
  background: #005cb8;
  width: 20px;
  height: 20px;
  border-radius: 50px;
  padding: 3px 0px 0px;
}
/* ====================== Side Drawer Styling ====================== */
.body-overlay {
  display: block;
  cursor: pointer;
  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%;
}
#siteWrapper {
  position: relative;
  background-color: #fff;
  z-index: 999;
}
#sidecar {
  position: fixed;
  height: 100%;
  width: 290px;
  background: #005cb8;
  top: 0;
  text-align: left;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 999990;
  -webkit-transform: translatex(290px);
  -webkit-transform: translate3d(290px, 0, 0);
  -moz-transform: translatex(290px) translatez(0);
  -moz-transform: translate3d(290px, 0, 0);
  -ms-transform: translatex(290px) translatez(0);
  -ms-transform: translate3d(290px, 0, 0);
  -o-transform: translatex(290px) translatez(0);
  -o-transform: translate3d(290px, 0, 0);
  transform: translatex(290px) translatez(0);
  transform: translate3d(290px, 0, 0);
  left: 290px \9;
  /* ie9 support */
}
/* Drawer Placement & Speed */
.slide-left,
.push-left,
.over-left {
  left: 0;
  right: inherit;
}
.slide-right,
.push-right,
.over-right {
  right: 0;
  left: inherit;
}
.slide-left,
.slide-right,
.push-left,
.push-right,
.over-left,
.over-right {
  -webkit-transition: -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;
}
/* SideCar Animation-Direction */
/* Slide Left */
#sidecar.slide-left {
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-out 0.25s;
  -moz-transition: opacity 0.2s ease-out 0.25s;
  -ms-transition: opacity 0.2s ease-out 0.25s;
  -o-transition: opacity 0.2s ease-out 0.25s;
  transition: opacity 0.2s ease-out 0.25s;
}
#sidecar.slide-left.active {
  opacity: 1;
  -webkit-transition: none!important;
  -moz-transition: none!important;
  -ms-transition: none!important;
  -o-transition: none!important;
  transition: none!important;
}
#siteWrapper.slide-left.active {
  -webkit-transform: translatex(290px);
  -webkit-transform: translate3d(290px, 0, 0);
  -moz-transform: translatex(290px) translatez(0);
  -moz-transform: translate3d(290px, 0, 0);
  -ms-transform: translatex(290px) translatez(0);
  -ms-transform: translate3d(290px, 0, 0);
  -o-transform: translatex(290px) translatez(0);
  -o-transform: translate3d(290px, 0, 0);
  transform: translatex(290px) translatez(0);
  transform: translate3d(290px, 0, 0);
  left: 290px \9;
  /* ie9 support */
}
/* Slide Right */
#sidecar.slide-right {
  opacity: 0;
  -webkit-transform: translatex(0px);
  -webkit-transform: translate3d(0px, 0, 0);
  -moz-transform: translatex(0px) translatez(0);
  -moz-transform: translate3d(0px, 0, 0);
  -ms-transform: translatex(0px) translatez(0);
  -ms-transform: translate3d(0px, 0, 0);
  -o-transform: translatex(0px) translatez(0);
  -o-transform: translate3d(0px, 0, 0);
  transform: translatex(0px) translatez(0);
  transform: translate3d(0px, 0, 0);
  right: 0px \9;
  /* ie9 support */
}
#sidecar.slide-right.active {
  opacity: 1;
}
#siteWrapper.slide-right {
  -webkit-transform: translatex(0);
  -moz-transform: translatex(0);
  -ms-transform: translatex(0);
  -o-transform: translatex(0);
  transform: translatex(0);
}
#siteWrapper.slide-right.active {
  -webkit-transform: translatex(-290px);
  -webkit-transform: translate3d(-290px, 0, 0);
  -moz-transform: translatex(-290px) translatez(0);
  -moz-transform: translate3d(-290px, 0, 0);
  -ms-transform: translatex(-290px) translatez(0);
  -ms-transform: translate3d(-290px, 0, 0);
  -o-transform: translatex(-290px) translatez(0);
  -o-transform: translate3d(-290px, 0, 0);
  transform: translatex(-290px) translatez(0);
  transform: translate3d(-290px, 0, 0);
  right: 290px \9;
  /* ie9 support */
}
/* Push Left */
#sidecar.push-left {
  -webkit-transform: translatex(-260px);
  -webkit-transform: translate3d(-260px, 0, 0);
  -moz-transform: translatex(-260px) translatez(0);
  -moz-transform: translate3d(-260px, 0, 0);
  -ms-transform: translatex(-260px) translatez(0);
  -ms-transform: translate3d(-260px, 0, 0);
  -o-transform: translatex(-260px) translatez(0);
  -o-transform: translate3d(-260px, 0, 0);
  transform: translatex(-260px) translatez(0);
  transform: translate3d(-260px, 0, 0);
  left: -260px \9;
  /* ie9 support */
}
#sidecar.push-left.active {
  -webkit-transform: translatex(0);
  -moz-transform: translatex(0);
  -ms-transform: translatex(0);
  -o-transform: translatex(0);
  transform: translatex(0);
  left: 0px \9;
  /* ie9 support */
}
#siteWrapper.push-left {
  -webkit-transform: translatex(0);
  -moz-transform: translatex(0);
  -ms-transform: translatex(0);
  -o-transform: translatex(0);
  transform: translatex(0);
  left: 0px \9;
  /* ie9 support */
}
#siteWrapper.push-left.active {
  -webkit-transform: translatex(260px);
  -webkit-transform: translate3d(260px, 0, 0);
  -moz-transform: translatex(260px) translatez(0);
  -moz-transform: translate3d(260px, 0, 0);
  -ms-transform: translatex(260px) translatez(0);
  -ms-transform: translate3d(260px, 0, 0);
  -o-transform: translatex(260px) translatez(0);
  -o-transform: translate3d(260px, 0, 0);
  transform: translatex(260px) translatez(0);
  transform: translate3d(260px, 0, 0);
  left: 260px \9;
  /* ie9 support */
}
/* Push Right */
#sidecar.push-right {
  -webkit-transform: translatex(260px);
  -webkit-transform: translate3d(260px, 0, 0);
  -moz-transform: translatex(260px) translatez(0);
  -moz-transform: translate3d(260px, 0, 0);
  -ms-transform: translatex(260px) translatez(0);
  -ms-transform: translate3d(260px, 0, 0);
  -o-transform: translatex(260px) translatez(0);
  -o-transform: translate3d(260px, 0, 0);
  transform: translatex(260px) translatez(0);
  transform: translate3d(260px, 0, 0);
  right: -260px \9;
  /* ie9 support */
}
#sidecar.push-right.active {
  -webkit-transform: translatex(0);
  -moz-transform: translatex(0);
  -ms-transform: translatex(0);
  -o-transform: translatex(0);
  transform: translatex(0);
  right: 0px \9;
  /* ie9 support */
}
#siteWrapper.push-right {
  -webkit-transform: translatex(0);
  -moz-transform: translatex(0);
  -ms-transform: translatex(0);
  -o-transform: translatex(0);
  transform: translatex(0);
  right: 0px \9;
  /* ie9 support */
}
#siteWrapper.push-right.active {
  -webkit-transform: translatex(-260px);
  -webkit-transform: translate3d(-260px, 0, 0);
  -moz-transform: translatex(-260px) translatez(0);
  -moz-transform: translate3d(-260px, 0, 0);
  -ms-transform: translatex(-260px) translatez(0);
  -ms-transform: translate3d(-260px, 0, 0);
  -o-transform: translatex(-260px) translatez(0);
  -o-transform: translate3d(-260px, 0, 0);
  transform: translatex(-260px) translatez(0);
  transform: translate3d(-260px, 0, 0);
  right: 260px \9;
  /* ie9 support */
}
/* Over Left */
#sidecar.over-left {
  z-index: 9999;
  -webkit-transform: translatex(-260px);
  -webkit-transform: translate3d(-260px, 0, 0);
  -moz-transform: translatex(-260px) translatez(0);
  -moz-transform: translate3d(-260px, 0, 0);
  -ms-transform: translatex(-260px) translatez(0);
  -ms-transform: translate3d(-260px, 0, 0);
  -o-transform: translatex(-260px) translatez(0);
  -o-transform: translate3d(-260px, 0, 0);
  transform: translatex(-260px) translatez(0);
  transform: translate3d(-260px, 0, 0);
  left: -260px \9;
  /* ie9 support */
}
#sidecar.over-left.active {
  -webkit-transform: translatex(0);
  -moz-transform: translatex(0);
  -ms-transform: translatex(0);
  -o-transform: translatex(0);
  transform: translatex(0);
  left: 0px \9;
  /* ie9 support */
}
#siteWrapper.over-left {
  -webkit-transform: translatex(0);
  -moz-transform: translatex(0);
  -ms-transform: translatex(0);
  -o-transform: translatex(0);
  transform: translatex(0);
  left: 0px \9;
  /* ie9 support */
}
/* Over Left */
#sidecar.over-right {
  z-index: 9999;
  -webkit-transform: translatex(260px);
  -webkit-transform: translate3d(260px, 0, 0);
  -moz-transform: translatex(260px) translatez(0);
  -moz-transform: translate3d(260px, 0, 0);
  -ms-transform: translatex(260px) translatez(0);
  -ms-transform: translate3d(260px, 0, 0);
  -o-transform: translatex(260px) translatez(0);
  -o-transform: translate3d(260px, 0, 0);
  transform: translatex(260px) translatez(0);
  transform: translate3d(260px, 0, 0);
  right: -260px \9;
  /* ie9 support */
}
#sidecar.over-right.active {
  -webkit-transform: translatex(0);
  -moz-transform: translatex(0);
  -ms-transform: translatex(0);
  -o-transform: translatex(0);
  transform: translatex(0);
  right: 0px \9;
  /* ie9 support */
}
#siteWrapper.over-right {
  -webkit-transform: translatex(0);
  -moz-transform: translatex(0);
  -ms-transform: translatex(0);
  -o-transform: translatex(0);
  transform: translatex(0);
  right: 0px \9;
  /* ie9 support */
}
#sidecar.slide-right {
  opacity: 0;
  -webkit-transform: translatex(290px);
  -webkit-transform: translate3d(290px, 0, 0);
  -moz-transform: translatex(290px) translatez(0);
  -moz-transform: translate3d(290px, 0, 0);
  -ms-transform: translatex(290px) translatez(0);
  -ms-transform: translate3d(290px, 0, 0);
  -o-transform: translatex(290px) translatez(0);
  -o-transform: translate3d(290px, 0, 0);
  transform: translatex(290px) translatez(0);
  right: 0px \9;
  transform: translate3d(290px, 0, 0);
}
#sidecar.slide-right.active {
  opacity: 1;
  -webkit-transform: translatex(0px);
  -webkit-transform: translate3d(0px, 0, 0);
  -moz-transform: translatex(0px) translatez(0);
  -moz-transform: translate3d(0px, 0, 0);
  -ms-transform: translatex(0px) translatez(0);
  -ms-transform: translate3d(0px, 0, 0);
  -o-transform: translatex(0px) translatez(0);
  -o-transform: translate3d(0px, 0, 0);
  transform: translatex(0px) translatez(0);
  right: 0px \9;
  transform: translate3d(0px, 0, 0);
  box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.6);
}
/* ====================== Side Drawer Styling END ====================== */
/* Expand Collapse Styling */
nav#sidecar {
  /* Utility Nav */
}
nav#sidecar ul#mainnav {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin: 105px 0 0 0;
  padding: 0px;
  background: transparent;
}
nav#sidecar ul#mainnav li {
  position: relative;
  margin: 0;
  padding: 0;
  float: none;
  display: inline-block;
  width: 100%;
  height: auto;
  background: transparent;
  text-align: left;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
  /* 2nd Level Nav */
  /* End 2nd Level Nav */
}
nav#sidecar ul#mainnav li:hover ul {
  display: none;
}
nav#sidecar ul#mainnav li ul {
  padding: 0px;
  margin: 0;
  display: none;
  position: relative;
  float: none;
}
nav#sidecar ul#mainnav li ul li {
  background: rgba(0, 0, 0, 0.35);
}
nav#sidecar ul#mainnav li ul li a {
  font-size: 20px;
}
nav#sidecar ul#mainnav li ul li:last-of-type {
  border: none !important;
}
nav#sidecar ul#mainnav li ul.active {
  display: block;
}
nav#sidecar ul#mainnav li a {
  display: inline-block;
  width: 100%;
  height: auto;
  padding: 8px 25px;
  position: relative;
  color: #fff;
  font-size: 25px;
}
nav#sidecar ul#mainnav li a.expand {
  display: block;
  height: 51px;
  width: 51px;
  position: absolute;
  top: 0;
  right: 0;
  padding: 15px;
  cursor: pointer;
}
nav#sidecar ul#mainnav li a.expand:before,
nav#sidecar ul#mainnav li a.expand:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  background: #000;
  width: 2px;
  height: 10px;
  margin: -5px 0 0 -1px;
  border-radius: 6px;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform .3s;
}
nav#sidecar ul#mainnav li a.expand:before {
  -webkit-transform: rotate(-45deg) translate(-4px, 0px);
  -ms-transform: rotate(-45deg) translate(-4px, 0px);
  transform: rotate(-45deg) translate(-4px, 0px);
}
nav#sidecar ul#mainnav li a.expand:after {
  webkit-transform: rotate(45deg) translate(4px, 0px);
  -ms-transform: rotate(45deg) translate(4px, 0px);
  transform: rotate(45deg) translate(4px, 0px);
}
nav#sidecar ul#mainnav li a.expand.active:before {
  -webkit-transform: rotate(-45deg) translate(0px, 4px);
  -ms-transform: rotate(-45deg) translate(0px, 4px);
  transform: rotate(-45deg) translate(0px, 4px);
}
nav#sidecar ul#mainnav li a.expand.active:after {
  -webkit-transform: rotate(45deg) translate(0px, 4px);
  -ms-transform: rotate(45deg) translate(0px, 4px);
  transform: rotate(45deg) translate(0px, 4px);
}
nav#sidecar .utility-nav {
  padding: 10px 0px 15px;
  background: rgba(0, 0, 0, 0.1) !important;
}
nav#sidecar .utility-nav ul {
  display: block;
  list-style-type: disc;
  -webkit-margin-before: 0px;
  -webkit-margin-after: 0px;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
  -webkit-padding-start: 0px;
}
nav#sidecar .utility-nav ul li {
  padding: 10px 10px 0px 20px;
  list-style: none;
}
nav#sidecar .utility-nav ul li a {
  color: #fff;
  padding-right: 5px;
}
/* Side Drawer Styling END */
/* Main Nav */
header.header.fixed {
  position: fixed;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.35);
}
header.header.fixed .logo-wrap {
  height: auto !important;
}
header.header.fixed img.ism-logo {
  width: 140px;
  height: 58px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
  margin-top: 15px;
}
@media screen and (max-width: 1025px) {
  header.header.fixed img.ism-logo {
    margin-top: 13px;
  }
}
@media screen and (max-width: 767px) {
  header.header.fixed img.ism-logo {
    margin-top: 23px;
  }
}
header.header.fixed .utility-nav {
  width: 85%;
  float: left;
  padding: 5px 25px 0px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
}
@media screen and (max-width: 767px) {
  header.header.fixed .utility-nav {
    width: auto;
    float: none;
    position: absolute;
    right: 72px;
    top: 25px;
    font-size: 30px;
    padding: 0px;
  }
}
header.header.fixed ul#mainnav > li:after {
  display: none;
}
header.header.fixed ul#mainnav > li > a {
  padding: 10px 0px 20px;
}
header.header.fixed.removeShadow {
  box-shadow: none !important;
}
header {
  background: #fff;
  width: 100%;
  display: inline-block;
  position: relative;
  top: 0px;
  left: 0px;
  z-index: 9998;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
  margin-bottom: -6px;
  /* SW nav default */
  /* Mega Menu Styling */
}
@media screen and (max-width: 767px) {
  header {
    height: 105px;
  }
}
header .logo-wrap {
  width: 240px;
  height: 104px;
  position: relative;
  max-width: 15%;
  float: left;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
}
header .logo-wrap img.ism-logo {
  width: 210px;
  height: 86px;
  margin-top: 18px;
  margin-left: 20px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
}
@media screen and (max-width: 767px) {
  header .logo-wrap img.ism-logo {
    width: 160px;
    height: 66px;
  }
}
header .utility-nav {
  width: 85%;
  float: left;
  padding: 18px 25px 5px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
}
@media screen and (max-width: 767px) {
  header .utility-nav {
    width: auto;
    float: none;
    position: absolute;
    right: 72px;
    top: 25px;
    font-size: 30px;
    padding: 0px;
  }
}
header .utility-nav ul {
  float: right;
  margin-bottom: 0px;
  margin-top: 5px;
}
header .utility-nav li {
  list-style: none;
  display: inline-block;
}
header .utility-nav li a {
  padding: 0px 15px;
  color: #ff6b0b;
}
header .utility-nav li a:hover {
  color: #999899;
}
header .utility-nav li a.search-icon {
  color: #999899 !important;
}
header .utility-nav li.soc-wrap {
  position: absolute;
  top: -30px;
  right: 16px;
}
header .utility-nav li.soc-wrap a {
  color: #999899;
  padding: 0px 7px !important;
}
header .utility-nav li.soc-wrap a:hover {
  color: #c9910d;
}
header .nav-container {
  width: 85%;
  float: left;
  padding-left: 100px;
}
header nav.sw-nav-default {
  display: block;
  background: #fff;
  width: 100%;
}
@media screen and (max-width: 767px) {
  header nav.sw-nav-default {
    display: none;
  }
}
header nav.sw-nav-default ul#mainnav {
  list-style: none;
  margin: 0;
  padding: 0;
  margin: 23px 0px 0px 0px;
  -webkit-margin-before: 0px;
  -webkit-margin-after: 0px;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
  -webkit-padding-start: 0px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: justify;
  padding: 0px 40px;
}
header nav.sw-nav-default ul#mainnav li#mn-home {
  display: none;
}
header nav.sw-nav-default ul#mainnav li#mn-visit:after {
  content: "Our Museum";
  font-size: 12px;
  color: #999899;
  position: absolute;
  bottom: 25px;
  white-space: nowrap;
  left: 0px;
  z-index: -999;
}
@media screen and (max-width: 1140px) {
  header nav.sw-nav-default ul#mainnav li#mn-visit:after {
    display: none;
  }
}
header nav.sw-nav-default ul#mainnav li#mn-contribute:after {
  content: "Donate Now";
  font-size: 12px;
  color: #999899;
  position: absolute;
  bottom: 25px;
  white-space: nowrap;
  left: 0px;
  z-index: -999;
}
@media screen and (max-width: 1140px) {
  header nav.sw-nav-default ul#mainnav li#mn-contribute:after {
    display: none;
  }
}
header nav.sw-nav-default ul#mainnav li#mn-lincoln-collection:after {
  content: "Preserving the Legacy";
  font-size: 12px;
  color: #999899;
  position: absolute;
  bottom: 25px;
  white-space: nowrap;
  left: 0px;
  z-index: -999;
}
@media screen and (max-width: 1140px) {
  header nav.sw-nav-default ul#mainnav li#mn-lincoln-collection:after {
    display: none;
  }
}
header nav.sw-nav-default ul#mainnav li#mn-explore:after {
  content: "Our Sites";
  font-size: 12px;
  color: #999899;
  position: absolute;
  bottom: 25px;
  white-space: nowrap;
  left: 0px;
  z-index: -999;
}
@media screen and (max-width: 1140px) {
  header nav.sw-nav-default ul#mainnav li#mn-explore:after {
    display: none;
  }
}
header nav.sw-nav-default ul#mainnav li#mn-exhibitions:after {
  content: "Current & Upcoming";
  font-size: 12px;
  color: #999899;
  position: absolute;
  bottom: 25px;
  white-space: nowrap;
  left: 0px;
  z-index: -999;
}
@media screen and (max-width: 1140px) {
  header nav.sw-nav-default ul#mainnav li#mn-exhibitions:after {
    display: none;
  }
}
header nav.sw-nav-default ul#mainnav li#mn-learning:after {
  content: "For Schools & Families";
  font-size: 12px;
  color: #999899;
  position: absolute;
  bottom: 25px;
  white-space: nowrap;
  left: 0px;
  z-index: -999;
}
@media screen and (max-width: 1140px) {
  header nav.sw-nav-default ul#mainnav li#mn-learning:after {
    display: none;
  }
}
header nav.sw-nav-default ul#mainnav li#mn-connect:after {
  content: "With Us";
  font-size: 12px;
  color: #999899;
  position: absolute;
  bottom: 25px;
  white-space: nowrap;
  left: 0px;
  z-index: -999;
}
@media screen and (max-width: 1140px) {
  header nav.sw-nav-default ul#mainnav li#mn-connect:after {
    display: none;
  }
}
header nav.sw-nav-default ul#mainnav > li:hover a {
  color: #999899 !important;
}
header nav.sw-nav-default ul#mainnav > li:hover ul li a {
  color: #fff !important;
}
header nav.sw-nav-default ul#mainnav > li {
  display: block;
  position: inherit;
  float: left;
  z-index: 999;
  -ms-flex-align: flex-start;
  -ms-flex-align: start;
  flex-pack: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  max-width: 200px;
  text-align: left;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
  /* 2nd Level ul */
}
header nav.sw-nav-default ul#mainnav > li > a {
  display: block;
  text-decoration: none;
  z-index: 1000;
  padding: 10px 0px 40px;
  font-size: 21px;
  color: #005cb8;
  font-weight: bold;
}
header nav.sw-nav-default ul#mainnav > li > a:hover {
  color: #999899;
}
header nav.sw-nav-default ul#mainnav > li > a.current {
  background: #ddd;
}
header nav.sw-nav-default ul#mainnav > li ul {
  display: none;
  position: absolute;
  width: auto;
  min-width: 110px;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 2000;
  /* 2nd Level li */
}
header nav.sw-nav-default ul#mainnav > li ul li {
  display: block;
  position: relative;
  white-space: nowrap;
  z-index: 999;
  /* 3rd level ul */
}
header nav.sw-nav-default ul#mainnav > li ul li a {
  background: #001b70;
  padding: 10px 12px;
  width: 100%;
  display: inline-block;
  color: #fff;
  font-size: 15px;
  color: #fff !important;
}
header nav.sw-nav-default ul#mainnav > li ul li a:hover {
  background: #005cb8;
}
header nav.sw-nav-default ul#mainnav > li ul li ul {
  left: 100%;
  top: 0;
  /* 3rd level li */
}
header nav.sw-nav-default ul#mainnav > li > ul.hasMega {
  display: none!important;
}
header nav.sw-nav-default ul#mainnav > li:hover > ul,
header nav.sw-nav-default ul#mainnav > li > ul > li:hover > ul {
  display: block!important;
}
header ul#megadrop {
  background: #eee;
  width: 100%;
  display: block;
  max-width: 1500px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 1290px) {
  header nav.sw-nav-default ul#mainnav > li a {
    font-size: 18px !important;
  }
}
@media screen and (max-width: 1025px) {
  header nav.sw-nav-default ul#mainnav > li a {
    font-size: 14px !important;
    padding: 19px 0px 22px;
  }
}
header nav.sw-nav-default ul#mainnav > li a:hover:after {
  width: 100%;
  background: #fff;
  margin-top: 10px;
  margin-bottom: -18px;
}
@media screen and (max-width: 890px) {
  header nav.sw-nav-default ul#mainnav > li a:hover:after {
    margin-top: 14px;
    margin-bottom: -21px;
  }
}
.first-content-section.fixed {
  margin-top: 105px;
}
@media screen and (max-width: 767px) {
  .first-content-section.fixed {
    margin-top: 105px;
  }
}
/* ====================== Footer ====================== */
footer .signupPanel {
  display: block;
}
footer .top-footer {
  padding: 10% 0px;
}
@media screen and (max-width: 767px) {
  footer .top-footer {
    padding: 4% 0px;
  }
}
footer .top-footer div#instafeed {
  margin-bottom: 30px;
  padding-top: 25px;
}
footer .top-footer input#signupButton {
  -webkit-appearance: button;
  cursor: pointer;
  background: #ff6b0b;
  border: 1px solid #ff6b0b;
  color: #fff;
  padding: 2px 15px;
}
footer .top-footer img.ism-logo {
  width: 210px;
  height: 86px;
  margin-left: -14px;
}
footer .top-footer a {
  color: #ff6b0b;
  padding-right: 10px;
  padding-top: 5px;
  display: inline-block;
}
footer .top-footer a:hover {
  color: #999899;
}
footer .top-footer .footer-sm-icon {
  padding-right: 10px;
}
footer .top-footer .footer-sm-icon .fa {
  font-size: 15px;
  margin-top: 5px;
}
footer .top-footer .sm-icon-wrap {
  margin-left: 10px;
}
footer .top-footer .sm-icon-wrap span {
  display: block;
  padding-top: 20px;
  color: #999899;
  font-weight: bold;
}
footer .top-footer h2 {
  color: #005cb8;
}
footer .top-footer h3 {
  margin-top: 0px;
  font-weight: normal;
  color: #ff6b0b;
}
footer .top-footer h4 {
  font-family: "futura-pt", sans-serif;
  font-size: 21px;
  display: table;
  border-bottom: 1px solid #999899;
  padding-bottom: 5px;
  margin-top: 22px;
  color: #999899;
}
footer .top-footer ul#mainnav,
footer .top-footer ul {
  display: table;
  margin: auto;
  list-style-type: disc;
  -webkit-margin-before: 0px;
  -webkit-margin-after: 0px;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
  -webkit-padding-start: 0px;
}
footer .top-footer ul#mainnav li#mn-home,
footer .top-footer ul li#mn-home {
  display: none;
}
footer .top-footer ul#mainnav li,
footer .top-footer ul li {
  list-style: none;
}
footer .top-footer ul#mainnav li ul,
footer .top-footer ul li ul {
  display: none;
}
footer .top-footer ul#mainnav li a,
footer .top-footer ul li a {
  color: #ff6b0b;
  font-size: 18px;
}
footer .top-footer ul#mainnav li a:hover,
footer .top-footer ul li a:hover {
  color: #999899;
}
footer .top-footer ul#mainnav li a:before,
footer .top-footer ul li a:before {
  content: "- ";
}
footer .bottom-footer {
  background: #005cb8;
  padding: 5px 0px;
  color: #fff;
  font-size: 13px;
}
footer .bottom-footer a {
  color: #fff;
  font-size: 13px;
  padding-right: 10px;
}
section.footer-image-wrap {
  background: #005cb8;
  position: relative;
}
section.footer-image-wrap .container {
  position: relative;
}
section.footer-image-wrap img.footer-image {
  max-width: 80%;
  box-shadow: 0px 0px 120px rgba(0, 0, 0, 0.225);
  margin: -130px auto -130px;
}
@media screen and (max-width: 992px) {
  section.footer-image-wrap img.footer-image {
    margin: -40px auto -40px;
  }
}
@media screen and (max-width: 767px) {
  section.footer-image-wrap img.footer-image {
    margin: 40px 0px;
    width: 100%;
    max-width: 100%;
  }
}
section.footer-image-wrap #footer-vertical-divider {
  width: 1px;
  height: 50px;
  position: absolute;
  left: 100%;
  top: 0px;
  border-left: 2px solid #fff;
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
section.footer-image-wrap a.yellow-btn {
  position: absolute;
  top: 50%;
  right: 0px;
  margin-top: -32px;
}
section.footer-image-wrap a.yellow-btn:hover {
  background: #c9910d;
}
@media screen and (max-width: 767px) {
  section.footer-image-wrap a.yellow-btn {
    display: table;
    margin: auto;
    position: relative;
    margin-top: -32px;
  }
}
/* ====================== Arbitrary Breakpoints ====================== */
/* Large Screens */
/* Medium Screens */
/* Small Screens */
/* XS Screens */
#drawer-toggle {
  cursor: pointer;
  padding: 10px 30px 14px 0px;
  position: fixed;
  top: 45px;
  right: 30px;
  background: transparent;
  border: none;
  z-index: 999999;
}
@media screen and (min-width: 768px) {
  #drawer-toggle {
    display: none;
  }
}
#drawer-toggle:focus {
  outline: none !important;
}
.menu-text {
  position: absolute;
  top: -17px;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: bold;
  color: #999899;
  letter-spacing: 1px;
}
#drawer-toggle span,
#drawer-toggle span:before,
#drawer-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 3px;
  width: 30px;
  background: #005cb8;
  position: absolute;
  display: block;
  content: '';
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -ms-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
#drawer-toggle:hover > span:before {
  top: 0px;
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
#drawer-toggle:hover > span:after {
  -moz-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  bottom: 0px;
}
#drawer-toggle span:before {
  top: -10px;
}
#drawer-toggle span:after {
  bottom: -10px;
}
#drawer-toggle.active span {
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
#drawer-toggle.active span:before,
#drawer-toggle.active span:after {
  top: 0px;
}
#drawer-toggle.active span:before {
  background: transparent;
}
#drawer-toggle.active span:after {
  background: transparent;
}
button#drawer-toggle.active span {
  background: #fff;
}
button#drawer-toggle.active .menu-text {
  color: #fff;
}
/* ====== Responsive Banner Rotator ======= */
.slider {
  position: relative!important;
  z-index: 2000;
  height: auto!important;
  width: 100%;
}
.slider .swRotator {
  position: relative!important;
}
.slider .scrollable {
  position: relative!important;
  overflow: visible!important;
  width: 100%!important;
}
.slider .scrollable .items {
  width: 100%!important;
  position: relative!important;
  top: 0;
  left: 0;
  right: 0;
}
.slider .scrollable .items .item {
  width: 100%!important;
  height: auto!important;
}
.slider .scrollable .items .item img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .slider .scrollable .items .item .caption {
    display: none;
  }
}
/* ====================== Home CTA Boxes ====================== */
section.home-cta-boxes .flex-container {
  width: 100%;
  height: auto;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  section.home-cta-boxes .flex-container {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
section.home-cta-boxes ul {
  display: none;
}
section.home-cta-boxes .fa {
  font-size: 22px;
  color: #fff;
}
section.home-cta-boxes .flex-item {
  /*   I DISABLED DISPLAY: INHERIT BECAUSE TEXT IN FLEX-ITEM FORCED INLINE
    display: inherit;*/
  height: auto;
}
section.home-cta-boxes .cta-box {
  padding: 65px 45px 30px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  section.home-cta-boxes .cta-box {
    -webkit-box-flex: 1;
    /* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-flex: 1;
    /* OLD - Firefox 19- */
    -webkit-flex: 1;
    /* Chrome */
    -ms-flex: 1;
    /* IE 10 */
    flex: 1;
  }
}
@media screen and (max-width: 767px) {
  section.home-cta-boxes .cta-box {
    width: 100%;
    padding: 15px 45px;
  }
}
section.home-cta-boxes .cta-box:after {
  content: "";
  position: absolute;
  width: 120%;
  height: 50%;
  background: url(/SiteFiles/2380/css/images/cta-triangle.svg);
  background-size: cover;
  bottom: 0px;
  right: -20%;
  opacity: 0.2;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
  z-index: 99;
}
section.home-cta-boxes .cta-box:hover {
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
  z-index: 999;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
}
section.home-cta-boxes .cta-box:hover:after {
  height: 52%;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
}
section.home-cta-boxes .cta-box a {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 999;
}
section.home-cta-boxes .cta-box h3 {
  color: #fff;
  display: block;
  font-size: 32px;
  padding-bottom: 25px;
  position: relative;
}
section.home-cta-boxes .cta-box h3:after {
  content: "";
  width: 23px;
  height: 3px;
  bottom: 5px;
  left: 0px;
  background: #fff;
  position: absolute;
}
section.home-cta-boxes .cta-box p {
  font-family: "futura-pt", sans-serif;
  color: #fff;
  display: block;
  margin: 0px 0px 10px;
}
@media screen and (min-width: 768px) {
  section.home-cta-boxes .cta-box p {
    max-width: 75%;
  }
}
section.home-cta-boxes .cta-box p .fa {
  font-size: 23px;
  margin-top: 10px;
}
section.home-cta-boxes .cta-box img.cta-icon {
  width: 65px;
  height: 65px;
  position: absolute;
  top: 20px;
  right: 20px;
  opacity: 0.2;
}
@media screen and (max-width: 767px) {
  section.home-cta-boxes .cta-box img.cta-icon {
    display: none;
  }
}
section.home-cta-boxes .cta-box-one {
  background: #001b70;
}
section.home-cta-boxes .cta-box-two {
  background: #ff6b0b;
}
section.home-cta-boxes .cta-box-three {
  background: #00aeef;
}
/* ====================== Home Intro/Main Section ====================== */
section.home-main {
  padding: 10% 0px;
  background: #cceffc;
  position: relative;
  background-size: 50%;
  background-repeat: repeat;
}
section.home-main h1 {
  color: #005cb8;
  font-weight: bold;
  font-size: 70px;
  text-align: center;
  position: relative;
  padding-bottom: 55px;
}
section.home-main h1:after {
  height: 55px;
  width: 2px;
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  background: #005cb8;
  margin-left: -1px;
}
section.home-main h3 {
  font-weight: bold;
  color: #ff6b0b;
  font-size: 32px;
  margin-top: 0px;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  section.home-main h3 {
    margin-top: 30px;
  }
}
section.home-main img.shape-two {
  max-width: 200px !important;
  position: absolute;
  bottom: -70px;
  left: 5%;
  z-index: 999;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 767px) {
  section.home-main img.shape-two {
    display: none;
  }
}
section.home-main #vertical-divider {
  width: 1px;
  height: 50px;
  position: absolute;
  left: 100%;
  top: 0px;
  border-left: 2px solid #fff;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
section.home-main .white-box {
  background: #fff;
  padding: 50px;
  box-shadow: 0px 0px 120px rgba(0, 0, 0, 0.225);
  position: relative;
  /* Center Right Column Content Vertically */
}
section.home-main .white-box img {
  max-width: 140%;
  float: right;
}
@media screen and (max-width: 767px) {
  section.home-main .white-box img {
    max-width: 100%;
    float: none;
  }
}
section.home-main .white-box .orange-btn {
  margin-top: 25px;
}
section.home-main .white-box img.shape-one {
  position: absolute;
  width: 90px;
  height: 90px;
  top: -45px;
  right: 45px;
}
@media screen and (max-width: 767px) {
  section.home-main .white-box img.shape-one {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  section.home-main .white-box .intro-content-wrap {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding-left: 10%;
  }
}
/* ====================== Arbitrary Breakpoints ====================== */
section.home-exhibits {
  z-index: 9;
}
section.home-exhibits .featured-exhibit {
  cursor: pointer;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  position: relative;
  margin: 0;
  padding: 20% 0;
  display: inline-block;
  float: left;
  width: 50%;
  overflow: hidden;
  background-size: 100% auto;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
}
section.home-exhibits .featured-exhibit:hover {
  z-index: 9999;
  background-size: 105% auto;
}
section.home-exhibits .featured-exhibit:hover:after {
  background: rgba(0, 92, 184, 0.75);
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
}
section.home-exhibits .featured-exhibit:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
}
section.home-exhibits .portal-wrap {
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  position: relative;
  margin: 0;
  padding: 0;
  display: inline-block;
  float: left;
  width: 50%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  section.home-exhibits .portal-wrap {
    width: 100%;
  }
}
section.home-exhibits .secondary-exhibits-top {
  cursor: pointer;
  padding: 20% 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  overflow: hidden;
  position: absolute;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
  background-size: 100% auto;
}
@media screen and (max-width: 767px) {
  section.home-exhibits .secondary-exhibits-top {
    position: relative;
    padding: 0px;
  }
}
section.home-exhibits .secondary-exhibits-top:hover {
  z-index: 9999;
  background-size: 105% auto;
}
section.home-exhibits .secondary-exhibits-top:hover:after {
  background: rgba(255, 107, 11, 0.55);
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
}
section.home-exhibits .secondary-exhibits-top:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
}
section.home-exhibits .secondary-exhibits-bottom {
  cursor: pointer;
  padding: 20% 0;
  background-size: 100% auto;
  width: 100%;
  height: 50%;
  overflow: hidden;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
}
@media screen and (min-width: 768px) {
  section.home-exhibits .secondary-exhibits-bottom {
    position: absolute;
    top: 50%;
    left: 0;
    padding: 0px;
  }
}
section.home-exhibits .secondary-exhibits-bottom:hover {
  z-index: 9999;
  background-size: 105% auto;
}
section.home-exhibits .secondary-exhibits-bottom:hover:after {
  background: rgba(46, 49, 149, 0.75);
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
}
section.home-exhibits .secondary-exhibits-bottom:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
}
section.home-exhibits .exhibit-content {
  display: block;
  z-index: 101;
  text-align: center;
  color: #fff;
  width: 100%;
  font-size: 1.65em;
  line-height: 1.2em;
  padding: 0 15px;
  margin: 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  section.home-exhibits .exhibit-content {
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: 0;
  }
}
section.home-exhibits .exhibit-content h2 {
  color: #fff;
  margin: 0px;
  display: table;
  margin: auto;
  max-width: 70%;
  font-size: 45px;
}
@media screen and (max-width: 1200px) {
  section.home-exhibits .exhibit-content h2 {
    font-size: 25px;
    max-width: 90%;
    padding: 50px;
  }
}
section.home-exhibits .exhibits-cta {
  padding: 50px 0px;
  background: url(/SiteFiles/2380/css/images/blue-pattern-bg.gif) !important;
}
section.home-exhibits .exhibits-cta .yellow-btn:hover {
  background: #c9910d !important;
}
section.home-news {
  padding: 10% 0px 14%;
  background: url(/assets/2380/news-bg-2.jpg);
  position: relative;
  background-size: cover !important;
}
@media screen and (min-width: 770px) {
  section.home-news {
    background-attachment: fixed !important;
    background-size: cover !important;
    background-position: center left !important;
  }
}
section.home-news .blog-meta {
  text-transform: capitalize;
  color: #005cb8;
  position: relative;
}
section.home-news span.tags {
  margin-bottom: 10px;
  display: block;
  color: #001b70;
}
@media screen and (max-width: 767px) {
  section.home-news span.tags {
    text-align: center;
  }
}
section.home-news h1 {
  color: #fff;
  font-weight: bold;
  font-size: 70px;
  text-align: center;
  position: relative;
  padding-bottom: 55px;
  margin-bottom: 0px;
}
@media screen and (max-width: 767px) {
  section.home-news h1 {
    font-size: 35px;
  }
}
section.home-news img.shape-two {
  width: 150px;
  position: absolute;
  bottom: -30px;
  right: 5%;
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
section.home-news img.shape-one {
  max-width: 100px;
  position: absolute;
  left: 7%;
  bottom: -900px;
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
section.home-news .recent-blog-posts-wrapper .flex-container.wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
section.home-news .recent-blog-posts-wrapper ul {
  -webkit-margin-before: 0px;
  -webkit-margin-after: 0px;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
  -webkit-padding-start: 0px;
  border: 18px solid rgba(0, 92, 184, 0);
  /*box-shadow: 0px 0px 120px rgba(0, 0, 0, 0.225);*/
}
section.home-news .recent-blog-posts-wrapper ul li {
  list-style: none;
  background: rgba(255, 255, 255, 0.9);
  padding: 30px 30px 0px;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
  backface-visibility: hidden;
  transform: translateZ(0);
  border-bottom: 1px solid #f1f1f1;
  border-right: 1px solid #f1f1f1;
  -webkit-font-smoothing: antialiased;
  margin: 5px;
  width: 100%;
  /*&:after{
          height: 55px;
          width: 2px;
          content: "";
          position: absolute;
          bottom: -55px;
          left: 50%;
          background: #005cb8;
        }*/
}
@media screen and (min-width: 768px) {
  section.home-news .recent-blog-posts-wrapper ul li {
    max-width: 48%;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-flex-basis: 45%;
    -ms-flex-preferred-size: 45%;
    flex-basis: 45%;
  }
}
section.home-news .recent-blog-posts-wrapper ul li:hover {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
  z-index: 999;
  background: #ffffff;
  box-shadow: 0px 0px 120px rgba(0, 0, 0, 0.1);
  -webkit-font-smoothing: antialiased;
}
section.home-news .recent-blog-posts-wrapper ul li a.recent-blog-posts-title {
  color: #ff6b0b;
  font-size: 35px;
  display: block;
  line-height: 1.1em;
}
@media screen and (max-width: 767px) {
  section.home-news .recent-blog-posts-wrapper ul li a.recent-blog-posts-title {
    font-size: 25px;
    padding-bottom: 30px;
    text-align: center;
  }
}
section.home-news .recent-blog-posts-wrapper ul li a.recent-blog-posts-title:before {
  font-family: FontAwesome;
  content: "\f1ea";
  display: block;
  font-weight: normal;
  margin-bottom: 15px;
  color: #001b70;
}
@media screen and (max-width: 767px) {
  section.home-news .recent-blog-posts-wrapper ul li a.recent-blog-posts-title:before {
    text-align: center;
  }
}
section.home-news .recent-blog-posts-wrapper ul li .recent-blog-posts-date-wrapper {
  display: none;
}
section.home-news .recent-blog-posts-wrapper ul li .recent-blog-posts-body {
  padding: 20px 0px;
  position: relative;
  font-size: 21px;
}
@media screen and (max-width: 767px) {
  section.home-news .recent-blog-posts-wrapper ul li .recent-blog-posts-body {
    display: none;
  }
}
section.home-news .recent-blog-posts-wrapper ul li .recent-blog-posts-body:after {
  content: "- Read More";
  display: table;
  color: #ff6b0b;
  margin-top: 30px;
  margin-bottom: 20px;
}
section.home-news .recent-blog-posts-wrapper ul li:nth-child(2),
section.home-news .recent-blog-posts-wrapper ul li:nth-child(4) {
  border-right: none;
}
section.home-news .recent-blog-posts-wrapper ul li:nth-child(3),
section.home-news .recent-blog-posts-wrapper ul li:nth-child(4) {
  border-bottom: none;
}
section.home-news .orange-btn {
  display: table;
  margin: 80px auto 0px;
}
section.home-sites {
  padding: 10% 0px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
section.home-sites h1 {
  color: #c9910d;
  font-weight: bold;
  font-size: 70px;
  text-align: center;
  position: relative;
  padding-bottom: 55px;
  margin-bottom: -10px;
  z-index: 999;
  /*&:after{
        height: 55px;
        width: 2px;
        content: "";
        position: absolute;
        bottom: -10px;
        left: 50%;
        background: @yellow;
        margin-left:-1px;
      }*/
}
section.home-sites #heading-divider {
  width: 1px;
  height: 50px;
  position: absolute;
  left: 50%;
  top: 12px;
  border-left: 1px solid #c9910d;
}
section.home-sites #site-vertical-divider {
  width: 1px;
  height: 50px;
  position: absolute;
  left: 100%;
  top: 0px;
  border-left: 2px solid #fff;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
section.home-sites .site-wrap {
  background: #fff;
  margin-bottom: 30px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
  cursor: pointer;
  position: relative;
  z-index: 999;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}
section.home-sites .site-wrap:hover {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
  box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.3);
}
section.home-sites .site-wrap:hover .site-block a:after {
  width: 100%;
  background: #005cb8;
  margin-top: 5px;
  margin-bottom: -13px;
}
section.home-sites .site-wrap .site-block {
  height: 175px;
  display: table;
}
section.home-sites .site-wrap .site-block img {
  max-width: 175px;
}
section.home-sites .site-wrap .site-block a {
  font-size: 25px;
  display: block;
  display: inline-block;
  color: #005cb8;
  padding-left: 30px;
  display: table-cell;
  vertical-align: middle;
}
section.home-sites .site-wrap .site-block a:after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: transparent;
  transition: width 0.5s ease, background-color 0.5s ease;
  margin-top: 5px;
  margin-bottom: -13px;
}
section.home-sites .blue-btn {
  display: table;
  margin: 60px auto 0px;
  text-align: center;
}
/*.outline-1 {
stroke-width: 1;
stroke-dasharray: 500;
stroke-dashoffset: 500;
fill-opacity: 0;
animation: draw 1s .25s ease-in forwards;
-webkit-animation: draw 1s  2s ease-in forwards;
-moz-animation: draw 1s  2s ease-in forwards;
-o-animation: draw 1s  2s ease-in forwards;
font-weight: bold;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}*/
.codrops-header {
  margin: 0 auto;
  padding: 2em;
  text-align: center;
}
.codrops-header h1 {
  margin: 0;
  font-weight: 300;
  font-size: 2.5em;
  line-height: 1.3;
}
.codrops-header h1 span {
  display: block;
  padding: 0 0 0.6em 0.1em;
  font-size: 60%;
  opacity: 0.7;
}
/* To Navigation Style */
.codrops-top {
  width: 100%;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.69em;
  line-height: 2.2;
}
.codrops-top a {
  display: inline-block;
  padding: 2em;
  text-decoration: none;
  letter-spacing: 1px;
}
.codrops-top span.right {
  float: right;
}
.codrops-top span.right a {
  display: block;
  float: left;
}
.codrops-icon:before {
  margin: 0 4px;
  text-transform: none;
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  font-family: 'codropsicons';
  line-height: 1;
  speak: none;
  -webkit-font-smoothing: antialiased;
}
.codrops-icon-drop:before {
  content: "\e001";
}
.codrops-icon-prev:before {
  content: "\e004";
}
/* Demo Buttons Style */
.codrops-demos {
  padding: 2em 0 1em;
  font-size: 0.8em;
  text-align: center;
}
.codrops-demos a {
  display: inline-block;
  margin: 0.5em 0.75em;
  line-height: 1.5;
  outline: none;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}
.codrops-demos a.current-demo {
  color: inherit;
}
/* Related demos */
.related {
  padding: 4em 0 3em;
}
.related p {
  font-size: 1.25em;
  font-weight: 700;
}
.related > a {
  border: 2px solid #000;
  border-color: initial;
  display: inline-block;
  text-align: center;
  margin: 20px 10px;
  padding: 25px;
}
.related a img {
  max-width: 100%;
  opacity: 0.8;
}
.related a:hover img,
.related a:active img {
  opacity: 1;
}
.related a h3 {
  margin: 0;
  padding: 0.5em 0 0.3em;
  max-width: 300px;
  text-align: left;
}
/* Demo ad design */
body #cdawrap {
  background: none;
  top: 50px;
  opacity: 0;
  -webkit-transition: opacity 0.3s 1.2s;
  transition: opacity 0.3s 1.2s;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
body #cdawrap a {
  color: #fff !important;
}
body .loaded ~ #cdawrap {
  opacity: 1;
}
body #cdawrap #cda-remove {
  top: 20px;
  right: 25px;
  width: 20px;
  height: 20px;
  opacity: 0;
}
body #cdawrap:hover #cda-remove {
  opacity: 1;
}
@media screen and (max-width: 35em) {
  .codrops-icon span {
    display: none;
  }
}
.ip-header {
  position: fixed;
  top: 0;
  z-index: 100;
  min-height: 460px;
  width: 100%;
  height: 100%;
  background: #005cb8;
  z-index: 999999 !important;
}
.ip-header h1 {
  margin: 0;
}
.ip-logo,
.ip-loader {
  position: absolute;
  left: 0;
  width: 100%;
  opacity: 0;
  cursor: default;
  pointer-events: none;
  z-index: 999999;
}
.ip-logo {
  top: 0;
  height: 100%;
  -webkit-transform: translate3d(0, 50%, 0);
  transform: translate3d(0, 50%, 0);
  margin-top: -67px !important;
}
img.loading-logo {
  width: 250px;
  height: 114px;
}
.ip-loader {
  bottom: 20%;
}
.ip-header .ip-inner {
  display: block;
  margin: 0 auto;
}
.ip-header .ip-logo svg {
  position: absolute;
  min-height: 200px;
  height: 25%;
}
.loaded .ip-header .ip-logo svg {
  max-height: 300px;
}
.ip-header .ip-logo svg path {
  fill: #1c9ccd;
}
.ip-header .ip-loader svg path {
  fill: none;
  stroke-width: 6;
}
.ip-header .ip-loader svg path.ip-loader-circlebg {
  stroke: #ddd;
}
.ip-header .ip-loader svg path.ip-loader-circle {
  -webkit-transition: stroke-dashoffset 0.2s;
  transition: stroke-dashoffset 0.2s;
  stroke: #1c9ccd;
}
/* Content */
.ip-main {
  overflow: hidden;
  margin: 0 auto;
  padding: 160px 0 10em 0;
  max-width: 1100px;
  width: 90%;
}
.ip-main h2 {
  margin: 0;
  padding: 0.5em 0 1em;
  color: #1c9ccd;
  text-align: center;
  font-size: 4.25em;
  font-size: 4vw;
  line-height: 1;
}
.browser {
  margin: 0 auto;
  padding-top: 8%;
  min-height: 400px;
  max-width: 1000px;
  width: 100%;
  border-radius: 8px;
  background: #fff url(../img/browser.png) no-repeat 50% 0;
  background-size: 100%;
  color: #d3d3d3;
}
.box {
  float: left;
  padding: 3.5em;
  width: 33.3%;
  font-size: 0.7em;
  line-height: 1.5;
}
.box p {
  font-family: 'Blokk', Arial, sans-serif;
}
[class^="icon-"]::before,
[class*=" icon-"]::before {
  display: block;
  margin-bottom: 0.5em;
  padding: 0.5em;
  border-radius: 5px;
  background: #dfdfdf;
  color: #fff;
  text-align: center;
  text-transform: none;
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  font-size: 5em;
  font-family: 'feather';
  line-height: 1;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-bell:before {
  content: "\e006";
}
.icon-cog:before {
  content: "\e023";
}
.icon-heart:before {
  content: "\e024";
}
/* Animations */
/* Initial animation of header elements */
.loading .ip-logo,
.loading .ip-loader {
  opacity: 1;
}
.loading .ip-logo {
  -webkit-animation: animInitialLogo 1s cubic-bezier(0.7, 0, 0.3, 1) both;
  animation: animInitialLogo 1s cubic-bezier(0.7, 0, 0.3, 1) both;
}
@-webkit-keyframes animInitialLogo {
  from {
    opacity: 0;
  }
}
@keyframes animInitialLogo {
  from {
    opacity: 0;
  }
}
.loading .ip-loader {
  -webkit-animation: animInitialLoader 1s cubic-bezier(0.7, 0, 0.3, 1) both;
  animation: animInitialLoader 1s cubic-bezier(0.7, 0, 0.3, 1) both;
}
@-webkit-keyframes animInitialLoader {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.5, 0.5, 1);
  }
}
@keyframes animInitialLoader {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.5, 0.5, 1);
    transform: scale3d(0.5, 0.5, 1);
  }
}
/* Header elements when loading finishes */
.loaded .ip-logo,
.loaded .ip-loader {
  opacity: 1;
}
.loaded .ip-logo {
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-animation: animLoadedLogo 1s cubic-bezier(0.7, 0, 0.3, 1) forwards;
  animation: animLoadedLogo 1s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}
@-webkit-keyframes animLoadedLogo {
  to {
    -webkit-transform: translate3d(0, 100%, 0) translate3d(0, 50px, 0) scale3d(0.65, 0.65, 1);
  }
}
@keyframes animLoadedLogo {
  to {
    -webkit-transform: translate3d(0, 100%, 0) translate3d(0, 50px, 0) scale3d(0.65, 0.65, 1);
    transform: translate3d(0, 100%, 0) translate3d(0, 50px, 0) scale3d(0.65, 0.65, 1);
  }
}
.loaded .ip-loader {
  -webkit-animation: animLoadedLoader 0.5s cubic-bezier(0.7, 0, 0.3, 1) forwards;
  animation: animLoadedLoader 0.5s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}
@-webkit-keyframes animLoadedLoader {
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0) scale3d(0.3, 0.3, 1);
  }
}
@keyframes animLoadedLoader {
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0) scale3d(0.3, 0.3, 1);
    transform: translate3d(0, -100%, 0) scale3d(0.3, 0.3, 1);
  }
}
/* Change the color of the logo */
.loaded .ip-logo svg path {
  -webkit-transition: all 0.5s ease 0.3s;
  transition: all 0.5s ease 0.3s;
  fill: #fff;
}
/* Header animation when loading finishes */
.loaded .ip-header {
  -webkit-animation: animLoadedHeader 1s cubic-bezier(0.7, 0, 0.3, 1) forwards;
  animation: animLoadedHeader 1s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}
@-webkit-keyframes animLoadedHeader {
  to {
    -webkit-transform: translate3d(0, -100%, 0);
  }
}
@keyframes animLoadedHeader {
  to {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
/* Content animations */
.loaded .ip-main h2,
.loaded .ip-main .browser,
.loaded .ip-main .browser .box,
.loaded .codrops-demos {
  -webkit-animation: animLoadedContent 1s cubic-bezier(0.7, 0, 0.3, 1) both;
  animation: animLoadedContent 1s cubic-bezier(0.7, 0, 0.3, 1) both;
}
.loaded .ip-main h2,
.loaded .ip-main .browser .box:first-child {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.loaded .codrops-demos,
.loaded .ip-main .browser .box:nth-child(2) {
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}
.loaded .ip-main .browser .box:nth-child(3) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
@-webkit-keyframes animLoadedContent {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 1);
  }
}
@keyframes animLoadedContent {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 1);
    transform: scale3d(0.3, 0.3, 1);
  }
}
/* Change layout class for header */
.layout-switch .ip-header {
  position: absolute;
}
/* No JS */
.no-js .ip-header {
  position: relative;
  min-height: 0px;
}
.no-js .ip-header .ip-logo {
  margin-top: 20px;
  height: 180px;
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}
.no-js .ip-header .ip-logo svg path {
  fill: #fff;
}
/* Media queries */
@media screen and (max-width: 45em) {
  .ip-main h2 {
    font-size: 2.25em;
    font-size: 10vw;
  }
  .box {
    width: 100%%;
  }
}
img.loading-logo {
  max-width: 250px;
}
.ip-container.loaded img.loading-logo {
  display: none;
}
/* ====================== Default Template Styling ====================== */
section.default.slider {
  position: relative;
  z-index: -9;
  /*.page-title-wrap {
    background: #005cb8;

    h1.default-page-title {
        color: #fff;
        font-size: 60px;
        padding-bottom: 10px;
    }

  }*/
}
section.default.slider img {
  width: 100%;
}
section.default-main {
  padding: 50px 0px 10%;
  position: relative;
  width: 100%;
  overflow: hidden;
  background: url(/SiteFiles/2380/css/images/blue-pattern-bg.gif) !important;
  /*img.shape-two {
      max-width: 170px;
      position: absolute;
      right: 50px;
      bottom: 30%;
  }

  img.shape-one {
      max-width: 70px;
      position: absolute;
      left: 70px;
      bottom: 65%;
  }*/
}
section.default-main img {
  border-style: none;
  max-width: 100%;
}
section.default-main img.learn-image {
  opacity: 0.8;
}
section.default-main h1.default-page-title {
  font-size: 70px;
  position: relative;
  margin-bottom: 45px;
  color: #fff;
  /*&:after{
        height: 55px;
        width: 2px;
        content: "";
        position: absolute;
        bottom: -60px;
        left: 50%;
        background: #005cb8;
        margin-left: -1px;
      }*/
}
@media screen and (max-width: 767px) {
  section.default-main h1.default-page-title {
    font-size: 30px;
  }
}
section.default-main .default-container {
  background: #fff;
  box-shadow: 0px 0px 120px rgba(0, 0, 0, 0.225);
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  z-index: 999;
}
@media screen and (min-width: 768px) {
  section.default-main .default-container {
    max-width: 80%;
  }
}
section.default-main #vertical-divider {
  width: 1px;
  height: 1px;
  position: absolute;
  left: 100%;
  top: 0px;
  border-left: 2px solid #f1f1f1;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
section.default-main #vertical-divider-two {
  width: 1px;
  height: 1px;
  position: absolute;
  right: 90%;
  top: 40%;
  border-left: 2px solid #f1f1f1;
  -ms-transform: rotate(-45deg);
  /* IE 9 */
  -ms-transform-origin: bottom right;
  /* IE 9 */
  -webkit-transform: rotate(-45deg);
  /* Chrome, Safari, Opera */
  -webkit-transform-origin: bottom right;
  /* Chrome, Safari, Opera */
  transform: rotate(-45deg);
  transform-origin: bottom right;
}
section.default-main .document-wrap {
  border: 1px solid #E4E4E4;
  padding: 20px 20px 10px;
  position: relative;
}
section.default-main .document-wrap:before {
  content: "";
  height: 100%;
  width: 5px;
  background: #c9910d;
  position: absolute;
  left: 0px;
  top: 0px;
}
section.default-main a.document {
  position: relative;
  color: #c9910d;
  display: table;
  font-size: 20px;
  margin-bottom: 15px;
}
section.default-main a.document:before {
  font-family: FontAwesome;
  content: "\f15c";
  padding-right: 15px;
}
section.default-main .anchor-nav-wrap {
  padding: 0px 0px 50px;
  padding: 20px;
  margin-top: -80px;
  background: #f1f1f1;
  margin-bottom: 60px;
}
section.default-main .anchor-nav-wrap ul.anchor-nav {
  -webkit-margin-before: 0px;
  -webkit-margin-after: 0px;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
  -webkit-padding-start: 0px;
  padding-left: 5px;
  display: table;
  margin: auto;
}
@media screen and (min-width: 768px) {
  section.default-main .anchor-nav-wrap ul.anchor-nav {
    width: 83.33333333333334%;
    margin-left: 8.333333333333332%;
  }
}
section.default-main .anchor-nav-wrap ul.anchor-nav li {
  list-style: none;
  display: inline-block;
}
section.default-main .anchor-nav-wrap ul.anchor-nav li a {
  color: #005cb8;
  padding-right: 32px;
  font-size: 21px;
}
section.default-main .anchor-nav-wrap ul.anchor-nav li:last-of-type a {
  padding-right: 0px;
}
section.default-main .anchor-nav-wrap.fixed {
  position: fixed;
  top: 90px;
  right: 0px;
  z-index: 99999;
  background: #f1f1f1;
  height: 35px;
  width: 100%;
  padding-left: 290px;
  box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.5);
  margin-top: 0px;
}
@media screen and (max-width: 767px) {
  section.default-main .anchor-nav-wrap.fixed {
    display: none;
  }
}
section.default-main .anchor-nav-wrap.fixed ul.anchor-nav {
  right: 0px;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  padding-left: 310px;
  padding-right: 35px;
  width: auto;
  margin-left: auto;
}
section.default-main div.anchor-offset:before {
  content: "";
  display: block;
  height: 200px;
  margin: -200px 0 0;
}
section.default-main .links-wrap h4 {
  font-family: "futura-pt", sans-serif;
  font-size: 17px;
  display: table;
  border-bottom: 1px solid #c9910d;
  padding-bottom: 5px;
  margin-top: 5px;
  margin-bottom: 5px;
}
section.default-main .links-wrap a {
  display: table;
}
.formmodule .formmodule-form {
  max-width: 500px;
}
.formmodule table {
  width: 100%;
}
.formmodule table .formmodule-row,
.formmodule table .formmodule-altrow {
  display: block;
  width: 100%;
}
.formmodule table .form-bot-stopper {
  margin-bottom: 30px;
}
.formmodule table button,
.formmodule table html input[type=button],
.formmodule table input[type=reset],
.formmodule table input[type=submit] {
  background: #c9910d;
  color: #fff;
  font-size: 18px;
  padding: 20px 35px;
  position: relative;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
  display: inline-block;
}
.formmodule table button:after,
.formmodule table html input[type=button]:after,
.formmodule table input[type=reset]:after,
.formmodule table input[type=submit]:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0%;
  background: url(/SiteFiles/2380/css/images/cta-triangle.svg);
  background-size: cover;
  bottom: 0px;
  right: -1px;
  opacity: 0.2;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
  z-index: 99;
}
.formmodule table button:hover,
.formmodule table html input[type=button]:hover,
.formmodule table input[type=reset]:hover,
.formmodule table input[type=submit]:hover {
  color: #fff !important;
}
.formmodule table button:hover:after,
.formmodule table html input[type=button]:hover:after,
.formmodule table input[type=reset]:hover:after,
.formmodule table input[type=submit]:hover:after {
  height: 100%;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
}
.formmodule table .formmodule-singleline {
  padding: 5px;
  width: 100%;
  margin-bottom: 35px;
  border: 1px solid #CECECE;
}
.formmodule table .formmodule-multiline {
  padding: 5px;
  width: 100%;
  margin-bottom: 35px;
  border: 1px solid #CECECE;
}
.formmodule table .formmodule-phone {
  margin-bottom: 20px;
  width: 32.6%;
  margin-bottom: 35px;
}
.formmodule table .formmodule-checkboxlist {
  border-collapse: collapse;
  margin-bottom: 10px;
  border: 1px solid #CECECE;
  padding: 5px;
  display: block;
  max-width: 300px;
}
.formmodule table .sw-form-options label,
.formmodule table .formmodule-row td label,
.formmodule table .formmodule-altrow td label {
  font-style: normal;
  margin-left: 5px;
  font-weight: normal;
}
.formmodule table .formmodule-singleline:focus,
.formmodule table .formmodule-phone:focus {
  outline: none !important;
}
.formmodule table .sw-form-question,
.formmodule table .formmodule-row td span,
.formmodule table .formmodule-altrow td span {
  font-weight: bold;
  color: #005cb8;
  font-size: 18px;
  margin-bottom: 10px;
  display: inline-block;
}
.formmodule table .formmodule-row td,
.formmodule table .formmodule-altrow td {
  vertical-align: top;
  width: 100%;
  display: block;
}
/* ========== Search Form ========== */
.searchicon {
  position: absolute;
  top: 0px;
  left: 50px;
  cursor: pointer;
  font-size: 30px;
  color: #ff6b0b;
}
#toggleSearch {
  position: fixed;
  display: none;
  line-height: 22px;
  vertical-align: middle;
  top: 0px;
  left: 0px;
  z-index: 999999!important;
  background: rgba(0, 92, 184, 0.97);
  padding: 30px;
  width: 100%;
  height: 100%;
  border: 25px solid #fff;
}
#toggleSearch .form-group {
  margin: 0;
  width: 142px;
  display: inline-block;
  height: 35px;
  width: 100%;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  #toggleSearch .form-group {
    margin-left: 1%;
    margin-bottom: 0px;
  }
}
#toggleSearch #searchField {
  border-radius: 0px !important;
  height: 55px;
  font-family: "futura-pt", sans-serif;
  font-style: normal;
  color: #999899;
  width: 350px;
  padding: 10px;
  display: inline-block;
  margin-right: 15px;
  max-width: 100%;
}
#toggleSearch .searchPanel {
  margin-top: 10px;
  color: #fff;
  text-transform: initial;
  width: 100%;
  max-width: 600px;
  padding: 50px;
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  -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%);
}
#toggleSearch .searchPanel p {
  font-size: 20px;
  max-width: 450px;
}
#toggleSearch #searchButton {
  background: #ff6b0b;
  color: #fff;
  font-size: 18px;
  padding: 20px 35px;
  position: relative;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
  display: inline-block;
  padding: 17px 35px;
  border: none;
}
#toggleSearch #searchButton:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0%;
  background: url(/SiteFiles/2380/css/images/cta-triangle.svg);
  background-size: cover;
  bottom: 0px;
  right: -1px;
  opacity: 0.2;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
  z-index: 99;
}
#toggleSearch #searchButton:hover {
  color: #fff !important;
}
#toggleSearch #searchButton:hover:after {
  height: 100%;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
}
@media screen and (max-width: 767px) {
  #toggleSearch #searchButton {
    position: relative;
    margin-top: 10px;
  }
}
#toggleSearch .btn {
  background-position: 82% 48%;
}
/* --------------------------------

Homepage Historic Sites Section Styling

-------------------------------- */
section.explore-our-sites {
  padding: 10% 0px;
  background: url(/SiteFiles/2380/css/images/explore-bg.jpg);
  background-size: cover;
  background-attachment: fixed;
  /* --------------------------------

  Modules - reusable parts of our design

  -------------------------------- */
  /* close the interest point description - only on mobile */
}
@media screen and (max-width: 768px) {
  section.explore-our-sites {
    background-attachment: scroll;
  }
}
section.explore-our-sites h1 {
  color: #fff;
  font-weight: bold;
  font-size: 70px;
  text-align: center;
  position: relative;
  text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 767px) {
  section.explore-our-sites h1 {
    font-size: 35px;
  }
}
section.explore-our-sites p {
  text-align: center;
  color: #fff;
  font-size: 26px;
  padding-bottom: 5px;
  margin-bottom: 55px;
  display: table;
  margin: 0px auto 55px;
  padding-left: 20px;
  padding-right: 20px;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
}
section.explore-our-sites .selectors-wrap {
  background: url(/SiteFiles/2380/css/images/shape-background.png);
  background-size: cover;
  padding: 100px 30px 50px;
}
@media screen and (max-width: 767px) {
  section.explore-our-sites .selectors-wrap {
    display: none;
  }
}
section.explore-our-sites .selectors-wrap ul li {
  list-style: none;
}
section.explore-our-sites .selectors-wrap ul li a {
  color: #005cb8;
  font-size: 17px;
  margin-bottom: 15px;
  display: table;
  line-height: 1.1em;
}
section.explore-our-sites .selectors-wrap ul li a:hover {
  color: #00aeef;
}
section.explore-our-sites .cd-container {
  /* this class is used to give a max-width to the element it is applied to,
    and center it horizontally when it reaches that max-width */
  width: 90%;
  max-width: 1170px;
  margin: 0 auto;
}
section.explore-our-sites .cd-container:after {
  content: "";
  display: table;
  clear: both;
}
section.explore-our-sites .cd-img-replace {
  /* replace text with background images */
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}
section.explore-our-sites .cd-product {
  text-align: center;
}
section.explore-our-sites .cd-product-wrapper {
  position: relative;
  width: 100%;
  max-width: 450px;
  margin-top: 40px;
}
section.explore-our-sites .cd-product-wrapper > img {
  display: block;
  width: 100%;
  max-width: 450px;
}
section.explore-our-sites .cd-single-point {
  position: absolute;
  border-radius: 50%;
  border: 8px solid rgba(0, 0, 0, 0.25);
  list-style: none !important;
}
section.explore-our-sites .selector-icon {
  border-radius: 50% !important;
  display: inline-block !important;
  margin-right: 15px;
  box-shadow: none !important;
}
section.explore-our-sites .cd-single-point > a,
section.explore-our-sites .selector-icon {
  position: relative;
  z-index: 2;
  display: block;
  width: 20px;
  height: 20px;
  border-radius: inherit;
  background: #c9910d;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  -webkit-transition: background-color 0.2s;
  -moz-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
section.explore-our-sites .cd-single-point > a::after,
section.explore-our-sites .cd-single-point > a:before,
section.explore-our-sites .selector-icon:after,
section.explore-our-sites .selector-icon:before {
  /* rotating plus icon */
  content: '';
  position: absolute;
  left: 10px;
  top: 10px;
  bottom: auto;
  right: auto;
  -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%);
  background-color: #ffffff;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
  opacity: 0;
}
section.explore-our-sites .cd-single-point > a::after,
section.explore-our-sites .selector-icon:after {
  height: 2px;
  width: 8px;
}
section.explore-our-sites .cd-single-point > a::before,
section.explore-our-sites .selector-icon:before {
  height: 8px;
  width: 2px;
}
section.explore-our-sites .cd-single-point::after {
  /* this is used to create the pulse animation */
  content: '';
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: inherit;
  background-color: transparent;
  -webkit-animation: cd-pulse 2s infinite;
  -moz-animation: cd-pulse 2s infinite;
  animation: cd-pulse 2s infinite;
}
section.explore-our-sites .cd-product-wrapper .cd-single-point:nth-of-type(1) {
  bottom: 5%;
  left: 11%;
}
section.explore-our-sites .cd-product-wrapper .cd-single-point:nth-of-type(2) {
  bottom: 7%;
  right: 35%;
}
section.explore-our-sites .cd-product-wrapper .cd-single-point:nth-of-type(3) {
  bottom: 12%;
  right: 30%;
}
section.explore-our-sites .cd-product-wrapper .cd-single-point:nth-of-type(4) {
  top: 7%;
  right: 15%;
}
section.explore-our-sites .cd-product-wrapper .cd-single-point:nth-of-type(5) {
  bottom: 23%;
  right: 17%;
}
section.explore-our-sites .cd-product-wrapper .cd-single-point:nth-of-type(6) {
  bottom: 54%;
  right: 4%;
}
section.explore-our-sites .cd-product-wrapper .cd-single-point:nth-of-type(7) {
  top: 23%;
  right: 4%;
}
section.explore-our-sites .cd-product-wrapper .cd-single-point:nth-of-type(8) {
  bottom: 4%;
  left: 3%;
}
section.explore-our-sites .cd-product-wrapper .cd-single-point:nth-of-type(9) {
  bottom: 39%;
  right: 39%;
}
section.explore-our-sites .cd-product-wrapper .cd-single-point:nth-of-type(10) {
  bottom: 19%;
  left: 12%;
}
section.explore-our-sites .cd-product-wrapper .cd-single-point:nth-of-type(11) {
  bottom: 44%;
  right: 8%;
}
section.explore-our-sites .cd-product-wrapper .cd-single-point:nth-of-type(12) {
  bottom: 52%;
  right: 37%;
}
section.explore-our-sites .cd-single-point.is-open > a {
  background-color: #79232e;
}
section.explore-our-sites .cd-single-point.is-open > a::after,
section.explore-our-sites .cd-single-point.is-open > a::before,
section.explore-our-sites .selector-icon.is-open:before,
section.explore-our-sites .selector-icon.is-open:after {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(135deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(135deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(135deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(135deg);
  transform: translateX(-50%) translateY(-50%) rotate(135deg);
  opacity: 1;
}
section.explore-our-sites .cd-single-point.is-open::after {
  /* remove pulse effect */
  display: none;
}
section.explore-our-sites .cd-single-point.is-open .cd-more-info {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s, -webkit-transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s, -moz-transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s, transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;
}
section.explore-our-sites .cd-more-info img {
  max-width: 100%;
}
section.explore-our-sites .cd-more-info .yellow-btn {
  display: block;
  text-align: center;
  margin-top: 30px;
}
section.explore-our-sites .cd-single-point.visited > a {
  background-color: #c9910d;
}
section.explore-our-sites .cd-single-point.visited::after {
  /* pulse effect no more active on visited elements */
  display: none;
}
@media only screen and (min-width: 600px) {
  section.explore-our-sites .cd-single-point.is-open .cd-more-info.cd-left {
    right: 140%;
  }
  section.explore-our-sites .cd-single-point.is-open .cd-more-info.cd-right {
    left: 140%;
  }
  section.explore-our-sites .cd-single-point.is-open .cd-more-info.cd-top {
    bottom: 140%;
  }
  section.explore-our-sites .cd-single-point.is-open .cd-more-info.cd-bottom {
    top: 140%;
  }
}
@-webkit-keyframes cd-pulse {
  0% {
    -webkit-transform: scale(1);
    box-shadow: inset 0 0 1px 1px rgba(0, 0, 0, 0.7);
  }
  50% {
    box-shadow: inset 0 0 1px 1px rgba(0, 0, 0, 0.7);
  }
  100% {
    -webkit-transform: scale(1.6);
    box-shadow: inset 0 0 1px 1px rgba(0, 0, 0, 0);
  }
}
@-moz-keyframes cd-pulse {
  0% {
    -moz-transform: scale(1);
    box-shadow: inset 0 0 1px 1px rgba(0, 0, 0, 0.7);
  }
  50% {
    box-shadow: inset 0 0 1px 1px rgba(0, 0, 0, 0.7);
  }
  100% {
    -moz-transform: scale(1.6);
    box-shadow: inset 0 0 1px 1px rgba(0, 0, 0, 0);
  }
}
@keyframes cd-pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    box-shadow: inset 0 0 1px 1px rgba(0, 0, 0, 0.7);
  }
  50% {
    box-shadow: inset 0 0 1px 1px rgba(0, 0, 0, 0.7);
  }
  100% {
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    -ms-transform: scale(2);
    -o-transform: scale(2);
    transform: scale(2);
    box-shadow: inset 0 0 1px 1px rgba(0, 0, 0, 0);
  }
}
section.explore-our-sites .cd-single-point .cd-more-info {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  text-align: left;
  line-height: 1.5;
  background-color: #fff;
  padding: 2em 1em 1em;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s, -webkit-transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s, -moz-transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s, transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;
}
section.explore-our-sites .cd-single-point .cd-more-info::before {
  /* triangle next to the interest point description - hidden on mobile */
  content: '';
  position: absolute;
  height: 0;
  width: 0;
  display: none;
  border: 8px solid transparent;
}
section.explore-our-sites .cd-single-point .cd-more-info h2 {
  font-size: 22px;
  font-size: 1.375rem;
  margin-bottom: .6em;
}
section.explore-our-sites .cd-single-point .cd-more-info p {
  color: #758eb1;
}
@media only screen and (min-width: 200px) {
  section.explore-our-sites .cd-single-point .cd-more-info {
    position: absolute;
    width: 200px;
    height: 200px;
    padding: 1em;
    overflow-y: visible;
    line-height: 1.4;
    border-radius: 0.25em;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  }
  section.explore-our-sites .cd-single-point .cd-more-info::before {
    display: block;
  }
  section.explore-our-sites .cd-single-point .cd-more-info.cd-left,
  section.explore-our-sites .cd-single-point .cd-more-info.cd-right {
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  section.explore-our-sites .cd-single-point .cd-more-info.cd-left::before,
  section.explore-our-sites .cd-single-point .cd-more-info.cd-right::before {
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  section.explore-our-sites .cd-single-point .cd-more-info.cd-left {
    right: 160%;
    left: auto;
  }
  section.explore-our-sites .cd-single-point .cd-more-info.cd-left::before {
    border-left-color: rgba(255, 255, 255, 0.95);
    left: 100%;
  }
  section.explore-our-sites .cd-single-point .cd-more-info.cd-right {
    left: 160%;
  }
  section.explore-our-sites .cd-single-point .cd-more-info.cd-right::before {
    border-right-color: rgba(255, 255, 255, 0.95);
    right: 100%;
  }
  section.explore-our-sites .cd-single-point .cd-more-info.cd-top,
  section.explore-our-sites .cd-single-point .cd-more-info.cd-bottom {
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  section.explore-our-sites .cd-single-point .cd-more-info.cd-top::before,
  section.explore-our-sites .cd-single-point .cd-more-info.cd-bottom::before {
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  section.explore-our-sites .cd-single-point .cd-more-info.cd-top {
    bottom: 160%;
    top: auto;
  }
  section.explore-our-sites .cd-single-point .cd-more-info.cd-top::before {
    border-top-color: rgba(255, 255, 255, 0.95);
    top: 100%;
  }
  section.explore-our-sites .cd-single-point .cd-more-info.cd-bottom {
    top: 160%;
  }
  section.explore-our-sites .cd-single-point .cd-more-info.cd-bottom::before {
    border-bottom-color: rgba(255, 255, 255, 0.95);
    bottom: 100%;
  }
  section.explore-our-sites .cd-single-point .cd-more-info h2 {
    font-size: 20px;
    font-size: 1.25rem;
    margin-bottom: 0;
  }
  section.explore-our-sites .cd-single-point .cd-more-info p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
section.explore-our-sites .cd-close-info {
  position: fixed;
  top: 0;
  right: 0;
  height: 44px;
  width: 44px;
}
section.explore-our-sites .cd-close-info::after,
section.explore-our-sites .cd-close-info:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  background-color: #79232e;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
}
section.explore-our-sites span.selector-icon.visited.is-open {
  background: #79232e;
}
section.explore-our-sites .cd-close-info::after {
  height: 2px;
  width: 16px;
}
section.explore-our-sites .cd-close-info::before {
  height: 16px;
  width: 2px;
}
@media only screen and (min-width: 600px) {
  section.explore-our-sites .cd-close-info {
    display: none;
  }
}
/* --------------------------------

CTA BUTTONS

-------------------------------- */
.cta-buttons {
  width: 100%;
  margin: 0 auto;
  position: fixed;
  z-index: 99999!important;
}
@media screen and (max-width: 767px) {
  .cta-buttons {
    display: none;
  }
}
.cta-buttons > div {
  position: fixed;
  right: 0;
  top: 43%;
  z-index: 1;
}
.cta-buttons a {
  display: block;
  font-size: 14px;
  color: #2e3195;
  padding: 12px 15px 12px 12px;
  background-color: #fff;
  margin-bottom: 4px;
  margin-top: 0;
  text-transform: uppercase;
  right: -136px;
  position: relative;
  -webkit-transition: all 150ms linear;
  -moz-transition: all 150ms linear;
  -o-transition: all 150ms linear;
  transition: all 150ms linear;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.12);
}
.cta-buttons a:hover {
  right: 0px;
}
.cta-buttons a .fa {
  padding: 0px 4px;
}
.cta-buttons a i.fa.fa-user {
  color: #ff6b0b;
}
.cta-buttons a i.fa.fa-heart {
  color: #00aeef;
}
.cta-buttons a i.fa.fa-calendar {
  color: #c9910d;
}
section.default-main.explore {
  padding: 50px 0px;
}
section.default-main.history .templatecontent {
  padding: 35px;
  background: #fff;
  margin-bottom: 50px;
  box-shadow: 0px 0px 120px rgba(0, 0, 0, 0.225);
}
.flex-container.connect {
  width: 100%;
  height: auto;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}
.flex-container.connect .flex-item {
  width: 48%;
  background: #ff6b0b;
  margin-right: 1%;
  margin-bottom: 1%;
  border-bottom: 8px solid #005cb8;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
  overflow: hidden;
}
.flex-container.connect .flex-item:hover {
  z-index: 9999;
  position: relative;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
  background: #2e3195;
}
input#signupButton {
  -webkit-appearance: button;
  cursor: pointer;
  background: #ff6b0b;
  border: 1px solid #ff6b0b;
  color: #fff;
  padding: 2px 15px;
}
.connect-wrap {
  font-size: 20px;
  padding: 30px;
  line-height: 1em;
  color: #fff;
  text-align: center;
}
.connect-wrap:hover .open-wrap {
  right: 20px;
}
.connect-wrap .fa {
  font-size: 30px;
  display: block;
  color: #fff;
  margin-bottom: 10px;
}
.connect-wrap .open-wrap {
  font-size: 20px !important;
  position: absolute;
  top: 20px;
  right: -50px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
}
.connect-wrap .open-wrap .fa {
  font-size: 30px;
}
section.historic-site-main .default-container {
  background: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  z-index: 999;
}
/* CALENDAR STYLING */
a.cal-display-type,
a.cal-display-type {
  background: #005cb8;
  color: #fff;
  padding: 5px;
  display: inline-block;
  margin-bottom: 15px;
}
a.cal-display-type.active {
  background: #ff6b0b;
}
span.timeframes,
span.categories {
  display: block;
}
ul.sw-events-detail-timeframes,
ul.sw-events-detail-categories {
  -webkit-margin-before: 0px;
  -webkit-margin-after: 0px;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
  -webkit-padding-start: 0px;
}
.sw-events-detail-list-event-description {
  display: none;
}
ul.sw-events-detail-list li {
  margin: 0;
  padding: 0;
  list-style-type: none;
  border: 1px solid #999;
  border-left: 5px solid #999;
  padding: 20px;
  margin-bottom: 20px;
}
ul.sw-events-detail-timeframes li a,
ul.sw-events-detail-categories li a {
  background: #005cb8;
  color: #fff;
  padding: 0px 5px;
  display: inline-block;
  margin-bottom: 5px;
  font-size: 12px;
}
div.event-module div.list-panel ul.sw-events-detail-list li.sw-events-detail-list-event div.sw-events-detail-list-event-details div.sw-events-detail-list-event-date {
  display: inline-block;
  font-weight: 700;
  font-size: .85em;
  margin: 0 15px 0 0;
  vertical-align: middle;
}
div.event-module div.list-panel ul.sw-events-detail-list li.sw-events-detail-list-event div.sw-events-detail-list-event-details div.sw-events-detail-list-event-date:before {
  content: '\f133';
  font-weight: normal!important;
  margin: 0 6px 0 0;
  font-family: FontAwesome;
  display: inline-block !important;
}
div.event-module div.list-panel ul.sw-events-detail-list li.sw-events-detail-list-event div.sw-events-detail-list-event-details div.sw-events-detail-list-event-time {
  display: inline-block;
  font-weight: 700;
  font-size: .85em;
  margin: 0;
  vertical-align: middle;
}
div.event-module div.list-panel ul.sw-events-detail-list li.sw-events-detail-list-event div.sw-events-detail-list-event-details div.sw-events-detail-list-event-time:before {
  content: '\f017';
  font-weight: normal!important;
  margin: 0 6px 0 0;
  font-family: FontAwesome;
  display: inline-block !important;
}
div.sw-events-detail-list-event-location:before {
  content: '\f041';
  font-weight: normal!important;
  margin: 0 6px 0 0;
  font-family: FontAwesome;
  display: inline-block !important;
}
a.sw-events-detail-more-link {
  border-bottom: 1px solid #ff6b0b;
  display: inline-block;
  margin: 10px 0px 0px;
}
ul.sw-events-detail-categories {
  margin-left: -15px;
  margin-top: 15px;
  display: block;
}
ul.sw-events-detail-timeframes {
  margin-left: -15px;
}
ul.sw-events-detail-timeframes li,
ul.sw-events-detail-categories li {
  padding: 0px;
}
a.public-ical-feed-link.public-ical-feed-link--calendar.js-download-calendar-ical:before {
  content: '\f019';
  font-weight: normal!important;
  margin: 0 6px 0 0;
  font-family: FontAwesome;
  display: inline-block !important;
}
h2.sw-events-detail-list-event-subject a {
  color: #005cb8;
}
.blog .blog-entry {
  margin: 20px 0;
  border-bottom: 1px solid #999;
  padding: 0px 0px 35px;
  margin-bottom: 35px;
}
.blog .blog-entry .post-body {
  padding: 10px 0;
  font-family: "futura-pt", sans-serif;
  font-size: 21px;
  line-height: 28.89px;
}
.blog .blog-entry h4.post-title a {
  color: #ff6b0b;
  font-size: 32px;
}
.blog .blog-entry .post-profileinfo {
  display: none;
}
.blog .blog-entry .post-tags a {
  color: #999899;
  position: relative;
}
.blog .blog-entry .post-tags a:before {
  content: '\f02b';
  font-weight: normal!important;
  margin: 0 6px 0 0;
  font-family: FontAwesome;
  display: inline-block !important;
  font-size: 12px;
}
.blog .blog-entry .keep-reading-wrap a {
  background: #ff6b0b;
  color: #fff;
  font-size: 18px;
  padding: 20px 35px;
  position: relative;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
  display: inline-block;
  margin: 20px 0px 10px;
  padding: 10px 25px;
}
.blog .blog-entry .keep-reading-wrap a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0%;
  background: url(/SiteFiles/2380/css/images/cta-triangle.svg);
  background-size: cover;
  bottom: 0px;
  right: -1px;
  opacity: 0.2;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
  z-index: 99;
}
.blog .blog-entry .keep-reading-wrap a:hover {
  color: #fff !important;
}
.blog .blog-entry .keep-reading-wrap a:hover:after {
  height: 100%;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
}
a.back-btn {
  background: #ff6b0b;
  color: #fff;
  font-size: 18px;
  padding: 20px 35px;
  position: relative;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
  padding: 10px 25px;
  display: inline-block;
}
a.back-btn:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0%;
  background: url(/SiteFiles/2380/css/images/cta-triangle.svg);
  background-size: cover;
  bottom: 0px;
  right: -1px;
  opacity: 0.2;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
  z-index: 99;
}
a.back-btn:hover {
  color: #fff !important;
}
a.back-btn:hover:after {
  height: 100%;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
}
h4.post-title {
  color: #ff6b0b;
  font-size: 32px;
}
.blog .blog-entry h4.post-title a:before {
  font-family: FontAwesome;
  content: "\f1ea";
  display: block;
  font-weight: normal;
  margin-bottom: 15px;
  color: #001b70;
}
input[type=submit] {
  background: #ff6b0b;
  color: #fff;
  font-size: 18px;
  padding: 20px 35px;
  position: relative;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
  display: inline-block;
  padding: 10px 25px;
  border: none;
}
input[type=submit]:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0%;
  background: url(/SiteFiles/2380/css/images/cta-triangle.svg);
  background-size: cover;
  bottom: 0px;
  right: -1px;
  opacity: 0.2;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
  z-index: 99;
}
input[type=submit]:hover {
  color: #fff !important;
}
input[type=submit]:hover:after {
  height: 100%;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
}
div.anchor-offset:before {
  content: "";
  display: block;
  height: 200px;
  margin: -200px 0 0;
}
/* ======= RESPONSIVE IFRAME ======= */
.wrapper {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  background: #CCC;
}
.h_iframe {
  position: relative;
}
.h_iframe .ratio {
  display: block;
  width: 100%;
  height: auto;
}
.h_iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .mobile-hide {
    display: none !important;
  }
}
/* ======= Host an Event Instagram Feed Styling ======= */
div#instafeed.host-feed img {
  width: 16.66666666667% !important;
}
@media screen and (max-width: 767px) {
  div#instafeed.host-feed img {
    width: 33.333333333% !important;
  }
}
.instagram-title {
  background: #005cb8;
  text-align: center;
  padding: 10px;
}
.instagram-title a {
  color: #fff;
}
.image-wrap {
  position: relative;
  background: #000;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .image-wrap {
    background: #fff;
  }
}
.image-wrap h3 {
  position: absolute;
  bottom: 0px;
  padding: 8px 20px 5px;
  color: #fff;
}
@media screen and (max-width: 1030px) {
  .image-wrap h3 {
    font-size: 25px;
  }
}
@media screen and (max-width: 767px) {
  .image-wrap h3 {
    font-size: 31px;
    color: #00aeef;
  }
}
/* ======= Instagram Feed Styling ======= */
.is-icon {
  width: 150px;
  height: 150px;
  background: #ff6b0b;
  float: left !important;
  margin-top: 5px;
  margin-right: 10px;
  text-align: center;
  padding: 80px 0px 0px 10px;
  color: #fff;
}
.is-icon i.fa.fa-instagram {
  display: block;
  text-align: center;
  font-size: 35px;
}
.is-icon a {
  color: #fff !important;
}
.is-icon a:hover {
  color: #005cb8;
}
/* ======= Store Styling ======= */
.store-template {
  /* Category List Styling */
}
.store-template h1 {
  margin-top: 20px;
  margin-bottom: 20px;
}
.store-template .products-pager {
  width: 100%;
  margin-bottom: 40px;
  margin-top: 40px;
}
.store-template .products-pager:before {
  display: table;
  content: '';
}
.store-template .products-pager:after {
  display: table;
  content: '';
  clear: both;
}
.store-template .products-pager a {
  min-width: 150px;
  display: block;
  padding: 5px 10px;
  text-align: center;
  background: #ff6b0b;
  color: #ffffff;
  font-size: 19px;
}
.store-template .products-pager a.previous-product {
  float: left;
}
.store-template .products-pager a.next-product {
  float: right;
}
.store-template #product-detail-header:before {
  display: table;
  content: '';
}
.store-template #product-detail-header:after {
  display: table;
  content: '';
  clear: both;
}
.store-template #product-detail-photos {
  width: 35%;
}
.store-template #product-detail-description {
  display: none;
}
.store-template #product-detail-main-image .open-image-box {
  display: block;
}
.store-template ul#breadcrumb {
  list-style: none;
  margin: 0px;
  padding: 0px;
  display: block;
  width: 100%;
}
.store-template ul#breadcrumb li {
  display: inline-block;
}
.store-template ul#breadcrumb li a {
  color: #005cb8;
}
.store-template ul#breadcrumb li a:hover {
  color: #999899;
}
.store-template ul#breadcrumb li + li:before {
  padding: 0px 5px;
  content: '/\00a0';
}
.store-template .featured-product-list {
  border: none;
}
.store-template ul.category-list,
.store-template ul.featured-product-list {
  list-style: none;
  display: flex;
  float: none;
  flex-flow: row wrap;
  margin: 0px;
  padding: 20px 0px 0px 0px;
  justify-content: center;
}
.store-template ul.featured-product-list > p {
  display: none;
}
.store-template .category-list-item {
  height: auto;
  border: none;
  float: none;
  flex: 0 0 33.333%;
  margin: 0px 0px 20px 0px;
  position: relative;
  padding: 0px 5px;
}
.store-template .category-list-item a {
  display: block;
  cursor: pointer;
}
.store-template .category-list-item a img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.store-template .category-list-item h4 {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  padding: 0px 5px;
  margin: 0px;
  font-size: 21px;
}
.store-template .category-list-item h4 a {
  display: block;
  padding: 10px 15px;
  text-align: center;
  background: #00aeef;
  color: #fff;
  width: 100%;
  cursor: pointer;
}
.store-template .category-list-item:hover h4 a {
  background: #005cb8;
}
.store-template .featured-product-list-item {
  height: auto;
  border: none;
  float: none;
  flex: 1 0 33.333%;
  margin: 0px 0px 20px 0px;
  padding: 0px 5px;
}
.store-template .product-list-search {
  display: none;
}
.store-template .store-search-wrap {
  text-align: right;
}
.store-template .store-search-wrap .storeSearchPanel {
  display: inline-block;
}
.store-template #product-detail-photos-list > div:before {
  content: '';
  display: table;
}
.store-template #product-detail-photos-list > div:after {
  content: '';
  display: table;
  clear: both;
}
@media screen and (max-width: 767px) {
  .store-template .store-search-wrap,
  .store-template .breadcrumb-wrap {
    text-align: center;
  }
  .store-template .breadcrumb-wrap {
    margin-bottom: 20px;
  }
}
.store-template .product-list {
  margin: 20px 0px;
  padding: 0px;
  list-style: none;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
}
.store-template .product-list li.product-list-item {
  flex: 0 0 33.333%;
  padding: 15px;
  height: auto;
  float: none;
  margin: 0px;
}
@media screen and (max-width: 767px) {
  .store-template .product-list li.product-list-item {
    flex: 0 0 50%;
  }
}
.store-template .product-list li.product-list-item .product-list-item-image {
  position: relative;
  margin: 0px 0px 10px 0px;
}
.store-template .product-list li.product-list-item .product-list-item-image a {
  display: block;
}
.store-template .product-list li.product-list-item .product-list-item-image a img {
  width: 100%;
  height: auto;
}
.store-template .product-list h4 {
  font-size: 1.8rem;
  line-height: 2rem;
  margin: 0px;
}
.store-template .product-list-display-options {
  width: 60%;
  display: flex;
  float: left;
  align-content: center;
}
.store-template h4.featured-product-list-item-name {
  font-size: 21px;
}
.store-template #product-detail-information-container h1 {
  margin-top: 0px;
  font-size: 37px;
}
.store-template #product-detail-overview {
  font-size: 18px;
}
.store-template #product-detail-tabs {
  margin-top: 15px;
}
.store-template .ui-tabs .ui-tabs-nav {
  padding: 0px;
}
.store-template .ui-widget-header {
  border: none;
  border-bottom: 1px solid #eee;
  background: transparent;
}
.store-template .ui-widget-content {
  border: 1px solid #eee;
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 0px;
}
.store-template .ui-state-default,
.store-template .ui-widget-content .ui-state-default {
  border-color: #eee;
  background-color: #eee;
}
.store-template .ui-state-active,
.store-template .ui-widget-content .ui-state-active {
  border-color: #eee;
}
.store-template .ui-tabs .ui-tabs-nav li {
  border-radius: 0px;
}
.store-template .ui-tabs .ui-tabs-nav li:first-of-type {
  border-left: none;
}
.store-template .ui-tabs {
  padding: 0px;
  zoom: 1;
  border-left: 1px solid #eee;
  border-right: none;
  border-top: none;
  border-radius: 0px;
}
.store-template .category-menu {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.store-template .category-menu > div {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.store-template .category-menu > div > div {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex: 1 1 100%;
}
.store-template .category-menu div.quickcart {
  display: flex;
  justify-content: flex-end;
  flex: 1 0 auto;
}
@media screen and (max-width: 767px) {
  .store-template .category-menu div.quickcart {
    flex: 0 0 100%;
    justify-content: center;
    margin-bottom: 15px;
  }
}
.store-template .category-menu a.quickcart-cart {
  color: #fff;
}
.store-template .category-menu a.quickcart-cart:hover {
  color: #ff6b0b;
}
.store-template .category-menu h2 {
  display: none;
}
.store-template .category-menu h3.category-text {
  display: flex;
  flex: 0 1 auto;
  padding: 10px 15px;
  font-size: 22px;
  margin: 0px;
  font-weight: normal;
}
.store-template .category-menu h3.category-text a {
  color: #fff;
}
.store-template .category-menu ul#subnav {
  list-style: none;
  margin: 0px;
  padding: 0px;
  display: flex;
  flex: 1 1 auto;
  flex-flow: row wrap;
  justify-content: center;
}
.store-template .category-menu ul#subnav li {
  display: flex;
  flex: 1 1 100px;
  font-size: 18px;
  padding: 5px 15px;
  justify-content: center;
}
.store-template .category-menu ul#subnav li a {
  padding: 5px 10px;
  background: #fff;
  color: #333;
  border: 2px solid #ff6b0b;
  width: 100%;
  text-align: center;
  justify-content: center;
  align-items: center;
  align-content: center;
  display: flex;
}
.store-template .category-menu ul#subnav li a:hover {
  background: #ff6b0b;
  color: #fff;
}
.store-template .shop-refund-policy {
  margin-top: 20px;
}
.store-template .shop-refund-policy p {
  font-size: 14px;
  margin-bottom: 14px;
}
@media screen and (max-width: 600px) {
  .store-template section.default-main .default-container {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .store-template h1 {
    font-size: 28px;
    padding-top: 20px;
    margin-bottom: 20px;
  }
  .store-template .product-list-search,
  .store-template ul#breadcrumb {
    position: relative;
    top: 0px;
  }
  .store-template .product-list-search {
    width: 100%;
  }
  .store-template #product-detail-photos,
  .store-template #product-detail-information-container {
    width: 100%;
    float: none;
  }
  .store-template #product-detail-photos {
    margin-bottom: 20px;
  }
  .store-template .category-list-item {
    flex: 1 0 50%;
  }
}
/* ======= InVision Landing Page Styling ======= */
body.invision {
  /* End InVision Hero */
}
body.invision p.recent-blog-posts-view-link a {
  background: #c9910d;
  color: #fff;
  font-size: 18px;
  padding: 20px 35px;
  position: relative;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
  display: inline-block;
  margin-top: 35px !important;
}
body.invision p.recent-blog-posts-view-link a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0%;
  background: url(/SiteFiles/2380/css/images/cta-triangle.svg);
  background-size: cover;
  bottom: 0px;
  right: -1px;
  opacity: 0.2;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
  z-index: 99;
}
body.invision p.recent-blog-posts-view-link a:hover {
  color: #fff !important;
}
body.invision p.recent-blog-posts-view-link a:hover:after {
  height: 100%;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -webkit-transition: all .33s ease;
  transition: all .33s ease;
}
body.invision .recent-blog-posts-wrapper ul {
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0;
  -webkit-padding-start: 0;
  list-style: none;
  padding: 0;
}
body.invision .recent-blog-posts-wrapper ul li a.recent-blog-posts-title {
  font-size: 3rem;
  color: #005cb8;
  display: block;
}
body.invision .yellow-btn {
  margin-right: 15px;
}
body.invision .news-cta {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
}
body.invision h1 {
  font-size: 42px;
  line-height: 1.3em;
  margin-bottom: 35px;
}
body.invision header {
  position: fixed;
  height: 104px;
  top: -104px;
}
body.invision header .yellow-btn {
  position: absolute;
  top: 20px;
  right: 20px;
}
@media screen and (max-width: 768px) {
  body.invision header .yellow-btn {
    font-size: 13px;
    padding: 10px 15px;
    top: 35px;
    right: 0px;
  }
}
body.invision header img.invision-logo {
  height: 104px;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  body.invision header img.invision-logo {
    display: none;
  }
}
body.invision header img.ism-logo {
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  body.invision header img.ism-logo {
    margin-top: 18px;
  }
}
body.invision header .logo-wrap {
  display: table;
  margin: auto;
  float: none;
}
@media screen and (max-width: 768px) {
  body.invision header .logo-wrap {
    margin: 0;
  }
}
body.invision header.sticky {
  top: 0;
}
body.invision #drawer-toggle {
  display: block !important;
}
body.invision section.invision-hero {
  height: 75vh;
  background-size: cover;
  background-position: 50% 100%;
  position: relative;
}
@media screen and (max-width: 900px) {
  body.invision section.invision-hero {
    height: 500px;
  }
}
body.invision section.invision-hero .invision-hero-message {
  position: absolute;
  top: 350px;
  left: 7.5%;
}
@media screen and (max-width: 992px) {
  body.invision section.invision-hero .invision-hero-message {
    top: 250px;
  }
}
@media screen and (max-width: 550px) {
  body.invision section.invision-hero .invision-hero-message {
    top: 35%;
  }
}
@media screen and (min-width: 1700px) {
  body.invision section.invision-hero .invision-hero-message {
    top: 55%;
  }
}
@media screen and (max-width: 550px) {
  body.invision section.invision-hero .invision-hero-message .yellow-btn {
    font-size: 14px;
    padding: 10px 25px;
    z-index: 999;
  }
}
body.invision section.invision-hero .invision-hero-message p {
  margin: 0 0 20px;
  color: #fff;
  font-weight: 700;
  background: #49c8f5;
  padding: 5px 15px;
}
body.invision section.invision-hero img.ism-logo {
  width: 400px;
  height: 189px;
  position: absolute;
  bottom: 0;
  right: -2px;
}
body.invision section.invision-hero .icon-scroll {
  position: absolute;
  bottom: 50px;
  left: 50%;
  margin-left: -8px;
  width: 16px;
  height: 50px;
  z-index: 99999;
  -webkit-transition: opacity: .4s;
}
@media screen and (max-width: 850px) {
  body.invision section.invision-hero .icon-scroll {
    display: none;
  }
}
body.invision section.invision-hero .icon-scroll span {
  display: block;
  width: 5px;
  height: 5px;
  border-right: 1px solid rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  margin: 0 0 2px 5px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-animation: mouse-scroll 1s infinite;
  -moz-animation: mouse-scroll 1s infinite;
  animation: mouse-scroll 1s infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
body.invision section.invision-hero .icon-scroll .a1 {
  margin-top: 6px;
  -webkit-animation-delay: .1s;
  -moz-animation-delay: .1s;
  animation-delay: .1s;
}
body.invision section.invision-hero .icon-scroll .a2 {
  -webkit-animation-delay: .2s;
  -moz-animation-delay: .2s;
  animation-delay: .2s;
}
body.invision section.invision-hero .icon-scroll .a3 {
  -webkit-animation-delay: .3s;
  -moz-animation-delay: .3s;
  animation-delay: .3s;
}
body.invision section.invision-hero .icon-scroll .mouse {
  height: 32px;
  width: 20px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  margin-left: -3px;
}
body.invision section.invision-hero .icon-scroll .wheel {
  position: relative;
  display: block;
  height: 3px;
  width: 3px;
  margin: 2px auto 0;
  background: rgba(255, 255, 255, 0.8);
  -webkit-animation: mouse-wheel 1.2s ease infinite;
  -moz-animation: mouse-wheel 1.2s ease infinite;
  animation: mouse-wheel 1.2s ease infinite;
  border-radius: 50%;
}
@-webkit-keyframes mouse-wheel {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }
}
@-moz-keyframes mouse-wheel {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(5px);
    transform: translateY(5px);
  }
}
@keyframes mouse-wheel {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(6px);
  }
}
@-webkit-keyframes mouse-scroll {
  0% {
    opacity: 0;
  }
  50% {
    opacity: .5;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes mouse-scroll {
  0% {
    opacity: 0;
  }
  50% {
    opacity: .5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes mouse-scroll {
  0% {
    opacity: 0;
  }
  50% {
    opacity: .5;
  }
  100% {
    opacity: 1;
  }
}
body.invision section.invision-intro {
  padding: 70px 0;
  background: #f2f2f2;
}
body.invision section.invision-intro img {
  max-width: 100%;
}
body.invision section.invision-intro h2 {
  color: #005cb8;
}
body.invision section.explore-our-sites {
  background: url(/SiteFiles/2380/css/images/invision-map-bg.jpg) !important;
  background-size: cover !important;
}
@media screen and (min-width: 769px) {
  body.invision section.explore-our-sites {
    background-attachment: fixed !important;
  }
}
body.invision section.invision-bottom {
  background: #f2f2f2;
  padding-bottom: 110px;
  position: relative;
  display: none;
}
body.invision section.invision-bottom img {
  width: 100%;
}
body.invision section.invision-bottom .bottom-content-wrap {
  padding: 70px 0;
}
body.invision section.invision-bottom img.invision-image-bottom {
  max-width: 50%;
  position: absolute;
  right: 0;
  bottom: 0;
}
body.invision section.invision-cta {
  background: #f2f2f2;
  padding: 0 0 70px;
}
body.invision ul#childpagenav-151222 {
  display: block;
  list-style-type: disc;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0;
  -webkit-padding-start: 0;
  padding: 0;
  list-style: none;
  margin-top: 105px;
}
body.invision ul#childpagenav-151222 li {
  position: relative;
  margin: 0;
  padding: 0;
  float: none;
  display: inline-block;
  width: 100%;
  height: auto;
  background: transparent;
  text-align: left;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}
body.invision ul#childpagenav-151222 li a {
  display: inline-block;
  width: 100%;
  height: auto;
  padding: 8px 25px;
  position: relative;
  color: #fff;
  font-size: 25px;
}
/* End InVision Landing Page Stylnig */
body.invision-default header {
  top: 0 !important;
}
body.invision-default section.default-main {
  background: #f1f1f1 !important;
}
body.invision-default section.default-main h1.default-page-title {
  color: #005cb8;
}
body.invision-default section.default.slider {
  margin-top: 104px;
}
body.invision-default section.default.slider.first-content-section:before {
  content: "";
  position: absolute;
  width: 60%;
  height: 100%;
  background: url(/SiteFiles/2380/css/images/invision-hero-overlay.png);
  bottom: 0;
  right: 0;
  background-size: cover;
  opacity: .71;
}
body.invision-default header.header.fixed img.ism-logo {
  margin-top: 8px;
  width: 210px;
  height: 86px;
}
/* INVision Timeline */
@font-face {
  font-family: 'ecoico';
  src: url('/SiteFiles/2380/fonts/timelineicons/ecoico.eot');
  src: url('/SiteFiles/2380/fonts/timelineicons/ecoico.eot?#iefix') format('embedded-opentype'), url('/SiteFiles/2380/fonts/timelineicons/ecoico.woff') format('woff'), url('/SiteFiles/2380/fonts/timelineicons/ecoico.ttf') format('truetype'), url('/SiteFiles/2380/fonts/timelineicons/ecoico.svg#ecoico') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* Made with http://icomoon.io/ */
.cbp_tmtimeline {
  margin: 30px 0 0 0;
  padding: 0;
  list-style: none;
  position: relative;
}
/* The line */
.cbp_tmtimeline:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 10px;
  background: #afdcf8;
  left: 20%;
  margin-left: -10px;
}
/* The date/time */
.cbp_tmtimeline > li .cbp_tmtime {
  display: block;
  width: 25%;
  padding-right: 100px;
  position: absolute;
}
.cbp_tmtimeline > li .cbp_tmtime span {
  display: block;
  text-align: right;
  color: #9d9da0 !important;
}
.cbp_tmtimeline > li .cbp_tmtime span:first-child {
  font-size: 0.9em;
  color: #bdd0db;
}
.cbp_tmtimeline > li .cbp_tmtime span:last-child {
  font-size: 2rem;
  color: #005cb8;
}
.cbp_tmtimeline > li:nth-child(odd) .cbp_tmtime span:last-child {
  color: #00aeef;
}
/* Right content */
.cbp_tmtimeline > li .cbp_tmlabel {
  margin: 0 0 15px 25%;
  background: #00aeef;
  color: #fff;
  padding: 2em;
  font-size: 1.2em;
  font-weight: 300;
  line-height: 1.4;
  position: relative;
  border-radius: 5px;
}
.cbp_tmtimeline > li:nth-child(odd) .cbp_tmlabel {
  background: #00aeef;
}
.cbp_tmtimeline > li .cbp_tmlabel h2 {
  margin-top: 0px;
  padding: 0 0 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
/* The triangle */
.cbp_tmtimeline > li .cbp_tmlabel:after {
  right: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-right-color: #00aeef;
  border-width: 10px;
  top: 10px;
}
.cbp_tmtimeline > li:nth-child(odd) .cbp_tmlabel:after {
  border-right-color: #00aeef;
}
/* The icons */
.cbp_tmtimeline > li .cbp_tmicon {
  width: 40px;
  height: 40px;
  font-family: 'ecoico';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  font-size: 1.4em;
  line-height: 40px;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  color: #fff;
  background: #00aeef;
  border-radius: 50%;
  box-shadow: 0 0 0 8px #afdcf8;
  text-align: center;
  left: 20%;
  top: 0;
  margin: 0 0 0 -25px;
}
.cbp_tmicon-phone:before {
  content: "\e000";
}
.cbp_tmicon-screen:before {
  content: "\e001";
}
.cbp_tmicon-mail:before {
  content: "\e002";
}
.cbp_tmicon-earth:before {
  content: "\e003";
}
/* Example Media Queries */
@media screen and (max-width: 65.375em) {
  .cbp_tmtimeline > li .cbp_tmtime span:last-child {
    font-size: 1.5em;
  }
}
@media screen and (max-width: 47.2em) {
  .cbp_tmtimeline:before {
    display: none;
  }
  .cbp_tmtimeline > li .cbp_tmtime {
    width: 100%;
    position: relative;
    padding: 0 0 20px 0;
  }
  .cbp_tmtimeline > li .cbp_tmtime span {
    text-align: left;
  }
  .cbp_tmtimeline > li .cbp_tmlabel {
    margin: 0 0 30px 0;
    padding: 1em;
    font-weight: 400;
    font-size: 95%;
  }
  .cbp_tmtimeline > li .cbp_tmlabel:after {
    right: auto;
    left: 20px;
    border-right-color: transparent;
    border-bottom-color: #005cb8;
    top: -20px;
  }
  .cbp_tmtimeline > li:nth-child(odd) .cbp_tmlabel:after {
    border-right-color: transparent;
    border-bottom-color: #00aeef;
  }
  .cbp_tmtimeline > li .cbp_tmicon {
    position: relative;
    float: right;
    left: auto;
    margin: -55px 5px 0 0px;
  }
}
.cbp_tmtimeline > li {
  position: relative;
  margin: 35px 0;
}
.cbp_tmlabel h2 {
  color: #fff;
  border: 0 !important;
}
.cbp_tmlabel h3 {
  color: #fff;
}
.cbp_tmlabel h4 {
  color: #fff;
}
.cbp_tmlabel.core {
  background: #c9910d !important;
}
.cbp_tmtimeline > li .cbp_tmlabel.core:after {
  right: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-right-color: #c9910d;
  border-width: 10px;
  top: 10px;
}
.cbp_tmlabel h4 {
  color: #fff;
}
.cbp_tmlabel p em {
  color: #fff;
}
.cbp_tmlabel p:last-of-type {
  margin-bottom: 0px;
}
.cbp_tmlabel.anniversary:after {
  display: none;
}
.cbp_tmlabel.anniversary {
  margin: 0 0 15px !important;
  text-align: center;
  padding: 60px 0 !important;
}
.cbp_tmtimeline > li.anniversary {
  position: relative;
  margin-bottom: 70px;
}
.cbp_tmlabel.anniversary {
  background: #005cb8 !important;
  padding: 30px !important;
}
.cbp_tmtimeline > li.anniversary:before {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(136, 183, 213, 0);
  border-top-color: #005cb8;
  border-width: 30px;
  margin-left: -30px;
}
.state-color {
  background: #00aeef;
  height: 15px;
  width: 15px;
  display: inline-block;
  margin-right: 10px;
}
.key-element p {
  display: inline-block;
  margin-bottom: 10px;
}
.key-element {
  display: table;
  margin: auto;
}
.core-color {
  background: #c9910d;
  height: 15px;
  width: 15px;
  display: inline-block;
  margin-right: 10px;
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.video-wrapper iframe,
.video-wrapper object,
.video-wrapper embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*# sourceMappingURL=master.css.map */