@charset "utf-8";
/* 
	layout.less
	Project: Alberta Water Council
*/
/*------ imports ------*/
/* 
	global.less
*/
/*------ imports ------*/
/*
	core.less
*/
/*------ responsive ------*/
/*------ imports ------*/
/* 
	mixins.less
*/
/*------ typography ------*/
.word-break {
  word-break: break-word;
}
.serif {
  font-family: 'IBM Plex Serif', Times, serif;
  font-weight: 400;
}
.serif.italic {
  font-style: italic;
}
.serif.italic.bold {
  font-weight: 600;
}
.serif.bold {
  font-weight: 700;
}
.text-alert {
  color: #b72100;
}
.text-success {
  color: #4C6C33;
}
/*------ forms ------*/
/*------ clearfix ------*/
.clearfix {
  display: inline-block;
}
.clearfix:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
html[xmlns] .clearfix,
html .clearfix {
  display: block;
}
* html .clearfix {
  height: 1%;
}
/*------ display ------*/
.full {
  width: 100%;
}
.auto {
  width: auto;
}
.container {
  position: relative;
  margin: 0 auto;
  width: calc(100% - 20px);
  max-width: 1280px;
  padding: 0 10px;
}
.container.wide {
  max-width: 1540px;
}
.container.text-wrap {
  max-width: 940px;
}
.container.text-wrap.skinny {
  max-width: 700px;
}
@media all and (min-width: 769px) {
  .container {
    width: calc(100% - 40px);
    padding: 0 20px;
  }
}
.f_right {
  float: right;
  display: block;
}
.f_left {
  float: left;
  display: block;
}
.clear {
  display: block;
  clear: both;
}
.right {
  text-align: right;
}
.left {
  text-align: left;
}
.center {
  text-align: center;
}
.block {
  display: block !important;
}
.inline-block {
  display: inline-block !important;
}
.inline {
  display: inline !important;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.nomargin {
  margin: 0 !important;
}
.nopadding {
  padding: 0 !important;
}
.noborder {
  border: 0 !important;
}
.nobg {
  background: none !important;
}
.hidden {
  display: none !important;
}
.show-tablet-p,
.show-tablet-l,
.show-notebook,
.show-desktop {
  display: none;
}
@media all and (min-width: 481px) {
  .show-tablet-p {
    display: block;
  }
}
@media all and (min-width: 769px) {
  .show-tablet-l {
    display: block;
  }
}
@media all and (min-width: 1025px) {
  .show-notebook {
    display: block;
  }
}
@media all and (min-width: 1367px) {
  .show-desktop {
    display: block;
  }
}
.responsive-bg {
  background-attachment: fixed;
  background-size: cover;
}
.touch .responsive-bg {
  background-attachment: scroll;
  background-size: cover;
}
.overlay {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.75;
  filter: alpha(opacity=75);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=75);
}
.overlay.overlay-theme1 {
  background-color: #192B33;
}
.overlay.overlay-theme2 {
  background-color: #2880A6;
}
.overlay.overlay-gradient {
  background: #192B33;
  background: -webkit-gradient(left bottom, right top, color-stop(0%, #192B33), color-stop(100%, #2880A6));
  background: linear-gradient(45deg, #192B33 0%, #2880A6 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#192B33', endColorstr='#2880A6', GradientType=1);
}
.overlay.overlay-black {
  background-color: #111;
}
.overlay.solid {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
}
.overlay.fade-bottom {
  top: auto;
  bottom: 0;
  height: 33%;
  background: -webkit-gradient(linear, left bottom, left top, from(#fafafa), color-stop(19%, rgba(250, 250, 250, 0.738)), color-stop(34%, rgba(250, 250, 250, 0.541)), color-stop(47%, rgba(250, 250, 250, 0.382)), color-stop(56.5%, rgba(250, 250, 250, 0.278)), color-stop(65%, rgba(250, 250, 250, 0.194)), color-stop(73%, rgba(250, 250, 250, 0.126)), color-stop(80.2%, rgba(250, 250, 250, 0.075)), color-stop(86.1%, rgba(250, 250, 250, 0.042)), color-stop(91%, rgba(250, 250, 250, 0.021)), color-stop(95.2%, rgba(250, 250, 250, 0.008)), color-stop(98.2%, rgba(250, 250, 250, 0.002)), to(transparent));
  background: linear-gradient(to top, #fafafa 0%, rgba(250, 250, 250, 0.738) 19%, rgba(250, 250, 250, 0.541) 34%, rgba(250, 250, 250, 0.382) 47%, rgba(250, 250, 250, 0.278) 56.5%, rgba(250, 250, 250, 0.194) 65%, rgba(250, 250, 250, 0.126) 73%, rgba(250, 250, 250, 0.075) 80.2%, rgba(250, 250, 250, 0.042) 86.1%, rgba(250, 250, 250, 0.021) 91%, rgba(250, 250, 250, 0.008) 95.2%, rgba(250, 250, 250, 0.002) 98.2%, transparent 100%);
}
/*------ buttons ------*/
/*------ flexbox ------*/
/*------ filters ------*/
/*------ transformations ------*/
/*------ animations ------*/
/*
	animations.less

*/
/*---- fades ----*/
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  }
}
@-webkit-keyframes fade-out {
  0% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  }
  100% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  }
  100% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  }
}
@-webkit-keyframes fade-up {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fade-up {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes fade-down {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fade-down {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes fade-left {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fade-left {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes fade-right {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fade-right {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
/*---- slides ----*/
@-webkit-keyframes slide-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slide-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes slide-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slide-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
/*---- daneden.github.io - animate.css ----*/
@-webkit-keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@-webkit-keyframes rubber-band {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubber-band {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
/*---- leadin animations ----*/
.leadin-popup.open.type-corner,
.leadin-popup.open.type-bar.position-bottom {
  -webkit-animation: fade-up 0.4s ease-out 0s;
  animation: fade-up 0.4s ease-out 0s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.leadin-popup.open .button.bounce {
  -webkit-animation: bounce 0.8s ease-out 0.8s;
  animation: bounce 0.8s ease-out 0.8s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.leadin-popup.open .button.rubber-band {
  -webkit-animation: rubber-band 1s ease-out 0.8s;
  animation: rubber-band 1s ease-out 0.8s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.leadin-popup.open .button.swing {
  -webkit-animation: swing 0.6s ease-out 0.8s;
  animation: swing 0.6s ease-out 0.8s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.leadin-popup.open .button.tada {
  -webkit-animation: tada 1s ease-out 0.8s;
  animation: tada 1s ease-out 0.8s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
/*------ reset ------*/
* {
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
body,
html {
  width: 100%;
  height: 100%;
  background: #fafafa;
}
main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
/*------ typography ------*/
body,
th,
td {
  line-height: 1.4;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
p {
  padding: 0 0 20px;
  margin: 0;
}
ul,
ol {
  padding: 0 0 20px;
  margin: 0 0 0 40px;
}
a {
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}
h1,
h2,
h3,
h4,
h5,
h6,
.gradient-text {
  padding: 0;
  font-weight: normal;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
h1 {
  margin: 0;
}
h2 {
  margin: 0 0 30px;
}
h3,
.gradient-text {
  margin: 0 0 25px;
}
h4 {
  margin: 0 0 20px;
}
h5 {
  margin: 0 0 15px;
  line-height: 1.2;
}
h6 {
  margin: 0 0 10px;
  line-height: 1.2;
}
p + h2,
ul + h2,
ol + h2,
table + h2,
blockquote + h2 {
  margin-top: 1.3em;
}
p + h3,
ul + h3,
ol + h3,
table + h3,
blockquote + h3 {
  margin-top: 1.2em;
}
p + h4,
ul + h4,
ol + h4,
table + h4,
blockquote + h4 {
  margin-top: 1em;
}
p + h5,
ul + h5,
ol + h5,
table + h5,
blockquote + h5 {
  margin-top: 1em;
}
small {
  display: inline-block;
  letter-spacing: 0em;
}
blockquote p,
quote p {
  padding: 0;
}
/*------ interface ------*/
body,
html {
  width: 100%;
  height: 100%;
}
body {
  max-width: 480px;
}
@media all and (min-width: 481px) {
  body {
    max-width: 768px;
  }
}
@media all and (min-width: 769px) {
  body {
    max-width: 1024px;
  }
}
@media all and (min-width: 1025px) {
  body {
    max-width: 1366px;
  }
}
@media all and (min-width: 1367px) {
  body {
    max-width: 1920px;
  }
}
@media all and (min-width: 1921px) {
  body {
    max-width: none;
  }
}
img {
  border: 0;
  -ms-interpolation-mode: bicubic;
  display: inline-block;
  max-width: 100%;
}
iframe {
  max-width: 100%;
}
hr {
  border: 0;
  border-top: 1px solid #ccc;
  height: 0px;
  padding: 0;
  margin: 1.5em 0 2em 0;
}
.panel:not(#panel-17) table {
  border-collapse: collapse;
  margin: 20px 0 40px;
  border: none;
}
.panel:not(#panel-17) table label {
  display: none;
  margin: 0;
}
@media all and (max-width: 768px) {
  .panel:not(#panel-17) table {
    width: 100% !important;
    border-bottom: 1px solid #ddd;
  }
  .panel:not(#panel-17) table tr.header-row,
  .panel:not(#panel-17) table th {
    display: none;
  }
  .panel:not(#panel-17) table td {
    display: block;
    width: auto !important;
    text-align: left;
    border-bottom: 0 !important;
  }
  .panel:not(#panel-17) table label {
    display: inline-block;
    font-family: 'IBM Plex Serif', Times, serif;
    font-weight: 400;
    font-weight: 700;
    color: #2880A6;
  }
  .panel:not(#panel-17) table label.italic {
    font-style: italic;
  }
  .panel:not(#panel-17) table label.italic.bold {
    font-weight: 600;
  }
  .panel:not(#panel-17) table label.bold {
    font-weight: 700;
  }
  .panel:not(#panel-17) table.noresponsive tr.header-row {
    display: table-row;
  }
  .panel:not(#panel-17) table.noresponsive th,
  .panel:not(#panel-17) table.noresponsive td {
    display: table-cell;
  }
}
/*------ gradient text ------*/
.gradient-text {
  margin: 20px 0 40px;
  line-height: 1.2;
  font-weight: 600 !important;
  text-align: center;
  word-break: break-word;
  color: #192B33;
  background-color: #2880A6;
  background-image: -webkit-gradient(linear, left top, right top, from(#192B33), color-stop(50%, #2880A6), to(#192B33));
  background-image: linear-gradient(to right, #192B33 0%, #2880A6 50%, #192B33 100%);
  background-clip: text;
  background-size: 200% auto;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}
@media all and (min-width: 1025px) {
  .gradient-text {
    position: relative;
    left: 50%;
    width: calc(60vw - 40px);
    margin: 40px 0 60px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
/*------ forms ------*/
fieldset {
  width: 100%;
  margin: 20px 0 15px;
  padding: 30px 20px 15px;
  border: 1px solid #ddd;
  background: #fff;
  display: inline-block;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
fieldset:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
fieldset legend {
  padding: 0 20px;
}
fieldset legend h3:after,
fieldset legend h4:after,
fieldset legend h5:after {
  content: none !important;
}
fieldset .req {
  font-weight: 400;
  color: #b72100;
}
@media all and (min-width: 769px) {
  fieldset .column {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  fieldset .column .form-field {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  fieldset .column .form-field:not(:last-child) {
    margin-right: 10px;
  }
}
.form-field {
  position: relative;
  margin-bottom: 15px;
}
.form-field label {
  display: block;
  margin-bottom: 5px;
  font-family: 'IBM Plex Serif', Times, serif;
  font-weight: 400;
  font-size: 16px;
  font-size: 0.8rem;
  color: #2880A6;
}
.form-field label.italic {
  font-style: italic;
}
.form-field label.italic.bold {
  font-weight: 600;
}
.form-field label.bold {
  font-weight: 700;
}
.form-row {
  margin-bottom: 2px;
}
.form-row .req {
  color: #b72100;
}
.input,
.select,
.textarea {
  margin: 0;
  padding: 0 20px;
  width: 100%;
  max-width: 100%;
  height: 60px;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  color: #26414D;
  font-weight: 400;
  background: #fafafa;
  border: 1px solid #ddd;
  outline: none;
  border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
.input::-webkit-input-placeholder,
.select::-webkit-input-placeholder,
.textarea::-webkit-input-placeholder {
  color: #ccc;
}
.input:-ms-input-placeholder,
.select:-ms-input-placeholder,
.textarea:-ms-input-placeholder {
  color: #ccc;
}
.input::-moz-placeholder,
.select::-moz-placeholder,
.textarea::-moz-placeholder {
  color: #ccc;
}
.input:-moz-placeholder,
.select:-moz-placeholder,
.textarea:-moz-placeholder {
  color: #ccc;
}
.input:hover,
.select:hover,
.textarea:hover,
.input:focus,
.select:focus,
.textarea:focus {
  background-color: #fff;
}
.input.error,
.select.error,
.textarea.error {
  border: 1px solid #b72100;
}
.select {
  background-image: url("../../images/ui/select-arrow.png");
  background-position: calc(100% - 20px) calc(50% + 2px);
  background-repeat: no-repeat;
}
select::-ms-expand {
  display: none;
}
:root .select {
  padding: 10px 0px 10px 20px \ ;
}
.textarea {
  padding: 20px;
  height: 130px;
  line-height: 1.4;
  resize: none;
  overflow: auto;
}
.checkbox,
.radio {
  display: none;
}
.checkbox + label,
.radio + label {
  position: relative;
  display: inline-block;
  padding: 1px 10px 1px 26px;
  cursor: pointer;
  line-height: 20px !important;
  width: auto !important;
  margin-bottom: 5px;
}
.checkbox + label:before,
.radio + label:before {
  display: inline-block;
  font-size: 14px;
  font-style: normal;
  line-height: 18px;
  position: absolute;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #ccc;
  text-align: center;
  color: inherit;
  background: #fff;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\ ";
}
.radio + label:before {
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-size: 10px;
  text-indent: 1px;
}
.checkbox + label:before,
.radio + label:before {
  content: " ";
}
.checkbox:checked + label:before {
  content: "\f00c";
}
.radio:checked + label:before {
  content: "\f111";
}
.checkbox:disabled + label:before,
.radio:disabled + label:before {
  background-color: #eee;
}
#recaptcha-modal {
  overflow: hidden;
}
.recaptcha-wrapper {
  display: block;
}
.g-recaptcha {
  transform: scale(0.85);
  -webkit-transform: scale(0.85) rotate(0.02deg);
  -moz-transform: scale(0.85) rotate(0.02deg);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}
.g-recaptcha div {
  margin: 0 auto;
}
/*------ form alerts (success/error) ------*/
.alert {
  display: block;
  margin: 0 0 35px 0;
  padding: 20px 20px 15px;
  color: #26414D;
  border-left: 2px solid #666;
}
.alert h5 {
  margin-bottom: 10px;
  text-align: left;
  font-family: 'IBM Plex Serif', Times, serif;
  font-weight: 400;
  font-weight: 700;
  line-height: 1;
}
.alert h5.italic {
  font-style: italic;
}
.alert h5.italic.bold {
  font-weight: 600;
}
.alert h5.bold {
  font-weight: 700;
}
.alert h5:after {
  content: none !important;
}
.alert h5:before {
  position: relative;
  top: -2px;
  margin-right: 10px;
  line-height: 20px;
  font-size: 14px;
  font-size: 0.7rem;
}
.alert p {
  padding: 0;
  font-size: 16px;
  font-size: 0.8rem;
}
.alert.alert-success {
  background: rgba(76, 108, 51, 0.1);
  border-left: 2px solid #4C6C33;
}
.alert.alert-success h5 {
  color: #4C6C33;
}
.alert.alert-success h5:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00c";
}
.alert.alert-error {
  background: #ffe5e0;
  border-left: 2px solid #b72100;
}
.alert.alert-error h5 {
  color: #b72100;
}
.alert.alert-error h5:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f071";
}
/*------ contact icons */
.page-contact,
.contact-snippets {
  list-style: none;
}
.page-contact li,
.contact-snippets li {
  display: inline-block;
}
.page-contact li .label,
.contact-snippets li .label {
  display: none;
}
.page-contact li:before,
.contact-snippets li:before {
  display: inline-block;
  margin-right: 8px;
  font-size: inherit;
  color: inherit;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.page-contact li.address:before,
.contact-snippets li.address:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f3c5";
}
.page-contact li.phone:before,
.contact-snippets li.phone:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f095";
}
.page-contact li.tollfree:before,
.contact-snippets li.tollfree:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f590";
}
.page-contact li.mailto:before,
.contact-snippets li.mailto:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0e0";
}
.page-contact li.fax:before,
.contact-snippets li.fax:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f1ac";
}
.page-contact li.hours:before,
.contact-snippets li.hours:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f017";
}
.page-contact li.message:before,
.contact-snippets li.message:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f075";
}
/*------ buttons ------*/
.button,
a.button,
button.button {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 5px;
  padding: 15px 30px;
  font-family: 'IBM Plex Sans', Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.1;
  font-weight: 700;
  text-align: center;
  color: #fff;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.button i,
a.button i,
button.button i {
  color: inherit;
  margin-right: 8px;
}
.button span:before,
a.button span:before,
button.button span:before {
  display: inline-block;
  margin-right: 10px;
  font-size: inherit;
  color: inherit;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.button span.phone:before,
a.button span.phone:before,
button.button span.phone:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f095";
}
.button span.mailto:before,
a.button span.mailto:before,
button.button span.mailto:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0e0";
}
.button:before,
a.button:before,
button.button:before,
.button:after,
a.button:after,
button.button:after {
  content: '';
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.button:before,
a.button:before,
button.button:before {
  background: #35A7D9;
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
}
.button:after,
a.button:after,
button.button:after {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.button:hover,
a.button:hover,
button.button:hover {
  color: #fff;
  background: #2880A6;
}
.button:hover:before,
a.button:hover:before,
button.button:hover:before {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
}
.button:hover:after,
a.button:hover:after,
button.button:hover:after {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
}
.button:focus,
a.button:focus,
button.button:focus {
  outline: none;
  color: #192B33;
}
@media all and (min-width: 769px) {
  .button,
  a.button,
  button.button {
    font-size: 15px;
  }
}
.button.button-white,
a.button.button-white,
button.button.button-white,
.button.theme-white,
a.button.theme-white,
button.button.theme-white {
  font-weight: 400;
  color: #35A7D9;
  border: 1px solid #ddd;
}
.button.button-white:before,
a.button.button-white:before,
button.button.button-white:before,
.button.theme-white:before,
a.button.theme-white:before,
button.button.theme-white:before {
  background: #fff;
}
.button.button-white:hover,
a.button.button-white:hover,
button.button.button-white:hover,
.button.theme-white:hover,
a.button.theme-white:hover,
button.button.theme-white:hover,
.button.button-white.active,
a.button.button-white.active,
button.button.button-white.active,
.button.theme-white.active,
a.button.theme-white.active,
button.button.theme-white.active {
  color: #fff;
  background: #35A7D9;
}
.button.button-white:hover:before,
a.button.button-white:hover:before,
button.button.button-white:hover:before,
.button.theme-white:hover:before,
a.button.theme-white:hover:before,
button.button.theme-white:hover:before,
.button.button-white.active:before,
a.button.button-white.active:before,
button.button.button-white.active:before,
.button.theme-white.active:before,
a.button.theme-white.active:before,
button.button.theme-white.active:before {
  background: #35A7D9;
}
/*---- dialog ----*/
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
  content: "";
  display: table;
}
.ui-helper-clearfix:after {
  clear: both;
}
.ui-helper-clearfix {
  zoom: 1;
}
.ui-widget-overlay {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(40, 128, 166, 0.3);
}
.ui-dialog {
  position: absolute;
  z-index: 9999;
  top: 0;
  left: 0;
  padding: 0;
  overflow: hidden;
  max-width: calc(100% - 40px);
  outline: none !important;
  text-shadow: none;
}
.ui-dialog .ui-dialog-titlebar {
  position: relative;
  padding: 15px;
  font-family: 'IBM Plex Serif', Times, serif;
  font-weight: 400;
  font-size: 22px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  background: #192B33;
}
.ui-dialog .ui-dialog-titlebar.italic {
  font-style: italic;
}
.ui-dialog .ui-dialog-titlebar.italic.bold {
  font-weight: 600;
}
.ui-dialog .ui-dialog-titlebar.bold {
  font-weight: 700;
}
.ui-dialog .ui-dialog-title {
  margin: 0 25px 0 0;
}
.ui-dialog .ui-dialog-titlebar-close {
  position: absolute;
  right: 10px;
  top: 50%;
  width: 20px;
  margin: -10px 0 0 0;
  padding: 0 0 0 1px;
  height: 20px;
  background: none;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border: 0;
  font-size: 14px;
  cursor: pointer;
  outline: none !important;
}
.ui-dialog .ui-dialog-titlebar-close:hover,
.ui-dialog .ui-dialog-titlebar-close:focus {
  background: none;
  color: #fff;
}
.ui-dialog .ui-dialog-titlebar-close span {
  display: block;
}
.ui-dialog .ui-dialog-content {
  position: relative;
  border: 0;
  padding: 20px;
  background: none;
  overflow: auto;
  zoom: 1;
  min-height: inherit;
  font-size: 16px;
  font-size: 0.8rem;
  background: #fafafa;
}
.ui-dialog .ui-dialog-buttonpane {
  text-align: right;
  border-width: 1px 0 0 0;
  background-image: none;
  margin: 0;
  padding: 5px 20px;
  background: #fafafa;
}
.ui-dialog .ui-dialog-buttonpane button {
  margin: 10px 0 10px 10px;
  cursor: pointer;
  outline: none;
  border: 0;
  padding: 10px 15px;
  background: #333;
  color: #fff;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  font-size: 14px;
  font-size: 0.7rem;
}
.ui-dialog .ui-dialog-buttonpane button:last-child {
  background: #2880A6;
}
.ui-dialog .ui-dialog-buttonpane button:hover {
  background: #35A7D9;
}
.ui-dialog .ui-resizable-se {
  width: 14px;
  height: 14px;
  right: 3px;
  bottom: 3px;
}
.ps__rail-y {
  display: block;
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
}
.ps__rail-y .ps__thumb-y {
  background-color: #192B33;
}
.ps__rail-y:hover,
.ps__rail-y:focus {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
}
.ps__rail-y:hover .ps__thumb-y,
.ps__rail-y:focus .ps__thumb-y {
  background-color: #192B33;
}
/* 
	definitions.less
*/
/*------ typography ------*/
html {
  font-size: 20px;
}
body,
th,
td {
  font-size: 18px;
  font-family: 'IBM Plex Sans', Arial, Helvetica, sans-serif;
  font-weight: 300;
  color: #4D4D4D;
  line-height: 1.4;
  letter-spacing: 0em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media all and (min-width: 1367px) {
  html,
  body,
  th,
  td {
    font-size: 20px;
  }
}
a {
  color: #35A7D9;
}
a:hover,
a:active {
  color: #192B33;
}
p a:not(.button) {
  font-style: italic;
  text-decoration: underline;
}
h1,
h2,
h3,
h4,
h5,
h6,
.gradient-text {
  position: relative;
  text-align: center;
  font-family: 'IBM Plex Serif', Times, serif;
  font-weight: 600;
  font-style: normal;
  color: #26414D;
}
h1:not(.tab-header):not(.normal-heading):after,
h2:not(.tab-header):not(.normal-heading):after,
h3:not(.tab-header):not(.normal-heading):after,
h4:not(.tab-header):not(.normal-heading):after,
h5:not(.tab-header):not(.normal-heading):after,
h6:not(.tab-header):not(.normal-heading):after {
  content: "";
  display: block;
  margin: 0 auto;
  margin-top: 30px;
  width: 85px;
  max-width: 30%;
  height: 1px;
  background: #525FA7;
}
h3,
h4,
.gradient-text {
  font-weight: 400;
}
h3:not(.tab-header):not(.normal-heading):after,
h4:not(.tab-header):not(.normal-heading):after {
  margin-top: 20px;
}
h5:not(.tab-header):not(.normal-heading):after,
h6:not(.tab-header):not(.normal-heading):after {
  margin-top: 15px;
}
h1 {
  font-size: 44px;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
h2 {
  font-size: 40px;
  font-size: 2rem;
}
h3,
.gradient-text {
  font-size: 36px;
  font-size: 1.8rem;
}
h4 {
  font-size: 26px;
  font-size: 1.3rem;
}
h5 {
  font-size: 22px;
  font-size: 1.1rem;
}
h6 {
  font-size: 22px;
  font-size: 1.1rem;
  color: #525FA7;
}
@media all and (min-width: 769px) {
  h4 {
    font-size: 28px;
    font-size: 1.4rem;
  }
}
@media all and (min-width: 1025px) {
  h1 {
    font-size: 48px;
    font-size: 2.4rem;
  }
  h2 {
    font-size: 42px;
    font-size: 2.1rem;
  }
  h3,
  .gradient-text {
    font-size: 38px;
    font-size: 1.9rem;
  }
}
@media all and (min-width: 1367px) {
  h1 {
    font-size: 50px;
    font-size: 2.5rem;
  }
  h2 {
    font-size: 48px;
    font-size: 2.4rem;
  }
  h3,
  .gradient-text {
    font-size: 40px;
    font-size: 2rem;
  }
}
small {
  font-size: 14px;
  color: #999;
}
blockquote {
  padding: 15px 0 60px;
  max-width: 80%;
  font-family: 'IBM Plex Serif', Times, serif;
  font-weight: 400;
  line-height: 1.1;
  font-weight: 600;
  font-size: 28px;
  font-size: 1.4rem;
  color: #525FA7;
  color: #192B33;
  background-color: #525FA7;
  background-image: -webkit-gradient(linear, left top, right top, from(#192B33), color-stop(50%, #525FA7), to(#192B33));
  background-image: linear-gradient(to right, #192B33 0%, #525FA7 50%, #192B33 100%);
  background-clip: text;
  background-size: 200% auto;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}
blockquote.italic {
  font-style: italic;
}
blockquote.italic.bold {
  font-weight: 600;
}
blockquote.bold {
  font-weight: 700;
}
::-moz-selection {
  background: #525FA7;
  color: #fff;
  -webkit-text-fill-color: #fff;
}
::selection {
  background: #525FA7;
  color: #fff;
  -webkit-text-fill-color: #fff;
}
::-moz-selection {
  background: #525FA7;
  color: #fff;
}
/*------ interface ------*/
hr {
  border-color: rgba(82, 95, 167, 0.4);
}
.panel:not(#panel-17) table th,
.panel:not(#panel-17) table td {
  border: none;
  font-size: 18px;
  font-size: 0.9rem;
}
.panel:not(#panel-17) table th {
  padding: 10px 20px;
  border: 1px solid #2880A6;
  background-color: #2880A6;
  font-family: 'IBM Plex Serif', Times, serif;
  font-weight: 400;
  text-align: left;
  font-weight: 700;
  font-size: 16px;
  font-size: 0.8rem;
  color: #fff;
}
.panel:not(#panel-17) table th.italic {
  font-style: italic;
}
.panel:not(#panel-17) table th.italic.bold {
  font-weight: 600;
}
.panel:not(#panel-17) table th.bold {
  font-weight: 700;
}
.panel:not(#panel-17) table td {
  padding: 20px;
  border: 1px solid #ddd;
  border-bottom: 0;
}
.panel:not(#panel-17) table td:last-child {
  border: 1px solid #ddd;
}
.panel:not(#panel-17) table tr:nth-child(2n+1) td {
  background: #fff;
}
/*------ email template ------*/
body.email-template {
  background: #fafafa;
  max-width: none;
}
body.email-template #email-wrapper {
  margin: 0 auto;
}
body.email-template #email-wrapper td {
  border: 0;
}
body.email-template #email-wrapper #email-header {
  padding: 30px 0 20px;
  text-align: center;
  background: none;
}
body.email-template #email-wrapper #email-header img {
  display: block;
  margin: 0 auto;
}
body.email-template #email-wrapper #email-content {
  padding: 30px 0;
  background: #fafafa;
  border-radius: 5px 5px 0 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
body.email-template #email-wrapper #email-content h2 .divider {
  display: block;
  margin: 15px auto;
  width: 30%;
  max-width: 85px;
  height: 1px;
  background: #525FA7;
}
body.email-template #email-wrapper #email-content #email-content-inner {
  padding: 30px 30px 10px;
  background: #fafafa;
}
body.email-template #email-wrapper #email-footer {
  padding: 30px 40px;
  background: #192B33;
  text-align: center;
  border-radius: 0 0 5px 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
body.email-template #email-wrapper #email-footer h5 {
  color: #fafafa;
  font-size: 20px;
  margin-bottom: 5px;
}
body.email-template #email-wrapper #email-footer small {
  color: #ccc;
}
/* 
	animations.less
*/
@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.3) rotate(0.02deg);
  }
}
@keyframes zoom {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.3) rotate(0.02deg);
            transform: scale(1.3) rotate(0.02deg);
  }
}
@-webkit-keyframes zoom-background200 {
  from {
    background-size: 200%;
  }
  to {
    background-size: 400%;
  }
}
@keyframes zoom-background200 {
  from {
    background-size: 200%;
  }
  to {
    background-size: 400%;
  }
}
@-webkit-keyframes zoom-background300 {
  from {
    background-size: 300%;
  }
  to {
    background-size: 500%;
  }
}
@keyframes zoom-background300 {
  from {
    background-size: 300%;
  }
  to {
    background-size: 500%;
  }
}
@-webkit-keyframes zoom-background {
  from {
    background-size: 800%;
  }
  to {
    background-size: 900%;
  }
}
@keyframes zoom-background {
  from {
    background-size: 800%;
  }
  to {
    background-size: 900%;
  }
}
/*------ header ------*/
#site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 998;
}
#site-header #page-contact-top {
  font-size: 14px;
  background: #fafafa;
}
#site-header #page-contact-top a {
  color: #26414D;
}
#site-header #page-contact-top a i {
  color: inherit;
}
#site-header #page-contact-top #page-logo {
  position: absolute;
  z-index: 99;
  top: -30px;
  left: 0;
  display: block;
  width: 100px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#site-header #page-contact-top #page-logo:hover {
  top: -25px;
}
#site-header #page-contact-top .page-contact,
#site-header #page-contact-top .extra-nav {
  display: none;
  margin: 0;
  padding: 20px 0;
}
#site-header #page-contact-top .page-contact li,
#site-header #page-contact-top .extra-nav li {
  display: inline-block;
  padding: 0 10px;
  color: #26414D;
}
#site-header #page-contact-top .page-contact li.fax,
#site-header #page-contact-top .extra-nav li.fax,
#site-header #page-contact-top .page-contact li.tollfree,
#site-header #page-contact-top .extra-nav li.tollfree {
  display: none;
}
#site-header #page-contact-top .page-contact li:hover a,
#site-header #page-contact-top .extra-nav li:hover a {
  color: #35A7D9;
}
#site-header #page-contact-top .page-contact li:hover:before,
#site-header #page-contact-top .extra-nav li:hover:before {
  color: #35A7D9;
}
#site-header #page-contact-top .page-contact {
  padding-left: 100px;
}
#site-header #page-contact-top .page-contact .line-2 {
  display: none;
}
#site-header #page-contact-top .site-search {
  background: red;
}
#site-header #page-contact-top .site-search #search-form {
  position: relative;
  padding-right: 15px;
}
#site-header #page-contact-top .site-search #search-form .input,
#site-header #page-contact-top .site-search #search-form .toggle-search {
  position: absolute;
  top: 50%;
  left: 0;
}
#site-header #page-contact-top .site-search #search-form .input {
  margin-top: -27px;
  padding: 0;
  width: 0px;
  height: 45px;
  line-height: 45px;
  border: 1px solid #fafafa;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#site-header #page-contact-top .site-search #search-form .toggle-search {
  margin-top: -12px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#site-header #page-contact-top .site-search #search-form .toggle-search:hover {
  color: #35A7D9;
}
#site-header #page-contact-top .site-search.active #search-form .input {
  left: -212px;
  padding: 0 10px;
  width: 240px;
  max-width: 240px;
  border: 1px solid #ddd;
}
@media all and (min-width: 1025px) {
  #site-header #page-contact-top #page-logo {
    top: -5px;
    width: auto;
  }
  #site-header #page-contact-top #page-logo:hover {
    top: 0;
  }
  #site-header #page-contact-top .extra-nav {
    display: inline-block;
  }
  #site-header.stuck {
    position: fixed;
    z-index: 999;
    top: -200px;
    left: 0;
    right: 0;
    opacity: 0.9;
    filter: alpha(opacity=90);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
  }
  #site-header.stuck #page-contact-top .page-contact,
  #site-header.stuck #page-contact-top .extra-nav {
    display: none;
  }
  #site-header.stuck #page-contact-top #page-logo {
    top: -30px;
    width: 100px;
  }
  #site-header.stuck #page-contact-top #page-logo:hover {
    top: -20px;
  }
  #site-header.stuck.come-in {
    top: 0;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  #site-header.stuck.move-out {
    top: -200px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  #site-header.stuck:hover {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  }
}
@media all and (min-width: 1367px) {
  #site-header #page-contact-top .page-contact {
    display: inline-block;
  }
}
/*------ navigation ------*/
#page-navigation {
  background: #192B33;
  -webkit-box-shadow: 0px 3px 6px 0px rgba(11, 11, 11, 0.35);
  box-shadow: 0px 3px 6px 0px rgba(11, 11, 11, 0.35);
}
#page-navigation .container {
  padding-right: 10px;
}
#main-navigation {
  display: none;
  padding-left: 100px;
}
#main-navigation > ul {
  text-align: right;
}
#main-navigation > ul > li {
  position: relative;
  font-size: 14px;
  font-weight: 700;
}
#main-navigation > ul > li > a {
  padding: 20px;
  color: #fff;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#main-navigation > ul > li > a:hover,
