
:root {
  font-size: 16px;

  --fsz: 16px;/* content font size font size base */
  --h1fzs: calc(var(--fsz) * 1.8);/* heading 1 font size base */
  --h2fzs: calc(var(--fsz) * 1.5);/* heading 2 font size base */
  --h3fzs: calc(var(--fsz) * 1.2);/* heading 3 font size base */
  --h4fzs: calc(var(--fsz) * 1.1);/* heading 4 font size base */
  --h5fzs: var(--fsz);/* heading 5&6 font size base */

  font-size: var(--fsz);


  --primary_color: #666;
  --primary_color_fg: #fff;

  --btn-radius: 0;
  --input-radius: 0;

  --fallback-font: "Lucida Grande", Helvetica, Arial, sans-serif;
  --primary-font: var(--fallback-font);
  --secondary-font: var(--fallback-font);
}

.form-control { font-size: 1rem; }

body {
  padding: 0;
  font-size: 1rem;
  font-size: var(--fsz);
  font-family: var(--primary-font), var(--fallback-font);
}

h1,h2,h3 {
  text-transform: uppercase;
}

h1,h2,h3
  ,.btn
  ,.navbar-nav > li > a
  ,#footer
  ,.header-sub-menu .submenu li
  ,.content_section.testimonials .testimonial .name
{
  font-family: var(--secondary-font), var(--fallback-font);
}

.btn.btn-link {
  font-family: var(--primary-font);
}

/* heading sizes: desktop */
.h1, h1 {
  font-size: 1.8em;
  font-size: var(--h1fzs);
}
.h2, h2 {
  font-size: 1.5em;
  font-size: var(--h2fzs);
}
.h3, h3 {
  font-size: 1.2em;
  font-size: var(--h3fzs);
}
.h4, h4 {
  font-size: 1.1em;
  font-size: var(--h4fzs);
}
.h5, h5, .h6, h6 {
  font-size: 1em;
  font-size: var(--h5fzs);
}

/* font scale sizes: desktop */
.font-down-2 {
  font-size: 0.7rem;
}
.font-down-1 {
  font-size: 0.9rem;
}
.font-up-1 {
  font-size: 1.3rem;
}
.font-up-2 {
  font-size: 1.6rem;
}
.font-up-3 {
  font-size: 2rem;
}
.font-up-9 {
  font-size: 3rem;
}

.well {
  background: #F8F8F8;
  border-radius: 0;
  border-color: #F2F2F2;
}

.btn {
  /* secondary_font */
  border-radius: var(--btn-radius);
  font-size: 1.2em;
  text-transform: uppercase;
  padding: 5px 12px;
}
.btn.btn-link {
  text-transform: none;
  font-size: 1em;
}
.btn.btn-lg {
  padding: 10px 16px;
  font-size: 1.5em;
}
.btn.btn-sm {
  font-size: 0.8em;
  padding: 4px 10px;
}
.btn.btn-xs {
  font-size: 0.6em;
  padding: 3px 8px;
}
.btn.btn-primary, .btn-primary {
  background-color: var(--btnclr_bg,var(--primary_color));
  color: var(--btnclr_fg,var(--primary_color_fg));
  border-color: transparent;
}
.btn-primary:hover {
  background-color: var(--primary_color);
  border-color: transparent;
  opacity: 0.88;
}
.btn-primary[disabled], .btn-primary[disabled]:hover {
  background-color: var(--primary_color) !important;
  color: #fff !important;
  opacity: 0.5;
}

/* fix for font-size: 0; on input-group-button */
.input-group-btn .btn { font-size: 1rem; }

.primary_color_bg {
  background-color: var(--primary_color);
}
.primary_color_bg.force_primary {
  background-color: var(--primary_color) !important;
}
.primary_color_bg_fg {
  color: var(--primary_color);
}
.primary_color_bg_fg.force_primary {
  color: var(--primary_color) !important;
}
.primary_color_fg {
  color: var(--primary_color_fg);
}
.primary_color_fg.force_primary {
  color: var(--primary_color_fg) !important;
}
.primary_color_fg_bg {
  background-color: var(--primary_color_fg);
}
.primary_color_fg_bg.force_primary {
  background-color: var(--primary_color_fg) !important;
}

.btn.btn-unselected, .btn.btn-unselected.btn-primary {
  background: transparent;
  color: inherit;
  border-color: #666;
  opacity: 0.6;
}
.btn.btn-unselected:hover, .btn.btn-unselected.btn-primary:hover {
  opacity: 0.8;
}

.fixed-right-btn {
  position: fixed;
  top: 30%;
  left: 100%;
  z-index: 999;
  margin: 0 !important;
  padding: 6px !important;
  font-size: 1em;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  transform: translate(-34px,0);
  transition: all 100ms ease-in-out;
}
.fixed-right-btn.displaced {
  margin-top: -30px !important;
}
.fixed-right-btn:hover {
  transform: translate(-100%,0);
}
.fixed-right-btn i {
  display: inline-block;
  width: 25px;
  text-align: center;
  font-size: 1.2em;
}
.right-drawer {
  position: fixed;
  top: 30%;
  right: 0;
  transform: translate(250px,50px);
  transition: all 100ms ease-in-out;
  z-index: 99;
}
.right-drawer.highest {
  z-index: 1099;
}
.right-drawer:hover {
  transform: translate(0,50px);
}
.right-drawer .reveal {
  position: absolute;
  left: -34px;
  width: 35px;
  font-size: 1.5em;
  text-align: center;
  padding: 5px 0;
  top: 0px;
  border: 1px solid #ccc;
  background: #fff;
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.right-drawer .guts {
  width: 250px;
  border: 1px solid #ccc;
  border-right: none;
  background: #fff;
  padding: 10px;
}

.panel-heading, .panel, .alert {
  border-radius: 0;
}
.form-control {
  border-radius: var(--input-radius);
}
textarea.form-control {
  border-radius: min(20px,var(--input-radius));
}

.flash-msgs .alert {
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  border: none;
}
.flash-msgs .alert.alert-success {
  background: #66CC66;
  color: #fff;
}
.flash-msgs .alert .close {
  opacity: 0.5;
}

.panel.panel-default {
  border: none;
}
.panel.panel-default>.panel-heading, .panel.panel-default>.panel-body {
  border: 1px solid #f5f5f5;
}

.media-embed {
  max-width: 100%;
  margin: 0 auto;
  display: block;
}

.leaderboard-record-title {
  text-transform: uppercase;
  font-weight: bold;
  color: #939393;
}
.leaderboard-record {
  padding: 10px 0;
  text-transform: uppercase;
}
.leaderboard-record.highlighted {
  background: #f3f3f3;
}
.leaderboard-record .rank {
  display: inline-block;
  margin-right: 5px;
  color: #CE0303;
}
.leaderboard-record h4 {
  color: #CE0303;
  font-weight: bold;
}
.dark-screen .leaderboard-record h4 {
  color: #fff;
}
.leaderboard-record h5 {
  color: #939393;
  font-weight: bold;
}
.leaderboard-record .profile-photo {
  width: 120px;
  max-height: 120px;
  max-width: 100%;
}

#header {
  background-color: #f9f9f9;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}
#header.wheadimg {
  background: rgba(249,249,249,0.7);
}
#header.inverse {
  background-color: #050606;
}
#header.inverse.wheadimg {
  background: rgba(0,0,0,0.7);
}
#header .bgimg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #fff;
}
#header.inverse .bgimg {
  background-color: #050606;
}
#header .prenav {
  background: #121212;
  padding: 10px 0;
  text-transform: uppercase;
  font-size: 0.8em;
  line-height: 1em;
}
#header .prenav, #header .prenav a {
  color: #CBCBCB;
  text-decoration: none;
}
#header .prenav a:hover {
  opacity: 0.7;
}
#header .prenav .social-links a {
  display: inline-block;
  width: 1.2em;
  font-size: 1.2em;
  text-align: center;
  margin: 0 3px;
  vertical-align: middle;
}
#header .navbar {
  min-height: 70px;
  background-color: rgba(255,255,255,0.7);
}
#header .navbar-inverse {
  background-color: rgba(5,6,6,0.7);
}
.navbar-inverse .navbar-nav>.active>a, .navbar-inverse .navbar-nav>.active>a:focus, .navbar-inverse .navbar-nav>.active>a:hover {
  background-color: rgba(8,8,8,0.5);
}
.navbar-brand {
  line-height: 70px;
  padding: 10px 20px;
  height: 70px;
  box-sizing: border-box;
}
.navbar-brand span {
  line-height: 60px;
  display: block;
}
.navbar-brand:hover { opacity: 0.88; }
.navbar-brand img {
  vertical-align: middle;
  max-height: 53px;
  max-width: 100%;
}
.navbar-default .navbar-nav > li > a:hover {
  background: #eee;
}

