.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-25%, 0, 0);
    -moz-transform: translate3d(-25%, 0, 0);
    -ms-transform: translate3d(-25%, 0, 0);
    transform: translate3d(-25%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-25%, 0, 0);
    -moz-transform: translate3d(-25%, 0, 0);
    -ms-transform: translate3d(-25%, 0, 0);
    transform: translate3d(-25%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(25%, 0, 0);
    -moz-transform: translate3d(25%, 0, 0);
    -ms-transform: translate3d(25%, 0, 0);
    transform: translate3d(25%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(25%, 0, 0);
    -moz-transform: translate3d(25%, 0, 0);
    -ms-transform: translate3d(25%, 0, 0);
    transform: translate3d(25%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 50%, 0);
    -moz-transform: translate3d(0, 50%, 0);
    -ms-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 50%, 0);
    -moz-transform: translate3d(0, 50%, 0);
    -ms-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
@-webkit-keyframes zoomIn {
  from {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
    filter: alpha(opacity=0);
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    -moz-transform: scale3d(0.3, 0.3, 0.3);
    -ms-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
    filter: alpha(opacity=100);
  }
}
@keyframes zoomIn {
  from {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
    filter: alpha(opacity=0);
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    -moz-transform: scale3d(0.3, 0.3, 0.3);
    -ms-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
    filter: alpha(opacity=100);
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@-webkit-keyframes fadeIn {
  from {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
    filter: alpha(opacity=0);
  }
  10% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
    filter: alpha(opacity=0);
  }
  90% {
    -moz-opacity: 0.8;
    -khtml-opacity: 0.8;
    -webkit-opacity: 0.8;
    opacity: 0.8;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=80);
    filter: alpha(opacity=80);
  }
  to {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
    filter: alpha(opacity=100);
  }
}
@keyframes fadeIn {
  from {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
    filter: alpha(opacity=0);
  }
  10% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
    filter: alpha(opacity=0);
  }
  90% {
    -moz-opacity: 0.8;
    -khtml-opacity: 0.8;
    -webkit-opacity: 0.8;
    opacity: 0.8;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=80);
    filter: alpha(opacity=80);
  }
  to {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
    filter: alpha(opacity=100);
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeOut {
  from {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
    filter: alpha(opacity=100);
  }
  90% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
    filter: alpha(opacity=0);
  }
  to {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
    filter: alpha(opacity=0);
  }
}
@keyframes fadeOut {
  from {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
    filter: alpha(opacity=100);
  }
  90% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
    filter: alpha(opacity=0);
  }
  to {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
    filter: alpha(opacity=0);
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes offerPullOut {
  from {
    right: 0;
  }
  to {
    right: 16px;
  }
}
@keyframes offerPullOut {
  from {
    right: 0;
  }
  to {
    right: 16px;
  }
}
@-webkit-keyframes offerPullIn {
  from {
    right: 16px;
  }
  to {
    right: 0;
  }
}
@keyframes offerPullIn {
  from {
    right: 16px;
  }
  to {
    right: 0;
  }
}
@-webkit-keyframes offerPullUp {
  from {
    padding: 24px;
  }
  to {
    padding: 24px 24px 36px;
  }
}
@keyframes offerPullUp {
  from {
    padding: 24px;
  }
  to {
    padding: 24px 24px 36px;
  }
}
@-webkit-keyframes offerPullUpBack {
  from {
    padding: 24px 24px 36px;
  }
  to {
    padding: 24px;
  }
}
@keyframes offerPullUpBack {
  from {
    padding: 24px 24px 36px;
  }
  to {
    padding: 24px;
  }
}
/******* @Media Variables ********/
body {
  letter-spacing: 0.02em;
}
h1,
h2,
h3,
h4,
h5,
p,
ul,
ol {
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
.h1,
.h2,
.h3,
.h4,
.h5 {
  line-height: 1.4em;
}
ol {
  margin: 0 0 15px 28px;
}
ol li {
  padding-left: 15px;
}
ul {
  list-style: none;
  margin: 0;
}
ul.fa-ul {
  padding: 12px 0 18px;
}
ul.index-container {
  padding: 0 0 24px;
}
ul.index-container .index-heading {
  padding-top: 0;
  margin: -8px 0 8px;
}
ul.index-container .index-button {
  margin-top: 30px;
}
ul.index-container .index-excerpt {
  line-height: 1.4em;
  font-size: 0.9em;
  margin-bottom: 12px;
}
ul.index-container .index-image-wrapper {
  position: relative;
  height: 130px;
  max-width: 400px;
  background-color: #fff;
  border: 1px solid #eee;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
}
ul.index-container .index-image-wrapper img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 4px;
}
ul.index-container .index-image-wrapper:hover {
  webkit-box-shadow: 1px 1px 18px 1px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 1px 1px 18px 1px rgba(0, 0, 0, 0.15);
  box-shadow: 1px 1px 18px 1px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  transform: scale(1.05, 1.05);
  -webkit-transform: scale(1.05, 1.05);
  -moz-transform: scale(1.05, 1.05);
  -o-transform: scale(1.05, 1.05);
  -ms-transform: scale(1.05, 1.05);
}
ul.index-container li {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px dotted #cccccc;
}
ul.index-container li:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: 0;
}
ul.product-video-wrapper li {
  margin-bottom: 30px;
  padding-bottom: 30px;
}
ul.custom-bullets,
ul.custombullets,
ul.customBullets,
ulcustom,
ul.custom-bullet,
ul.customBullet {
  padding: 12px 0 18px;
  list-style: none;
  margin-left: 50px;
}
ul.custom-bullets li,
ul.custombullets li,
ul.customBullets li,
ulcustom li,
ul.custom-bullet li,
ul.customBullet li {
  margin-bottom: 12px;
}
ul.custom-bullets li:before,
ul.custombullets li:before,
ul.customBullets li:before,
ulcustom li:before,
ul.custom-bullet li:before,
ul.customBullet li:before {
  content: '\f105';
  font-family: fontawesome;
  position: absolute;
  left: 24px;
}
@media screen and (min-width: 993px) {
  ul .index-image-wrapper {
    margin-right: 15px;
  }
}
p {
  margin-bottom: 15px;
}
b,
strong {
  font-weight: 700;
}
.hover-underline-middle a {
  text-decoration: none;
  display: inline-block;
  position: relative;
  padding-bottom: 2px;
}
.hover-underline-middle a:after {
  content: '';
  display: block;
  margin: auto;
  height: 1px;
  position: relative;
  border-bottom: 1px solid transparent;
  top: 2px;
  width: 0px;
  background-color: transparent;
  -webkit-transition: width 0.5s ease, background-color 0.5s ease;
  -moz-transition: width 0.5s ease, background-color 0.5s ease;
  -o-transition: width 0.5s ease, background-color 0.5s ease;
  transition: width 0.5s ease, background-color 0.5s ease;
}
.hover-underline-middle a:hover:after {
  width: 100%;
  border-bottom: 1px solid #fff;
}
.hover-underline-middle .no-underline-middle a:hover:after {
  border-bottom: 1px solid transparent;
}
.modular-news ul.index-container .index-image-wrapper {
  height: 230px;
  background-color: rgba(255, 255, 255, 0.4);
}
*:focus,
a:focus,
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn.focus:active,
.btn.active.focus {
  outline: none;
  text-decoration: none;
}
.align-right-lg,
.align-right-md,
.align-right-sm,
.align-right-xs {
  text-align: right;
}
.align-center-lg,
.align-center-md,
.align-center-sm,
.align-center-xs {
  text-align: center;
}
.align-block-center {
  display: flex;
  justify-content: center;
}
.text-shadow-light {
  text-shadow: 2px 2px 2px rgba(255, 255, 255, 0.6);
}
.text-shadow-dark {
  text-shadow: 2px 2px 2px rgba(40, 40, 40, 0.6);
}
*[data-background-lg],
*[data-background-md],
*[data-background-sm],
*[data-background],
.background-class {
  background-repeat: repeat-y;
  background-position: top left;
  background-attachment: scroll;
  background-size: cover;
  height: 100%;
}
/*  Crumbnav */
.B_crumbBox {
  margin: 0 0 32px;
  position: relative;
  top: 0;
  width: 100%;
}
.B_crumbBox * {
  display: inline;
  font-size: 12px;
  font-size: 1.2rem;
  list-style-type: none;
  text-transform: none;
}
#sidebar {
  overflow: hidden;
}
.social-sharing {
  margin-bottom: 12px;
  font-size: 14px;
}
.lp-template-default ul.widget-section {
  margin-bottom: 0;
}
.lp-template-default h2.subtitle {
  margin-top: -45px;
  text-transform: none;
}
.lp-template-default .inner-container {
  padding: 15px 30px;
  background-color: #fff;
  margin-left: -15px;
  margin-right: -15px;
}
.lp-template-default #sidebar {
  padding: 0;
}
.lp-template-default .single-feature-image {
  height: 280px;
  margin-left: -15px;
  margin-right: -15px;
}
.lp-template-default .navbar,
.lp-template-default .footer {
  min-height: 80px;
  margin-left: -15px;
  margin-right: -15px;
  margin-top: 0;
  background-color: #ccc;
  background-image: none;
}
.lp-template-default .navbar {
  padding: 24px 42px 24px 50px;
}
.lp-template-default .navbar .navbar-brand {
  position: relative;
  top: 0;
  left: 0;
}
.lp-template-default .navbar .navbar-brand img {
  margin: 0;
  max-height: 130px;
}
.lp-template-default .navbar .btn-primary {
  margin-top: 8px;
}
.lp-template-default .main-content {
  padding-bottom: 15px;
  background-color: transparent;
  padding-top: 15px;
}
.lp-template-default .main-content .container {
  webkit-box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.35);
  box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.35);
}
.lp-template-default #sidebar {
  webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.35);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.35);
  padding: 30px;
}
.lp-template-default #sidebar .btn-primary {
  width: 100%;
  max-width: 400px;
}
.lp-template-default .call-to-action {
  font-style: italic;
  margin-top: 45px;
  padding-top: 45px;
  border-top: 1px dotted #ccc;
  font-size: 0.9em;
  margin-bottom: 30px;
}
.lp-template-default .landingpage-termsandconditions {
  padding-top: 30px;
  font-size: 0.85em;
  font-style: italic;
}
.lp-template-default .padded-box h2 {
  padding-top: 0;
  font-weight: 700;
}
.lp-template-default .padded-box .or-call-us {
  margin: 30px 0 0;
  line-height: 1.5em;
}
.lp-template-default .padded-box .or-call-us div {
  margin-top: -6px;
  font-size: 2em;
  line-height: 1.4em;
}
.lp-template-default .footer .footer-book-info {
  padding: 15px;
  text-align: center;
}
.lp-template-default .footer .footer-book-info a:hover {
  text-decoration: underline;
}
.lp-template-default .footer .footer-contact-info {
  padding: 6px;
  text-align: center;
  font-size: 0.75em;
}
.lp-template-default .footer .footer-contact-info a:hover {
  text-decoration: underline;
}
@media screen and (min-width: 993px) {
  .lp-template-default .inner-container {
    padding: 50px;
  }
  .lp-template-default .single-feature-image {
    height: 400px;
  }
  .lp-template-default .main-column-wrapper {
    padding-right: 35px;
  }
  .lp-template-default .navbar {
    border-bottom: none;
    text-align: right;
  }
}
/*
 * Navbar logic
 * 1. Top - has classes .script-fixed-header-with-scroll .nav-in-hero .show
 *
 * 2. Scroll Down in hero - has classes .script-fixed-header-with-scroll .navbar-static-top
 *
 * 3. Scroll Down out of hero - has classes .script-fixed-header-with-scroll .navbar-static-top
 *
 * 4. Scroll Up not in hero - has classes .script-fixed-header-with-scroll  .show
 *
 * 5. Scroll Up in hero - has classes .script-fixed-header-with-scroll  .show .nav-in-hero
 *
 **/