#main-navigation > ul > li > a.selected {
  background: rgba(53, 167, 217, 0.2);
}
#main-navigation > ul > li > ul {
  margin-top: -0.5px;
  z-index: 9;
  text-align: left;
  background: rgba(25, 43, 51, 0.9);
}
#main-navigation > ul > li > ul li a {
  padding: 12px 20px;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#main-navigation > ul > li > ul li a:hover {
  background: rgba(25, 43, 51, 0.75);
}
#main-navigation > ul > li.active > a {
  background: rgba(53, 167, 217, 0.3);
}
.ddsmoothmenu {
  height: 1%;
}
.ddsmoothmenu ul {
  z-index: 100;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.ddsmoothmenu ul li {
  position: relative;
  display: inline-block;
  float: none;
}
.ddsmoothmenu ul li a {
  display: inline-block;
  text-decoration: none;
}
.ddsmoothmenu ul li ul {
  position: absolute;
  left: 0;
  display: none;
  visibility: hidden;
}
.ddsmoothmenu ul li ul li {
  display: list-item;
  float: none;
}
.ddsmoothmenu ul li ul li a {
  min-width: 240px;
  margin: 0;
}
.ddsmoothmenu ul li ul li ul {
  top: 0;
}
.ddsmoothmenu ul li.menu-header {
  display: none;
}
#more-link .more-icon::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f141";
}
/*------ mobile navigation ------*/
#menu-toggle {
  display: inline-block;
  overflow: hidden;
  padding: 15px;
  color: #fafafa;
  background: none;
  border: 0;
  cursor: pointer;
  outline: 0;
}
#menu-toggle .hamburger-box {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 24px;
}
#menu-toggle .hamburger-box .hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
#menu-toggle .hamburger-box .hamburger-inner,
#menu-toggle .hamburger-box .hamburger-inner::before,
#menu-toggle .hamburger-box .hamburger-inner::after {
  position: absolute;
  width: 30px;
  height: 4px;
  background-color: #fafafa;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#menu-toggle .hamburger-box .hamburger-inner {
  -webkit-transition: background-color 0.125s 0.175s ease-in;
  transition: background-color 0.125s 0.175s ease-in;
}
#menu-toggle .hamburger-box .hamburger-inner:before,
#menu-toggle .hamburger-box .hamburger-inner:after {
  content: "";
  display: block;
}
#menu-toggle .hamburger-box .hamburger-inner:before {
  top: -10px;
  left: 0;
  -webkit-transition: background-color 0.125s 0.175s ease-in, transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
  -webkit-transition: background-color 0.125s 0.175s ease-in, top 0.05s 0.125s linear, left 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: background-color 0.125s 0.175s ease-in, top 0.05s 0.125s linear, left 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: background-color 0.125s 0.175s ease-in, transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
  transition: background-color 0.125s 0.175s ease-in, transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}