.navbar-nav > li > a {
  /* secondary_font */
  padding-left: 12px;
  padding-right: 12px;
  font-size: 0.9em;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.navbar-nav > li > a.btn {
  line-height: 1;
  padding: 6px 10px 8px;
  color: #C3C2C5;
  border: 2px solid #C3C2C5;
  margin: 0 5px;
  background-color: transparent;
}

.nav li > a:hover {
  background: none;
}
.nav li.active > a, .nav .dropdown-menu li.active > a:hover {
  background: #eee;
  color: #000;
}
.subnav {
  font-size: 0.8em;
  margin-left: 15px;
}
.subnav > li >a {
  padding: 5px 8px
}
.subnav li.active > a {
  background: #f0f0f0;
}
.navbar {
  margin-top: 0;
  margin-bottom: 0;
  border-radius: 0;
  border: none;
}
.breadcrumb {
  margin-bottom: 10px;
}
.breadcrumb {
  background: transparent;
  padding-left: 0;
  padding-right: 0;
}

#header .navbar-toggle {
  margin-top: 15px;
}

#header .header-title {
  color: #000;
  margin: 0;
  padding: 40px 0;
  font-size: 1.5em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#header.inverse .header-title {
  color: #fff;
}

#footer {
  /* secondary_font */
  color: #787878;
  padding: 10px 0;
  padding-bottom: 30px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9em;
}
#footer.inverse {
  background: #000;
}
#footer a {
  color: #787878;
}
#footer .footer-menu {
  margin: 10px 0;
}
#footer .footer-menu>button {
  padding: 0;
  background: none;
  border: none;
  font: inherit;
}
#footer .footer-menu span {
  display: inline-block;
  margin: 0 8px;
}
#footer .copyright {
  font-size: 0.9em;
}

.dropdown-menu.dropup {
  top: initial !important;
  bottom: 100%;
}

.header-sub-menu {
  background: #F8F8F8;
}
.header-sub-menu li>button {
  background: none;
  border: none;
  padding: none;
  display: inline;
  font: inherit;
}
.header-sub-menu a {
  color: #959595;
}
.header-sub-menu .breadcrumb {
  margin: 0;
  padding: 0;
  line-height: 50px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header-sub-menu .submenu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: right;
}
.header-sub-menu .menubtn {
  line-height: 50px;
  text-align: right;
}
.header-sub-menu .submenu>li {
  /* secondary_font */
  display: inline-block;
  text-transform: uppercase;
  line-height: 50px;
  margin: 0 7px;
}
.header-sub-menu .submenu .active a, .header-sub-menu .submenu a:hover {
  color: #000;
  text-decoration: none;
}
.header-sub-menu .dropdown-menu>.active>a {
  background: #ccc;
}

.tiled .tile {
  margin-bottom: 25px;
}
.tiled .tile .tile_inner {
  background: #fff;
  height: 100%;
}
.tiled .block_link {
  display: block;
  text-decoration: none;
}
.tiled .block_link:hover {
  opacity: 0.7;
  text-decoration: none;
}
.tiled .tile > .block_link {
  height: 100%;
}
.tiled .tile .img.embed-responsive-item, .general_img {
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #f0f0f0;
  background-size: cover;
}
.tiled .tile .tile_content {
  padding: 10px 20px;
  background: #f6f6f6;
}
.tiled .tile .inline_link, .tiled .tile .inline_link:hover {
  display: inline-block;
  margin: 5px 0;
  margin-right: 10px;
  color: #000;
  text-decoration: none;
}
.tiled .tile .dash_line {
  color: #000;
  text-transform: uppercase;
  padding-top: 10px;
  line-height: 1;
  background: #f6f6f6;
}
.tiled .tile .dash_line .dash {
  display: inline-block;
  width: 26px;
  height: 4px;
  vertical-align: middle;
  margin-right: 5px;
  border-bottom-right-radius: 5px;
  margin-top: -2px
}
.tiled .tile .tile_content h4 {
  margin-top: 0;
  font-weight: bold;
  text-transform: uppercase;
  color: #12151d;
}
.tiled .tile .tile_content h6 {
  text-transform: uppercase;
  color: #cecece;
}
.tiled .tile .tile_content .excerpt, .tiled .tile .tile_addon {
  color: #a6a6a6;
}
.tiled .tile .view_more_wrap {
  margin-top: 20px;
}
.tiled .tile .view_more {
  text-transform: uppercase;
}


.month_cal {
  width: 100%;
  max-width: 600px;
  display: inline-block;
  text-align: center;
  padding: 10px;
}
.month_cal table {
  width: 100%;
}
.month_cal table a, .month_cal table td span {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 8px 0;
  line-height: 30px;
  font-size: 0.7em;
  text-align: center;
  color: #ccc;
  text-decoration: none;
}
.month_cal .hasEvents a {
  background: #f6f6f6;
  border-radius: 30px;
  color: black;
}
.month_cal table a:hover {
  text-decoration: none;
  background: #f9f9f9;
}
.month_cal td {
  vertical-align: top;
  width: 14.28%;
  text-align: center;
}
.month_cal .bub {
  font-size: 1.5em;
  line-height: 1;
  color: #f00;
  display: inline-block;
}