/****** DO NOT EDIT BELOW THIS LINE ******/
.container-fluid > .navbar-collapse,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container > .navbar-header,
.navbar-collapse.collapse {
  position: relative;
}
@media screen and (min-width: 993px) {
  .container-fluid > .navbar-collapse,
  .container-fluid > .navbar-header,
  .container > .navbar-collapse,
  .container > .navbar-header,
  .navbar-collapse.collapse {
    display: -webkit-box !important;
    display: -moz-box !important;
    display: -ms-flexbox !important;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-align-items: center;
    align-items: center;
    margin: 0 auto;
    display: -webkit-flex !important;
    display: flex !important;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .container-fluid > .navbar-collapse > *,
  .container-fluid > .navbar-header > *,
  .container > .navbar-collapse > *,
  .container > .navbar-header > *,
  .navbar-collapse.collapse > * {
    margin: 0 auto;
  }
  .container-fluid > .navbar-collapse > *,
  .container-fluid > .navbar-header > *,
  .container > .navbar-collapse > *,
  .container > .navbar-header > *,
  .navbar-collapse.collapse > * {
    margin: 12px auto;
  }
}
@media screen and (min-width: 993px) {
  .nav-right .container-fluid > .navbar-collapse,
  .nav-right .container-fluid > .navbar-header,
  .nav-right .container > .navbar-collapse,
  .nav-right .container > .navbar-header,
  .nav-right .navbar-collapse.collapse {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
}
.search-header {
  float: right;
  margin: 0;
}
.search-header button {
  line-height: 14px;
  border: 1px solid #fff;
  padding: 6px 8px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  margin-left: -4px !important;
}
.search-header .input-group {
  font-size: 14px;
  font-size: 1.4rem;
  top: -1px;
}
.search-header input {
  padding: 3px;
  position: relative;
  line-height: 1.8em;
  border: 1px solid #fff;
  font-weight: 300;
  height: 2.15em;
}
.search-header .searchbox-close button {
  -moz-border-radius: 4px !important;
  border-radius: 4px !important;
}
.search-header .searchbox-close input {
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  width: 0 !important;
  padding: 4px 0;
}
.search-header .searchbox-open button {
  margin-left: 0px !important;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
}
.search-header .searchbox-open input {
  -webkit-transition: all 0.7s ease-out;
  -moz-transition: all 0.7s ease-out;
  -o-transition: all 0.7s ease-out;
  transition: all 0.7s ease-out;
  width: 200px !important;
}
.navbar-toggle .icon-bar {
  width: 30px;
  height: 4px;
  cursor: pointer;
}
.navbar {
  -moz-border-radius: 0;
  border-radius: 0;
  font-weight: 500;
  z-index: 888;
  height: auto;
  margin-bottom: 0;
}
.navbar .navbar-brand {
  float: none;
  position: relative;
  padding: 0;
  font-size: 0.9em;
  text-align: center;
}
.navbar .navbar-brand img {
  width: auto;
  text-align: center;
}
.navbar .navbar-toggle {
  float: none;
  line-height: 1em;
  position: relative;
  text-transform: uppercase;
  top: 2px;
  font-size: 1em;
}
.navbar .nav {
  position: relative;
  left: 0;
}
.navbar .nav > li ul {
  webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.35);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.35);
}
.navbar.script-fixed-header-with-scroll {
  position: absolute;
  top: 0;
  width: 100%;
  -moz-opacity: 0.98;
  -khtml-opacity: 0.98;
  -webkit-opacity: 0.98;
  opacity: 0.98;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=98);
  filter: alpha(opacity=98);
}
.navbar.script-fixed-header-with-scroll:hover {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
.navbar.script-fixed-header-with-scroll.navbar-static-top {
  top: -5em;
}
.navbar.script-fixed-header-with-scroll.show {
  top: 0;
  position: fixed;
}
.navbar.script-fixed-header-with-scroll.show .navbar-brand img {
  overflow: hidden;
}
/** navigation **/
.navigation-top {
  display: block;
  text-align: center;
  margin: 24px auto;
  background: #f8f8ff8;
}
/** FOOTER NAVIGATION **/
.horizontal-nav {
  padding: 0;
  margin: 0;
  list-style: none;
}
/** MODULAR NAVIGATION **/
.modular .modular-next-nav {
  position: absolute;
  width: 100%;
  bottom: 0;
  height: 48px;
  z-index: 2;
  text-decoration: none !important;
  text-align: center;
}
.modular .modular-next-nav a {
  position: relative;
  top: 0;
  -moz-opacity: 0.3;
  -khtml-opacity: 0.3;
  -webkit-opacity: 0.3;
  opacity: 0.3;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=30);
  filter: alpha(opacity=30);
  font-family: FontAwesome;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}