#menu-toggle .hamburger-box .hamburger-inner:after {
  top: 10px;
  right: 0;
  bottom: -10px;
  -webkit-transition: background-color 0.125s 0.175s ease-in, transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
  -webkit-transition: background-color 0.125s 0.175s ease-in, top 0.05s 0.125s linear, right 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: background-color 0.125s 0.175s ease-in, top 0.05s 0.125s linear, right 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: background-color 0.125s 0.175s ease-in, transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
  transition: background-color 0.125s 0.175s ease-in, transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}
#menu-toggle:hover .hamburger-box .hamburger-inner,
#menu-toggle:hover .hamburger-box .hamburger-inner::before,
#menu-toggle:hover .hamburger-box .hamburger-inner::after {
  background-color: #35A7D9;
}
#menu-toggle.close .hamburger-box .hamburger-inner {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  background-color: transparent !important;
}
#menu-toggle.close .hamburger-box .hamburger-inner:before {
  left: -80px;
  top: -80px;
  -webkit-transform: translate3d(80px, 80px, 0) rotate(45deg);
  transform: translate3d(80px, 80px, 0) rotate(45deg);
  -webkit-transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition: left 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
#menu-toggle.close .hamburger-box .hamburger-inner:after {
  right: -80px;
  top: -80px;
  -webkit-transform: translate3d(-80px, 80px, 0) rotate(-45deg);
  transform: translate3d(-80px, 80px, 0) rotate(-45deg);
  -webkit-transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition: right 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
#mobile-navigation {
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  height: 100%;
}
#mobile-navigation nav {
  display: none;
}
.mblmenu {
  display: block !important;
  position: relative;
  z-index: 100;
  overflow: hidden;
  min-width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
}
.mblmenu .levelHolderClass {
  position: absolute;
  z-index: 10;
  top: 0;
  width: auto;
  min-height: 100%;
  zoom: 1;
  cursor: default;
  background: #fafafa;
}
.mblmenu .levelHolderClass > ul {
  background: #fff;
}
.mblmenu .rtl {
  margin-right: -100%;
  right: 0;
}
.mblmenu .floatRight {
  float: right;
}
.mblmenu .floatLeft {
  float: left;
}
.mblmenu .cursorPointer {
  cursor: pointer;
}
.mblmenu .iconSpacing_ltr {
  padding: 0;
}
.mblmenu .iconSpacing_rtl {
  padding: 0;
}
.mblmenu .backItemClass {
  display: block;
  margin-bottom: 20px;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  background: #26414D;
  white-space: nowrap;
}
.mblmenu .backItemClass a {
  padding-left: 50px;
  color: #fafafa;
}
.mblmenu .backItemClass a i:before {
  margin-top: -8px;
}
.mblmenu .backItemClass a:after {
  content: none;
}
.mblmenu .backItemClass + ul {
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}
.mblmenu .fas {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 50px;
  font-size: 16px;
}
.mblmenu .fas:before {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  left: 0;
  right: 0;
  text-align: center;
}
.mblmenu .fa-times {
  font-size: 14px;
}
.mblmenu .more-icon {
  left: auto;
  right: 0;
}
.mblmenu .menu-icon i {
  top: -4px;
  font-size: 14px;
  color: rgba(25, 43, 51, 0.9);
}
.mblmenu .menu-icon + span {
  padding-left: 20px;
}
.mblmenu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.mblmenu li {
  cursor: pointer;
  padding: 0;
  font-size: 16px;
  font-weight: 700;
  text-align: left !important;
  color: #26414D;
}
.mblmenu li a {
  position: relative;
  overflow: hidden;
  z-index: 0;
  display: block;
  padding: 10px 70px 10px 20px;
  color: #26414D;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  background: none;
}
.mblmenu li a .more-icon {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.mblmenu li a:after {
  content: "";
  display: block;
  margin: 0;
  margin-top: 8px;
  margin-left: -100%;
  width: 85px;
  max-width: 30%;
  height: 1px;
  background: #525FA7;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.mblmenu li a:hover {
  color: #35A7D9;
}
.mblmenu li a:hover:after {
  margin-left: 0;
}
.mblmenu li a:hover .more-icon {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}
.mblmenu li.menu-header {
  margin-top: -20px;
  margin-bottom: 10px;
  padding-top: 20px;
  font-family: 'IBM Plex Serif', Times, serif;
  font-weight: 400;
  font-size: 22px;
  font-weight: 700;
}
.mblmenu li.menu-header.italic {
  font-style: italic;
}
.mblmenu li.menu-header.italic.bold {
  font-weight: 600;
}
.mblmenu li.menu-header.bold {
  font-weight: 700;
}
.mblmenu li.menu-header > a:after {
  content: "";
  display: block;
  margin: 0;
  margin-top: 8px;
  width: 85px;
  max-width: 30%;
  height: 1px;
  background: #525FA7;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.mblmenu li.menu-contact {
  padding: 20px;
  background: #fafafa;
  border-top: 1px solid #ddd;
}
.mblmenu li.menu-contact ul {
  display: block !important;
  visibility: visible !important;
}
.mblmenu li.menu-contact ul li {
  padding: 10px 0;
  font-size: 14px;
  font-weight: 400;
  border: 0;
}
.mblmenu li.menu-contact ul li a:after {
  content: none;
}
.mblmenu li.menu-contact ul li a,
.mblmenu li.menu-contact ul li div {
  padding: 0;
  border: 0;
  display: block !important;
}
.mblmenu li.menu-contact ul li span.line-1 {
  display: block !important;
}
.mblmenu li.menu-contact:after {
  content: none;
}
.mblmenu li.mobile-search {
  position: relative;
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
}
.mblmenu li.mobile-search input {
  background: #fff;
  border: 0;
}
.mblmenu li.mobile-search .toggle-search {
  position: absolute;
  z-index: 10;
  right: 0;
  top: 0;
  display: block;
  width: 60px;
  height: 60px;
  padding: 0;
  margin: 0;
  line-height: 60px;
  font-size: 16px;
  text-align: center;
  color: #192B33;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.mblmenu li.mobile-search .toggle-search:hover {
  color: #35A7D9;
}
.mblmenu li.newsletter-signup {
  margin-top: 15px;
  background: #2880A6;
}
.mblmenu li.newsletter-signup a {
  padding: 15px 40px;
  font-weight: 400;
  color: #fff;
}
.mblmenu li.newsletter-signup a i {
  top: 4px;
  color: #fff;
}
.mblmenu li.newsletter-signup a:after {
  content: none;
}
.mblmenu .page-contact {
  margin: 0;
  padding: 0;
}
.mblmenu .page-contact li {
  display: table;
}
.mblmenu .page-contact li:before {
  display: table-cell;
  vertical-align: top;
  padding-right: 10px;
  width: 20px;
  font-size: 14px;
  text-align: center;
  color: #192B33;
}
@media all and (min-width: 1025px) {
  .ddsmoothmenu {
    display: block !important;
  }
  #menu-toggle {
    display: none;
  }
}
/*------ body content ------*/
#page-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 56px;
}
#page-wrapper.pushed:before {
  content: "";
  position: absolute;
  z-index: 99;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -webkit-box-shadow: 5px 10px 10px 0px rgba(11, 11, 11, 0.35) inset;
  box-shadow: 5px 10px 10px 0px rgba(11, 11, 11, 0.35) inset;
}
#page-wrapper.pushed #slideshow {
  -webkit-transform: translate(20px, 0);
  transform: translate(20px, 0);
}
@media all and (min-width: 1025px) {
  #page-wrapper {
    padding-top: 118px;
  }
}
#page-hero {
  position: relative;
  overflow: hidden;
  background: #fff;
}
#page-hero #page-header {
  position: relative;
  z-index: 2;
}
#page-hero #page-header .page-title {
  display: inline-block;
  max-width: calc(700px + 120px);
  padding: 60px 30px;
}
#page-hero #page-header .page-title h1 {
  position: relative;
  padding: 0 0 30px 0;
  word-break: break-word;
  -ms-hyphens: auto;
      hyphens: auto;
}
#page-hero #page-header .page-title h1.responsive-bg {
  -webkit-animation: zoom-background 10s ease 1s;
  animation: zoom-background 10s ease 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
#page-hero #page-header .page-title .page-subtitle {
  font-family: 'IBM Plex Serif', Times, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  font-size: 1.1rem;
}
#page-hero #page-header .page-title .page-subtitle.italic {
  font-style: italic;
}
#page-hero #page-header .page-title .page-subtitle.italic.bold {
  font-weight: 600;
}
#page-hero #page-header .page-title .page-subtitle.bold {
  font-weight: 700;
}
#page-hero #page-header .page-title .page-subtitle.bold {
  font-weight: 600;
}
#page-hero #page-header .page-title .page-subtitle + .page-buttons {
  margin-top: 30px;
}
#page-hero #page-hero-image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
#page-hero #page-hero-image .responsive-bg {
  width: 100%;
  height: 100%;
  background-attachment: scroll;
  -webkit-animation: zoom 30s ease 1s;
  animation: zoom 30s ease 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
#page-hero.noimage {
  margin-bottom: 40px;
  -webkit-box-shadow: 0px 3px 6px 0px #ddd;
  box-shadow: 0px 3px 6px 0px #ddd;
}
#page-hero.noimage #page-header .page-title {
  padding: 50px 30px 30px;
}
#page-hero.noimage #page-header .page-title h1 {
  margin: 0 auto;
  max-width: 420px;
}
#page-hero.noimage #page-header .page-title .page-subtitle:last-child,
#page-hero.noimage #page-header .page-title .page-buttons:last-child {
  padding-bottom: 40px;
}
#page-hero.noimage + #body-content .panel.parallax:first-child,
#page-hero.noimage + #body-content .panel.cta:first-child {
  margin-top: -40px;
}
#page-hero.noimage + #body-content .panel.parallax:first-child .panel-content {
  background: #fff;
}
#page-hero:not(.noimage) {
  min-height: 300px;
}
#page-hero:not(.noimage) #page-header .page-title {
  max-width: 75%;
  margin-bottom: 80px;
  background: #fff;
  border: 1px solid #ddd;
  border-top: none;
}
#page-hero:not(.noimage) #page-header .page-title .title-wrap {
  padding-bottom: 30px;
}
#page-hero:not(.noimage) #page-header .page-title .title-wrap:after {
  content: "";
  display: block;
  margin: 0 auto;
  width: 85px;
  max-width: 30%;
  height: 1px;
  background: #525FA7;
}
#page-hero:not(.noimage) #page-header .page-title h1 {
  display: block;
  background-attachment: scroll;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-size: 800%;
  background-position: center;
}
#page-hero:not(.noimage) #page-header .page-title h1:after {
  content: none;
}
#page-hero:not(.noimage) #page-header .page-title .page-subtitle {
  font-size: 20px;
  font-size: 1rem;
}
#page-hero:not(.noimage) #page-header .page-title .page-subtitle + .page-buttons {
  margin-bottom: -25px;
}
@media all and (min-width: 481px) {
  #page-hero #page-header .page-title h1 {
    -ms-hyphens: none;
        hyphens: none;
  }
  #page-hero:not(.noimage) #page-header .page-title {
    max-width: 400px;
  }
}
@media all and (min-width: 769px) {
  #page-hero:not(.noimage) #page-header .page-title {
    max-width: 510px;
    padding: 80px 60px;
  }
}
@media all and (min-width: 1025px) {
  #page-hero.noimage {
    margin-bottom: 80px;
  }
  #page-hero.noimage #page-header .page-title {
    padding: 80px 30px 60px;
  }
  #page-hero.noimage + #body-content .panel.parallax:first-child,
  #page-hero.noimage + #body-content .panel.cta:first-child {
    margin-top: -80px;
  }
}
@media all and (min-width: 1367px) {
  #page-hero:not(.noimage) {
    min-height: 650px;
  }
}
/*------ slideshow ------*/
#slideshow {
  background: #fafafa;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#slideshow .slide {
  height: auto;
}
#slideshow .slide .slide-content {
  position: relative;
  z-index: 2;
  min-height: 400px;
}
#slideshow .slide .slide-header {
  position: relative;
  display: inline-block;
  margin-bottom: 80px;
  padding: 60px 30px;
  max-width: 380px;
  background: #fff;
  border: 1px solid #ddd;
  border-top: none;
  cursor: move;
  /* fallback if grab cursor is unsupported */
  cursor: grab;
  cursor: -webkit-grab;
}
#slideshow .slide .slide-header .title-wrap {
  padding-bottom: 30px;
}
#slideshow .slide .slide-header .title-wrap .slide-title:after {
  content: "";
  display: block;
  margin: 0 auto;
  width: 85px;
  max-width: 30%;
  height: 1px;
  background: #525FA7;
}
#slideshow .slide .slide-header .title-wrap h1,
#slideshow .slide .slide-header .title-wrap h2 {
  position: relative;
  padding: 0 0 30px 0;
  display: block;
  background-attachment: scroll;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-size: 200%;
  background-position: top center;
}
#slideshow .slide .slide-header .title-wrap h1.responsive-bg,
#slideshow .slide .slide-header .title-wrap h2.responsive-bg {
  -webkit-animation: zoom-background200 10s ease 1s;
  animation: zoom-background200 10s ease 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
#slideshow .slide .slide-header .title-wrap h1:after,
#slideshow .slide .slide-header .title-wrap h2:after {
  content: none;
}
#slideshow .slide .slide-header .slide-text {
  font-family: 'IBM Plex Serif', Times, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  font-size: 1rem;
}
#slideshow .slide .slide-header .slide-text.italic {
  font-style: italic;
}
#slideshow .slide .slide-header .slide-text.italic.bold {
  font-weight: 600;
}
#slideshow .slide .slide-header .slide-text.bold {
  font-weight: 700;
}
#slideshow .slide .slide-header .slide-text.bold {
  font-weight: 600;
}
#slideshow .slide .slide-header .slide-text + .slide-buttons {
  margin-top: 30px;
  margin-bottom: -25px;
}
#slideshow .slide .slide-header .slide-buttons {
  position: relative;
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#slideshow .slide .slide-header .slideshow-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
#slideshow .slide .slide-header .slideshow-nav .slide-prev,
#slideshow .slide .slide-header .slideshow-nav .slide-next {
  position: absolute;
  bottom: 0;
  padding: 20px 25px;
  font-size: 16px;
  font-size: 0.8rem;
  opacity: 0.5;
  filter: alpha(opacity=50);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#slideshow .slide .slide-header .slideshow-nav .slide-prev:hover,
#slideshow .slide .slide-header .slideshow-nav .slide-next:hover {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
}
#slideshow .slide .slide-header .slideshow-nav .slide-prev {
  left: 0;
}
#slideshow .slide .slide-header .slideshow-nav .slide-next {
  right: 0;
}
#slideshow .slide .slide-header.first .title-wrap,
#slideshow .slide .slide-header.first .slide-text {
  position: relative;
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#slideshow .slide.swiper-slide-active .slide-buttons {
  -webkit-animation: fade-up 0.4s ease-in-out 0.6s;
  animation: fade-up 0.4s ease-in-out 0.6s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
#slideshow .slide.swiper-slide-active .slide-header.first .title-wrap {
  -webkit-animation: fade-right 0.4s linear 0.4s;
  animation: fade-right 0.4s linear 0.4s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
#slideshow .slide.swiper-slide-active .slide-header.first .slide-text {
  -webkit-animation: fade-right 0.2s linear 0.5s;
  animation: fade-right 0.2s linear 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
#slideshow .slide-image,
#slideshow .slide-video {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
#slideshow .slide-image .responsive-bg,
#slideshow .slide-video .responsive-bg {
  width: 100%;
  height: 100%;
  background-attachment: scroll;
  -webkit-animation: zoom 30s ease 1s;
  animation: zoom 30s ease 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