.spaced_content {
  padding: 30px 0;
}

.contact_form_stacked .bottom_text {
  display: inline-block;
  margin-top: 5px;
}

.content_section.background_imager {
  background: rgba(0,0,0,0.65);
  position: relative;
}
.content_section.background_imager .img-container, .abs-bg-img {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.content_section .elem_video_container {
  max-width: 700px;
  margin: 0 auto;
}
.content_section .elem_video_container.small {
  max-width: 300px;
}
.content_section .elem_video_container.large {
  max-width: 1140px;
}
.content_section .elem_video_container.full {
  max-width: 100%;
  max-height: none;
}
.content_section .elem_video_container.full .embed-responsive {
  padding: 0;
  height: 700px;
  max-height: 80vh;
}

.content_section .brand-image img {
  display: inline-block;
}
.content_section .brand-image {
  margin-bottom: 35px;
}


.content_section.call_to_action {
  /*background: #73c8e4;*/
  background: rgba(0,0,0,0.85);
  text-align: center;
  padding: 119px 0;
  position: relative;
}
.content_section.call_to_action.small {
  padding: 40px 10px;
}
.content_section.call_to_action .img-container {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.content_section.call_to_action h2 {
  text-transform: uppercase;
  font-size: 3.5em;
  color: #fff;
  margin-top: 0;
}
.content_section.call_to_action.small h2 {
  font-size: 3em;
  text-transform: none;
  line-height: 1.5em;
}
.content_section.call_to_action h2 + p {
  margin-top: 40px;
}
.content_section.call_to_action .btn {
  /*
  background: #a5cfdc;
  color: #fff;
  */
  border: none;
  font-size: 1.8em;
  padding-left: 60px;
  padding-right: 60px;
}
.content_section.call_to_action .btn:hover {
  opacity: 0.88;
}


.content_section.thin_call_action {
  padding: 60px 0;
  background: rgba(0,0,0,0.78);
  position: relative;
  font-size: var(--fsz,1rem);
  color: var(--txtclr,#fff);
}
.content_section.thin_call_action .img-container {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.content_section.thin_call_action .flex-sm {
  align-items: center;
}
.content_section.thin_call_action .btn-col {
  max-width: 320px;
}
.content_section.thin_call_action p {
  margin: 0.2em 0;
}
.content_section.thin_call_action h1
,.content_section.thin_call_action h2
,.content_section.thin_call_action h3
,.content_section.thin_call_action h4
,.content_section.thin_call_action h5
,.content_section.thin_call_action h6
{
  color: var(--hclr,--txtclr);
  margin: 0.2em 0;
}
.content_section.thin_call_action h1 {
  font-size: var(--hfzs,var(--h1fzs));
}
.content_section.thin_call_action h2 {
  font-size: calc(var(--hfzs,var(--h1fzs)) * 0.9);
}
.content_section.thin_call_action h3 {
  font-size: calc(var(--hfzs,var(--h1fzs)) * 0.8);
}
.content_section.thin_call_action h4 {
  font-size: calc(var(--hfzs,var(--h1fzs)) * 0.7);
}
.content_section.thin_call_action h5,.content_section.thin_call_action h6 {
  font-size: calc(var(--hfzs,var(--h1fzs)) * 0.6);
}
.content_section.thin_call_action .txt-container {
  padding: 0 20px;
}
.content_section.thin_call_action .txt-container>*:first-child {
  margin-top: 0;
  padding-top: 0;
}
.content_section.thin_call_action .txt-container>*:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
.content_section.thin_call_action .btn-container {
  text-align: right;
  padding: 0 20px;
}
.content_section.thin_call_action .btn-container .btn {
  width: 100%;
  max-width: 300px;
  padding: 0.8em 2em;
  font-size: 1em;
}
.content_section.thin_call_action.style_center {
  text-align: center;
}
.content_section.thin_call_action.style_center h2 {
  padding-top: 0;
}
.content_section.thin_call_action.style_center .txt-container {
  text-align: right;
}
.content_section.thin_call_action.style_center .txt-container, .content_section.thin_call_action.style_center .btn-container {
  display: inline-block;
  vertical-align: middle;
}
.content_section.thin_call_action.style_center .btn-container {
  min-width: 250px;
}
.content_section.thin_call_action.style_stacked {
  text-align: center;
}
.content_section.thin_call_action.style_stacked .btn-container {
  text-align: center;
  padding-top: 4rem;
}
.content_section.thin_call_action.style_stacked .btn {
  text-align: center;
  padding: 0.4em 1em;
}

.content_section.title_highlight {
  padding: 168px 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: black;
  text-align: center;
  position: relative;
}
.content_section.title_highlight::before {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2;
}
.content_section.title_highlight .txt {
  padding: 215px 10px;
  background: rgba(255,255,255,0.5);
  width: 80%;
  margin: 0 auto;
  border-radius: 10px;
  color: #fff;
  font-size: 2em;
  position: relative;
  z-index: 3;
}
.content_section.title_highlight h2 {
  margin: 0;
  padding: 0;
}
.content_section.title_highlight h2 + h2 {
  margin-top: 100px;
}


.content_section.html_content {
  padding: 40px 0;
  background: #fff;
  color: var(--txtclr,inherit);
  font-size: var(--fsz);
}
.content_section.html_content .html-content > *:first-child {
  margin-top: 0;
}
.content_section.html_content .html-content > *:last-child {
  margin-bottom: 0;
}
.content_section.html_content .html-content {
  padding: 15px;
}
.content_section.html_content .container .html-content {
  padding-left: 0;
  padding-right: 0;
}
.content_section.html_content h1
,.content_section.html_content h2
,.content_section.html_content h3
,.content_section.html_content h4
,.content_section.html_content h5
,.content_section.html_content h6
{
  color: var(--hclr,inherit);
}
.content_section.html_content h1 {
  font-size: var(--hfzs,var(--h1fzs));
}
.content_section.html_content h2 {
  font-size: calc(var(--hfzs,var(--h1fzs)) * 0.9);
}
.content_section.html_content h3 {
  font-size: calc(var(--hfzs,var(--h1fzs)) * 0.8);
}
.content_section.html_content h4 {
  font-size: calc(var(--hfzs,var(--h1fzs)) * 0.7);
}
.content_section.html_content h5,.content_section.html_content h6 {
  font-size: calc(var(--hfzs,var(--h1fzs)) * 0.6);
}
.content_section.html_content::after {
  clear: both;
  content: " ";
  height: 1px;
  width: 100%;
  display: block;
  overflow: hidden;
}
.content_section.html_content .flex-sm {
  align-items: center;
}
.content_section.html_content .elem_media_container {
  margin: 0 auto;
}
.content_section.html_content .btn-container {
  margin-top: 20px;
}
.content_section.html_content .btnwrap {
  /* legacy */
  text-align: center;
}


.content_section.contact_form {
  position: relative;
  padding: 30px 0;
  background: rgba(255,255,255,0.8);
}
.content_section.contact_form .img-container {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.content_section.contact_form .txt {
  text-align: center;
}
.content_section.contact_form .btn-submit {
  padding-left: 30px;
  padding-right: 30px;
}
.content_section.contact_form .contact_form_slim .form-control {
  font-size: 1.2em;
  line-height: 2.75em;
  height: 2.75em;
}
.content_section.contact_form .contact_form_slim .btn-submit {
  padding-top: 0;
  padding-bottom: 0;
  font-size: 1.2em;
  line-height: 2.75em;
  height: 2.75em;
}


.content_section.form_element {
  --btn_size: 5;
  --btn_bg_color: var(--primary_color);
  --btn_fg_color: var(--primary_color_fg);
  --form_max_width: 600px;
  padding: 30px 0;
  background: #fff;
  color: var(--txtclr,inherit);
  font-size: var(--fsz);
}
.content_section.form_element .form-element {
  max-width: var(--form_max_width) !important;
}
.content_section.form_element .html-content {
  font-size: var(--fsz);
}
.content_section.form_element .form-col, .content_section.form_element .html-content {
  margin: 10px 0;
}
.content_section.form_element .spaced_content {
  padding: 0;
}
.content_section.form_element .footer-content {
  padding-top: 10px;
}
.content_section.form_element .cright .html-content {
  order: 1;
}
.content_section.form_element :first-child {
  margin-top: 0;
}
.content_section.form_element :last-child {
  margin-bottom: 0;
}
.content_section.form_element .btn-l .btn-cont {
  text-align: left !important;
}
.content_section.form_element .btn-r .btn-cont {
  text-align: right !important;
}
.content_section.form_element h1
,.content_section.form_element h2
,.content_section.form_element h3
,.content_section.form_element h4
,.content_section.form_element h5
,.content_section.form_element h6
{
  color: var(--hclr,inherit);
}
.content_section.form_element h1 {
  font-size: var(--hfzs,var(--h1fzs));
}
.content_section.form_element h2 {
  font-size: calc(var(--hfzs,var(--h1fzs)) * 0.9);
}
.content_section.form_element h3 {
  font-size: calc(var(--hfzs,var(--h1fzs)) * 0.8);
}
.content_section.form_element h4 {
  font-size: calc(var(--hfzs,var(--h1fzs)) * 0.7);
}
.content_section.form_element h5,.content_section.form_element h6 {
  font-size: calc(var(--hfzs,var(--h1fzs)) * 0.6);
}
.content_section.form_element .btn-submit {
  width: 100%;
  font-size: calc((100 + (var(--btn_size,1) *10)) *1%);
  padding: max(calc((var(--btn_size,1) *.10) *1%),1%) max(calc((var(--btn_size,1) *.65) *1%),2%);
  background: var(--btn_bg_color);
  color: var(--btn_fg_color);
}
.content_section.form_element .btn-w-nrm .btn-submit {
  width: auto;
}


.content_section.content_contact_form {
  padding: 50px 0;
  color: #fff;
}
.content_section.content_contact_form .content_col {
  font-size: 1.1em;
  line-height: 1.8em;
}
.content_section.content_contact_form .content_col p>a {
  color: inherit;
}
.content_section.content_contact_form .content_col > :first-child {
  margin-top: 0;
}
.content_section.content_contact_form .contact_form_wrapper {
  color: #B2B2B2;
  border-radius: 5px;
  background: #F8F8F8;
}
.content_section.content_contact_form .contact_form_wrapper .heading {
  text-align: center;
  padding: 8px 5px;
  text-transform: none;
  font-size: 1.1em;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  margin: 0;
}
.content_section.content_contact_form .contact_form_wrapper .heading.standalone {
  color: #333;
}
.content_section.content_contact_form .contact_form_wrapper.nobox {
  color: inherit;
  border-radius: 0;
  background: none;
}
.content_section.content_contact_form .contact_form_wrapper.nobox .heading {
  border-radius: 0;
}
.content_section.content_contact_form .contact_form_wrapper.nobox .heading.standalone {
  color: inherit;
}
.content_section.content_contact_form .contact_form_container {
  padding: 10px 30px;
}
.content_section.content_contact_form .contact_form_wrapper.nobox .contact_form_container {
  padding: 5px;
}
.content_section.content_contact_form .items {
  display: table;
  margin-bottom: 20px;
}
.content_section.content_contact_form .items .item {
  display: table-row;
}
.content_section.content_contact_form .items .item>div {
  display: table-cell;
  vertical-align: middle;
  padding: 5px;
}
.content_section.content_contact_form .items .item .icon {
  width: 30px;
  font-size: 1.5em;
  text-align: center;
}


.content_section.background_video_hero {
  position: relative;
  background: rgba(0,0,0,0.6);
  color: var(--txtclr,#fff);
  text-align: center;
  height: 400px;
  overflow: hidden;
}
.content_section.background_video_hero .ytplayer-container {
  position: absolute;
  top: 0;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
}
.content_section.background_video_hero .img-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.content_section.background_video_hero::after {
  z-index: -2;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #000;
  content: " ";
}
.content_section.background_video_hero .inner_container {
  display: table;
  width: 100%;
  height: 100%;
  text-align: center;
}
.content_section.background_video_hero .txt_container {
  display: table-cell;
  height: 100%;
  vertical-align: middle;
}
.content_section.background_video_hero .btn {
  margin: 0 5px;
  padding: 8px 37px;
  background: none;
  border-radius: 0;
  border: 2px solid var(--txtclr,rgba(255,255,255, .75));
  min-width: 120px;
  color: var(--txtclr,#fff);
}
.content_section.background_video_hero .btn:hover {
  opacity: 0.7;
}
.content_section.background_video_hero h3, .content_section.background_video_hero h1 {
  color: inherit;
  margin: 0;
  padding: 0;
  font-weight: normal;
}
.content_section.background_video_hero .txt>h3, .content_section.background_video_hero .head-txt {
  margin-bottom: 50px;
  font-size: 1em;
}
.content_section.background_video_hero .head-txt h1 {
  font-size: calc(var(--fzs,1em) * 1.7);
}
.content_section.background_video_hero .head-txt h2 {
  font-size: calc(var(--fzs,1em) * 1.6);
}
.content_section.background_video_hero .head-txt h3,.content_section.background_video_hero .txt>h3 {
  font-size: calc(var(--fzs,1em) * 1.5);
}
.content_section.background_video_hero .head-txt h4 {
  font-size: calc(var(--fzs,1em) * 1.3);
}
.content_section.background_video_hero .head-txt>*:first-child {
  margin-top: 0;
  padding-top: 0;
}
.content_section.background_video_hero .head-txt>*:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
.content_section.background_video_hero .rotations {
  margin-bottom: 50px;
  position: relative;
}
.content_section.background_video_hero .rotations .cnt>*:first-child {
  margin-top: 0;
  padding-top: 0;
}
.content_section.background_video_hero .rotations .cnt>*:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
.content_section.background_video_hero .rotations h1, .content_section.background_video_hero .rotations>h1 {
  font-size: calc(var(--fzs) * 1);
}
.content_section.background_video_hero .rotations h2 {
  font-size: calc(var(--fzs) * 0.8);
}
.content_section.background_video_hero .rotations h3 {
  font-size: calc(var(--fzs) * 0.7);
}
.content_section.background_video_hero .rotations h4 {
  font-size: calc(var(--fzs) * 0.6);
}
.content_section.background_video_hero .rotations>h1, .content_section.background_video_hero .rotations .cnt {
  display: none;
  position: relative;
}
.content_section.background_video_hero .rotations>*:first-child {
  display: block;
}


.content_section.content_hero {
  padding: 119px 0;
}
.content_section.content_hero p {
  font-size: 0.8em;
  line-height: 1.8em;
  color: #fff;
  margin: 0;
  margin-top: 20px;
}
.content_section.content_hero h2 {
  font-size: 2em;
  letter-spacing: 0.1em;
  line-height: 1;
  margin: 0;
  text-transform: none;
  color: #fff;
}
.content_section.content_hero .btn {
  border: none;
  font-size: 1em;
  padding-left: 30px;
  padding-right: 30px;
}
.content_section.content_hero .btn:hover {
  opacity: 0.88;
}


.content_section.map_content {
  position: relative;
}
.content_section.map_content .txt-outer {
  width: 50%;
  padding: 30px 0;
}
.content_section.map_content .txt-container {
  padding: 10px 50px;
}
.content_section.map_content .txt-container h2 {
  font-size: 1.3em;
}
.content_section.map_content .txt-container .txt-row {
  display: table;
  width: 100%;
}
.content_section.map_content .txt-container .txt-row-ico {
  display: table-cell;
  width: 55px;
  text-align: center;
  vertical-align: top;
}
.content_section.map_content .txt-container .txt-row-txt {
  display: table-cell;
  vertical-align: top;
}
.content_section.map_content .txt-container .fa {
  font-size: 2.5em;
}
.content_section.map_content .map-outer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
}
.content_section.map_content .map-outer .map-element {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}


.content_section.map_full .map-outer {
  position: relative;
  height: 350px;
}
.content_section.map_full .map-outer .map-element {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}


.content_section.embedded_video {
  padding: 60px 0;
  background: rgba(255,255,255,0.6);
}
.content_section.embedded_video .video_container {
  max-width: 700px;
  margin: 0 auto;
}
.content_section.embedded_video.large .video_container {
  max-width: 1140px;
}
.content_section.embedded_video.full {
  padding: 0;
}
.content_section.embedded_video.full .video_container {
  max-width: 100%;
  max-height: none;
}
.content_section.embedded_video.full .embed-responsive {
  padding: 0;
  height: 700px;
  max-height: 80vh;
}

.content_section.split_content_image {
  --hclr: var(--txtclr,var(--primary_color));
  --hfzs: calc(var(--fsz) * 1.8);
  --vpad: 40px;
  --imgcolw: 50%;
  --imgmaxh: initial;
  --imgradius: 0;
  --imgbcol: var(--primary_color);
  padding: var(--vpad) 0;
  background: #fff;
  color: var(--txtclr,#909090);
  font-size: var(--fsz);
}
.content_section.split_content_image h1 {
  color: var(--hclr);
  font-size: var(--hfzs,var(--h1fzs));
}
.content_section.split_content_image h2 {
  color: var(--hclr);
  font-size: calc(var(--hfzs,var(--h1fzs)) * 0.9);
}
.content_section.split_content_image h3 {
  color: var(--hclr);
  font-size: calc(var(--hfzs,var(--h1fzs)) * 0.8);
}
.content_section.split_content_image h4 {
  color: var(--hclr);
  font-size: calc(var(--hfzs,var(--h1fzs)) * 0.7);
}
.content_section.split_content_image h5,.content_section.split_content_image h6 {
  color: var(--hclr);
  font-size: calc(var(--hfzs,var(--h1fzs)) * 0.6);
}
.content_section.split_content_image.v2 .content_col, .content_section.split_content_image.v2 .img_col {
  align-self: center;
  padding: 0 10px;
}
.content_section.split_content_image.v2 .img_col {
  width: var(--imgcolw,50%);
}
.content_section.split_content_image.v2 .img_col img {
  max-height: var(--imgmaxh);
  border-radius: var(--imgradius,0);
}
.content_section.split_content_image.imgb .img_col img {
  border-style: var(--imgbtyp,solid);
  border-color: var(--imgbcol);
  border-width: var(--imgbsize);
}
.content_section.split_content_image.imgshd .img_col img {
  box-shadow: 0 0 var(--imgbsize) var(--imgbcol);
}
.content_section.split_content_image.v2 .content_col {
  width: calc(100% - var(--imgcolw,50%));
}
.content_section.split_content_image.v2 .content_col {
  padding: 10px;
  order: 1;
}
.content_section.split_content_image.touchbottom {
  padding: 0;
}
.content_section.split_content_image.image-bottom_touch
,.content_section.split_content_image.image-top_touch {
  padding: 0;
}
.content_section.split_content_image.touchbottom .img_col {
  padding-top: 10px;
}
.content_section.split_content_image.image-bottom_touch .content_col
,.content_section.split_content_image.image-top_touch .content_col {
  padding: var(--vpad) 0;
}
.content_section.split_content_image.v2.image-bottom_touch .img_col
,.content_section.split_content_image.v2.image-bottom .img_col {
  align-self: flex-end;
}
.content_section.split_content_image.v2.image-bottom_touch .img_col {
  padding-top: 10px;
}
.content_section.split_content_image.v2.image-top_touch .img_col
,.content_section.split_content_image.v2.image-top .img_col {
  align-self: flex-start;
}
.content_section.split_content_image.v2.image-top_touch .img_col {
  padding-bottom: 10px;
}
.content_section.split_content_image p
,.content_section.split_content_image ul
,.content_section.split_content_image ol {
  color: inherit;
}
.content_section.split_content_image .content_col > :first-child {
  margin-top: 0;
}


.content_section.content_highlight {
  padding: 50px 0;
  position: relative;
  --txtclr: #878787;
  --iclr: var(--txtclr);
  --hclr: #000;
  --fsz: 0.99em;
  --hfzs: calc(var(--fsz) * 1.8);
  --sepcolor: #ddd;
}
.content_section.content_highlight .img-container {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.content_section.content_highlight .container {
  position: relative;
  color: var(--txtclr);
}
.content_section.content_highlight .elems {
  position: relative;
}
.content_section.content_highlight .sep {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 33.33333333%;
  width: 1px;
  border-right: 1px solid var(--sepcolor);
  content: " ";
}
.content_section.content_highlight .primary-content-col {
  text-align: right;
  font-size: calc(var(--fsz) * 1.1);
  line-height: calc(var(--fsz) * 1.8);
}
.content_section.content_highlight h1, .content_section.content_highlight h2, .content_section.content_highlight h3 {
  margin: 0;
  padding: 0;
  margin-bottom: 15px;
  font-size: var(--hfzs);
  color: var(--hclr);
}
.content_section.content_highlight .secondary-content-col {
  font-size: var(--fsz);
  line-height: calc(var(--fsz) * 1.55);
}
.content_section.content_highlight.primary_content_right .sep {
  left: initial;
  right: 33.33333333%;
}
.content_section.content_highlight.primary_content_right .primary-content-col {
  text-align: left;
  float: right;
}
.content_section.content_highlight.primary_content_right .secondary-content-col {
  text-align: right;
}
.content_section.content_highlight .btn-container {
  margin-top: 10px;
}


.content_section.icon_action {
  padding: 30px 0;
  background: rgba(0,0,0,0.8);
  position: relative;
  --txtclr: #fff;
  --iclr: var(--txtclr);
  --hclr: var(--txtclr);
  --fsz: 1rem;
  --hfzs: calc(var(--fsz) * 1.1);
  --ifzs: calc(var(--fsz) * 2.2);
  --max-col-width: 300px;
}
.content_section.icon_action .outer-txt, .content_section.icon_action .footer-txt {
  text-align: center;
}
.content_section.icon_action .outer-txt > *:last-child:not(br) {
  margin-bottom: 40px;
}
.content_section.icon_action .footer-txt > *:first-child:not(br) {
  margin-top: 40px;
}
.content_section.icon_action.fluid {
  --max-col-width: 100%;
}
.content_section.icon_action .col {
  padding: 10px;
  padding-top: 15px;
  padding-bottom: 15px;
}
.content_section.icon_action.fluid .col {
  max-width: var(--max-col-width);
}
.content_section.icon_action .img-container {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.content_section.icon_action h1
, .content_section.icon_action h2
, .content_section.icon_action h3
, .content_section.icon_action h4
, .content_section.icon_action h5
, .content_section.icon_action h6
, .content_section.icon_action p
, .content_section.icon_action i {
  font-size: var(--fsz);
  color: var(--txtclr);
  text-decoration: none;
}
.content_section.icon_action .col .row {
  margin: 0;
}
.content_section.icon_action .ico_col, .content_section.icon_action .txt_col {
  float: none;
  display: table-cell;
  vertical-align: top;
  padding: 0;
  width: auto;
}
.content_section.icon_action .ico_col {
  padding-right: 10px;
}
.content_section.icon_action .ico_col.col-md-2 {
  min-width: 3em;
}
.content_section.icon_action .txt_col {
  width: 100%;
}
.content_section.icon_action h1
,.content_section.icon_action h2
,.content_section.icon_action h3
,.content_section.icon_action h4
,.content_section.icon_action h5
,.content_section.icon_action h6
{
  font-size: var(--hfzs);
  color: var(--hclr);
  margin-left: -5px;
  font-weight: normal;
  letter-spacing: 1px;
  margin-top: 0;
}
.content_section.icon_action i {
  font-size: var(--ifzs);
  text-align: center;
  color: var(--iclr);
}
.content_section.icon_action .icon-small i {
  font-size: calc(var(--ifzs) * 0.5);
}
.content_section.icon_action .icon-large i {
  font-size: calc(var(--ifzs) * 1.7);
}
.content_section.icon_action .txt_col p {
  font-size: calc(var(--fsz) * 0.93);
}
.content_section.icon_action .btn {
  min-width: 60%;
  max-width: 100%;
}


.content_section.icon_content {
  --col-bg-color: transparent;
  --max-col-width: 300px;
  --ico-padding: 0px;
  --col-padding: 10px;
  --row-spacing: 2rem;
  --gap: 0;
  --clr: #ACACAC;
  --col-clr: var(--clr);
  --ico-clr: var(--primary_color);
  padding: 60px 0;
  background: rgba(255,255,255,0.8);
  color: var(--clr);
  font-size: var(--fsz);
}
.content_section.icon_content.ico_left {
  --ico-padding: 15px;
}
.content_section.icon_content .outer-txt, .content_section.icon_content .footer-txt {
  text-align: center;
}
.content_section.icon_content .outer-txt > *:last-child:not(br) {
  margin-bottom: 40px;
}
.content_section.icon_content .footer-txt > *:first-child:not(br) {
  margin-top: 40px;
}
.content_section.icon_content h1
,.content_section.icon_content h2
,.content_section.icon_content h3
,.content_section.icon_content h4
,.content_section.icon_content h5
,.content_section.icon_content h5
{
  font-size: var(--hfzs,1.2rem);
  color: var(--hclr);
}
.content_section.icon_content.fluid {
  --max-col-width: 100%;
}
.content_section.icon_content .col_row {
  gap: var(--gap);
}
.content_section.icon_content .col {
  position: relative;
  color: var(--col-clr);
  padding: var(--col-padding);
  background-color: var(--col-bg-color);
  overflow: hidden;
}
.content_section.icon_content a.col {
  display: block;
  text-decoration: none;
}
.content_section.icon_content a.col:hover {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
}
.content_section.icon_content.vert .content_col {
  flex-grow: 1;
  display: flex;
  align-items: center;
}
.content_section.icon_content.vert .content_col>div {
  width: 100%;
}
.content_section.icon_content .flex-col>*{
  flex-shrink: 1;
}
.content_section.icon_content.fluid .col {
  max-width: var(--max-col-width);
}
.content_section.icon_content .col_row + .col_row {
  margin-top: var(--row-spacing);
}
.content_section.icon_content .ico_col {
  padding: var(--ico-padding);
  color: var(--ico-clr);
}
.content_section.icon_content i {
  font-size: var(--ifzs,2.8em);
}
.content_section.icon_content p {
  margin: 15px 0;
}
.content_section.icon_content .btn {
  min-width: 60%;
  max-width: 100%;
}


.content_section.accordion {
  padding: 60px 0;
  background: rgba(255,255,255,0.8);
  color: var(--txtclr,#000000);
  font-size: var(--fsz,1rem);
  --hfzs: var(--fsz,1rem);
}
.content_section.accordion h1
,.content_section.accordion h2
,.content_section.accordion h3
,.content_section.accordion h4
,.content_section.accordion h5
,.content_section.accordion h6 {
  color: var(--hclr,inherit);
  font-size: inherit;
}
.content_section.accordion h1 {
  font-size: calc(var(--hfzs) * 1.8);
}
.content_section.accordion h2 {
  font-size: calc(var(--hfzs) * 1.5);
}
.content_section.accordion h3 {
  font-size: calc(var(--hfzs) * 1.2);
}
.content_section.accordion h4 {
  font-size: calc(var(--hfzs) * 1.1);
}
.content_section.accordion .header-txt>*:first-child {
  margin-top: 0;
  padding-top: 0;
}
.content_section.accordion .header-txt>*:last-child {
  margin-bottom: 30px;
}
.content_section.accordion .footer-txt>*:first-child {
  margin-top: 30px;
}
.content_section.accordion .footer-txt>*:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
.content_section.accordion>.container>.items>.item {
  width: 100%;
  overflow: hidden;
  margin: 10px 0;
}
.content_section.accordion .accordion-head {
  font-size: inherit;
  font-weight: normal;
  color: var(--ihclr,var(--hclr,inherit));
  cursor: pointer;
  margin: 0;
  padding: 0;
}
.content_section.accordion .accordion-head h1
,.content_section.accordion .accordion-head h2
,.content_section.accordion .accordion-head h3
,.content_section.accordion .accordion-head h4
,.content_section.accordion .accordion-head h5
,.content_section.accordion .accordion-head h6 {
  color: inherit;
}
.content_section.accordion .accordion-head>span,.content_section.accordion .accordion-head>.head {
  display: table-cell;
}
.content_section.accordion .accordion-head>span {
  width: 20px;
  padding-right: 10px;
}
.content_section.accordion .accordion-head>span i {
  transition: all 0.35s;
}
.content_section.accordion>.container>.items>.item>input:checked + .accordion-head>span i
,.editing .content_section.accordion>.container>.items>.item .accordion-head>span i {
  transform: rotate(90deg);
}
.content_section.accordion>.container>.items>.item>input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.content_section.accordion>.container>.items>.item:first-child {
  margin-top: 0;
}
.content_section.accordion>.container>.items>.item:last-child {
  margin-bottom: 0;
}
.content_section.accordion>.container>.items>.item>.content {
  max-height: 0;
  padding: 0 1em;
  transition: all 0.35s;
  overflow: hidden;
}
.content_section.accordion>.container>.items>.item>input:checked ~ .content 
,.editing .content_section.accordion>.container>.items>.item>.content {
  max-height: initial;
  padding: 1em;
}
.content_section.accordion .accordion-head .head>*:first-child {
  margin-top: 0;
  padding-top: 0;
}
.content_section.accordion .accordion-head .head>*:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
.content_section.accordion .accordion-head .content>*:first-child {
  margin-top: 20px;
  padding-top: 0;
}
.content_section.accordion .accordion-head .content>*:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}



.content_section.testimonials {
  padding: 60px 0;
  text-align: center;
  position: relative;
  background: rgba(255,255,255,0.8);
}
.content_section.testimonials .img-container {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.content_section.testimonials .testimonial-list {
  position: relative;
  margin: 0 auto;
  max-width: 800px;
}
.content_section.testimonials .testimonial {
  position: absolute;
  top: 0;
  width: 100%;
  display: none;
}
.content_section.testimonials .testimonial .txt p {
  font-style: italic;
  font-size: 1.5em;
  line-height: 1.3;
  margin: 0;
  padding: 0;
  letter-spacing: 1px;
}
.content_section.testimonials .testimonial .name {
  /* secondary_font */
  color: #000;
  margin-top: 10px;
  text-transform: uppercase;
}
.content_section.testimonials .testimonial .name::before {
  content: "- ";
}
.content_section.testimonials .testimonial-nav {
  margin: 5px 0;
  margin-top: 15px;
}
.content_section.testimonials .testimonial-nav span {
  font-size: 2em;
  display: inline-block;
  width: 30px;
  height: 8px;
  margin: 0 3px;
  opacity: 0.9;
  cursor: pointer;
  background: #ddd;
  border: 1px solid #fff;
}
.content_section.testimonials .testimonial-nav span.current {
  background: #000;
}
.content_section.testimonials .testimonial-nav span:hover {
  opacity: 0.8;
}
.content_section.testimonials .nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3em;
  line-height: 1;
  height: 1.3em;
  color: rgba(200,200,200,0.7);
  display: block;
  padding: 5px 10px;
  cursor: pointer;
  text-aligN: center;
}
.content_section.testimonials .nav-arrow:hover {
  opacity: 0.8;
}
.content_section.testimonials .nav-arrow.left {
  left: 10px;
}

.content_section.testimonials .nav-arrow.right {
  right: 10px;
}


.content_section.gallery {
  padding: 60px 0;
  background: rgba(255,255,255,0.8);
}
.content_section.gallery .outertxt {
  text-align: center;
  padding: 0 30px;
}
.content_section.gallery .galleryimage-list {
  position: relative;
  padding: 0 30px;
}
.content_section.gallery .galleryimage-list .row {
  margin-bottom: 0;
  margin-top: 0;
}
.content_section.gallery .galleryimage {
  margin: 15px;
}
.content_section.gallery .col-sm-3 .galleryimage {
  margin: 15px 0;
}
.content_section.gallery .col-sm-2 .galleryimage {
  margin: 15px 0;
}
.content_section.gallery .galleryimage a {
  text-decoration: none;
  display: block;
}
.content_section.gallery .galleryimage a:hover {
  opacity: 0.9;
}
.content_section.gallery .galleryimage .img {
  padding-bottom: 68%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.content_section.gallery.hidetxt .galleryimage .txt {
  display: none;
}
.content_section.gallery .galleryimage .txt {
  text-align: center;
  padding: 20px 10px;
  background: #fff;
  color: #000;
}


.content_section.pricecolumn {
  padding: 60px 0;
  background: rgba(255,255,255,0.8);
}
.content_section.pricecolumn .outertxt {
  text-align: center;
  padding: 0 30px;
}
.content_section.pricecolumn .pricecolumn-list {
  padding: 0 30px;
  position: relative;
}
.content_section.pricecolumn .pricecolumn-list .row {
  margin-bottom: 0;
  margin-top: 0;
}
.content_section.pricecolumn .pricecolumn {
  margin: 15px;
  padding: 2px;
  text-align: center;
  /*box-shadow: 10px 10px 18px rgba(0,0,0,0.3);*/
}
.content_section.pricecolumn .col-sm-3 .pricecolumn {
  margin: 15px 0;
}
.content_section.pricecolumn .col-sm-2 .pricecolumn {
  margin: 15px 0;
}
.content_section.pricecolumn .pricecolumn h3 {
  margin: 0;
  padding: 15px;
  text-align: center;
  font-weight: normal;
  font-size: 1.4em;
}
.content_section.pricecolumn .pricecolumn .price {
  background: #f1f1f1;
  color: #58595a;
  padding: 20px 5px;
}
.content_section.pricecolumn .pricecolumn .price div {
  font-size: 1.3em;
}
.content_section.pricecolumn .pricecolumn .price small {
  font-style: italic;
}
.content_section.pricecolumn .pricecolumn .inner {
  background: #fff;
  color: #333;
}
.content_section.pricecolumn .pricecolumn .lines > div {
  padding: 10px 5px;
  border-top: 1px solid #E8E8E8;
}
.content_section.pricecolumn .pricecolumn .btnwrap {
  padding: 5px;
  margin: 0;
}

.content_section.wod h2, .content_section.wod h3 {
  text-align: center;
}
.content_section.wod .wod_viewer {
  margin: 0 auto;
}

@media (max-width: 600px) {
  #header .prenav {
    padding: 5px 0;
  }
  #header .header-title {
    font-size: 1em;
    padding: 10px 0;
  }
  #header .navbar {
    min-height: 40px;
  }
  #header .bizhours-phone-separator, #header .bizhours {
    display: none;
  }
  #header .navbar-toggle {
    margin-top: 5px;
  }
  .navbar-brand {
    line-height: 40px;
    height: 40px;
    padding: 5px 10px;
  }
  .navbar-brand img {
    max-height: 37px;
  }

  .content_section.background_video_hero .btn {
    width: 80%;
    margin: 0.5rem 0;
  }
}

@media (min-width: 768px) {
  .navbar-nav > li > a {
    line-height: 40px;
  }
  .navbar-nav > li > a.btn {
    margin-top: 20px;
    margin-left: 20px;
    line-height: 1;
  }
  .content_section.split_content_image.v2 .inner {
    display: flex;
    flex-direction: row;
  }
  .content_section.split_content_image.img-p-right .img_col {
    order: 2;
  }
  .content_section.split_content_image.img-p-right.img-stack-above .img_col {
    order: 2;
  }
}
@media (max-width: 768px) {
  :root {
    font-size: 14px;
  }

  /* heading sizes: mobile */
  .h1, h1 {
    font-size: 1.7em;
  }
  .h2, h2 {
    font-size: 1.4em;
  }
  .h3, h3 {
    font-size: 1.2em;
  }
  .h4, h4 {
    font-size: 1em;
  }
  .h5, h5, .h6, h6 {
    font-size: 1em;
  }

  /* font scale sizes: mobile */
  .font-up-1 {
    font-size: 1.1rem;
  }
  .font-up-2 {
    font-size: 1.3rem;
  }
  .font-up-3 {
    font-size: 1.5rem;
  }
  .font-up-9 {
    font-size: 2rem;
  }

  .content_section.title_highlight .txt {
    padding: 4rem 0.4rem;
  }
  .content_section.title_highlight h2 {
    font-size: 1.4rem;
    line-height: 2rem;
  }
  .content_section.title_highlight h2 + h2 {
    margin-top: 1rem;
  }

  .content_section.html_content .html-content {
    max-width: 100% !important;
  }
  .content_section.html_content .elem_media_container {
    max-width: 100% !important;
    margin-top: 20px;
  }

  .content_section.split_content_image.v2 {
    display: block;
  }
  .content_section.split_content_image.v2 .content_col, .content_section.split_content_image.v2 .img_col {
    display: block;
    width: 100%;
    text-align: center;
  }

  .content_section .brand-image {
    text-align: center !important;
  }

  .content_section.icon_content .col + .col {
    margin-top: var(--row-spacing);
  }

  .content_section.thin_call_action .txt-container {
    padding: 0;
    padding-bottom: 1rem;
  }
  .content_section.thin_call_action .btn-container {
    padding: 0;
    text-align: left;
  }
  .content_section.thin_call_action.style_center .txt-container {
    text-align: left;
  }
  .content_section.thin_call_action.style_center .txt-container, .content_section.thin_call_action.style_center .btn-container {
    display: block;
  }
}

@media (max-width: 800px) {
  .content_section.map_content .txt-outer, .content_section.map_content .map-outer {
    width: 100%;
    position: relative;
  }
  .content_section.map_content .map-outer {
    height: 300px;
  }
  .content_section.map_content .txt-container {
    padding: 10px 20px;
  }

  .content_section.map_full .map-outer {
    height: 300px;
  }


  .content_section.testimonials .testimonial .txt p {
    font-size: 1.3em;
  }
}

@media (min-width: 992px) {
  .content_section.content_highlight .primary-content>:last-child, .content_section.content_highlight .secondary-content>:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .content_section.content_highlight .secondary-content {
    padding-left: 12px;
  }
  .content_section.content_highlight.primary_content_right .secondary-content {
    padding-left: 0;
    padding-right: 15px;
  }
}

@media (max-width: 992px) {
  .header-sub-menu .submenu li {
    display: block;
    text-align: left;
  }

  .content_section.content_highlight .primary-content-col {
    text-align: left;
    border-bottom: 1px solid var(--sepcolor);
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
  .content_section.content_highlight.primary_content_right .secondary-content-col {
    text-align: left;
  }
  .content_section.content_highlight.primary_content_right .primary-content-col {
    float: none;
    text-align: left;
  }
  .content_section.content_highlight .sep {
    display: none;
  }

  .content_section.icon_action {
    text-align: center;
  }
  .content_section.icon_action .col {
    padding: 15px 0;
  }
  .content_section.icon_action .ico_col {
    padding: 0;
  }
  .content_section.icon_action .ico_col, .content_section.icon_action .txt_col {
    display: block;
    margin: 10px 0;
  }
  .content_section.icon_action h2 {
    margin-left: 0;
  }

}


/*
  Lightbox
*/
html.lb-disable-scrolling {
  overflow: hidden;
  /* Position fixed required for iOS. Just putting overflow: hidden; on the body is not enough. */
  position: fixed;
  height: 100vh;
  width: 100vw;
}
.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  opacity: 0.8;
  display: none;
}
.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
}
.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 3px;
  border: 4px solid white;
}
.lightbox a img {
  border: none;
}
.lb-outerContainer {
  position: relative;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;
  background-color: white;/* Background color behind image. This is visible during transitions. */
}
.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}
.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}
.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  /*background: url(/js/lightbox/images/loading.gif) no-repeat;*/
}
.lb-cancel:after {
  display: block;
  font-size: 40px;
  content: "\2026";
  color: #000;
  text-shadow: 0px 0px 2px rgba(255, 255, 255, 0.62);
}
.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}
.lb-container > .nav {
  left: 0;
}
.lb-nav a {
  position: relative;
  outline: none;
  font-size: 40px;
  color: #fff;
  text-shadow: 0px 0px 11px rgba(0, 0, 0, 0.8);
  background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}
.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}
.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  /*background: url(/js/lightbox/images/prev.png) left 48% no-repeat;*/
  opacity: 0;
  transition: opacity 0.6s;
}
.lb-nav a.lb-prev:after {
  content: "\00AB";
  position: absolute;
  top: 48%;
  left: 10%;
}
.lb-nav a.lb-prev:hover {
  opacity: 1;
}
.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  /*background: url(/js/lightbox/images/next.png) right 48% no-repeat;*/
  opacity: 0;
  transition: opacity 0.6s;
}
.lb-nav a.lb-next:after {
  content: "\00BB";
  position: absolute;
  top: 48%;
  right: 10%;
}
.lb-nav a.lb-next:hover {
  opacity: 1;
}
.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}
.lb-data {
  padding: 0 4px;
  color: #ccc;
}
.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}
.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}
.lb-data .lb-caption a {
  color: #4ae;
}
.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}
.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  /*background: url(/js/lightbox/images/close.png) top right no-repeat;*/
  text-align: right;
  outline: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.lb-data .lb-close:after {
  display: block;
  font-size: 30px;
  content: "\00d7";
  color: #fff;
  text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.62);
  line-height: 20px;
}
.lb-data .lb-close:hover {
  cursor: pointer;
  opacity: 1;
}