.modular .modular-next-nav a:before {
  text-decoration: none !important;
}
.modular .modular-next-nav a:hover,
.modular .modular-next-nav a:visited .modular .modular-next-nav a:active,
.modular .modular-next-nav a:focus {
  text-decoration: none;
  -webkit-transition: opacity 0.8s linear;
  -moz-transition: opacity 0.8s linear;
  -o-transition: opacity 0.8s linear;
  transition: opacity 0.8s linear;
  -moz-opacity: 0.9;
  -khtml-opacity: 0.9;
  -webkit-opacity: 0.9;
  opacity: 0.9;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=90);
  filter: alpha(opacity=90);
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  top: 4px;
}
.modular .modular-next-nav.nav-btn-circle a:before {
  -moz-border-radius: 14px;
  border-radius: 14px;
  display: inline-block;
  width: 27px;
  height: 26px;
  margin: 0 auto;
  padding-top: 2px;
  position: relative;
}
.modular .modular-start-nav a {
  font-family: FontAwesome;
  text-decoration: none;
}
.modular .modular-start-nav a:hover,
.modular .modular-start-nav a:visited {
  text-decoration: none;
}
.dropdown-menu.mega-menu-nav ul {
  padding: 8px 20px;
}
.dropdown-menu.mega-menu-nav a {
  padding: 4px 0;
}
@media screen and (min-width: 993px) {
  .dropdown-menu.mega-menu-nav {
    padding: 0;
    width: 800px;
  }
  .dropdown-menu.mega-menu-nav ul {
    float: left;
    display: inline;
    width: 40%;
  }
  .dropdown-menu.mega-menu-nav .mega-menu-content {
    float: left;
    display: inline;
    width: 60%;
    height: 100%;
  }
  .dropdown-menu.mega-menu-nav.flipped ul {
    float: right;
  }
  .dropdown-menu.mega-menu-nav.flipped .mega-menu-content {
    float: right;
  }
}
.pagination {
  margin-top: 12px;
}
.pagination .pagination-prev {
  float: left;
}
.pagination .pagination-pages {
  float: left;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.pagination .pagination-pages li {
  margin: 0 10px !important;
  padding: 0 4px !important;
  float: left;
  border: 1px solid transparent;
}
.pagination .pagination-pages li:hover {
  border: 1px dotted #ccc;
}
.pagination .pagination-next {
  float: left;
}
.pagination:after {
  content: ' ';
  clear: both;
  margin: 0;
  display: table;
}
.animated-control-wrapper .animiated-control-arrow,
.slick-slider .animiated-control-arrow {
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
}
.animated-control-wrapper .animiated-control-arrow span,
.slick-slider .animiated-control-arrow span {
  display: block;
  cursor: pointer;
  position: absolute;
  width: 32px;
  height: 40px;
  top: 50%;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.animated-control-wrapper .animiated-control-arrow span:before,
.slick-slider .animiated-control-arrow span:before,
.animated-control-wrapper .animiated-control-arrow span:after,
.slick-slider .animiated-control-arrow span:after {
  display: block;
  position: absolute;
  width: 30px;
  top: 20px;
  height: 5px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -moz-border-radius: 0 10px 10px 0;
  border-radius: 0 10px 10px 0;
  webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  content: ' ';
  background-color: #fff;
}
.animated-control-wrapper .animiated-control-arrow span:hover,
.slick-slider .animiated-control-arrow span:hover {
  -webkit-transform: translateY(-50%) scaleY(0.85);
  -moz-transform: translateY(-50%) scaleY(0.85);
  -ms-transform: translateY(-50%) scaleY(0.85);
  transform: translateY(-50%) scaleY(0.85);
}
.animated-control-wrapper .animiated-control-arrow span:hover:before,
.slick-slider .animiated-control-arrow span:hover:before,
.animated-control-wrapper .animiated-control-arrow span:hover:after,
.slick-slider .animiated-control-arrow span:hover:after {
  webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.animated-control-wrapper .animiated-control-arrow.control-arrow-prev,
.slick-slider .animiated-control-arrow.control-arrow-prev {
  left: 0;
}
.animated-control-wrapper .animiated-control-arrow.control-arrow-prev span,
.slick-slider .animiated-control-arrow.control-arrow-prev span {
  left: 0;
  content: ' ';
}
.animated-control-wrapper .animiated-control-arrow.control-arrow-prev span:before,
.slick-slider .animiated-control-arrow.control-arrow-prev span:before {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 0 110%;
  -moz-transform-origin: 0 110%;
  -ms-transform-origin: 0 110%;
  transform-origin: 0 110%;
  -moz-border-radius: 10px 10px 10px 0;
  border-radius: 10px 10px 10px 0;
}
.animated-control-wrapper .animiated-control-arrow.control-arrow-prev span:after,
.slick-slider .animiated-control-arrow.control-arrow-prev span:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: 0 -10%;
  -moz-transform-origin: 0 -10%;
  -ms-transform-origin: 0 -10%;
  transform-origin: 0 -10%;
  -moz-border-radius: 0 10px 10px 10px;
  border-radius: 0 10px 10px 10px;
}
.animated-control-wrapper .animiated-control-arrow.control-arrow-next,
.slick-slider .animiated-control-arrow.control-arrow-next {
  right: 0;
}
.animated-control-wrapper .animiated-control-arrow.control-arrow-next span,
.slick-slider .animiated-control-arrow.control-arrow-next span {
  right: 0;
}
.animated-control-wrapper .animiated-control-arrow.control-arrow-next span:before,
.slick-slider .animiated-control-arrow.control-arrow-next span:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: 100% 110%;
  -moz-transform-origin: 100% 110%;
  -ms-transform-origin: 100% 110%;
  transform-origin: 100% 110%;
  -moz-border-radius: 10px 10px 0 10px;
  border-radius: 10px 10px 0 10px;
}
.animated-control-wrapper .animiated-control-arrow.control-arrow-next span:after,
.slick-slider .animiated-control-arrow.control-arrow-next span:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 100% -10%;
  -moz-transform-origin: 100% -10%;
  -ms-transform-origin: 100% -10%;
  transform-origin: 100% -10%;
  -moz-border-radius: 10px 0 10px 10px;
  border-radius: 10px 0 10px 10px;
}
.animated-control-wrapper.animated-carousel-wrapper .animiated-control-arrow span,
.slick-slider.animated-carousel-wrapper .animiated-control-arrow span {
  width: 24px;
}
.animated-control-wrapper.animated-carousel-wrapper .animiated-control-arrow span:before,
.slick-slider.animated-carousel-wrapper .animiated-control-arrow span:before,
.animated-control-wrapper.animated-carousel-wrapper .animiated-control-arrow span:after,
.slick-slider.animated-carousel-wrapper .animiated-control-arrow span:after {
  width: 24px;
  height: 3px;
  background-color: #fff !important;
}
.animated-control-wrapper.animated-carousel-wrapper .animiated-control-arrow.control-arrow-prev,
.slick-slider.animated-carousel-wrapper .animiated-control-arrow.control-arrow-prev {
  left: 24px;
}
.animated-control-wrapper.animated-carousel-wrapper .animiated-control-arrow.control-arrow-next,
.slick-slider.animated-carousel-wrapper .animiated-control-arrow.control-arrow-next {
  right: 24px;
}
@media screen and (min-width: 768px) {
  .animated-control-wrapper.animated-carousel-wrapper .animiated-control-arrow span,
  .slick-slider.animated-carousel-wrapper .animiated-control-arrow span {
    width: 45px;
  }
  .animated-control-wrapper.animated-carousel-wrapper .animiated-control-arrow span:before,
  .slick-slider.animated-carousel-wrapper .animiated-control-arrow span:before,
  .animated-control-wrapper.animated-carousel-wrapper .animiated-control-arrow span:after,
  .slick-slider.animated-carousel-wrapper .animiated-control-arrow span:after {
    width: 45px;
    height: 3px;
    background-color: #fff !important;
  }
  .animated-control-wrapper.animated-carousel-wrapper .animiated-control-arrow.control-arrow-prev,
  .slick-slider.animated-carousel-wrapper .animiated-control-arrow.control-arrow-prev {
    left: 60px;
  }
  .animated-control-wrapper.animated-carousel-wrapper .animiated-control-arrow.control-arrow-next,
  .slick-slider.animated-carousel-wrapper .animiated-control-arrow.control-arrow-next {
    right: 60px;
  }
}
@media screen and (min-width: 993px) {
  .hide-above-mobile {
    display: none !important;
    visibility: hidden !important;
  }
}
.form-group p {
  margin: 0;
}
.panel-group .collapse-panel-body {
  margin-left: 28px;
  padding-bottom: 12px;
}
.panel-group .collapse-title {
  font-size: 1.1em;
  font-weight: 300;
  margin: 0;
  padding: 0 0 12px;
  text-transform: none;
  position: relative;
}
.panel-group .panel {
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.panel-default > .panel-heading {
  padding: 10px 15px;
}
.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top: 0;
}
.panel-default > .panel-heading h4 {
  padding: 0;
}
.panel-body ul {
  padding: 0 0 0 12px;
  margin: 0;
}
.panel-body li {
  margin-bottom: 8px;
  line-height: 1.4em;
}
.panel-body li:last-child {
  margin-bottom: 0;
}
.nav.nav-tabs.accordion {
  display: none;
  visibility: hidden;
}
@media screen and (min-width: 993px) {
  .nav.nav-tabs.accordion {
    display: block;
    visibility: visible;
  }
}
/* this is for tab switch to accordion in responsive. */
.tab-content.accordion .tab-accordion-header {
  font-size: 1.2em;
  padding: 4px 12px;
  cursor: pointer;
  background-color: #f8f8f8;
  border: 1px solid #ccc;
}
.tab-content.accordion > .tab-pane {
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  padding: 12px;
}
.tab-content.accordion > .tab-pane:last-of-type {
  border-bottom: 1px solid #ccc;
}
@media screen and (min-width: 993px) {
  .tab-content.accordion .tab-accordion-header {
    display: none;
  }
  .tab-content.accordion > .tab-pane {
    border: 0px;
    padding: 12px 0 0;
  }
  .tab-content.accordion > .tab-pane:last-of-type {
    border-bottom: none;
  }
}
/*** MODAL DARK THEME ***/
.modal-dialog .modal-title {
  margin-bottom: 24px;
}
.modal-dialog .modal-content {
  -moz-border-radius: 0;
  border-radius: 0;
  font-size: 0.9em;
  line-height: 1.7em;
}
.modal-dialog button.close {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  position: relative;
  font-size: 2em;
  top: 8px;
  font-size: 33px;
  right: 3px;
  font-weight: normal;
  text-shadow: none;
}
.modal-dialog .modal-header h4 {
  margin: 0;
  padding: 0;
}
.modal-dialog .modal-body {
  padding: 0 24px 24px;
  max-height: 600px;
  overflow-y: scroll;
}
.modal-dialog .modal-footer a:hover {
  text-decoration: none;
}
.modal-dialog .glyphicon-chevron-right:before {
  content: "\f105";
}
.modal-dialog .glyphicon-chevron-left:before {
  content: "\f104";
}
@media screen and (min-width: 993px) {
  .modal-dialog {
    max-width: none !important;
    margin: 110px auto;
  }
  .modal-dialog .modal-body {
    padding: 0 8px 4px;
  }
  .modal-dialog .modal-footer {
    padding: 0 4px 4px;
  }
}
@media (max-width: 992px) {
  .navbar-header {
    float: none;
  }
  .navbar-left,
  .navbar-right {
    float: none !important;
  }
  .navbar-toggle {
    display: block;
  }
  .navbar-collapse {
    border-top: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  .navbar-fixed-top {
    top: 0;
    border-width: 0 0 1px;
  }
  .navbar-collapse.collapse {
    display: none !important;
  }
  .navbar-nav {
    float: none !important;
    margin-top: 7.5px;
  }
  .navbar-nav > li {
    float: none;
  }
  .navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .collapse.in {
    display: block !important;
  }
}
ul.nav-tabs {
  margin: 32px 0 0 ;
}
ul.nav-tabs > li {
  font-size: 14px;
  font-size: 1.4rem;
  margin-left: 0;
  margin-right: 2px;
  padding-left: 0;
  text-transform: uppercase;
}
ul.nav-tabs > li > a {
  -moz-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
  border: 1px solid #ddd;
}
ul.nav-tabs > li > a:hover {
  background-color: #fcfcfc;
  border-color: #ddd;
}
.btn {
  margin: 4px;
}
.fa-li {
  top: 0.35em;
}
.carousel-control {
  background-image: none !important;
}
.carousel {
  position: relative;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  min-height: 300px;
}
.carousel .carousel-inner {
  height: 100%;
}
.carousel .carousel-overlay {
  position: absolute;
  z-index: 99;
}
.carousel img {
  width: 100%;
  margin: 0 !important;
}
.carousel .carousel-caption {
  -moz-border-radius: 8px;
  border-radius: 8px;
  /*background-color: rgba(0,0,0,0.15);*/
  padding: 24px;
}
.carousel .carousel-caption .carousel-caption-title {
  font-size: 1.4em;
  text-transform: uppercase;
}
.carousel .carousel-caption .carousel-caption-caption {
  font-size: 0.9em;
  font-style: italic;
}
.carousel .carousel-indicators {
  display: none;
  visibility: hidden;
}
.carousel .carousel-indicators li {
  height: 14px;
  width: 14px;
}
.carousel .glyphicon {
  font-family: none;
  font-size: 4em;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.carousel .glyphicon:hover {
  -webkit-transform: translateY(-50%) scaleY(0.85);
  -moz-transform: translateY(-50%) scaleY(0.85);
  -ms-transform: translateY(-50%) scaleY(0.85);
  transform: translateY(-50%) scaleY(0.85);
  -webkit-transition: all 0.6s ease-out;
  -moz-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
}
.carousel .glyphicon-chevron-left:before {
  content: '\f104';
  font-family: FontAwesome;
}
.carousel .glyphicon-chevron-right:before {
  content: '\f105';
  font-family: FontAwesome;
}
@media screen and (min-width: 1200px) {
  .carousel .carousel-indicators {
    display: block;
    visibility: visible;
  }
}
.carousel-fade .carousel-inner .item {
  transition-property: opacity;
  -webkit-transition-property: opacity;
  height: 100%;
}
.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
}
.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
}
.carousel-fade .carousel-control {
  z-index: 2;
}
.carousel-fade.carousel-text .carousel-inner .item:not(.active),
.carousel-fade.carousel-text .carousel-inner .active.left,
.carousel-fade.carousel-text .carousel-inner .active.right {
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.carousel-fade.carousel-text .carousel-inner .item.active,
.carousel-fade.carousel-text .carousel-inner .next.left,
.carousel-fade.carousel-text .carousel-inner .prev.right {
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -webkit-animation-iteration-count: initial;
  animation-iteration-count: initial;
  -webkit-animation-direction: normal;
  animation-direction: normal;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.multi-item-carousel .carousel-inner > .item {
  transition: 0.5s linear all;
}
.multi-item-carousel .carousel-inner .active.left {
  left: -33%;
}
.multi-item-carousel .carousel-inner .active.right {
  left: 33%;
}
.multi-item-carousel .carousel-inner .next {
  left: 33%;
}
.multi-item-carousel .carousel-inner .prev {
  left: -33%;
}
@media all and (transform-3d), (-webkit-transform-3d) {
  .multi-item-carousel .carousel-inner > .item {
    transition: 1.2s linear all;
  }
}
.multi-item-carousel .carousel-control {
  width: 5%;
  top: 38%;
}
.multi-item-carousel .carousel-control.left,
.multi-item-carousel .carousel-control.right {
  background-image: none;
  font-size: 1.4em;
  font-weight: bold;
}
.multi-item-carousel .carousel-control.left {
  left: 0;
  text-align: left;
}
.multi-item-carousel .carousel-control.right {
  right: 0;
  text-align: right;
}
article .carousel {
  margin-left: auto;
  margin-right: auto;
}
.newsletter-pdf li {
  overflow: hidden;
  position: relative;
  width: 30%;
  margin: 12px 1%;
  float: left;
  height: 200px;
  webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.35);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.35);
}
.newsletter-pdf li a {
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: all 0.25 ease-out;
  -moz-transition: all 0.25 ease-out;
  -o-transition: all 0.25 ease-out;
  transition: all 0.25 ease-out;
}
.newsletter-pdf li a img {
  heigh: 0px;
  width: 0px;
  visibility: hidden;
}
.newsletter-pdf li:hover a {
  -webkit-transition: all 0.25 ease-out;
  -moz-transition: all 0.25 ease-out;
  -o-transition: all 0.25 ease-out;
  transition: all 0.25 ease-out;
  transform: scale(1.05, 1.05);
  -webkit-transform: scale(1.05, 1.05);
  -moz-transform: scale(1.05, 1.05);
  -o-transform: scale(1.05, 1.05);
  -ms-transform: scale(1.05, 1.05);
}
.newsletter-pdf:after {
  display: table;
  clear: both;
  margin: 0;
  content: ' ';
}
#blog-articles,
.media-kit,
.news-feed,
.soundbites {
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}
#blog-articles > li,
.media-kit > li,
.news-feed > li,
.soundbites > li {
  margin-bottom: 38px;
  padding-bottom: 38px;
  border-bottom: 1px dotted #ccc;
}
#blog-articles > li:last-child,
.media-kit > li:last-child,
.news-feed > li:last-child,
.soundbites > li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
#blog-articles > li h2,
.media-kit > li h2,
.news-feed > li h2,
.soundbites > li h2 {
  font-size: 1.6em;
  margin-bottom: 24px;
  padding-top: 0;
}
#blog-articles > li .blog-index-image-full img,
.media-kit > li .blog-index-image-full img,
.news-feed > li .blog-index-image-full img,
.soundbites > li .blog-index-image-full img {
  width: 100%;
  max-width: 240px;
  margin-bottom: 8px;
  webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
  padding: 10px;
}
#blog-articles > li .article-date,
.media-kit > li .article-date,
.news-feed > li .article-date,
.soundbites > li .article-date {
  margin: -24px 0 15px;
  font-size: 1em;
}
.article-blog-post-heading {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 2em;
}
ul.widget-section {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}
article #commentsTitle {
  margin-top: -18px;
}
article .panel-default > .panel-heading a,
article .panel-default > .panel-heading a:visited,
article .panel-default > .panel-heading a:active {
  text-decoration: none;
}
article .panel-default > .panel-heading a:hover {
  text-decoration: none;
}
article .article-full-story-link {
  white-space: nowrap;
}
article .article-date {
  font-size: 1.2em;
  margin-bottom: 12px;
  display: block;
}
article .article-summary {
  font-style: italic;
  font-size: 0.9em;
}
article .article-footer {
  padding-top: 32px;
  line-height: 1.4em;
  font-size: 0.85em;
}
article .article-footer .tags {
  padding-top: 8px;
}
article .article-footer .btn {
  margin-bottom: 4px;
  margin-right: 4px;
}
article .article-footer .posted-by span {
  font-style: italic;
}
article .learn-more-link {
  font-style: normal;
  white-space: nowrap;
}
article .learn-more-link i {
  margin-left: 4px;
  padding-top: 1px;
}
article .comment-link {
  line-height: 2.6em;
}
article img {
  max-width: 100%;
}
.main-content .alignright {
  float: right;
  margin: 0 0 1em 1em;
}
.main-content .alignleft {
  float: left;
  margin: 0 1em 1em 0;
}
.main-content .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.main-content .alignnone {
  display: block;
}
.main-content img {
  padding: 2px 0;
}
.main-content a img.alignright {
  float: right;
  margin: 0 0 1em 1em;
}
.main-content a img.alignleft {
  float: left;
  margin: 0 1em 1em 0;
}
.main-content a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.main-content a img.alignnone {
  display: block;
}
.article-blog img {
  margin: 32px 0;
}
.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}
.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}
.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}
.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}
.image-framed {
  margin: 24px 0;
  max-width: 700px;
}
.image-framed.center {
  margin: 24px auto ;
}
.image-framed img {
  background-color: #fff;
  padding: 12px;
  webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
  max-width: 700px;
  width: 100%;
  border: 0;
}
.image-framed div {
  padding: 12px 8px 0;
  margin: 0 0 32px;
  text-align: left;
  font-size: .85em;
  font-style: italic;
}
.avatar-wrapper {
  margin: 15px 0 30px;
  padding: 30px 0;
  border-top: 1px dotted #ccc;
  border-bottom: 1px dotted #ccc;
}
.avatar-wrapper .avatar-image {
  float: left;
  margin-right: 30px;
  max-width: 15%;
}
.avatar-wrapper .avatar-image img {
  margin: 0 !important;
  -moz-border-radius: 60px;
  border-radius: 60px;
}
.avatar-wrapper .avatar-data {
  float: left;
}
.avatar-wrapper .avatar-data .avatar-title {
  font-size: 1.5em;
  font-weight: bold;
  margin: 15px 0 7.5px;
}
.avatar-wrapper:after {
  clear: both;
  content: ' ';
  display: table;
  margin: 0;
}
.full-image-class a {
  overflow: hidden;
  display: block;
  margin-bottom: 15px;
}
.full-image-class img {
  width: 100%;
}
/** Temp ccss **/
body:not(.home) #homepage-slideshow,
body:not(.home) #secondary-slideshow {
  height: 300px;
  overflow: hidden;
}
#homepage-slideshow {
  overflow: hidden;
  background-color: #fff;
}
#homepage-slideshow *[data-background] {
  height: 400px;
}
@media screen and (min-width: 993px) {
  #homepage-slideshow *[data-background] {
    height: 700px;
  }
}
.carousel-wrapper {
  background-color: #f8f8f8;
}
.single-feature-image {
  height: 250px;
  position: relative;
  text-align: center;
  background-image: none;
  background-color: #ffffff;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
}
.single-feature-image .feature-image-overlay {
  position: absolute;
  z-index: 99;
}
@media screen and (min-width: 993px) {
  .single-feature-image {
    height: 400px;
  }
}
.single-feature-image-caption {
  font-size: 1.1em;
  line-height: 1.1em;
  color: #fff;
  top: 40%;
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  font-weight: bold;
  text-transform: uppercase;
  padding: 12px;
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.8);
}
@media screen and (min-width: 1200px) {
  .single-feature-image-caption {
    font-size: 1.6em;
  }
}
@media screen and (min-width: 1200px) {
  .single-feature-image-caption {
    font-size: 2.2em;
    padding: 12px 300px;
  }
}
.gallery-filters {
  text-align: center;
  margin: 24px 0 36px;
}
.gallery-filters .btn {
  min-width: 130px;
}
.__st_gallery_title_caption {
  padding: 12px 0 32px;
  line-height: 1.3em;
}
.__st_gallery_title_caption .__st_gallery_title {
  font-weight: 400;
}
.__st_gallery_title_caption .__st_gallery_caption {
  font-style: italic;
}
.__st_gallery_feature_content {
  position: relative;
  height: 250px;
  margin-bottom: 4px;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  transform: scale(0.98, 0.98);
  -webkit-transform: scale(0.98, 0.98);
  -moz-transform: scale(0.98, 0.98);
  -o-transform: scale(0.98, 0.98);
  -ms-transform: scale(0.98, 0.98);
}
.__st_gallery_feature_content > * {
  height: 250px;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  z-index: -1;
}
.__st_gallery_feature_content > *.active {
  z-index: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}