#slideshow .slide-image:before,
#slideshow .slide-video:before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 300px;
  background: #fafafa;
  background: -webkit-gradient('bottom left', right top, color-stop(0%, #fafafa), color-stop(100%, rgba(250, 250, 250, 0)));
  background: -webkit-gradient(linear, left bottom, left top, from(#fafafa), to(rgba(250, 250, 250, 0)));
  background: linear-gradient(0deg, #fafafa 0%, rgba(250, 250, 250, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fafafa', endColorstr='rgba(250, 250, 250, 0)', GradientType=1);
}
#slideshow .slide-video {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  display: none;
}
@media all and (min-width: 481px) {
  #slideshow .slide .slide-header .title-wrap h1,
  #slideshow .slide .slide-header .title-wrap h2 {
    background-size: 300%;
  }
  #slideshow .slide .slide-header .title-wrap h1.responsive-bg,
  #slideshow .slide .slide-header .title-wrap h2.responsive-bg {
    -webkit-animation: zoom-background300 10s ease 1s;
    animation: zoom-background300 10s ease 1s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  #slideshow .slide .slide-content {
    min-height: 520px;
  }
}
@media all and (min-width: 769px) {
  #slideshow .slide .slide-header {
    max-width: 460px;
    padding: 75px 40px;
  }
  #slideshow .slide .slide-header .slide-text {
    font-size: 20px;
    font-size: 1rem;
  }
  #slideshow .slide .slide-content {
    min-height: 600px;
  }
}
@media all and (min-width: 1025px) {
  .no-touch #slideshow .slide .slide-video {
    display: block;
  }
  #slideshow .slide .slide-header {
    padding: 80px 60px;
  }
  #slideshow .slide .slide-content {
    min-height: 640px;
  }
  #slideshow .slide .slide-video .video-wrap > video {
    display: block !important;
  }
}
@media all and (min-width: 1367px) {
  #slideshow .slide .slide-content {
    min-height: 720px;
  }
}
#breadcrumbs {
  position: absolute;
  bottom: 10px;
  z-index: 2;
  width: 100%;
}
#breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
#breadcrumbs ol li {
  display: inline-block;
  font-size: 14px;
  font-size: 0.7rem;
  font-family: 'IBM Plex Serif', Times, serif;
  font-weight: 400;
  font-weight: 600;
  color: #ccc;
}
#breadcrumbs ol li.italic {
  font-style: italic;
}
#breadcrumbs ol li.italic.bold {
  font-weight: 600;
}
#breadcrumbs ol li.bold {
  font-weight: 700;
}
#breadcrumbs ol li a {
  color: #ccc;
}
/*------ panels ------*/
#body-content {
  position: relative;
}
#body-content.fade:before {
  content: "";
  position: absolute;
  z-index: 20;
  top: 0;
  width: 100%;
  height: 300px;
  margin-top: -300px;
  background: #fafafa;
  background: -webkit-gradient('bottom left', right top, color-stop(0%, #fafafa), color-stop(100%, rgba(250, 250, 250, 0)));
  background: -webkit-gradient(linear, left bottom, left top, from(#fafafa), to(rgba(250, 250, 250, 0)));
  background: linear-gradient(0deg, #fafafa 0%, rgba(250, 250, 250, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fafafa', endColorstr='rgba(250, 250, 250, 0)', GradientType=1);
  pointer-events: none;
}
#body-content > .panel:first-child.standard,
#body-content > .panel:first-child.side,
#body-content > .panel:first-child.promo,
#body-content > .panel:first-child.gallery-listing {
  padding-top: 40px;
}
#body-content > .panel .skinny .panel-header .panel-subtitle {
  max-width: 460px;
}
#body-content > .panel:last-child.standard,
#body-content > .panel:last-child.side,
#body-content > .panel:last-child.promo,
#body-content > .panel:last-child.gallery,
#body-content > .panel:last-child.gallery-listing {
  padding-bottom: 100px;
}
@media all and (min-width: 769px) {
  #body-content > .panel:first-child.standard,
  #body-content > .panel:first-child.side,
  #body-content > .panel:first-child.promo,
  #body-content > .panel:first-child.gallery-listing {
    padding-top: 80px;
  }
}
.panel {
  position: relative;
  overflow: hidden;
  padding: 80px 0 40px;
}
.panel .panel-header .panel-subtitle {
  margin: 0 auto 40px;
  font-family: 'IBM Plex Serif', Times, serif;
  font-weight: 400;
  font-style: italic;
}
.panel .panel-header .panel-subtitle.italic {
  font-style: italic;
}
.panel .panel-header .panel-subtitle.italic.bold {
  font-weight: 600;
}
.panel .panel-header .panel-subtitle.bold {
  font-weight: 700;
}
.panel .panel-header .panel-subtitle.bold {
  font-weight: 600;
}
.panel .panel-content {
  position: relative;
  z-index: 2;
}
.panel.standard + .panel.cta,
.panel.side:not(.noimage) + .panel.cta,
.panel.promo + .panel.cta,
.panel.gallery + .panel.cta,
.panel.gallery-listing + .panel.cta,
.panel.standard + .panel.parallax,
.panel.side:not(.noimage) + .panel.parallax,
.panel.promo + .panel.parallax,
.panel.gallery + .panel.parallax,
.panel.gallery-listing + .panel.parallax {
  margin-top: 80px;
}
.panel.standard .panel-header .panel-subtitle {
  line-height: 1.6;
  font-size: 22px;
  font-size: 1.1rem;
}
.panel.standard + .standard {
  padding-top: 30px;
}
.panel.standard + .panel.side {
  padding-top: 40px;
}
.panel.docs {
  padding: 30px 0 20px;
}
.panel.docs .panel-text {
  margin-bottom: 20px;
}
.panel.video .panel-header .panel-subtitle {
  font-size: 20px;
  font-size: 1rem;
}
.panel.video .video-wrap {
  padding-top: 40px;
}
.panel.side {
  overflow: hidden;
  padding: 80px 0 60px;
}
.panel.side .panel-wrap {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.panel.side .panel-media {
  z-index: 1;
}
.panel.side .panel-media .panel-image {
  overflow: hidden;
  font-size: 0;
}
.panel.side .panel-media .panel-image img {
  display: block;
}
.panel.side .panel-content {
  z-index: 2;
  font-size: 18px;
  font-size: 0.9rem;
  background: #fafafa;
  border-radius: 0 2px 2px 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.panel.side .panel-content .panel-header .panel-title h2 {
  font-size: 30px;
  font-size: 1.5rem;
}
.panel.side .panel-content .panel-header .panel-subtitle {
  font-size: 18px;
  font-size: 0.9rem;
}
.panel.side.noimage {
  margin-top: 40px;
}
.panel.side:not(.noimage) .panel-content,
.panel.side:not(.noimage) .panel-media {
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.panel.side:not(.noimage) .panel-media {
  position: relative;
}
.panel.side:not(.noimage) .panel-media:before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 20%;
  background: #fafafa;
  background: -webkit-gradient('bottom left', right top, color-stop(0%, #fafafa), color-stop(100%, rgba(250, 250, 250, 0)));
  background: -webkit-gradient(linear, left bottom, left top, from(#fafafa), to(rgba(250, 250, 250, 0)));
  background: linear-gradient(0deg, #fafafa 0%, rgba(250, 250, 250, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fafafa', endColorstr='rgba(250, 250, 250, 0)', GradientType=1);
}
.panel.side:not(.noimage) .panel-media.panel-right:before {
  top: 0;
  bottom: auto;
  background: #fafafa;
  background: -webkit-gradient('bottom left', right top, color-stop(0%, #fafafa), color-stop(100%, rgba(250, 250, 250, 0)));
  background: -webkit-gradient(linear, left top, left bottom, from(#fafafa), to(rgba(250, 250, 250, 0)));
  background: linear-gradient(180deg, #fafafa 0%, rgba(250, 250, 250, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fafafa', endColorstr='rgba(250, 250, 250, 0)', GradientType=1);
}
.panel.side:not(.noimage) .panel-content {
  padding: 30px 20px;
  width: calc(100% - 40px);
}
.panel.side:not(.noimage) .panel-content.panel-right {
  margin: -80px 20px 0;
  border-radius: 2px 2px 0 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.panel.side:not(.noimage) .panel-content.panel-left {
  margin: 0 20px -80px;
  padding-bottom: 20px;
  border-radius: 0 0 2px 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.panel.side:not(.noimage).scrolling > .container {
  padding: 40px 0;
}
.panel.side.theme1.noimage {
  background: #192B33;
}
.panel.side.theme1 .panel-content {
  color: #fff;
  background: #192B33;
}
.panel.side.theme1 .panel-content h3,
.panel.side.theme1 .panel-content h4,
.panel.side.theme1 .panel-content h5 {
  color: #fff;
}
.panel.side.theme1 .panel-content a:hover {
  color: #525FA7;
}
.panel.side.white.noimage {
  background: #fff;
}
.panel.side.white .panel-content {
  background: #fff;
}
.panel.side + .panel.side.noimage {
  margin-top: 0;
}
.panel.side + .panel.side:not(.noimage) {
  padding-top: 0px;
}
.panel.promo,
.panel.gallery-listing {
  overflow: hidden;
}
.panel.promo .promo-boxes,
.panel.gallery-listing .promo-boxes,
.panel.promo .galleries,
.panel.gallery-listing .galleries {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.panel.promo .promo-boxes .promo-box,
.panel.gallery-listing .promo-boxes .promo-box,
.panel.promo .galleries .promo-box,
.panel.gallery-listing .galleries .promo-box,
.panel.promo .promo-boxes .gallery-box,
.panel.gallery-listing .promo-boxes .gallery-box,
.panel.promo .galleries .gallery-box,
.panel.gallery-listing .galleries .gallery-box {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 460px;
  margin: 0 10px 40px;
  cursor: pointer;
}
.panel.promo .promo-boxes .promo-box a,
.panel.gallery-listing .promo-boxes .promo-box a,
.panel.promo .galleries .promo-box a,
.panel.gallery-listing .galleries .promo-box a,
.panel.promo .promo-boxes .gallery-box a,
.panel.gallery-listing .promo-boxes .gallery-box a,
.panel.promo .galleries .gallery-box a,
.panel.gallery-listing .galleries .gallery-box a {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  font-size: 0;
}
.panel.promo .promo-boxes .promo-box .promo-image-wrapper,
.panel.gallery-listing .promo-boxes .promo-box .promo-image-wrapper,
.panel.promo .galleries .promo-box .promo-image-wrapper,
.panel.gallery-listing .galleries .promo-box .promo-image-wrapper,
.panel.promo .promo-boxes .gallery-box .promo-image-wrapper,
.panel.gallery-listing .promo-boxes .gallery-box .promo-image-wrapper,
.panel.promo .galleries .gallery-box .promo-image-wrapper,
.panel.gallery-listing .galleries .gallery-box .promo-image-wrapper,
.panel.promo .promo-boxes .promo-box .gallery-image-wrapper,
.panel.gallery-listing .promo-boxes .promo-box .gallery-image-wrapper,
.panel.promo .galleries .promo-box .gallery-image-wrapper,
.panel.gallery-listing .galleries .promo-box .gallery-image-wrapper,
.panel.promo .promo-boxes .gallery-box .gallery-image-wrapper,
.panel.gallery-listing .promo-boxes .gallery-box .gallery-image-wrapper,
.panel.promo .galleries .gallery-box .gallery-image-wrapper,
.panel.gallery-listing .galleries .gallery-box .gallery-image-wrapper {
  position: relative;
  overflow: hidden;
}
.panel.promo .promo-boxes .promo-box .promo-image-wrapper .promo-image,
.panel.gallery-listing .promo-boxes .promo-box .promo-image-wrapper .promo-image,
.panel.promo .galleries .promo-box .promo-image-wrapper .promo-image,
.panel.gallery-listing .galleries .promo-box .promo-image-wrapper .promo-image,
.panel.promo .promo-boxes .gallery-box .promo-image-wrapper .promo-image,
.panel.gallery-listing .promo-boxes .gallery-box .promo-image-wrapper .promo-image,
.panel.promo .galleries .gallery-box .promo-image-wrapper .promo-image,
.panel.gallery-listing .galleries .gallery-box .promo-image-wrapper .promo-image,
.panel.promo .promo-boxes .promo-box .gallery-image-wrapper .promo-image,
.panel.gallery-listing .promo-boxes .promo-box .gallery-image-wrapper .promo-image,
.panel.promo .galleries .promo-box .gallery-image-wrapper .promo-image,
.panel.gallery-listing .galleries .promo-box .gallery-image-wrapper .promo-image,
.panel.promo .promo-boxes .gallery-box .gallery-image-wrapper .promo-image,
.panel.gallery-listing .promo-boxes .gallery-box .gallery-image-wrapper .promo-image,
.panel.promo .galleries .gallery-box .gallery-image-wrapper .promo-image,
.panel.gallery-listing .galleries .gallery-box .gallery-image-wrapper .promo-image,
.panel.promo .promo-boxes .promo-box .promo-image-wrapper .gallery-image,
.panel.gallery-listing .promo-boxes .promo-box .promo-image-wrapper .gallery-image,
.panel.promo .galleries .promo-box .promo-image-wrapper .gallery-image,
.panel.gallery-listing .galleries .promo-box .promo-image-wrapper .gallery-image,
.panel.promo .promo-boxes .gallery-box .promo-image-wrapper .gallery-image,
.panel.gallery-listing .promo-boxes .gallery-box .promo-image-wrapper .gallery-image,
.panel.promo .galleries .gallery-box .promo-image-wrapper .gallery-image,
.panel.gallery-listing .galleries .gallery-box .promo-image-wrapper .gallery-image,
.panel.promo .promo-boxes .promo-box .gallery-image-wrapper .gallery-image,
.panel.gallery-listing .promo-boxes .promo-box .gallery-image-wrapper .gallery-image,
.panel.promo .galleries .promo-box .gallery-image-wrapper .gallery-image,
.panel.gallery-listing .galleries .promo-box .gallery-image-wrapper .gallery-image,
.panel.promo .promo-boxes .gallery-box .gallery-image-wrapper .gallery-image,
.panel.gallery-listing .promo-boxes .gallery-box .gallery-image-wrapper .gallery-image,
.panel.promo .galleries .gallery-box .gallery-image-wrapper .gallery-image,
.panel.gallery-listing .galleries .gallery-box .gallery-image-wrapper .gallery-image {
  font-size: 0;
}
.panel.promo .promo-boxes .promo-box .promo-image-wrapper .promo-image img,
.panel.gallery-listing .promo-boxes .promo-box .promo-image-wrapper .promo-image img,
.panel.promo .galleries .promo-box .promo-image-wrapper .promo-image img,
.panel.gallery-listing .galleries .promo-box .promo-image-wrapper .promo-image img,
.panel.promo .promo-boxes .gallery-box .promo-image-wrapper .promo-image img,
.panel.gallery-listing .promo-boxes .gallery-box .promo-image-wrapper .promo-image img,
.panel.promo .galleries .gallery-box .promo-image-wrapper .promo-image img,
.panel.gallery-listing .galleries .gallery-box .promo-image-wrapper .promo-image img,
.panel.promo .promo-boxes .promo-box .gallery-image-wrapper .promo-image img,
.panel.gallery-listing .promo-boxes .promo-box .gallery-image-wrapper .promo-image img,
.panel.promo .galleries .promo-box .gallery-image-wrapper .promo-image img,
.panel.gallery-listing .galleries .promo-box .gallery-image-wrapper .promo-image img,
.panel.promo .promo-boxes .gallery-box .gallery-image-wrapper .promo-image img,
.panel.gallery-listing .promo-boxes .gallery-box .gallery-image-wrapper .promo-image img,
.panel.promo .galleries .gallery-box .gallery-image-wrapper .promo-image img,
.panel.gallery-listing .galleries .gallery-box .gallery-image-wrapper .promo-image img,
.panel.promo .promo-boxes .promo-box .promo-image-wrapper .gallery-image img,
.panel.gallery-listing .promo-boxes .promo-box .promo-image-wrapper .gallery-image img,
.panel.promo .galleries .promo-box .promo-image-wrapper .gallery-image img,
.panel.gallery-listing .galleries .promo-box .promo-image-wrapper .gallery-image img,
.panel.promo .promo-boxes .gallery-box .promo-image-wrapper .gallery-image img,
.panel.gallery-listing .promo-boxes .gallery-box .promo-image-wrapper .gallery-image img,
.panel.promo .galleries .gallery-box .promo-image-wrapper .gallery-image img,
.panel.gallery-listing .galleries .gallery-box .promo-image-wrapper .gallery-image img,
.panel.promo .promo-boxes .promo-box .gallery-image-wrapper .gallery-image img,
.panel.gallery-listing .promo-boxes .promo-box .gallery-image-wrapper .gallery-image img,
.panel.promo .galleries .promo-box .gallery-image-wrapper .gallery-image img,
.panel.gallery-listing .galleries .promo-box .gallery-image-wrapper .gallery-image img,
.panel.promo .promo-boxes .gallery-box .gallery-image-wrapper .gallery-image img,
.panel.gallery-listing .promo-boxes .gallery-box .gallery-image-wrapper .gallery-image img,
.panel.promo .galleries .gallery-box .gallery-image-wrapper .gallery-image img,
.panel.gallery-listing .galleries .gallery-box .gallery-image-wrapper .gallery-image img {
  width: 100%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.panel.promo .promo-boxes .promo-box .promo-image-wrapper:before,
.panel.gallery-listing .promo-boxes .promo-box .promo-image-wrapper:before,
.panel.promo .galleries .promo-box .promo-image-wrapper:before,
.panel.gallery-listing .galleries .promo-box .promo-image-wrapper:before,
.panel.promo .promo-boxes .gallery-box .promo-image-wrapper:before,
.panel.gallery-listing .promo-boxes .gallery-box .promo-image-wrapper:before,
.panel.promo .galleries .gallery-box .promo-image-wrapper:before,
.panel.gallery-listing .galleries .gallery-box .promo-image-wrapper:before,
.panel.promo .promo-boxes .promo-box .gallery-image-wrapper:before,
.panel.gallery-listing .promo-boxes .promo-box .gallery-image-wrapper:before,
.panel.promo .galleries .promo-box .gallery-image-wrapper:before,
.panel.gallery-listing .galleries .promo-box .gallery-image-wrapper:before,
.panel.promo .promo-boxes .gallery-box .gallery-image-wrapper:before,
.panel.gallery-listing .promo-boxes .gallery-box .gallery-image-wrapper:before,
.panel.promo .galleries .gallery-box .gallery-image-wrapper:before,
.panel.gallery-listing .galleries .gallery-box .gallery-image-wrapper:before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 30%;
  background: #fafafa;
  background: -webkit-gradient('bottom left', right top, color-stop(0%, #fafafa), color-stop(100%, rgba(250, 250, 250, 0)));
  background: -webkit-gradient(linear, left bottom, left top, from(#fafafa), to(rgba(250, 250, 250, 0)));
  background: linear-gradient(0deg, #fafafa 0%, rgba(250, 250, 250, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fafafa', endColorstr='rgba(250, 250, 250, 0)', GradientType=1);
}
.panel.promo .promo-boxes .promo-box .promo-content,
.panel.gallery-listing .promo-boxes .promo-box .promo-content,
.panel.promo .galleries .promo-box .promo-content,
.panel.gallery-listing .galleries .promo-box .promo-content,
.panel.promo .promo-boxes .gallery-box .promo-content,
.panel.gallery-listing .promo-boxes .gallery-box .promo-content,
.panel.promo .galleries .gallery-box .promo-content,
.panel.gallery-listing .galleries .gallery-box .promo-content,
.panel.promo .promo-boxes .promo-box .gallery-content,
.panel.gallery-listing .promo-boxes .promo-box .gallery-content,
.panel.promo .galleries .promo-box .gallery-content,
.panel.gallery-listing .galleries .promo-box .gallery-content,
.panel.promo .promo-boxes .gallery-box .gallery-content,
.panel.gallery-listing .promo-boxes .gallery-box .gallery-content,
.panel.promo .galleries .gallery-box .gallery-content,
.panel.gallery-listing .galleries .gallery-box .gallery-content {
  position: absolute;
  overflow: hidden;
  z-index: 3;
  bottom: 0;
  width: 90%;
  margin: 0 5%;
  padding: 40px 40px 0;
  font-style: normal;
  font-size: 16px;
  font-size: 0.8rem;
  background: #fafafa;
  border-radius: 2px 2px 0 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.panel.promo .promo-boxes .promo-box .promo-content .promo-title,
.panel.gallery-listing .promo-boxes .promo-box .promo-content .promo-title,
.panel.promo .galleries .promo-box .promo-content .promo-title,
.panel.gallery-listing .galleries .promo-box .promo-content .promo-title,
.panel.promo .promo-boxes .gallery-box .promo-content .promo-title,
.panel.gallery-listing .promo-boxes .gallery-box .promo-content .promo-title,
.panel.promo .galleries .gallery-box .promo-content .promo-title,
.panel.gallery-listing .galleries .gallery-box .promo-content .promo-title,
.panel.promo .promo-boxes .promo-box .gallery-content .promo-title,
.panel.gallery-listing .promo-boxes .promo-box .gallery-content .promo-title,
.panel.promo .galleries .promo-box .gallery-content .promo-title,
.panel.gallery-listing .galleries .promo-box .gallery-content .promo-title,
.panel.promo .promo-boxes .gallery-box .gallery-content .promo-title,
.panel.gallery-listing .promo-boxes .gallery-box .gallery-content .promo-title,
.panel.promo .galleries .gallery-box .gallery-content .promo-title,
.panel.gallery-listing .galleries .gallery-box .gallery-content .promo-title,
.panel.promo .promo-boxes .promo-box .promo-content .promo-text,
.panel.gallery-listing .promo-boxes .promo-box .promo-content .promo-text,
.panel.promo .galleries .promo-box .promo-content .promo-text,
.panel.gallery-listing .galleries .promo-box .promo-content .promo-text,
.panel.promo .promo-boxes .gallery-box .promo-content .promo-text,
.panel.gallery-listing .promo-boxes .gallery-box .promo-content .promo-text,
.panel.promo .galleries .gallery-box .promo-content .promo-text,
.panel.gallery-listing .galleries .gallery-box .promo-content .promo-text,
.panel.promo .promo-boxes .promo-box .gallery-content .promo-text,
.panel.gallery-listing .promo-boxes .promo-box .gallery-content .promo-text,
.panel.promo .galleries .promo-box .gallery-content .promo-text,
.panel.gallery-listing .galleries .promo-box .gallery-content .promo-text,
.panel.promo .promo-boxes .gallery-box .gallery-content .promo-text,
.panel.gallery-listing .promo-boxes .gallery-box .gallery-content .promo-text,
.panel.promo .galleries .gallery-box .gallery-content .promo-text,
.panel.gallery-listing .galleries .gallery-box .gallery-content .promo-text,
.panel.promo .promo-boxes .promo-box .promo-content .promo-link,
.panel.gallery-listing .promo-boxes .promo-box .promo-content .promo-link,
.panel.promo .galleries .promo-box .promo-content .promo-link,
.panel.gallery-listing .galleries .promo-box .promo-content .promo-link,
.panel.promo .promo-boxes .gallery-box .promo-content .promo-link,
.panel.gallery-listing .promo-boxes .gallery-box .promo-content .promo-link,
.panel.promo .galleries .gallery-box .promo-content .promo-link,
.panel.gallery-listing .galleries .gallery-box .promo-content .promo-link,
.panel.promo .promo-boxes .promo-box .gallery-content .promo-link,
.panel.gallery-listing .promo-boxes .promo-box .gallery-content .promo-link,
.panel.promo .galleries .promo-box .gallery-content .promo-link,
.panel.gallery-listing .galleries .promo-box .gallery-content .promo-link,
.panel.promo .promo-boxes .gallery-box .gallery-content .promo-link,
.panel.gallery-listing .promo-boxes .gallery-box .gallery-content .promo-link,
.panel.promo .galleries .gallery-box .gallery-content .promo-link,
.panel.gallery-listing .galleries .gallery-box .gallery-content .promo-link,
.panel.promo .promo-boxes .promo-box .promo-content .gallery-title,
.panel.gallery-listing .promo-boxes .promo-box .promo-content .gallery-title,
.panel.promo .galleries .promo-box .promo-content .gallery-title,
.panel.gallery-listing .galleries .promo-box .promo-content .gallery-title,
.panel.promo .promo-boxes .gallery-box .promo-content .gallery-title,
.panel.gallery-listing .promo-boxes .gallery-box .promo-content .gallery-title,
.panel.promo .galleries .gallery-box .promo-content .gallery-title,
.panel.gallery-listing .galleries .gallery-box .promo-content .gallery-title,
.panel.promo .promo-boxes .promo-box .gallery-content .gallery-title,
.panel.gallery-listing .promo-boxes .promo-box .gallery-content .gallery-title,
.panel.promo .galleries .promo-box .gallery-content .gallery-title,
.panel.gallery-listing .galleries .promo-box .gallery-content .gallery-title,
.panel.promo .promo-boxes .gallery-box .gallery-content .gallery-title,
.panel.gallery-listing .promo-boxes .gallery-box .gallery-content .gallery-title,
.panel.promo .galleries .gallery-box .gallery-content .gallery-title,
.panel.gallery-listing .galleries .gallery-box .gallery-content .gallery-title,
.panel.promo .promo-boxes .promo-box .promo-content .gallery-text,
.panel.gallery-listing .promo-boxes .promo-box .promo-content .gallery-text,
.panel.promo .galleries .promo-box .promo-content .gallery-text,
.panel.gallery-listing .galleries .promo-box .promo-content .gallery-text,
.panel.promo .promo-boxes .gallery-box .promo-content .gallery-text,
.panel.gallery-listing .promo-boxes .gallery-box .promo-content .gallery-text,
.panel.promo .galleries .gallery-box .promo-content .gallery-text,
.panel.gallery-listing .galleries .gallery-box .promo-content .gallery-text,
.panel.promo .promo-boxes .promo-box .gallery-content .gallery-text,
.panel.gallery-listing .promo-boxes .promo-box .gallery-content .gallery-text,
.panel.promo .galleries .promo-box .gallery-content .gallery-text,
.panel.gallery-listing .galleries .promo-box .gallery-content .gallery-text,
.panel.promo .promo-boxes .gallery-box .gallery-content .gallery-text,
.panel.gallery-listing .promo-boxes .gallery-box .gallery-content .gallery-text,
.panel.promo .galleries .gallery-box .gallery-content .gallery-text,
.panel.gallery-listing .galleries .gallery-box .gallery-content .gallery-text,
.panel.promo .promo-boxes .promo-box .promo-content .gallery-link,
.panel.gallery-listing .promo-boxes .promo-box .promo-content .gallery-link,
.panel.promo .galleries .promo-box .promo-content .gallery-link,
.panel.gallery-listing .galleries .promo-box .promo-content .gallery-link,
.panel.promo .promo-boxes .gallery-box .promo-content .gallery-link,
.panel.gallery-listing .promo-boxes .gallery-box .promo-content .gallery-link,
.panel.promo .galleries .gallery-box .promo-content .gallery-link,
.panel.gallery-listing .galleries .gallery-box .promo-content .gallery-link,
.panel.promo .promo-boxes .promo-box .gallery-content .gallery-link,
.panel.gallery-listing .promo-boxes .promo-box .gallery-content .gallery-link,
.panel.promo .galleries .promo-box .gallery-content .gallery-link,
.panel.gallery-listing .galleries .promo-box .gallery-content .gallery-link,
.panel.promo .promo-boxes .gallery-box .gallery-content .gallery-link,
.panel.gallery-listing .promo-boxes .gallery-box .gallery-content .gallery-link,
.panel.promo .galleries .gallery-box .gallery-content .gallery-link,
.panel.gallery-listing .galleries .gallery-box .gallery-content .gallery-link {
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}
.panel.promo .promo-boxes .promo-box .promo-content .promo-title,
.panel.gallery-listing .promo-boxes .promo-box .promo-content .promo-title,
.panel.promo .galleries .promo-box .promo-content .promo-title,
.panel.gallery-listing .galleries .promo-box .promo-content .promo-title,
.panel.promo .promo-boxes .gallery-box .promo-content .promo-title,
.panel.gallery-listing .promo-boxes .gallery-box .promo-content .promo-title,
.panel.promo .galleries .gallery-box .promo-content .promo-title,
.panel.gallery-listing .galleries .gallery-box .promo-content .promo-title,
.panel.promo .promo-boxes .promo-box .gallery-content .promo-title,
.panel.gallery-listing .promo-boxes .promo-box .gallery-content .promo-title,
.panel.promo .galleries .promo-box .gallery-content .promo-title,
.panel.gallery-listing .galleries .promo-box .gallery-content .promo-title,
.panel.promo .promo-boxes .gallery-box .gallery-content .promo-title,
.panel.gallery-listing .promo-boxes .gallery-box .gallery-content .promo-title,
.panel.promo .galleries .gallery-box .gallery-content .promo-title,
.panel.gallery-listing .galleries .gallery-box .gallery-content .promo-title,
.panel.promo .promo-boxes .promo-box .promo-content .gallery-title,
.panel.gallery-listing .promo-boxes .promo-box .promo-content .gallery-title,
.panel.promo .galleries .promo-box .promo-content .gallery-title,
.panel.gallery-listing .galleries .promo-box .promo-content .gallery-title,
.panel.promo .promo-boxes .gallery-box .promo-content .gallery-title,
.panel.gallery-listing .promo-boxes .gallery-box .promo-content .gallery-title,
.panel.promo .galleries .gallery-box .promo-content .gallery-title,
.panel.gallery-listing .galleries .gallery-box .promo-content .gallery-title,
.panel.promo .promo-boxes .promo-box .gallery-content .gallery-title,
.panel.gallery-listing .promo-boxes .promo-box .gallery-content .gallery-title,
.panel.promo .galleries .promo-box .gallery-content .gallery-title,
.panel.gallery-listing .galleries .promo-box .gallery-content .gallery-title,
.panel.promo .promo-boxes .gallery-box .gallery-content .gallery-title,
.panel.gallery-listing .promo-boxes .gallery-box .gallery-content .gallery-title,
.panel.promo .galleries .gallery-box .gallery-content .gallery-title,
.panel.gallery-listing .galleries .gallery-box .gallery-content .gallery-title {
  font-weight: 400;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.panel.promo .promo-boxes .promo-box .promo-content .promo-title:after,
.panel.gallery-listing .promo-boxes .promo-box .promo-content .promo-title:after,
.panel.promo .galleries .promo-box .promo-content .promo-title:after,
.panel.gallery-listing .galleries .promo-box .promo-content .promo-title:after,
.panel.promo .promo-boxes .gallery-box .promo-content .promo-title:after,
.panel.gallery-listing .promo-boxes .gallery-box .promo-content .promo-title:after,
.panel.promo .galleries .gallery-box .promo-content .promo-title:after,
.panel.gallery-listing .galleries .gallery-box .promo-content .promo-title:after,
.panel.promo .promo-boxes .promo-box .gallery-content .promo-title:after,
.panel.gallery-listing .promo-boxes .promo-box .gallery-content .promo-title:after,
.panel.promo .galleries .promo-box .gallery-content .promo-title:after,
.panel.gallery-listing .galleries .promo-box .gallery-content .promo-title:after,
.panel.promo .promo-boxes .gallery-box .gallery-content .promo-title:after,
.panel.gallery-listing .promo-boxes .gallery-box .gallery-content .promo-title:after,
.panel.promo .galleries .gallery-box .gallery-content .promo-title:after,
.panel.gallery-listing .galleries .gallery-box .gallery-content .promo-title:after,
.panel.promo .promo-boxes .promo-box .promo-content .gallery-title:after,
.panel.gallery-listing .promo-boxes .promo-box .promo-content .gallery-title:after,
.panel.promo .galleries .promo-box .promo-content .gallery-title:after,
.panel.gallery-listing .galleries .promo-box .promo-content .gallery-title:after,
.panel.promo .promo-boxes .gallery-box .promo-content .gallery-title:after,
.panel.gallery-listing .promo-boxes .gallery-box .promo-content .gallery-title:after,
.panel.promo .galleries .gallery-box .promo-content .gallery-title:after,
.panel.gallery-listing .galleries .gallery-box .promo-content .gallery-title:after,
.panel.promo .promo-boxes .promo-box .gallery-content .gallery-title:after,
.panel.gallery-listing .promo-boxes .promo-box .gallery-content .gallery-title:after,
.panel.promo .galleries .promo-box .gallery-content .gallery-title:after,
.panel.gallery-listing .galleries .promo-box .gallery-content .gallery-title:after,
.panel.promo .promo-boxes .gallery-box .gallery-content .gallery-title:after,
.panel.gallery-listing .promo-boxes .gallery-box .gallery-content .gallery-title:after,
.panel.promo .galleries .gallery-box .gallery-content .gallery-title:after,
.panel.gallery-listing .galleries .gallery-box .gallery-content .gallery-title:after {
  margin-top: 20px;
}
.panel.promo .promo-boxes .promo-box .promo-content .promo-text,
.panel.gallery-listing .promo-boxes .promo-box .promo-content .promo-text,
.panel.promo .galleries .promo-box .promo-content .promo-text,
.panel.gallery-listing .galleries .promo-box .promo-content .promo-text,
.panel.promo .promo-boxes .gallery-box .promo-content .promo-text,
.panel.gallery-listing .promo-boxes .gallery-box .promo-content .promo-text,
.panel.promo .galleries .gallery-box .promo-content .promo-text,
.panel.gallery-listing .galleries .gallery-box .promo-content .promo-text,
.panel.promo .promo-boxes .promo-box .gallery-content .promo-text,
.panel.gallery-listing .promo-boxes .promo-box .gallery-content .promo-text,
.panel.promo .galleries .promo-box .gallery-content .promo-text,
.panel.gallery-listing .galleries .promo-box .gallery-content .promo-text,
.panel.promo .promo-boxes .gallery-box .gallery-content .promo-text,
.panel.gallery-listing .promo-boxes .gallery-box .gallery-content .promo-text,
.panel.promo .galleries .gallery-box .gallery-content .promo-text,
.panel.gallery-listing .galleries .gallery-box .gallery-content .promo-text,
.panel.promo .promo-boxes .promo-box .promo-content .gallery-text,
.panel.gallery-listing .promo-boxes .promo-box .promo-content .gallery-text,
.panel.promo .galleries .promo-box .promo-content .gallery-text,
.panel.gallery-listing .galleries .promo-box .promo-content .gallery-text,
.panel.promo .promo-boxes .gallery-box .promo-content .gallery-text,
.panel.gallery-listing .promo-boxes .gallery-box .promo-content .gallery-text,
.panel.promo .galleries .gallery-box .promo-content .gallery-text,
.panel.gallery-listing .galleries .gallery-box .promo-content .gallery-text,
.panel.promo .promo-boxes .promo-box .gallery-content .gallery-text,
.panel.gallery-listing .promo-boxes .promo-box .gallery-content .gallery-text,
.panel.promo .galleries .promo-box .gallery-content .gallery-text,
.panel.gallery-listing .galleries .promo-box .gallery-content .gallery-text,
.panel.promo .promo-boxes .gallery-box .gallery-content .gallery-text,
.panel.gallery-listing .promo-boxes .gallery-box .gallery-content .gallery-text,
.panel.promo .galleries .gallery-box .gallery-content .gallery-text,
.panel.gallery-listing .galleries .gallery-box .gallery-content .gallery-text {
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.panel.promo .promo-boxes .promo-box .promo-content .promo-link,
.panel.gallery-listing .promo-boxes .promo-box .promo-content .promo-link,
.panel.promo .galleries .promo-box .promo-content .promo-link,
.panel.gallery-listing .galleries .promo-box .promo-content .promo-link,
.panel.promo .promo-boxes .gallery-box .promo-content .promo-link,
.panel.gallery-listing .promo-boxes .gallery-box .promo-content .promo-link,
.panel.promo .galleries .gallery-box .promo-content .promo-link,
.panel.gallery-listing .galleries .gallery-box .promo-content .promo-link,
.panel.promo .promo-boxes .promo-box .gallery-content .promo-link,
.panel.gallery-listing .promo-boxes .promo-box .gallery-content .promo-link,
.panel.promo .galleries .promo-box .gallery-content .promo-link,
.panel.gallery-listing .galleries .promo-box .gallery-content .promo-link,
.panel.promo .promo-boxes .gallery-box .gallery-content .promo-link,
.panel.gallery-listing .promo-boxes .gallery-box .gallery-content .promo-link,
.panel.promo .galleries .gallery-box .gallery-content .promo-link,
.panel.gallery-listing .galleries .gallery-box .gallery-content .promo-link,
.panel.promo .promo-boxes .promo-box .promo-content .gallery-link,
.panel.gallery-listing .promo-boxes .promo-box .promo-content .gallery-link,
.panel.promo .galleries .promo-box .promo-content .gallery-link,
.panel.gallery-listing .galleries .promo-box .promo-content .gallery-link,
.panel.promo .promo-boxes .gallery-box .promo-content .gallery-link,
.panel.gallery-listing .promo-boxes .gallery-box .promo-content .gallery-link,
.panel.promo .galleries .gallery-box .promo-content .gallery-link,
.panel.gallery-listing .galleries .gallery-box .promo-content .gallery-link,
.panel.promo .promo-boxes .promo-box .gallery-content .gallery-link,
.panel.gallery-listing .promo-boxes .promo-box .gallery-content .gallery-link,
.panel.promo .galleries .promo-box .gallery-content .gallery-link,
.panel.gallery-listing .galleries .promo-box .gallery-content .gallery-link,
.panel.promo .promo-boxes .gallery-box .gallery-content .gallery-link,
.panel.gallery-listing .promo-boxes .gallery-box .gallery-content .gallery-link,
.panel.promo .galleries .gallery-box .gallery-content .gallery-link,
.panel.gallery-listing .galleries .gallery-box .gallery-content .gallery-link {
  display: block;
  margin-top: 10px;
  font-style: italic;
  color: #35A7D9;
  text-decoration: underline;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.panel.promo .promo-boxes .promo-box:hover .promo-image-wrapper .promo-image img,
.panel.gallery-listing .promo-boxes .promo-box:hover .promo-image-wrapper .promo-image img,
.panel.promo .galleries .promo-box:hover .promo-image-wrapper .promo-image img,
.panel.gallery-listing .galleries .promo-box:hover .promo-image-wrapper .promo-image img,
.panel.promo .promo-boxes .gallery-box:hover .promo-image-wrapper .promo-image img,
.panel.gallery-listing .promo-boxes .gallery-box:hover .promo-image-wrapper .promo-image img,
.panel.promo .galleries .gallery-box:hover .promo-image-wrapper .promo-image img,
.panel.gallery-listing .galleries .gallery-box:hover .promo-image-wrapper .promo-image img,
.panel.promo .promo-boxes .promo-box:hover .gallery-image-wrapper .promo-image img,
.panel.gallery-listing .promo-boxes .promo-box:hover .gallery-image-wrapper .promo-image img,
.panel.promo .galleries .promo-box:hover .gallery-image-wrapper .promo-image img,
.panel.gallery-listing .galleries .promo-box:hover .gallery-image-wrapper .promo-image img,
.panel.promo .promo-boxes .gallery-box:hover .gallery-image-wrapper .promo-image img,
.panel.gallery-listing .promo-boxes .gallery-box:hover .gallery-image-wrapper .promo-image img,
.panel.promo .galleries .gallery-box:hover .gallery-image-wrapper .promo-image img,
.panel.gallery-listing .galleries .gallery-box:hover .gallery-image-wrapper .promo-image img,
.panel.promo .promo-boxes .promo-box:hover .promo-image-wrapper .gallery-image img,
.panel.gallery-listing .promo-boxes .promo-box:hover .promo-image-wrapper .gallery-image img,
.panel.promo .galleries .promo-box:hover .promo-image-wrapper .gallery-image img,
.panel.gallery-listing .galleries .promo-box:hover .promo-image-wrapper .gallery-image img,
.panel.promo .promo-boxes .gallery-box:hover .promo-image-wrapper .gallery-image img,
.panel.gallery-listing .promo-boxes .gallery-box:hover .promo-image-wrapper .gallery-image img,
.panel.promo .galleries .gallery-box:hover .promo-image-wrapper .gallery-image img,
.panel.gallery-listing .galleries .gallery-box:hover .promo-image-wrapper .gallery-image img,
.panel.promo .promo-boxes .promo-box:hover .gallery-image-wrapper .gallery-image img,
.panel.gallery-listing .promo-boxes .promo-box:hover .gallery-image-wrapper .gallery-image img,
.panel.promo .galleries .promo-box:hover .gallery-image-wrapper .gallery-image img,
.panel.gallery-listing .galleries .promo-box:hover .gallery-image-wrapper .gallery-image img,
.panel.promo .promo-boxes .gallery-box:hover .gallery-image-wrapper .gallery-image img,
.panel.gallery-listing .promo-boxes .gallery-box:hover .gallery-image-wrapper .gallery-image img,
.panel.promo .galleries .gallery-box:hover .gallery-image-wrapper .gallery-image img,
.panel.gallery-listing .galleries .gallery-box:hover .gallery-image-wrapper .gallery-image img {
  -webkit-filter: blur(2px);
          filter: blur(2px);
}
.panel.promo .promo-boxes .promo-box:hover .promo-content,
.panel.gallery-listing .promo-boxes .promo-box:hover .promo-content,
.panel.promo .galleries .promo-box:hover .promo-content,
.panel.gallery-listing .galleries .promo-box:hover .promo-content,
.panel.promo .promo-boxes .gallery-box:hover .promo-content,
.panel.gallery-listing .promo-boxes .gallery-box:hover .promo-content,
.panel.promo .galleries .gallery-box:hover .promo-content,
.panel.gallery-listing .galleries .gallery-box:hover .promo-content,
.panel.promo .promo-boxes .promo-box:hover .gallery-content,
.panel.gallery-listing .promo-boxes .promo-box:hover .gallery-content,
.panel.promo .galleries .promo-box:hover .gallery-content,
.panel.gallery-listing .galleries .promo-box:hover .gallery-content,
.panel.promo .promo-boxes .gallery-box:hover .gallery-content,
.panel.gallery-listing .promo-boxes .gallery-box:hover .gallery-content,
.panel.promo .galleries .gallery-box:hover .gallery-content,
.panel.gallery-listing .galleries .gallery-box:hover .gallery-content {
  -webkit-transform: translateY(0) !important;
  transform: translateY(0) !important;
}
.panel.promo .promo-boxes .promo-box:hover .promo-content .promo-title,
.panel.gallery-listing .promo-boxes .promo-box:hover .promo-content .promo-title,
.panel.promo .galleries .promo-box:hover .promo-content .promo-title,
.panel.gallery-listing .galleries .promo-box:hover .promo-content .promo-title,
.panel.promo .promo-boxes .gallery-box:hover .promo-content .promo-title,
.panel.gallery-listing .promo-boxes .gallery-box:hover .promo-content .promo-title,
.panel.promo .galleries .gallery-box:hover .promo-content .promo-title,
.panel.gallery-listing .galleries .gallery-box:hover .promo-content .promo-title,
.panel.promo .promo-boxes .promo-box:hover .gallery-content .promo-title,
.panel.gallery-listing .promo-boxes .promo-box:hover .gallery-content .promo-title,
.panel.promo .galleries .promo-box:hover .gallery-content .promo-title,
.panel.gallery-listing .galleries .promo-box:hover .gallery-content .promo-title,
.panel.promo .promo-boxes .gallery-box:hover .gallery-content .promo-title,
.panel.gallery-listing .promo-boxes .gallery-box:hover .gallery-content .promo-title,
.panel.promo .galleries .gallery-box:hover .gallery-content .promo-title,
.panel.gallery-listing .galleries .gallery-box:hover .gallery-content .promo-title,
.panel.promo .promo-boxes .promo-box:hover .promo-content .promo-text,
.panel.gallery-listing .promo-boxes .promo-box:hover .promo-content .promo-text,
.panel.promo .galleries .promo-box:hover .promo-content .promo-text,
.panel.gallery-listing .galleries .promo-box:hover .promo-content .promo-text,
.panel.promo .promo-boxes .gallery-box:hover .promo-content .promo-text,
.panel.gallery-listing .promo-boxes .gallery-box:hover .promo-content .promo-text,
.panel.promo .galleries .gallery-box:hover .promo-content .promo-text,
.panel.gallery-listing .galleries .gallery-box:hover .promo-content .promo-text,
.panel.promo .promo-boxes .promo-box:hover .gallery-content .promo-text,
.panel.gallery-listing .promo-boxes .promo-box:hover .gallery-content .promo-text,
.panel.promo .galleries .promo-box:hover .gallery-content .promo-text,
.panel.gallery-listing .galleries .promo-box:hover .gallery-content .promo-text,
.panel.promo .promo-boxes .gallery-box:hover .gallery-content .promo-text,
.panel.gallery-listing .promo-boxes .gallery-box:hover .gallery-content .promo-text,
.panel.promo .galleries .gallery-box:hover .gallery-content .promo-text,
.panel.gallery-listing .galleries .gallery-box:hover .gallery-content .promo-text,
.panel.promo .promo-boxes .promo-box:hover .promo-content .promo-link,
.panel.gallery-listing .promo-boxes .promo-box:hover .promo-content .promo-link,
.panel.promo .galleries .promo-box:hover .promo-content .promo-link,
.panel.gallery-listing .galleries .promo-box:hover .promo-content .promo-link,
.panel.promo .promo-boxes .gallery-box:hover .promo-content .promo-link,
.panel.gallery-listing .promo-boxes .gallery-box:hover .promo-content .promo-link,
.panel.promo .galleries .gallery-box:hover .promo-content .promo-link,
.panel.gallery-listing .galleries .gallery-box:hover .promo-content .promo-link,
.panel.promo .promo-boxes .promo-box:hover .gallery-content .promo-link,
.panel.gallery-listing .promo-boxes .promo-box:hover .gallery-content .promo-link,
.panel.promo .galleries .promo-box:hover .gallery-content .promo-link,
.panel.gallery-listing .galleries .promo-box:hover .gallery-content .promo-link,
.panel.promo .promo-boxes .gallery-box:hover .gallery-content .promo-link,
.panel.gallery-listing .promo-boxes .gallery-box:hover .gallery-content .promo-link,
.panel.promo .galleries .gallery-box:hover .gallery-content .promo-link,
.panel.gallery-listing .galleries .gallery-box:hover .gallery-content .promo-link,
.panel.promo .promo-boxes .promo-box:hover .promo-content .gallery-title,
.panel.gallery-listing .promo-boxes .promo-box:hover .promo-content .gallery-title,
.panel.promo .galleries .promo-box:hover .promo-content .gallery-title,
.panel.gallery-listing .galleries .promo-box:hover .promo-content .gallery-title,
.panel.promo .promo-boxes .gallery-box:hover .promo-content .gallery-title,
.panel.gallery-listing .promo-boxes .gallery-box:hover .promo-content .gallery-title,
.panel.promo .galleries .gallery-box:hover .promo-content .gallery-title,
.panel.gallery-listing .galleries .gallery-box:hover .promo-content .gallery-title,
.panel.promo .promo-boxes .promo-box:hover .gallery-content .gallery-title,
.panel.gallery-listing .promo-boxes .promo-box:hover .gallery-content .gallery-title,
.panel.promo .galleries .promo-box:hover .gallery-content .gallery-title,
.panel.gallery-listing .galleries .promo-box:hover .gallery-content .gallery-title,
.panel.promo .promo-boxes .gallery-box:hover .gallery-content .gallery-title,
.panel.gallery-listing .promo-boxes .gallery-box:hover .gallery-content .gallery-title,
.panel.promo .galleries .gallery-box:hover .gallery-content .gallery-title,
.panel.gallery-listing .galleries .gallery-box:hover .gallery-content .gallery-title,
.panel.promo .promo-boxes .promo-box:hover .promo-content .gallery-text,
.panel.gallery-listing .promo-boxes .promo-box:hover .promo-content .gallery-text,
.panel.promo .galleries .promo-box:hover .promo-content .gallery-text,
.panel.gallery-listing .galleries .promo-box:hover .promo-content .gallery-text,
.panel.promo .promo-boxes .gallery-box:hover .promo-content .gallery-text,
.panel.gallery-listing .promo-boxes .gallery-box:hover .promo-content .gallery-text,
.panel.promo .galleries .gallery-box:hover .promo-content .gallery-text,
.panel.gallery-listing .galleries .gallery-box:hover .promo-content .gallery-text,
.panel.promo .promo-boxes .promo-box:hover .gallery-content .gallery-text,
.panel.gallery-listing .promo-boxes .promo-box:hover .gallery-content .gallery-text,
.panel.promo .galleries .promo-box:hover .gallery-content .gallery-text,
.panel.gallery-listing .galleries .promo-box:hover .gallery-content .gallery-text,
.panel.promo .promo-boxes .gallery-box:hover .gallery-content .gallery-text,
.panel.gallery-listing .promo-boxes .gallery-box:hover .gallery-content .gallery-text,
.panel.promo .galleries .gallery-box:hover .gallery-content .gallery-text,
.panel.gallery-listing .galleries .gallery-box:hover .gallery-content .gallery-text,
.panel.promo .promo-boxes .promo-box:hover .promo-content .gallery-link,
.panel.gallery-listing .promo-boxes .promo-box:hover .promo-content .gallery-link,
.panel.promo .galleries .promo-box:hover .promo-content .gallery-link,
.panel.gallery-listing .galleries .promo-box:hover .promo-content .gallery-link,
.panel.promo .promo-boxes .gallery-box:hover .promo-content .gallery-link,
.panel.gallery-listing .promo-boxes .gallery-box:hover .promo-content .gallery-link,
.panel.promo .galleries .gallery-box:hover .promo-content .gallery-link,
.panel.gallery-listing .galleries .gallery-box:hover .promo-content .gallery-link,
.panel.promo .promo-boxes .promo-box:hover .gallery-content .gallery-link,
.panel.gallery-listing .promo-boxes .promo-box:hover .gallery-content .gallery-link,
.panel.promo .galleries .promo-box:hover .gallery-content .gallery-link,
.panel.gallery-listing .galleries .promo-box:hover .gallery-content .gallery-link,
.panel.promo .promo-boxes .gallery-box:hover .gallery-content .gallery-link,
.panel.gallery-listing .promo-boxes .gallery-box:hover .gallery-content .gallery-link,
.panel.promo .galleries .gallery-box:hover .gallery-content .gallery-link,
.panel.gallery-listing .galleries .gallery-box:hover .gallery-content .gallery-link {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.panel.promo .promo-boxes .promo-box:hover .promo-content .promo-text,
.panel.gallery-listing .promo-boxes .promo-box:hover .promo-content .promo-text,
.panel.promo .galleries .promo-box:hover .promo-content .promo-text,
.panel.gallery-listing .galleries .promo-box:hover .promo-content .promo-text,
.panel.promo .promo-boxes .gallery-box:hover .promo-content .promo-text,
.panel.gallery-listing .promo-boxes .gallery-box:hover .promo-content .promo-text,
.panel.promo .galleries .gallery-box:hover .promo-content .promo-text,
.panel.gallery-listing .galleries .gallery-box:hover .promo-content .promo-text,
.panel.promo .promo-boxes .promo-box:hover .gallery-content .promo-text,
.panel.gallery-listing .promo-boxes .promo-box:hover .gallery-content .promo-text,
.panel.promo .galleries .promo-box:hover .gallery-content .promo-text,
.panel.gallery-listing .galleries .promo-box:hover .gallery-content .promo-text,
.panel.promo .promo-boxes .gallery-box:hover .gallery-content .promo-text,
.panel.gallery-listing .promo-boxes .gallery-box:hover .gallery-content .promo-text,
.panel.promo .galleries .gallery-box:hover .gallery-content .promo-text,
.panel.gallery-listing .galleries .gallery-box:hover .gallery-content .promo-text,
.panel.promo .promo-boxes .promo-box:hover .promo-content .promo-link,
.panel.gallery-listing .promo-boxes .promo-box:hover .promo-content .promo-link,
.panel.promo .galleries .promo-box:hover .promo-content .promo-link,
.panel.gallery-listing .galleries .promo-box:hover .promo-content .promo-link,
.panel.promo .promo-boxes .gallery-box:hover .promo-content .promo-link,
.panel.gallery-listing .promo-boxes .gallery-box:hover .promo-content .promo-link,
.panel.promo .galleries .gallery-box:hover .promo-content .promo-link,
.panel.gallery-listing .galleries .gallery-box:hover .promo-content .promo-link,
.panel.promo .promo-boxes .promo-box:hover .gallery-content .promo-link,
.panel.gallery-listing .promo-boxes .promo-box:hover .gallery-content .promo-link,
.panel.promo .galleries .promo-box:hover .gallery-content .promo-link,
.panel.gallery-listing .galleries .promo-box:hover .gallery-content .promo-link,
.panel.promo .promo-boxes .gallery-box:hover .gallery-content .promo-link,
.panel.gallery-listing .promo-boxes .gallery-box:hover .gallery-content .promo-link,
.panel.promo .galleries .gallery-box:hover .gallery-content .promo-link,
.panel.gallery-listing .galleries .gallery-box:hover .gallery-content .promo-link,
.panel.promo .promo-boxes .promo-box:hover .promo-content .gallery-text,
.panel.gallery-listing .promo-boxes .promo-box:hover .promo-content .gallery-text,
.panel.promo .galleries .promo-box:hover .promo-content .gallery-text,
.panel.gallery-listing .galleries .promo-box:hover .promo-content .gallery-text,
.panel.promo .promo-boxes .gallery-box:hover .promo-content .gallery-text,
.panel.gallery-listing .promo-boxes .gallery-box:hover .promo-content .gallery-text,
.panel.promo .galleries .gallery-box:hover .promo-content .gallery-text,
.panel.gallery-listing .galleries .gallery-box:hover .promo-content .gallery-text,
.panel.promo .promo-boxes .promo-box:hover .gallery-content .gallery-text,
.panel.gallery-listing .promo-boxes .promo-box:hover .gallery-content .gallery-text,
.panel.promo .galleries .promo-box:hover .gallery-content .gallery-text,
.panel.gallery-listing .galleries .promo-box:hover .gallery-content .gallery-text,
.panel.promo .promo-boxes .gallery-box:hover .gallery-content .gallery-text,
.panel.gallery-listing .promo-boxes .gallery-box:hover .gallery-content .gallery-text,
.panel.promo .galleries .gallery-box:hover .gallery-content .gallery-text,
.panel.gallery-listing .galleries .gallery-box:hover .gallery-content .gallery-text,
.panel.promo .promo-boxes .promo-box:hover .promo-content .gallery-link,
.panel.gallery-listing .promo-boxes .promo-box:hover .promo-content .gallery-link,
.panel.promo .galleries .promo-box:hover .promo-content .gallery-link,
.panel.gallery-listing .galleries .promo-box:hover .promo-content .gallery-link,
.panel.promo .promo-boxes .gallery-box:hover .promo-content .gallery-link,
.panel.gallery-listing .promo-boxes .gallery-box:hover .promo-content .gallery-link,
.panel.promo .galleries .gallery-box:hover .promo-content .gallery-link,
.panel.gallery-listing .galleries .gallery-box:hover .promo-content .gallery-link,
.panel.promo .promo-boxes .promo-box:hover .gallery-content .gallery-link,
.panel.gallery-listing .promo-boxes .promo-box:hover .gallery-content .gallery-link,
.panel.promo .galleries .promo-box:hover .gallery-content .gallery-link,
.panel.gallery-listing .galleries .promo-box:hover .gallery-content .gallery-link,
.panel.promo .promo-boxes .gallery-box:hover .gallery-content .gallery-link,
.panel.gallery-listing .promo-boxes .gallery-box:hover .gallery-content .gallery-link,
.panel.promo .galleries .gallery-box:hover .gallery-content .gallery-link,
.panel.gallery-listing .galleries .gallery-box:hover .gallery-content .gallery-link {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
}
.panel.promo .promo-boxes .promo-box:hover .promo-content .promo-link,
.panel.gallery-listing .promo-boxes .promo-box:hover .promo-content .promo-link,
.panel.promo .galleries .promo-box:hover .promo-content .promo-link,
.panel.gallery-listing .galleries .promo-box:hover .promo-content .promo-link,
.panel.promo .promo-boxes .gallery-box:hover .promo-content .promo-link,
.panel.gallery-listing .promo-boxes .gallery-box:hover .promo-content .promo-link,
.panel.promo .galleries .gallery-box:hover .promo-content .promo-link,
.panel.gallery-listing .galleries .gallery-box:hover .promo-content .promo-link,
.panel.promo .promo-boxes .promo-box:hover .gallery-content .promo-link,
.panel.gallery-listing .promo-boxes .promo-box:hover .gallery-content .promo-link,
.panel.promo .galleries .promo-box:hover .gallery-content .promo-link,
.panel.gallery-listing .galleries .promo-box:hover .gallery-content .promo-link,
.panel.promo .promo-boxes .gallery-box:hover .gallery-content .promo-link,
.panel.gallery-listing .promo-boxes .gallery-box:hover .gallery-content .promo-link,
.panel.promo .galleries .gallery-box:hover .gallery-content .promo-link,
.panel.gallery-listing .galleries .gallery-box:hover .gallery-content .promo-link,
.panel.promo .promo-boxes .promo-box:hover .promo-content .gallery-link,
.panel.gallery-listing .promo-boxes .promo-box:hover .promo-content .gallery-link,
.panel.promo .galleries .promo-box:hover .promo-content .gallery-link,
.panel.gallery-listing .galleries .promo-box:hover .promo-content .gallery-link,
.panel.promo .promo-boxes .gallery-box:hover .promo-content .gallery-link,
.panel.gallery-listing .promo-boxes .gallery-box:hover .promo-content .gallery-link,
.panel.promo .galleries .gallery-box:hover .promo-content .gallery-link,
.panel.gallery-listing .galleries .gallery-box:hover .promo-content .gallery-link,
.panel.promo .promo-boxes .promo-box:hover .gallery-content .gallery-link,
.panel.gallery-listing .promo-boxes .promo-box:hover .gallery-content .gallery-link,
.panel.promo .galleries .promo-box:hover .gallery-content .gallery-link,
.panel.gallery-listing .galleries .promo-box:hover .gallery-content .gallery-link,
.panel.promo .promo-boxes .gallery-box:hover .gallery-content .gallery-link,
.panel.gallery-listing .promo-boxes .gallery-box:hover .gallery-content .gallery-link,
.panel.promo .galleries .gallery-box:hover .gallery-content .gallery-link,
.panel.gallery-listing .galleries .gallery-box:hover .gallery-content .gallery-link {
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
}
.panel.promo.projects-listing .galleries,
.panel.gallery-listing.projects-listing .galleries {
  margin-top: 60px;
  margin-bottom: 30px;
}
.panel.promo.projects-listing .galleries:not(:last-child),
.panel.gallery-listing.projects-listing .galleries:not(:last-child) {
  margin-bottom: 100px;
}
.panel.promo.mini .galleries .gallery-box,
.panel.gallery-listing.mini .galleries .gallery-box {
  max-width: 350px;
}
.panel.gallery .light-gallery {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.panel.gallery .light-gallery .gal-item {
  position: relative;
  overflow: hidden;
  margin: 0 5px 10px 5px;
  width: calc(50% - 10px);
  font-size: 0;
}
.panel.gallery .light-gallery .gal-item a {
  display: block;
}
.panel.gallery .light-gallery .gal-item a img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.panel.gallery .light-gallery .gal-item .hoverlay {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(53, 167, 217, 0.5);
  border: 4px solid rgba(255, 255, 255, 0.5);
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.panel.gallery .light-gallery .gal-item .hoverlay i {
  position: absolute;
  z-index: 1;
  font-size: 20px;
  color: #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.panel.gallery .light-gallery .gal-item .hoverlay i.fa-chevron-right {
  top: 40px;
  right: 40px;
}
.panel.gallery .light-gallery .gal-item .hoverlay i.fa-chevron-left {
  bottom: 40px;
  left: 40px;
}
.panel.gallery .light-gallery .gal-item:hover .hoverlay {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
}
.panel.gallery .light-gallery .gal-item:hover .hoverlay i.fa-chevron-right {
  top: 20px;
  right: 20px;
}
.panel.gallery .light-gallery .gal-item:hover .hoverlay i.fa-chevron-left {
  bottom: 20px;
  left: 20px;
}
.panel.cta .panel-image,
.panel.parallax .panel-image {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.panel.cta .responsive-bg,
.panel.parallax .responsive-bg {
  width: 100%;
  height: 100%;
}
.panel.cta {
  padding: 80px 0;
}
.panel.cta .button {
  padding: 20px 30px;
}
.panel.cta.theme1 {
  color: #fff;
  background: #16252c;
}
.panel.cta.theme1 h3,
.panel.cta.theme1 h4,
.panel.cta.theme1 h5 {
  color: #fff;
}
.panel.cta.white {
  background: #fff;
}
.panel.parallax {
  padding: 0 0 80px 0;
  min-height: 500px;
}
.panel.parallax .panel-content {
  margin: 0 auto;
  padding: 30px 60px;
  max-width: 460px;
  background: #fafafa;
  border-radius: 0 0 2px 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.panel.parallax .panel-header .panel-title {
  margin-bottom: 30px;
}
.panel.parallax .panel-header .panel-title h2 {
  display: block;
  background-attachment: fixed;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}
.panel.parallax .panel-header .panel-title h2:after {
  content: none;
}
.panel.parallax .panel-header .panel-title:after {
  content: "";
  display: block;
  margin: 0 auto;
  margin-top: 30px;
  width: 85px;
  max-width: 30%;
  height: 1px;
  background: #525FA7;
}
.panel.parallax .panel-header .panel-subtitle {
  margin-bottom: 5px;
}
.panel.parallax .panel-image > .responsive-bg {
  -webkit-box-shadow: 0 3px 6px 0px rgba(11, 11, 11, 0.35) inset;
  box-shadow: 0 3px 6px 0px rgba(11, 11, 11, 0.35) inset;
}
.panel.parallax + .panel.standard {
  padding-top: 60px;
}
@-moz-document url-prefix() {
  .panel.parallax .panel-header .panel-title h2 {
    background-attachment: scroll;
  }
}
@media all and (min-width: 769px) {
  .panel.standard + .panel.side {
    padding-top: 80px;
  }
  .panel.promo .promo-boxes .promo-box,
  .panel.gallery-listing .promo-boxes .promo-box,
  .panel.promo .galleries .promo-box,
  .panel.gallery-listing .galleries .promo-box,
  .panel.promo .promo-boxes .gallery-box,
  .panel.gallery-listing .promo-boxes .gallery-box,
  .panel.promo .galleries .gallery-box,
  .panel.gallery-listing .galleries .gallery-box {
    width: calc(50% - 20px);
  }
  .panel.gallery .light-gallery .gal-item {
    width: calc(33.33% - 10px);
  }
  .panel.parallax .panel-content {
    float: right;
    display: block;
  }
}
@media all and (min-width: 1025px) {
  .panel.side .panel-media.pscroll {
    position: relative;
  }
  .panel.side:not(.noimage) .panel-wrap {
    margin: 0 40px;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .panel.side:not(.noimage) .panel-media {
    max-width: calc(60% + 60px);
  }
  .panel.side:not(.noimage) .panel-media.panel-right:before {
    top: auto;
    bottom: 0;
    background: #fafafa;
    background: -webkit-gradient('bottom left', right top, color-stop(0%, #fafafa), color-stop(100%, rgba(250, 250, 250, 0)));
    background: -webkit-gradient(linear, left bottom, left top, from(#fafafa), to(rgba(250, 250, 250, 0)));
    background: linear-gradient(0deg, #fafafa 0%, rgba(250, 250, 250, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fafafa', endColorstr='rgba(250, 250, 250, 0)', GradientType=1);
  }
  .panel.side:not(.noimage) .panel-content {
    max-width: calc(40% + 60px);
  }
  .panel.side:not(.noimage) .panel-content.panel-right,
  .panel.side:not(.noimage) .panel-content.panel-left {
    padding: 40px 80px;
  }
  .panel.side:not(.noimage) .panel-content.panel-right {
    margin: 0 0 0 -15%;
  }
  .panel.side:not(.noimage) .panel-content.panel-left {
    right: -7.5%;
    margin: 0 -7.5% 0 0;
  }
  .panel.promo .promo-boxes .promo-box,
  .panel.gallery-listing .promo-boxes .promo-box,
  .panel.promo .galleries .promo-box,
  .panel.gallery-listing .galleries .promo-box,
  .panel.promo .promo-boxes .gallery-box,
  .panel.gallery-listing .promo-boxes .gallery-box,
  .panel.promo .galleries .gallery-box,
  .panel.gallery-listing .galleries .gallery-box {
    margin-bottom: 60px;
  }
  .panel.gallery .light-gallery .gal-item {
    width: calc(25% - 10px);
  }
  .panel.cta {
    padding: 100px 0;
  }
}
@media all and (min-width: 1367px) {
  .panel.side:not(.noimage) .panel-wrap {
    margin: 0 80px;
  }
  .panel.side:not(.noimage) .panel-content.panel-right,
  .panel.side:not(.noimage) .panel-content.panel-left {
    padding: 60px 90px;
  }
}
@media all and (min-width: 1921px) {
  .panel.side:not(.noimage) .panel-wrap {
    margin: 0 120px;
  }
  .panel.side:not(.noimage) .panel-content.panel-right,
  .panel.side:not(.noimage) .panel-content.panel-left {
    padding: 80px 120px;
  }
}
/*------ search page ------*/
#search-results .search-item h4 {
  margin-bottom: 10px;
  text-align: left;
}
/*------ contact page ------*/
#contact-locations .contact-info {
  font-size: 18px;
  font-size: 0.9rem;
}
#contact-locations .contact-info .info-block {
  padding: 0 15px 10px 15px;
}
#contact-locations .contact-info .info-block label {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
}
#contact-locations .contact-info .info-block a {
  font-style: normal;
  text-decoration: none;
  color: #4D4D4D;
}
#contact-locations .contact-info .info-block a:hover {
  color: #35A7D9;
}
#contact-locations .contact-info .info-block.hours .current-status,
#contact-locations .contact-info .info-block.hours .hours-label,
#contact-locations .contact-info .info-block.hours .hours-day {
  display: block;
}
#contact-locations .contact-info .info-block.hours .current-status {
  margin-bottom: 10px;
  font-family: 'IBM Plex Serif', Times, serif;
  font-weight: 400;
  font-size: 16px;
  font-size: 0.8rem;
  font-weight: 600;
}
#contact-locations .contact-info .info-block.hours .current-status.italic {
  font-style: italic;
}
#contact-locations .contact-info .info-block.hours .current-status.italic.bold {
  font-weight: 600;
}
#contact-locations .contact-info .info-block.hours .current-status.bold {
  font-weight: 700;
}
#contact-locations .contact-info .info-block.hours .current-status.open-text {
  color: #4C6C33;
}
#contact-locations .contact-info .info-block.hours .current-status.closed-text {
  color: #b72100;
}
#contact-locations .contact-info .info-block.hours .hours-label {
  margin-bottom: 4px;
}
#contact-emails {
  padding-top: 20px;
}
#contact-emails .email-contact {
  margin-bottom: 20px;
}
#contact-emails .email-contact h5 {
  margin-bottom: 5px;
  text-align: left;
}
#contact-emails .email-contact h5 small {
  display: block;
  margin-top: 3px;
  font-family: 'IBM Plex Sans', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 18px;
  font-size: 0.9rem;
  color: #525FA7;
}
#contact-emails .email-contact h5:after {
  margin: 10px 0 0 0;
  width: 100%;
  max-width: 100%;
}
#contact-emails .email-contact a {
  float: none;
  position: relative;
  font-style: normal;
  text-decoration: none;
  color: #4D4D4D;
}
#contact-emails .email-contact a i {
  padding-right: 3px;
  font-size: 16px;
  font-size: 0.8rem;
}
#contact-emails .email-contact a i.fa-phone {
  position: relative;
  top: -1px;
}
#contact-emails .email-contact a:hover {
  color: #35A7D9;
}
@media all and (min-width: 641px) {
  #contact-emails .email-contact h5 small {
    float: right;
    display: block;
  }
  #contact-emails .email-contact a.f_right {
    float: right;
    display: block;
  }
  #contact-emails .email-contact a.f_left {
    float: left;
    display: block;
  }
}
@media all and (min-width: 769px) {
  #contact-locations .contact-info {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  #contact-locations .contact-info .info-block {
    width: 50%;
  }
}
#contact-form {
  padding-top: 20px;
  font-size: 16px;
  font-size: 0.8rem;
}
#contact-form label {
  display: none;
}
#google-map {
  position: relative;
  width: 100%;
  height: 500px;
}
#google-map #load-map {
  width: 100%;
  height: 100%;
}
#google-map .switch-btn {
  position: absolute;
  right: 30px;
  bottom: 30px;
}
#google-map .google-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 235px;
  margin-top: -110px;
  margin-left: -118px;
  padding: 20px;
  font-size: 14px;
  font-size: 0.7rem;
  font-weight: 400;
  color: #fff;
  background: #192B33;
  -webkit-box-shadow: 0 3px 6px 0px rgba(11, 11, 11, 0.35);
  box-shadow: 0 3px 6px 0px rgba(11, 11, 11, 0.35);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#google-map .google-btn:hover {
  -webkit-box-shadow: 0px 0px 80px 0px rgba(11, 11, 11, 0.35);
  box-shadow: 0px 0px 80px 0px rgba(11, 11, 11, 0.35);
}
/*------ tabs ------*/
@media all and (min-width: 769px) {
  .panel-tabs .container {
    padding: 0;
    margin: 0;
  }
}
.panel-tabs .content-tabs .tabs-nav li {
  display: inline-block;
  margin-bottom: 0;
}
.panel-tabs .content-tabs .tabs-nav li a {
  display: block;
  padding: 15px;
  cursor: pointer;
  background: #fafafa;
  border: 1px solid #ddd;
}
.panel-tabs .content-tabs .tabs-nav li.active a {
  color: #192b33;
}
.panel-tabs .content-tabs .panel-text {
  display: none;
}
.panel-tabs .content-tabs .panel-text.active {
  display: block;
}
.panel-tabs .tab {
  margin-top: 10px;
  background: #fafafa;
  border: 1px solid #ddd;
}
.panel-tabs .tab .tab-header {
  position: relative;
  margin: 0;
  padding: 30px 50px 30px 20px;
  text-align: left;
  font-size: 24px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
}
.panel-tabs .tab .tab-header:after {
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -6px;
  font-size: 16px;
  font-size: 0.8rem;
  color: #35A7D9;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f078";
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.panel-tabs .tab .tab-header:hover:after {
  color: #2880A6;
}
.panel-tabs .tab .tab-header.ui-state-active {
  border-bottom: 0;
}
.panel-tabs .tab .tab-header.ui-state-active:after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.panel-tabs .tab .tab-header:focus {
  outline: none;
}
.panel-tabs .tab .tab-content {
  display: none;
  padding: 20px;
  font-size: 16px;
  font-size: 0.8rem;
}
@media all and (min-width: 769px) {
  .panel-tabs .tab .tab-header {
    padding: 30px 80px 30px 40px;
    font-size: 26px;
    font-size: 1.3rem;
  }
  .panel-tabs .tab .tab-header:after {
    right: 40px;
  }
  .panel-tabs .tab .tab-content {
    padding: 20px 40px;
  }
}
@media all and (min-width: 1025px) {
  .panel-tabs .tab .tab-header {
    font-size: 28px;
    font-size: 1.4rem;
  }
  .panel-tabs .tab .tab-content {
    font-size: 18px;
    font-size: 0.9rem;
  }
}
/*------ project documents (tabs) ------*/
.files-list:not(:last-child) {
  margin-bottom: 25px;
}
.files-list h5 {
  text-align: left;
  font-size: 18px;
}
.files-list p {
  position: relative;
  padding: 0 0 15px 25px;
  font-size: 16px;
  font-weight: 400;
}
.files-list p i {
  position: absolute;
  top: 0;
  left: 0;
  line-height: 22px;
  color: #a6a6a6;
}
.files-list p small {
  text-transform: uppercase;
}
/*------ events calendar & list ------*/
#event-view-toggle {
  display: none;
  margin-bottom: 60px;
}
@media all and (min-width: 769px) {
  #event-view-toggle {
    display: block;
  }
}
#event-calendar {
  display: none;
  max-width: 1280px;
  margin: 0 auto 40px;
}
#event-calendar .fc-toolbar {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#event-calendar .fc-toolbar h2 {
  font-weight: 400;
}
#event-calendar .fc-toolbar .fc-center {
  padding: 0 20px;
}
#event-calendar .fc-button {
  margin-top: -30px;
  color: #2880A6;
  background: none;
  border: 0;
  font-size: 14px;
  font-size: 0.7rem;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#event-calendar .fc-button:hover,
#event-calendar .fc-button:focus {
  color: #192B33;
  border: 0;
  outline: none;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-box-shadow: none;
  box-shadow: none;
  text-shadow: none;
}
#event-calendar .fc-row,
#event-calendar .fc-head,
#event-calendar .fc-head-container {
  border-color: #192B33;
}
#event-calendar .fc-day-header {
  padding: 15px 12px;
  font-size: 16px;
  font-size: 0.8rem;
  font-family: 'IBM Plex Serif', Times, serif;
  font-weight: 400;
  font-style: italic;
  color: #fff;
  background: #192B33;
  border-color: #192B33;
}
#event-calendar .fc-day-header.italic {
  font-style: italic;
}
#event-calendar .fc-day-header.italic.bold {
  font-weight: 600;
}
#event-calendar .fc-day-header.bold {
  font-weight: 700;
}
#event-calendar .fc-day-header.bold {
  font-weight: 600;
}
#event-calendar .fc-content-skeleton > table > thead > tr > td {
  text-align: center;
  pointer-events: none;
}
#event-calendar .fc-dayGrid-view .fc-body .fc-row {
  min-height: 150px;
}
#event-calendar .fc-day-top.has-event .fc-day-number {
  display: none;
  /*margin-top: calc(~"50% - 60px"); //bigger element
				.serif;
				.italic;
				.bold;
				.font-size(34);
				color: @color-white;
				&:before {
					background: @color-white;
				}
				&:after {
					content: attr(data-month);
					display: block;
					.font-size(20);
				}*/
}
#event-calendar .fc-day-number {
  float: none;
  display: inline-block;
  margin-top: 55px;
  padding-bottom: 0;
  font-weight: 700;
  pointer-events: none;
}
#event-calendar .fc-day-number:before {
  content: "";
  width: 15px;
  height: 1px;
  background: #525FA7;
}
#event-calendar .fc-today {
  background: none;
}
#event-calendar .fc-content-skeleton {
  height: calc(100% - 2px);
}
#event-calendar .fc-event-container .fc-day-grid-event {
  position: absolute;
  z-index: 2;
  overflow: hidden;
  top: 0;
  margin: 0;
  padding: 0;
  width: calc(100%/7);
  height: 100%;
  min-height: 150px;
  background: rgba(17, 17, 17, 0.5);
  border: 0;
  border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#event-calendar .fc-event-container .fc-day-grid-event:hover {
  background: rgba(17, 17, 17, 0.3);
}
#event-calendar .fc-event-container .fc-day-grid-event:hover .event-day .day:after {
  width: 30px;
}
#event-calendar .event-day,
#event-list .event-day,
#calendar-dialog .event-day {
  display: block;
  margin-top: 45px;
  text-align: center;
  font-family: 'IBM Plex Serif', Times, serif;
  font-weight: 400;
  font-weight: 700;
  font-style: italic;
  color: #fff;
}
#event-calendar .event-day.italic,
#event-list .event-day.italic,
#calendar-dialog .event-day.italic {
  font-style: italic;
}
#event-calendar .event-day.italic.bold,
#event-list .event-day.italic.bold,
#calendar-dialog .event-day.italic.bold {
  font-weight: 600;
}
#event-calendar .event-day.bold,
#event-list .event-day.bold,
#calendar-dialog .event-day.bold {
  font-weight: 700;
}
#event-calendar .event-day.bold,
#event-list .event-day.bold,
#calendar-dialog .event-day.bold {
  font-weight: 600;
}
#event-calendar .event-day .day,
#event-list .event-day .day,
#calendar-dialog .event-day .day {
  display: block;
  font-size: 34px;
  font-size: 1.7rem;
}
#event-calendar .event-day .day:after,
#event-list .event-day .day:after,
#calendar-dialog .event-day .day:after {
  content: "";
  display: block;
  margin: 0 auto;
  width: 20px;
  height: 1px;
  background: #fff;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#event-calendar .event-day .month,