.__st_gallery_feature_content img {
  height: 0px;
  visibility: hidden;
}
.__st_gallery_feature_content a {
  background-position: center;
  display: block;
}
.__st_gallery_feature_content a:after {
  content: '\f08e';
  font-family: FontAwesome;
  position: absolute;
  color: #fff;
  text-shadow: 1px 2px 1px rgba(0, 0, 0, 0.3);
  font-size: 32px;
  right: 10px;
  top: 12px;
  height: 100%;
  -moz-opacity: 0.4;
  -khtml-opacity: 0.4;
  -webkit-opacity: 0.4;
  opacity: 0.4;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=40);
  filter: alpha(opacity=40);
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.__st_gallery_feature_content a:hover:after {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.__st_gallery_feature_content:hover {
  transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}
.__st_gallery_thumb_wrapper {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}
.__st_gallery_thumb_wrapper:after,
.__st_gallery_thumb_wrapper:before {
  clear: both;
  content: ' ';
  display: table;
}
.__st_gallery_thumb_wrapper li {
  float: left;
  width: 20%;
  height: 50px;
  position: relative;
  margin-bottom: 8px !important;
  /*.transform-scale(0.95, 0.95);*/
}
.__st_gallery_thumb_wrapper li img {
  height: 0px;
  visibility: hidden;
}
.__st_gallery_thumb_wrapper li a {
  display: block;
  position: relative;
  background-position: center;
  height: 100%;
  margin: 4px;
}
.__st_gallery_thumb_wrapper li a:before {
  content: ' ';
  font-family: FontAwesome;
  color: #fff;
  padding: 0 8px;
  font-size: 0.9em;
  background-color: rgba(0, 0, 0, 0);
  height: 100%;
  width: 100%;
  position: absolute;
  text-align: right;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.__st_gallery_thumb_wrapper li a:after {
  content: ' ';
  text-align: center;
  line-height: 1em;
  color: #fff;
  width: 100%;
  top: 60%;
  position: absolute;
  font-family: FontAwesome;
  text-shadow: 1px 2px 1px rgba(0, 0, 0, 0.3);
  transform: scale(0, 0);
  -webkit-transform: scale(0, 0);
  -moz-transform: scale(0, 0);
  -o-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
}
.__st_gallery_thumb_wrapper li a:hover {
  background-color: transparent;
}
.__st_gallery_thumb_wrapper li a:hover:before {
  background-color: rgba(0, 0, 0, 0.3);
}
.__st_gallery_thumb_wrapper li a:hover:after {
  content: '\f002';
  top: 42%;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  transform: scale(1.4, 1.4);
  -webkit-transform: scale(1.4, 1.4);
  -moz-transform: scale(1.4, 1.4);
  -o-transform: scale(1.4, 1.4);
  -ms-transform: scale(1.4, 1.4);
}
.__st_gallery_thumb_wrapper li.fg-youtube-play a:before {
  content: '\f008';
  -moz-opacity: 0.85;
  -khtml-opacity: 0.85;
  -webkit-opacity: 0.85;
  opacity: 0.85;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=85);
  filter: alpha(opacity=85);
}
.__st_gallery_thumb_wrapper li.fg-youtube-play a:hover:before {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}
.__st_gallery_thumb_wrapper li.fg-youtube-play a:hover:after {
  content: '\f16a';
}
article .__st_gallery_thumb_wrapper img {
  border: 0;
}
article .__st_gallery_feature_content {
  background-color: #fff;
  width: 100%;
  border: 0;
}
.gallery-grid-20 li {
  width: 20%;
}
.gallery-grid-6 li {
  width: 16.666%;
}
.gallery-grid-5 li {
  width: 20%;
}
.gallery-grid-4 li {
  width: 24.99%;
}
.gallery-grid-3 li {
  width: 33.33332%;
}
.gallery-grid-2 li {
  width: 50%;
}
.gallery-grid-1 li {
  width: 100%;
}
.zoom-overlay-wrapper .image-wrapper {
  position: relative;
  overflow: hidden;
  margin: 0 auto 24px;
}
.zoom-overlay-wrapper .image-wrapper img {
  -webkit-transition: all 0.75s ease-out;
  -moz-transition: all 0.75s ease-out;
  -o-transition: all 0.75s ease-out;
  transition: all 0.75s ease-out;
  transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
}
.zoom-overlay-wrapper .image-wrapper .image-overlay {
  position: absolute;
  text-align: center;
  width: 100%;
  top: 0;
  height: 100%;
  padding: 15px;
  display: flex;
  flex-flow: row wrap;
  font-size: 1.2em;
  background-color: rgba(0, 0, 0, 0.65);
  color: #fff;
  line-height: 1.2em;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  -webkit-transition: all 0.75s ease-out;
  -moz-transition: all 0.75s ease-out;
  -o-transition: all 0.75s ease-out;
  transition: all 0.75s ease-out;
}
.zoom-overlay-wrapper .image-wrapper .image-overlay h1,
.zoom-overlay-wrapper .image-wrapper .image-overlay h2,
.zoom-overlay-wrapper .image-wrapper .image-overlay h3,
.zoom-overlay-wrapper .image-wrapper .image-overlay h4,
.zoom-overlay-wrapper .image-wrapper .image-overlay h5,
.zoom-overlay-wrapper .image-wrapper .image-overlay h6 {
  padding-top: 0;
  color: #fff;
}
.zoom-overlay-wrapper .image-wrapper .image-overlay .image-overlay-action {
  display: flex;
  align-self: flex-end;
  margin: 0 auto;
}
.zoom-overlay-wrapper .image-wrapper:hover img {
  transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  -webkit-transition: all 0.75s ease-out;
  -moz-transition: all 0.75s ease-out;
  -o-transition: all 0.75s ease-out;
  transition: all 0.75s ease-out;
}
.zoom-overlay-wrapper .image-wrapper:hover .image-overlay {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  transition: all 1s ease-out;
}
@media screen and (min-width: 993px) {
  .zoom-overlay-wrapper .image-wrapper .image-overlay {
    padding: 15px;
    font-size: 0.85em;
  }
}
@media screen and (min-width: 1200px) {
  .zoom-overlay-wrapper .image-wrapper .image-overlay {
    padding: 30px;
    font-size: 0.9em;
  }
}
.touch .overlay-on-touch .zoom-overlay-wrapper .image-wrapper .image-overlay {
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  -webkit-opacity: 0.8;
  opacity: 0.8;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=80);
  filter: alpha(opacity=80);
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  transition: all 1s ease-out;
}
.media-kit-image-wrapper a {
  position: relative;
  display: inline-block;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  transform: scale(0.98, 0.98);
  -webkit-transform: scale(0.98, 0.98);
  -moz-transform: scale(0.98, 0.98);
  -o-transform: scale(0.98, 0.98);
  -ms-transform: scale(0.98, 0.98);
}
.media-kit-image-wrapper a:after {
  content: '\f08e';
  font-family: FontAwesome;
  position: absolute;
  color: #fff;
  text-shadow: 1px 2px 1px rgba(0, 0, 0, 0.3);
  font-size: 32px;
  right: 10px;
  top: 12px;
  height: 100%;
  -moz-opacity: 0.4;
  -khtml-opacity: 0.4;
  -webkit-opacity: 0.4;
  opacity: 0.4;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=40);
  filter: alpha(opacity=40);
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.media-kit-image-wrapper a:hover {
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
}
.media-kit-image-wrapper a:hover:after {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.page-sidebar-menu-and-gallery {
  margin-bottom: 30px;
}
.gallery-loading-indicator {
  position: relative;
  text-align: center;
  top: 100px;
  font-size: 18px;
}
/** gallery overlay smoothzoom **/
.sz-overlay {
  position: fixed;
  z-index: 9998;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  -webkit-transform: translateZ(0);
}
.sz-zoomed {
  z-index: 9999;
  display: block;
  text-decoration: none;
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  position: fixed;
  cursor: pointer;
}
.sz-caption {
  z-index: 9999;
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #000;
  color: #fff;
  text-align: center;
}
.sz-caption span {
  z-index: 9999;
  display: inline-block;
  padding: 5px;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.sz-close {
  z-index: 9999;
  position: fixed;
  top: 5px;
  right: 5px;
  padding: 9px;
  color: #fff;
  text-decoration: none;
  font-size: 34px;
  border-radius: 42px;
}
.sz-close:hover {
  -webkit-transition: all 0.75s ease-out;
  -moz-transition: all 0.75s ease-out;
  -o-transition: all 0.75s ease-out;
  transition: all 0.75s ease-out;
}
#lightzoomed {
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  -webkit-opacity: 0.5;
  opacity: 0.5;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
  filter: alpha(opacity=50);
}
.sz-loading {
  z-index: 9999;
  position: fixed;
  top: 50%;
  left: 45%;
  color: #ffffff;
}
.sz-left,
.sz-right {
  z-index: 9999;
  position: fixed;
  top: 50%;
  left: 0;
  margin-top: -25px;
  text-decoration: none;
  height: 80px;
  line-height: 80px;
  width: 3%;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  background: #fff;
  color: #666;
  text-align: center;
  padding-top: 4px;
  border-radius: 0 40px 40px 0;
  -moz-border-radius: 0 40px 40px 0;
}
.sz-left:hover,
.sz-right:hover {
  -webkit-transition: all 0.75s ease-out;
  -moz-transition: all 0.75s ease-out;
  -o-transition: all 0.75s ease-out;
  transition: all 0.75s ease-out;
}
.sz-left i,
.sz-right i {
  font-size: 28px;
  font-size: 2.8rem;
}
.sz-right {
  right: 0;
  left: auto;
  border-radius: 40px 0 0 40px;
  -moz-border-radius: 40px 0 0 40px;
}
@media screen and (max-width: 414px) {
  .sz-left,
  .sz-right {
    width: 50px;
  }
}
.slick-slider {
  padding-left: 50px;
  padding-right: 50px;
}
.slick-slider .slick-slide img {
  width: 100%;
}
.slick-slider .slick-prev:before,
.slick-slider .slick-next:before {
  color: #074a70 !important;
  font-size: 45px !important;
}
.slick-slider .slick-prev,
.slick-slider .slick-next {
  width: 41px !important;
  height: 41px !important;
}
.slick-slider .slick-prev {
  left: 0 !important;
}
.slick-slider .slick-next {
  right: 0 !important;
}
/*******  IE OVERRIDES *********/
.ie8 .col-sm-3,
.ie8 .col-md-3 {
  width: 24%;
  float: left;
}
.ie8 .col-sm-4,
.ie8 .col-md-4,
.ie8 .ca-item {
  width: 33%;
  float: left;
}
.ie8 .col-md-5 {
  width: 43%;
  float: left;
}
.ie8 .col-md-6,
.ie8 .col-sm-6 {
  width: 49.5%;
  float: left;
}
.ie8 .col-md-7 {
  width: 57%;
  float: left;
}
.ie8 .col-md-8,
.ie8 .col-sm-8 {
  width: 66%;
  float: left;
}
.ie8 .col-sm-9,
.ie8 .col-sm-9 {
  width: 74%;
  float: left;
}
.ie8 .col-sm-push-4,
.ie8 .col-lg-push-4 {
  left: 33%;
}
.ie8 .col-sm-pull-8,
.ie8 .col-lg-pull-8 {
  right: 66%;
}
.ie8 .col-lg-4 {
  width: 30%;
  float: left;
}
.ie8 .col-lg-8 {
  width: 66%;
  float: left;
}
.ie8 .container {
  width: 1170px;
  margin: 0 auto;
}
.ie8 .gallery-strip-element.inactive {
  display: none;
}
.ie8 .visible-lg-block,
.ie8 .visible-md-block {
  display: block !important;
}
.ie8 .hidden-lg,
.ie8 .hidden-md {
  display: none;
}
.ie7 .col-lg-offset-1 {
  margin-left: 8%;
}
.ie7 .col-sm-2,
.ie7 .col-md-2 {
  width: 16.5%;
  float: left;
}
.ie7 .col-sm-3,
.ie7 .col-md-3 {
  width: 20%;
  float: left;
}
.ie7 .col-sm-4,
.ie7 .col-md-4,
.ie7 .ca-item {
  width: 28%;
  float: left;
}
.ie7 .col-md-5 {
  width: 36%;
  float: left;
}
.ie7 .col-md-7 {
  width: 54%;
  float: left;
}
.ie7 .col-md-8,
.ie7 .col-sm-8 {
  width: 62%;
  float: left;
}
.ie7 .col-sm-9,
.ie7 .col-sm-9 {
  width: 74%;
  float: left;
}
.ie7 .col-sm-push-4 {
  left: 28%;
}
.ie7 .col-sm-pull-8 {
  right: 62%;
}
.ie7 .container {
  width: 1170px;
  margin: 0 auto;
}
.ie7 .gallery-strip-element.inactive {
  display: none;
}