#event-list .event-day .month,
#calendar-dialog .event-day .month {
  margin-top: 4px;
  display: block;
  font-size: 18px;
  font-size: 0.9rem;
}
#calendar-dialog .ui-dialog-titlebar {
  background: none;
}
#calendar-dialog .ui-dialog-titlebar-close {
  z-index: 2;
  top: 90px;
  right: 20px;
  color: #192B33;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#calendar-dialog .ui-dialog-titlebar-close:hover {
  color: #525FA7;
}
#calendar-dialog #calendar-events-modal {
  position: relative;
  overflow: hidden;
  max-height: 500px !important;
  padding: 0;
  font-size: 16px;
}
#calendar-dialog .event-item,
#event-list .event-item {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
#calendar-dialog .event-item:not(:first-child),
#event-list .event-item:not(:first-child) {
  border-top: 1px solid #ddd;
}
#calendar-dialog .image-wrap,
#event-list .image-wrap {
  position: relative;
  overflow: hidden;
  width: 25%;
  background-size: cover;
  background-position: center;
}
#calendar-dialog .image-wrap .event-day,
#event-list .image-wrap .event-day {
  position: absolute;
  z-index: 2;
  top: 15%;
  display: block;
  width: 100%;
}
#calendar-dialog .image-wrap img,
#event-list .image-wrap img {
  position: absolute;
  display: block;
}
#calendar-dialog .image-wrap .img-overlay,
#event-list .image-wrap .img-overlay {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 17, 17, 0.5);
}
#calendar-dialog .content-wrap,
#event-list .content-wrap {
  width: 75%;
  padding: 35px 30px;
}
#calendar-dialog .content-wrap h4,
#event-list .content-wrap h4 {
  margin-bottom: 8px;
  text-align: left;
}
#calendar-dialog .content-wrap .event-date,
#event-list .content-wrap .event-date {
  font-weight: 400;
  color: #525FA7;
}
#event-list {
  margin-bottom: 60px;
}
#event-list h3 {
  margin-top: 80px;
}
#event-list h3:first-child {
  margin-top: 30px;
}
#event-list .event-item {
  margin-bottom: 15px;
  font-size: 18px;
  font-size: 0.9rem;
  background: #fff;
  border: 1px solid #ddd;
}
#event-list .event-item h4 a {
  color: #26414D;
}
#event-list .event-item h4 a:hover {
  color: #35A7D9;
}
#event-list .event-item .image-wrap img {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#event-list .event-item:hover .image-wrap img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
#event-list .image-wrap {
  max-width: 220px;
}
/*------ footer ------*/
#page-footer {
  padding: 40px 0 60px;
  font-size: 18px;
  font-size: 0.9rem;
  color: #fff;
  background: #192B33;
}
#page-footer > .container {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
#page-footer h5,
#page-footer h6 {
  margin-bottom: 15px;
  color: #fff;
}
#page-footer h5:after,
#page-footer h6:after {
  background: #fff;
}
#page-footer a {
  color: #fff;
}
#page-footer a:hover {
  color: #35A7D9;
}
#page-footer .social-icons {
  margin-bottom: 30px;
}
#page-footer .footer-col {
  padding: 20px 30px 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
#page-footer .footer-col .col-content {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  height: 100%;
}
#page-footer .contact-snippets {
  margin: 0;
}
#page-footer .contact-snippets li {
  display: block;
  margin-bottom: 10px;
}
#page-footer .contact-snippets li .street {
  display: block;
}
#page-footer .contact-snippets li.tollfree .label {
  display: inline-block;
  margin-right: 5px;
  font-size: 14px;
  font-size: 0.7rem;
  color: #f4f4f4;
  font-weight: 700;
}
#page-footer .contact-snippets li:before,
#page-footer .contact-snippets li.fax {
  display: none;
}
#page-footer .contact-snippets li:last-child {
  margin-bottom: 0;
}
#page-footer #page-disclaimer small {
  font-size: 18px;
  font-size: 0.9rem;
  color: rgba(250, 250, 250, 0.5);
}
#page-footer #page-disclaimer small a {
  color: inherit;
}
#page-footer #page-disclaimer small a:hover {
  color: #fafafa;
}
/*------ responsive video ------*/
.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
}
.video-bg > video {
  position: absolute;
  top: -50%;
  left: -50%;
  bottom: -50%;
  right: -50%;
  display: block !important;
  width: 100%;
  margin: auto;
  z-index: -1;
}
@media all and (min-width: 1025px) {
  .no-touch .video-bg {
    display: block;
  }
}
@media (min-aspect-ratio: 1.77777778) {
  .video-bg > video {
    width: 100%;
    height: auto;
    /* actually taller than viewport */
    min-height: 100%;
  }
}
@media (max-aspect-ratio: 1.77777778) {
  .video-bg > video {
    width: auto;
    /* actually wider than viewport */
    height: 100%;
    min-width: 100%;
  }
}
@supports ((-o-object-fit: cover) or (object-fit: cover)) {
  .video-bg > video {
    top: 0;
    left: 0;
    bottom: auto;
    right: auto;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  @supports (-ms-ime-align:auto) {
    @media (min-aspect-ratio: 1.77777778) {
      .video-bg > video {
        width: 100%;
        height: auto;
        /* actually taller than viewport */
        min-height: 100%;
      }
    }
    @media (max-aspect-ratio: 1.77777778) {
      .video-bg > video {
        width: auto;
        /* actually wider than viewport */
        height: 100%;
        min-width: 100%;
      }
    }
  }
}
/*------ icons ------*/
.social-icons {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
}
.social-icons li {
  display: inline-block;
  margin: 0 0 0 1px;
  padding: 0;
  text-align: center;
  border: 0;
}
.social-icons li a {
  position: relative;
  overflow: hidden;
  display: block;
  width: 25px;
  height: 25px;
  line-height: 25px;
}
.social-icons li a span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: 18px;
  line-height: 25px;
  color: #fff;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.social-icons li a span + span {
  top: 100%;
  color: #fff;
}
.social-icons li a:hover span {
  top: -100%;
}
.social-icons li a:hover span + span {
  top: 0;
}
.social-icons li a:hover span + span.fa-facebook {
  color: #3b5998;
}
.social-icons li a:hover span + span.fa-google-plus {
  color: #d94a39;
}
.social-icons li a:hover span + span.fa-linkedin {
  color: #1b92bd;
}
.social-icons li a:hover span + span.fa-pinterest {
  color: #cb2027;
}
.social-icons li a:hover span + span.fa-twitter {
  color: #00bdec;
}
.social-icons li a:hover span + span.fa-youtube {
  color: #d20800;
}
.social-icons li a:hover span + span.fa-instagram {
  color: #316c95;
}
.social-icons li a:hover span + span.fa-houzz {
  color: #7cc04b;
}
.social-icons li a:active span {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3) inset;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3) inset;
}
/*------ subscribe modal/form ------*/
#subscribe-modal .form-row label {
  display: none;
}
/*------ leadin ------*/
.leadin-popup {
  position: relative;
  max-width: 100%;
  visibility: hidden;
  z-index: 999;
  font-size: 16px;
  font-size: 0.8rem;
}
.leadin-popup .container {
  position: relative;
}
.leadin-popup .control-buttons {
  position: absolute;
  top: 0;
  right: 0;
  text-align: right;
}
.leadin-popup .control-buttons .control-button {
  width: 20px;
  line-height: 20px;
  color: inherit;
  text-align: center;
}
.leadin-popup .close-button {
  opacity: 0.5;
  filter: alpha(opacity=50);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  font-style: normal;
  font-size: 14px;
  font-size: 0.7rem;
}
.leadin-popup .close-button:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00d";
}
.leadin-popup .leadin-success {
  display: none;
}
.leadin-popup .leadin-title {
  color: inherit;
  pointer-events: none;
}
.leadin-popup .button {
  display: block;
  width: 100%;
  text-align: center;
}
.leadin-popup.open {
  visibility: visible;
}
.leadin-popup.theme-theme1 {
  background: #192B33;
  color: #fff;
}
.leadin-popup.theme-theme2 {
  background: #2880A6;
  color: #fff;
}
.leadin-popup.theme-gradient {
  background: #192B33;
  background: -webkit-gradient(left bottom, right top, color-stop(0%, #192B33), color-stop(100%, #2880A6));
  background: linear-gradient(45deg, #192B33 0%, #2880A6 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#192B33', endColorstr='#2880A6', GradientType=1);
  color: #fff;
}
.leadin-popup.theme-black {
  background: #111;
  color: #fff;
}
.leadin-popup.theme-white {
  background: #fff;
  color: #4D4D4D;
}
.leadin-popup.type-corner,
.leadin-popup.type-bar.position-bottom {
  position: fixed;
}
.leadin-popup.type-bar {
  width: 100%;
  padding: 10px 0px;
}
.leadin-popup.type-bar .container {
  width: 100%;
  max-width: 1580px;
  margin: 0 auto;
  padding: 0 20px;
}
.leadin-popup.type-bar .control-buttons {
  right: 20px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: 100%;
}
.leadin-popup.type-bar .leadin-success p,
.leadin-popup.type-bar .content-wrapper p {
  padding-bottom: 0;
}
.leadin-popup.type-bar .leadin-title {
  font-size: inherit;
}
.leadin-popup.type-bar .leadin-form-wrapper {
  display: none;
}
.leadin-popup.type-bar.position-top {
  border-bottom: 1px solid #ccc;
}
.leadin-popup.type-bar.position-bottom {
  bottom: 0;
  -webkit-box-shadow: 0 0 30px 0px rgba(11, 11, 11, 0.35);
  box-shadow: 0 0 30px 0px rgba(11, 11, 11, 0.35);
}
.leadin-popup.type-corner {
  bottom: 0;
  width: 420px;
  padding: 20px 15px;
  -webkit-box-shadow: 0 0 30px 0px rgba(11, 11, 11, 0.35);
  box-shadow: 0 0 30px 0px rgba(11, 11, 11, 0.35);
}
.leadin-popup.type-corner .container {
  padding: 0;
}
.leadin-popup.type-corner .control-buttons {
  top: -3px;
}
.leadin-popup.type-corner .leadin-img-wrapper {
  display: none;
}
.leadin-popup.type-corner .leadin-img-wrapper ~ .leadin-content,
.leadin-popup.type-corner .leadin-img-wrapper ~ .leadin-success {
  width: 100%;
}
.leadin-popup.type-corner .leadin-title {
  font-size: 18px;
  font-size: 0.9rem;
}
.leadin-popup.type-corner .button {
  width: 100%;
  text-align: center;
}
.leadin-popup.type-corner .leadin-form-wrapper {
  display: none;
}
.leadin-popup.type-corner.position-left {
  left: 0;
}
.leadin-popup.type-corner.position-right {
  right: 0;
}
.leadin-popup.type-popup {
  padding: 0 0 20px 0;
  font-size: 18px;
  font-size: 0.9rem;
}
.leadin-popup.type-popup .control-buttons {
  top: 20px;
  right: 20px;
}
.leadin-popup.type-popup .close-button {
  font-size: 21px;
  font-size: 1.05rem;
}
.leadin-popup.type-popup .leadin-content,
.leadin-popup.type-popup .leadin-form,
.leadin-popup.type-popup .leadin-success {
  padding: 20px 20px 0 20px;
}
.leadin-form {
  overflow: hidden;
}
.leadin-form .form-field {
  margin-bottom: 10px;
}
.leadin-form label {
  display: block;
  margin-bottom: 8px;
}
.leadin-form .input,
.leadin-form .select {
  height: 50px;
}
.leadin-form .input,
.leadin-form .select,
.leadin-form .textarea {
  color: #fff;
}
.leadin-form .input:focus,
.leadin-form .select:focus,
.leadin-form .textarea:focus {
  color: #4D4D4D;
}
.leadin-form .button {
  width: 100%;
  margin: 20px 0 10px;
  text-align: center;
}
.ui-dialog[aria-describedby^="leadin-popup-"] {
  border: 0;
}
.ui-dialog[aria-describedby^="leadin-popup-"] .ui-dialog-titlebar {
  display: none;
}
.theme-white .leadin-form .input,
.ui-dialog .leadin-form .input,
.theme-white .leadin-form .select,
.ui-dialog .leadin-form .select,
.theme-white .leadin-form .textarea,
.ui-dialog .leadin-form .textarea {
  color: #4D4D4D;
  background: #f4f4f4;
}
.theme-white .leadin-form .input:focus,
.ui-dialog .leadin-form .input:focus,
.theme-white .leadin-form .select:focus,
.ui-dialog .leadin-form .select:focus,
.theme-white .leadin-form .textarea:focus,
.ui-dialog .leadin-form .textarea:focus {
  color: #4D4D4D;
}
.theme-theme2 .leadin-form label,
.theme-gradient .leadin-form label,
.theme-black .leadin-form label {
  color: #fff;
}
.theme-theme2 .leadin-form .button {
  font-weight: 400;
  color: #35A7D9;
  border: 1px solid #ddd;
}
.theme-theme2 .leadin-form .button:before {
  background: #fff;
}
.theme-theme2 .leadin-form .button:hover,
.theme-theme2 .leadin-form .button.active {
  color: #fff;
  background: #35A7D9;
}
.theme-theme2 .leadin-form .button:hover:before,
.theme-theme2 .leadin-form .button.active:before {
  background: #35A7D9;
}
@media all and (min-width: 769px) {
  .leadin-popup.type-bar .container {
    padding: 0 50px 0 20px;
  }
  .leadin-popup.type-bar .control-buttons {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .leadin-popup.type-bar .leadin-success,
  .leadin-popup.type-bar .content-wrapper {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .leadin-popup.type-bar .content-wrapper > * {
    display: inline;
  }
  .leadin-popup.type-bar .leadin-title {
    padding-right: 10px;
  }
  .leadin-popup.type-bar .button {
    display: inline-block;
    width: auto;
    margin-left: 15px;
  }
  .leadin-popup.type-corner .leadin-img-wrapper {
    display: block;
    float: left;
    width: 100px;
    height: 100px;
    margin-top: -35px;
    margin-left: -35px;
    border-radius: 100%;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    overflow: hidden;
  }
  .leadin-popup.type-corner .leadin-img-wrapper ~ .leadin-content,
  .leadin-popup.type-corner .leadin-img-wrapper ~ .leadin-success {
    float: left;
    width: calc(100% - 85px);
    padding-left: 15px;
  }
  .leadin-popup.type-corner.position-left {
    width: 455px;
  }
  .leadin-popup.type-corner.position-left .leadin-img-wrapper {
    margin-left: 0;
  }
  .leadin-popup.type-corner.position-left .leadin-img-wrapper ~ .leadin-content,
  .leadin-popup.type-corner.position-left .leadin-img-wrapper ~ .leadin-success {
    width: calc(100% - 120px);
  }
  .leadin-popup.type-popup {
    padding: 0 0 40px 0;
  }
  .leadin-popup.type-popup .control-buttons {
    top: 40px;
    right: 40px;
  }
  .leadin-popup.type-popup .leadin-content,
  .leadin-popup.type-popup .leadin-form,
  .leadin-popup.type-popup .leadin-success {
    padding: 40px 40px 0 40px;
  }
}
@media all and (min-width: 481px) {
  .leadin-form.hidden-modal {
    padding: 20px 40px;
  }
}
