@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Inter:400,500,900&display=swap');
/* 
	layout.less
	Project: 945 Developments (WSP1)
*/
/*------ imports ------*/
/* 
	global.less
	
*/
/*------ imports ------*/
/*
	core.less

*/
/*------ responsive ------*/
/*------ imports ------*/
/* 
	mixins.less

*/
/*------ typography ------*/
/*------ 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;
}
.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;
  }
}
/*------ 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(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-right {
  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);
  }
}
/*---- 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% {
    background-clip: padding-box;
    -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% {
    background-clip: padding-box;
    -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;
}
/*---- landing page animations ----*/
body.landing-page .landing-form-wrapper {
  opacity: 0;
}
body.landing-page .landing-form-wrapper.animated {
  -webkit-animation: fade-in 0.4s ease-out 0.5s;
  animation: fade-in 0.4s ease-out 0.5s;
  -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%;
}
main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
/*------ typography ------*/
body,
th,
td,
body.landing-page #page-hero #page-header .page-subtitle {
  line-height: 1.6;
  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,
body.landing-page .landing-form-wrapper .landing-form-title,
body.landing-page #page-hero #page-header h1,
.panel .panel-header h1 {
  padding: 0;
  font-weight: normal;
  line-height: 1;
  letter-spacing: -0.025em;
}
h1 {
  margin: 0;
}
h2,
body.landing-page #page-hero #page-header h1 {
  margin: 0 0 40px;
}
h3,
body.landing-page .landing-form-wrapper .landing-form-title {
  margin: 0 0 25px;
}
h4 {
  margin: 0 0 20px;
}
h5,
.panel .panel-header h1 {
  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: 20px;
}
p + h3,
ul + h3,
ol + h3,
table + h3,
blockquote + h3 {
  margin-top: 15px;
}
p + h4,
ul + h4,
ol + h4,
table + h4,
blockquote + h4 {
  margin-top: 10px;
}
p + h5,
ul + h5,
ol + h5,
table + h5,
blockquote + h5 {
  margin-top: 5px;
}
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: 0 0 20px 0;
}
table {
  border-collapse: collapse;
  margin: 10px 0 30px;
}
table.responsive label {
  display: none;
  margin: 0;
}
@media all and (max-width: 768px) {
  table {
    width: 100% !important;
    border: 1px solid #ccc;
  }
  table.responsive tr.header-row,
  table.responsive th {
    display: none;
  }
  table.responsive td {
    display: block;
    width: auto !important;
    text-align: left;
  }
  table.responsive label {
    display: inline-block;
    font-weight: bold;
  }
}
/*------ forms ------*/
label {
  display: block;
}
.input,
.select,
.textarea,
.button {
  border: 1px solid #ccc;
  background: #fff;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: normal;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 20px;
  margin: 0 0 10px;
  height: 60px;
  max-width: 100%;
  outline: none;
  border-radius: 0;
  -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,
.button::-webkit-input-placeholder {
  color: inherit;
}
.input:-ms-input-placeholder,
.select:-ms-input-placeholder,
.textarea:-ms-input-placeholder,
.button:-ms-input-placeholder {
  color: inherit;
}
.input::-ms-input-placeholder,
.select::-ms-input-placeholder,
.textarea::-ms-input-placeholder,
.button::-ms-input-placeholder {
  color: inherit;
}
.input::placeholder,
.select::placeholder,
.textarea::placeholder,
.button::placeholder {
  color: inherit;
}
.select {
  background-image: url("../../images/ui/select-arrow.png");
  background-position: calc(100% - 10px) calc(50% + 2px);
  background-repeat: no-repeat;
}
select::-ms-expand {
  display: none;
}
:root .select {
  padding: 10px 0px 10px 20px;
}
.textarea {
  height: 130px;
  resize: none;
  overflow: auto;
}
.button,
a.button {
  cursor: pointer;
  width: auto;
  display: inline-block;
  padding: 0 20px;
  margin: 0;
  line-height: 60px;
}
.button .fas,
a.button .fas {
  margin-right: 8px;
}
.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;
}
.radio + label:before {
  border-radius: 50%;
  font-size: 10px;
  text-indent: 1px;
}
.checkbox + label:before,
.radio + label:before {
  content: " ";
}
.checkbox:checked + label:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00c";
}
.radio:checked + label:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  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.9);
  -webkit-transform: scale(0.9) rotate(0.02deg);
  -moz-transform: scale(0.9) rotate(0.02deg);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}
.g-recaptcha div {
  margin: 0 auto;
}
/*---- 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(0, 0, 0, 0.5);
}
.ui-dialog {
  position: absolute;
  z-index: 9999;
  top: 0;
  left: 0;
  padding: 0;
  overflow: hidden;
  max-width: calc(100% - 40px);
  outline: none !important;
  background: #fff;
  text-shadow: none;
  border: 1px solid #fff;
  font-size: 18px;
}
.ui-dialog .ui-dialog-titlebar {
  padding: 15px;
  position: relative;
  background: #333;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 900;
}
.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: 18px;
  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: 15px;
  background: none;
  overflow: auto;
  zoom: 1;
  min-height: inherit;
}
.ui-dialog .ui-dialog-buttonpane {
  text-align: left;
  border-width: 1px 0 0 0;
  background-image: none;
  margin: 10px 0 0 0;
  padding: 5px;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  float: right;
}
.ui-dialog .ui-dialog-buttonpane button {
  margin: 10px 10px 10px 0;
  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;
}
.ui-dialog .ui-dialog-buttonpane button:hover {
  background: #999;
}
.ui-dialog .ui-resizable-se {
  width: 14px;
  height: 14px;
  right: 3px;
  bottom: 3px;
}
/* 
	definitions.less
	
*/
/*------ typography ------*/
html {
  font-size: 16px;
}
body,
th,
td,
body.landing-page #page-hero #page-header .page-subtitle {
  font-size: 16px;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  color: #666666;
}
.font-style {
  font-style: normal;
}
.bold {
  font-weight: 500;
}
.black {
  font-weight: 900;
}
body {
  font-style: normal;
}
a {
  color: #6777ba;
}
a:hover,
a:active {
  color: #31438c;
}
h1,
h2,
h3,
h4,
h5,
h6,
body.landing-page .landing-form-wrapper .landing-form-title,
body.landing-page #page-hero #page-header h1,
.panel .panel-header h1 {
  line-height: 1.2;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-style: normal;
}
h1 {
  font-size: 32px;
  font-size: 2rem;
  color: #ffffff;
}
h2,
body.landing-page #page-hero #page-header h1 {
  font-size: 32px;
  font-size: 2rem;
  color: #31438c;
}
h3,
body.landing-page .landing-form-wrapper .landing-form-title {
  font-size: 24px;
  font-size: 1.5rem;
  color: #333333;
}
h4 {
  font-size: 21px;
  font-size: 1.3125rem;
  color: #6777ba;
}
h5,
.panel .panel-header h1 {
  font-size: 18px;
  font-size: 1.125rem;
  color: #1f1a33;
  line-height: 1.2;
}
h6 {
  font-size: 16px;
  font-size: 1rem;
  color: #333333;
  line-height: 1.2;
}
small {
  font-size: 14px;
  font-size: 0.875rem;
  color: #a19f9a;
}
blockquote,
quote {
  border-left: 5px solid rgba(103, 119, 186, 0.25);
  padding: 20px 30px;
  margin: 10px 0 30px;
  font-size: 140%;
  line-height: 1.2;
  color: #1f1a33;
  font-weight: 500;
}
blockquote p,
quote p {
  padding: 0;
}
::-moz-selection {
  background: #1f1a33;
  color: #ffffff;
}
::selection {
  background: #1f1a33;
  color: #ffffff;
}
::-moz-selection {
  background: #1f1a33;
  color: #ffffff;
}
.gradient-text {
  color: #31438c;
  background-color: #6777ba;
  background-image: -webkit-gradient(linear, left top, right top, from(#31438c), color-stop(50%, #6777ba), to(#31438c));
  background-image: linear-gradient(to right, #31438c 0%, #6777ba 50%, #31438c 100%);
  background-clip: text;
  background-size: 200% auto;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .gradient-text {
    /* IE10+ CSS styles go here */
    background: transparent;
  }
}
.button,
a.button {
  height: auto;
  padding: 15px 25px;
  margin: 1px;
  border: 0;
  color: #ffffff;
  background: #31438c;
  line-height: 1.4;
  font-weight: 900;
  font-style: normal;
  text-transform: uppercase;
  font-size: 14px;
  font-size: 0.875rem;
  -webkit-transition: color 0.3s ease 0s, border-color 0.3s ease 0s, background-color 0.3s ease 0s;
  transition: color 0.3s ease 0s, border-color 0.3s ease 0s, background-color 0.3s ease 0s;
  border-radius: 4px;
}
.button:hover,
a.button:hover,
.button:active,
a.button:active {
  background: #6777ba;
  border-color: #6777ba;
  color: #ffffff;
}
.button.simple,
a.button.simple {
  padding: 10px 15px;
  margin: 1px;
  font-weight: 400;
  background-color: transparent;
  border: 1px solid #31438c;
  font-weight: 500;
  color: #31438c;
  font-size: 14px;
  font-size: 0.875rem;
}
.button.simple:hover,
a.button.simple:hover,
.button.simple:active,
a.button.simple:active {
  background: #31438c;
  border-color: #31438c;
  color: #ffffff;
}
@media all and (min-width: 1025px) {
  .button,
  a.button {
    padding: 22px 35px;
  }
}
@media all and (min-width: 481px) {
  h1 {
    font-size: 48px;
    font-size: 3rem;
  }
  h2,
  body.landing-page #page-hero #page-header h1 {
    font-size: 48px;
    font-size: 3rem;
  }
  .side h2 {
    font-size: 36px;
    font-size: 2.25rem;
  }
  h3,
  body.landing-page .landing-form-wrapper .landing-form-title {
    font-size: 30px;
    font-size: 1.875rem;
  }
  .side h3 {
    font-size: 24px;
    font-size: 1.5rem;
  }
  h4 {
    font-size: 24px;
    font-size: 1.5rem;
  }
  h5,
  .panel .panel-header h1 {
    font-size: 21px;
    font-size: 1.3125rem;
  }
  h6 {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media all and (min-width: 1025px) {
  body,
  th,
  td,
  body.landing-page #page-hero #page-header .page-subtitle {
    font-size: 18px;
    font-size: 1.125rem;
  }
  h1 {
    font-size: 60px;
    font-size: 3.75rem;
  }
  h2,
  body.landing-page #page-hero #page-header h1 {
    font-size: 60px;
    font-size: 3.75rem;
  }
  .side h2 {
    font-size: 42px;
    font-size: 2.625rem;
  }
  h3,
  body.landing-page .landing-form-wrapper .landing-form-title {
    font-size: 36px;
    font-size: 2.25rem;
  }
  .side h3 {
    font-size: 28px;
    font-size: 1.75rem;
  }
  h4 {
    font-size: 28px;
    font-size: 1.75rem;
  }
  h5,
  .panel .panel-header h1 {
    font-size: 24px;
    font-size: 1.5rem;
  }
  h6 {
    font-size: 21px;
    font-size: 1.3125rem;
  }
  blockquote,
  quote {
    padding: 40px 50px;
    margin: 20px 0 50px;
    font-size: 140%;
  }
}
@media all and (min-width: 1921px) {
  h1 {
    font-size: 72px;
    font-size: 4.5rem;
  }
}
/*------ interface ------*/
table th {
  background-color: #31438c;
  color: #ffffff;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-style: normal;
}
table tr:nth-child(2n+1) td {
  background: #f7f7f6;
}
/*------ email template ------*/
body.email-template {
  background: #eee;
  max-width: none;
}
body.email-template #email-wrapper {
  margin: 0 auto;
}
body.email-template #email-wrapper #email-header {
  padding: 30px 0;
  background: none;
}
body.email-template #email-wrapper #email-header img {
  display: block;
  margin: 0 auto;
}
body.email-template #email-wrapper #email-content {
  padding: 0 0 30px;
  background: none;
}
body.email-template #email-wrapper #email-content #email-content-inner {
  background: #fff;
  padding: 30px 30px 10px;
  border-radius: 10px;
}
body.email-template #email-wrapper #email-footer {
  padding: 20px 0;
  background: none;
  border: 0 !important;
  border-top: 1px solid #ccc !important;
  text-align: center;
}
/* 
	animations.less
	
*/
/*------ fadeup ------*/
@-webkit-keyframes fadeup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@keyframes fadeup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@-webkit-keyframes faderight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-60px);
    transform: translateX(-60px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}
@keyframes faderight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-60px);
    transform: translateX(-60px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}
@-webkit-keyframes zoom {
  0% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
  100% {
    -webkit-transform: scale(1.1) rotate(-0.02deg);
    transform: scale(1.1) rotate(-0.02deg);
  }
}
@keyframes zoom {
  0% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
  100% {
    -webkit-transform: scale(1.1) rotate(-0.02deg);
    transform: scale(1.1) rotate(-0.02deg);
  }
}
#page-hero #page-header,
#slideshow #page-header,
#page-hero .slide-content,
#slideshow .slide-content {
  opacity: 0;
}
#page-hero.animated #page-header,
#slideshow.animated #page-header,
#page-hero.animated .slide-content,
#slideshow.animated .slide-content {
  -webkit-animation: fadeup 0.6s ease-out 0.2s;
  animation: fadeup 0.6s ease-out 0.2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
#page-hero.animated .cycle-slide .responsive-bg,
#slideshow.animated .cycle-slide .responsive-bg,
#page-hero.animated #page-hero-image .responsive-bg,
#slideshow.animated #page-hero-image .responsive-bg {
  -webkit-animation: zoom 30s ease 0s;
  animation: zoom 30s ease 0s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
#scroll-down-btn {
  opacity: 0;
}
#scroll-down-btn.animated {
  -webkit-animation: fadeup 0.6s ease-out 0.4s;
  animation: fadeup 0.6s ease-out 0.4s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.panel.standard,
.panel.side,
.panel.parallax .panel-content,
.panel.cta .panel-header,
.panel.cta .button,
.overlay.arrow,
.promo-box {
  opacity: 0;
}
.animated .slide-content,
.animated.panel.standard,
.animated.panel.side,
.animated.panel.parallax .panel-content,
.animated.panel.cta .panel-header {
  -webkit-animation: fadeup 0.6s ease-out 0.4s;
  animation: fadeup 0.6s ease-out 0.4s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.animated.panel.cta .button:first-child {
  -webkit-animation: fadeup 0.6s ease-out 0.7s;
  animation: fadeup 0.6s ease-out 0.7s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.animated.panel.cta .button:last-child {
  -webkit-animation: fadeup 0.6s ease-out 1s;
  animation: fadeup 0.6s ease-out 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.animated.promo-box {
  -webkit-animation: fadeup 0.6s ease-out 0s;
  animation: fadeup 0.6s ease-out 0s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.animated.promo-box:nth-child(2n) {
  -webkit-animation: fadeup 0.6s ease-out 0.3s;
  animation: fadeup 0.6s ease-out 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.animated.promo-box:nth-child(3n) {
  -webkit-animation: fadeup 0.6s ease-out 0.6s;
  animation: fadeup 0.6s ease-out 0.6s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.animated .overlay.arrow {
  -webkit-animation: faderight 0.6s ease-out 0.7s;
  animation: faderight 0.6s ease-out 0.7s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
#body-content .panel:first-child {
  opacity: 1;
  -webkit-animation: fadeup 0s ease-out 0s;
  animation: fadeup 0s ease-out 0s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
/*------ scaleup ------*/
@-webkit-keyframes scaleup {
  0% {
    opacity: 0;
    transform: scale(0.5);
    -webkit-transform: scale(0.5) rotate(0.02deg);
    -moz-transform: scale(0.5) rotate(0.02deg);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1) rotate(0.02deg);
    -moz-transform: scale(1) rotate(0.02deg);
  }
}
@keyframes scaleup {
  0% {
    opacity: 0;
    transform: scale(0.5);
    -webkit-transform: scale(0.5) rotate(0.02deg);
    -moz-transform: scale(0.5) rotate(0.02deg);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1) rotate(0.02deg);
    -moz-transform: scale(1) rotate(0.02deg);
  }
}
.panel.gallery .dynamic-gallery .gal-item {
  opacity: 0;
}
.panel.gallery .dynamic-gallery .gal-item.animated {
  -webkit-animation: scaleup 0.5s ease-out 0s;
  animation: scaleup 0.5s ease-out 0s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
/*------ spinner ------*/
@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
body.landing-page #page-navigation + #nav-push,
body.landing-page #page-navigation + #push,
body.landing-page #page-contact-top,
body.landing-page #page-navigation,
body.landing-page #page-contact,
body.landing-page #breadcrumbs {
  display: none;
}
body.landing-page #page-logo {
  padding: 20px;
  margin: auto;
  background: #ffffff;
  border-radius: 0 0 5px 5px;
}
body.landing-page .landing-form-wrapper,
body.landing-page #page-logo {
  display: block;
  position: relative;
  z-index: 100;
  border-radius: 5px;
}
body.landing-page #page-hero {
  display: block;
  height: auto;
  min-height: 0 !important;
  max-height: none;
  padding-top: 0;
}
body.landing-page #page-hero .landing-banner-container {
  padding: 30px 0;
}
body.landing-page #page-hero .landing-banner-container .landing-form-wrapper {
  position: relative;
  z-index: 100;
}
body.landing-page #page-hero.landing-banner .container {
  position: static;
  margin: auto;
}
body.landing-page #page-hero #page-header {
  position: relative;
  padding: 0;
  z-index: 100;
}
body.landing-page #page-hero .overlay:only-child {
  opacity: 1;
}
body.landing-page #page-hero #page-header .page-title {
  margin: 0;
}
body.landing-page #page-hero #page-header .page-subtitle {
  margin: 15px 0 0;
  padding: 0 0 15px;
}
body.landing-page #page-hero #page-header .page-buttons {
  margin: 15px 0 0;
  -webkit-box-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}
body.landing-page #page-hero.layout-row #page-header {
  text-align: left;
}
body.landing-page #page-hero.layout-row .landing-form-wrapper .button {
  width: 100%;
}
body.landing-page #page-hero.layout-column {
  text-align: center;
}
body.landing-page #page-hero.layout-column #page-header {
  text-align: inherit;
}
body.landing-page #page-hero.layout-column .landing-form-wrapper {
  max-width: 800px;
  margin: 40px auto 0;
}
body.landing-page #page-hero.layout-column .landing-form-wrapper .button {
  margin-left: auto;
  margin-right: auto;
}
body.landing-page .landing-form-wrapper {
  margin: 40px 0 0;
  padding: 20px;
  background: #ffffff;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-shadow: none;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(11, 11, 11, 0.35);
  box-shadow: 0px 0px 15px 0px rgba(11, 11, 11, 0.35);
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
body.landing-page .landing-form-wrapper form {
  -webkit-box-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}
body.landing-page .landing-form-wrapper .landing-form-title {
  margin: 0 0 10px;
}
body.landing-page .landing-form-wrapper .input,
body.landing-page .landing-form-wrapper .select,
body.landing-page .landing-form-wrapper .textarea {
  display: block;
  width: 100%;
  color: #a19f9a;
  border: 1px solid #cccccc;
}
body.landing-page .landing-form-wrapper .input::-webkit-input-placeholder,
body.landing-page .landing-form-wrapper .select::-webkit-input-placeholder,
body.landing-page .landing-form-wrapper .textarea::-webkit-input-placeholder {
  color: #a19f9a;
}
body.landing-page .landing-form-wrapper .input:-ms-input-placeholder,
body.landing-page .landing-form-wrapper .select:-ms-input-placeholder,
body.landing-page .landing-form-wrapper .textarea:-ms-input-placeholder {
  color: #a19f9a;
}
body.landing-page .landing-form-wrapper .input::-ms-input-placeholder,
body.landing-page .landing-form-wrapper .select::-ms-input-placeholder,
body.landing-page .landing-form-wrapper .textarea::-ms-input-placeholder {
  color: #a19f9a;
}
body.landing-page .landing-form-wrapper .input::placeholder,
body.landing-page .landing-form-wrapper .select::placeholder,
body.landing-page .landing-form-wrapper .textarea::placeholder {
  color: #a19f9a;
}
body.landing-page .landing-form-wrapper .input:focus,
body.landing-page .landing-form-wrapper .select:focus,
body.landing-page .landing-form-wrapper .textarea:focus {
  color: #545350;
  border-color: #545350;
}
body.landing-page .landing-form-wrapper .input.error,
body.landing-page .landing-form-wrapper .select.error,
body.landing-page .landing-form-wrapper .textarea.error {
  border-color: #c70000;
  color: #c70000;
}
body.landing-page .landing-form-wrapper .button {
  display: block;
  margin: 20px 0 0 auto;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-shadow: none;
}
body.landing-page #page-hero #page-header .page-subtitle,
body.landing-page #page-hero #page-header h1 {
  color: #ffffff;
}
body.landing-page #page-hero #page-header .page-subtitle {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
}
@media all and (min-width: 769px) {
  body.landing-page #page-logo {
    margin: 0;
  }
  body.landing-page #page-hero.layout-column .landing-form-wrapper .landing-form-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: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  body.landing-page #page-hero.layout-column .landing-form-wrapper .landing-form-container .form-field {
    -webkit-box-flex: 0 1 50%;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
    width: 50%;
  }
  body.landing-page #page-hero.layout-column .landing-form-wrapper .landing-form-container .form-field:nth-child(odd) {
    padding-right: 5px;
  }
  body.landing-page #page-hero.layout-column .landing-form-wrapper .landing-form-container .form-field:nth-child(even) {
    padding-left: 5px;
  }
  body.landing-page #page-hero.layout-column .landing-form-wrapper .landing-form-container .form-field.full {
    padding-left: 0px;
    width: 100%;
    -webkit-box-flex: 0 1 100%;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
@media all and (min-width: 1025px) {
  body.landing-page #page-hero .landing-banner-container {
    margin-top: -80px;
    padding: 60px 0;
  }
  body.landing-page #page-hero.layout-row .landing-banner-container {
    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: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  body.landing-page #page-hero.layout-row .landing-banner-container #page-header {
    -webkit-box-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }
  body.landing-page #page-hero.layout-row .landing-banner-container .landing-form-wrapper {
    margin: 0 0 0 40px;
    width: calc(50% - 40px);
    -webkit-box-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  body.landing-page .landing-form-wrapper {
    padding: 30px;
  }
  body.landing-page .landing-form-wrapper .landing-form-description {
    padding: 0 0 30px;
  }
}
/*---- globals ------*/
.fluid-min,
.fluid-max {
  position: relative;
  margin: 0 auto;
}
.fluid-min {
  max-width: 1280px;
}
.fluid-max {
  max-width: 1580px;
}
.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.5;
  filter: alpha(opacity=50);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
}
.overlay.overlay-theme1 {
  background-color: #31438c;
}
.overlay.overlay-theme2 {
  background-color: #6777ba;
}
.overlay.overlay-gradient {
  background: #31438c;
  background: -webkit-gradient(left bottom, right top, color-stop(0%, #31438c), color-stop(100%, #6777ba));
  background: linear-gradient(45deg, #31438c 0%, #6777ba 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#31438c', endColorstr='#6777ba', GradientType=1);
}
.overlay.overlay-black {
  background-color: #000;
}
.overlay.overlay-transparent {
  background-color: transparent;
}
.overlay.solid {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
}
.overlay.arrow {
  background: url("../../images/ui/overlay-dark.png") 0 25% no-repeat;
  z-index: 2;
}
.overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: background-color 0.3s, opacity 0.3s;
  transition: background-color 0.3s, opacity 0.3s;
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, right top, from(rgba(17, 17, 17, 0.7)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, rgba(17, 17, 17, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#111111', endColorstr='#00000000', GradientType=1);
  /* IE6-9 */
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
}
.overlay-gradient.overlay-theme1 {
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, right top, from(rgba(49, 67, 140, 0.7)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, rgba(49, 67, 140, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#31438c', endColorstr='#00000000', GradientType=1);
  /* IE6-9 */
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
}
.overlay-gradient.overlay-theme2 {
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, right top, from(rgba(103, 119, 186, 0.7)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, rgba(103, 119, 186, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#6777ba', endColorstr='#00000000', GradientType=1);
  /* IE6-9 */
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
}
.overlay-gradient.overlay-black {
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, right top, from(rgba(17, 17, 17, 0.7)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, rgba(17, 17, 17, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#111111', endColorstr='#00000000', GradientType=1);
  /* IE6-9 */
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
}
.overlay-gradient.overlay-transparent {
  background-color: transparent;
}
.hpadding-s {
  padding-left: 20px;
  padding-right: 20px;
}
.hpadding-m {
  padding-left: 30px;
  padding-right: 30px;
}
.hpadding-l {
  padding-left: 40px;
  padding-right: 40px;
}
.text-large {
  color: #ffffff;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 180%;
  line-height: 1.2;
}
.text-medium {
  color: #ffffff;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 180%;
  line-height: 1.2;
  font-size: 140%;
  margin-top: 10px;
}
/*------ forms ------*/
form .input,
form .select,
form .textarea {
  width: 100%;
  height: 60px;
  font-style: normal;
  font-weight: 500;
}
form .input::-webkit-input-placeholder,
form .select::-webkit-input-placeholder,
form .textarea::-webkit-input-placeholder {
  font-weight: 400;
}
form .input:-ms-input-placeholder,
form .select:-ms-input-placeholder,
form .textarea:-ms-input-placeholder {
  font-weight: 400;
}
form .input::-ms-input-placeholder,
form .select::-ms-input-placeholder,
form .textarea::-ms-input-placeholder {
  font-weight: 400;
}
form .input::placeholder,
form .select::placeholder,
form .textarea::placeholder {
  font-weight: 400;
}
form .input.error,
form .select.error,
form .textarea.error {
  color: #c70000;
  border-color: #c70000;
}
form .input.error::-webkit-input-placeholder,
form .select.error::-webkit-input-placeholder,
form .textarea.error::-webkit-input-placeholder {
  color: #c70000;
  opacity: 1;
}
form .input.error:-ms-input-placeholder,
form .select.error:-ms-input-placeholder,
form .textarea.error:-ms-input-placeholder {
  color: #c70000;
  opacity: 1;
}
form .input.error::-ms-input-placeholder,
form .select.error::-ms-input-placeholder,
form .textarea.error::-ms-input-placeholder {
  color: #c70000;
  opacity: 1;
}
form .input.error::placeholder,
form .select.error::placeholder,
form .textarea.error::placeholder {
  color: #c70000;
  opacity: 1;
}
form .textarea {
  height: 160px;
  padding-top: 20px;
}
.button,
a.button {
  border: 1px solid #ffffff;
  color: #31438c;
  background: #ffffff;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-shadow: 0px 2px 15px transparent;
}
.button:hover,
a.button:hover,
.button:active,
a.button:active {
  background: #31438c;
  border-color: #31438c;
  color: #ffffff;
}
.button span.tollfree::before,
a.button span.tollfree::before,
.button span.mailto::before,
a.button span.mailto::before,
.button span.phone::before,
a.button span.phone::before {
  line-height: 1;
}
.button span.tollfree::before,
a.button span.tollfree::before,
.button span.phone::before,
a.button span.phone::before {
  font-style: normal;
  padding-right: 8px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f3cd";
}
.button span.mailto::before,
a.button span.mailto::before {
  font-style: normal;
  padding-right: 8px;
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  content: "\f0e0";
}
.button.inverse,
a.button.inverse,
.button-container .button,
.panel.parallax.theme-black .button,
a.panel.parallax.theme-black .button,
#page-hero.theme-black .button,
a#page-hero.theme-black .button,
body.landing-page #page-hero .landing-form-wrapper .button,
abody.landing-page #page-hero .landing-form-wrapper .button,
#slideshow .cycle-slideshow .slide .slide-content .slide-buttons .button,
.panel.cta .panel-buttons .button {
  color: #ffffff;
  background: #31438c;
  border-color: #31438c;
}
.button.inverse:hover,
a.button.inverse:hover,
.button.inverse:active,
a.button.inverse:active,
.button-container .button ~ .button:hover,
.button-container .button:hover,
.panel.parallax.theme-black .button:hover,
a.panel.parallax.theme-black .button:hover,
.panel.parallax.theme-black .button:active,
a.panel.parallax.theme-black .button:active,
#page-hero.theme-black .button:hover,
a#page-hero.theme-black .button:hover,
#page-hero.theme-black .button:active,
a#page-hero.theme-black .button:active,
body.landing-page #page-hero .landing-form-wrapper .button:hover,
abody.landing-page #page-hero .landing-form-wrapper .button:hover,
body.landing-page #page-hero .landing-form-wrapper .button:active,
abody.landing-page #page-hero .landing-form-wrapper .button:active,
#slideshow .cycle-slideshow .slide .slide-content .slide-buttons .button ~ .button:hover,
#slideshow .cycle-slideshow .slide .slide-content .slide-buttons .button:hover,
.panel.cta .panel-buttons .button ~ .button:hover,
.panel.cta .panel-buttons .button:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #31438c;
}
.button.border:hover,
a.button.border:hover,
.button.border:active,
a.button.border:active,
.panel.parallax.theme-gradient.noimage .button,
.panel.cta.theme-gradient.noimage .button,
#page-hero.theme-gradient.noimage .button,
.panel.parallax.theme-theme1.noimage .button,
.panel.cta.theme-theme1.noimage .button,
#page-hero.theme-theme1.noimage .button,
body.landing-page #page-hero .landing-form-wrapper .button:hover {
  border-color: currentColor;
}
.button.solid,
a.button.solid,
.panel.standard .panel-text .button:not(.simple),
a.panel.standard .panel-text .button:not(.simple),
.panel.side .panel-text .button:not(.simple),
a.panel.side .panel-text .button:not(.simple) {
  background: #31438c;
  border-color: transparent;
  color: #ffffff;
}
.button.solid:hover,
a.button.solid:hover,
.panel.standard .panel-text .button:not(.simple):hover,
a.panel.standard .panel-text .button:not(.simple):hover,
.panel.side .panel-text .button:not(.simple):hover,
a.panel.side .panel-text .button:not(.simple):hover {
  background: #6777ba;
}
.button.outline:not(:hover),
a.button.outline:not(:hover),
.button.outline:not(:active),
a.button.outline:not(:active),
.button-container .button ~ .button,
#slideshow .cycle-slideshow .slide .slide-content .slide-buttons .button ~ .button,
.panel.cta .panel-buttons .button ~ .button {
  border-color: currentColor;
  background: rgba(0, 0, 0, 0.25);
}
.button:disabled,
a.button:disabled {
  background: #eee !important;
  border-color: #eee !important;
  color: #ccc !important;
  cursor: default;
}
.button-container,
#slideshow .cycle-slideshow .slide .slide-content .slide-buttons,
.panel.cta .panel-buttons {
  margin-top: -5px;
  margin-left: -5px;
}
.button-container .button,
#slideshow .cycle-slideshow .slide .slide-content .slide-buttons .button,
.panel.cta .panel-buttons .button {
  margin: 5px;
}
.button-container .button ~ .button,
#slideshow .cycle-slideshow .slide .slide-content .slide-buttons .button ~ .button,
.panel.cta .panel-buttons .button ~ .button {
  border-color: #31438c;
}
.panel.parallax.theme-gradient.noimage .button,
.panel.cta.theme-gradient.noimage .button,
#page-hero.theme-gradient.noimage .button,
.panel.parallax.theme-theme1.noimage .button,
.panel.cta.theme-theme1.noimage .button,
#page-hero.theme-theme1.noimage .button {
  border-color: #31438c;
}
.ui-dialog .ui-dialog-buttonpane button {
  font-size: inherit;
  font-style: inherit;
  background-color: #31438c;
}
.ui-dialog .ui-dialog-buttonpane button:hover {
  background-color: #6777ba;
}
.ui-dialog.dialog-error .ui-dialog-titlebar {
  background-color: #c70000;
}
.ui-dialog.dialog-success .ui-dialog-titlebar {
  background-color: #31438c;
}
#contact-form {
  padding-top: 20px;
  font-size: 16px;
  font-size: 1rem;
}
#contact-form label {
  display: none;
}
#contact-form .input,
#contact-form .select,
#contact-form .textarea {
  background-color: rgba(0, 0, 0, 0.5);
  border: 0;
  color: #fff;
}
#contact-form .input:focus,
#contact-form .select:focus,
#contact-form .textarea:focus {
  background-color: #fff;
  color: #31438c;
}
#contact-form .textarea {
  height: 330px;
}
#contact-form .button {
  float: right;
  display: block;
}
#contact-form .button:disabled:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f110";
  font-style: normal;
  display: inline-block;
  position: relative;
  left: -5px;
  -webkit-animation: spinner 1.5s linear infinite;
  animation: spinner 1.5s linear infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
@media all and (min-width: 769px) {
  form .input,
  form .select,
  form .textarea {
    height: 75px;
  }
  form .container {
    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: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  form .container .column {
    width: calc(50% - 5px);
    margin: 0 5px 0 0;
  }
  form .container .column:nth-child(2n) {
    margin: 0 0 0 5px;
  }
  #contact-form {
    font-size: 21px;
    font-size: 1.3125rem;
  }
  #contact-form .textarea {
    height: 330px;
  }
}
/*------ navigation ------*/
#page-navigation {
  position: relative;
  z-index: 500;
  background: #ffffff;
  border-bottom: 1px solid rgba(238, 238, 238, 0.75);
}
#page-navigation .container {
  position: relative;
  margin: 0 auto;
  max-width: 1580px;
  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;
  padding: 20px;
}
#page-navigation .container #page-logo img {
  display: block;
  max-width: 150px;
  max-height: 80px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  image-rendering: -moz-crisp-edges;
  /* Firefox */
  image-rendering: -o-crisp-edges;
  /* Opera */
  image-rendering: -webkit-optimize-contrast;
  /* Webkit (non-standard naming) */
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  /* IE (non-standard property) */
}
#page-navigation.stuck {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #31438c;
}
#page-navigation.stuck .container {
  padding: 0;
}
#page-navigation.stuck .container #page-logo {
  position: relative;
  margin-bottom: -20px;
  padding: 20px 30px;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(11, 11, 11, 0.35);
  box-shadow: 0px 0px 15px 0px rgba(11, 11, 11, 0.35);
  border-radius: 0 0 5px 5px;
}
#page-navigation.stuck .container #page-logo img {
  max-width: 160px;
}
#page-navigation.stuck .ddsmoothmenu ul li a {
  font-size: 14px;
  font-size: 0.875rem;
  color: #ffffff;
}
#page-navigation.stuck .ddsmoothmenu ul li a:hover,
#page-navigation.stuck .ddsmoothmenu ul li a:active,
#page-navigation.stuck .ddsmoothmenu ul li a.selected {
  color: #6777ba;
}
#page-navigation.stuck .ddsmoothmenu ul li ul li a {
  color: #ffffff;
  background: #6777ba;
}
#page-navigation.stuck .ddsmoothmenu ul li ul li a:hover,
#page-navigation.stuck .ddsmoothmenu ul li ul li a:active,
#page-navigation.stuck .ddsmoothmenu ul li ul li a.selected {
  color: #ffffff;
  background-color: #1f1a33;
}
#page-navigation.stuck .ddsmoothmenu ul li.highlight a {
  background: #ffffff;
  color: #31438c;
  border: 1px solid #ffffff;
}
#page-navigation.stuck .ddsmoothmenu ul li.highlight a:hover,
#page-navigation.stuck .ddsmoothmenu ul li.highlight a:active,
#page-navigation.stuck .ddsmoothmenu ul li.highlight a.selected {
  background: #31438c;
  color: #ffffff;
  border: 1px solid #ffffff;
}
#main-navigation {
  display: none;
  text-align: right;
  font-size: 18px;
  font-size: 1.125rem;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 900;
  -webkit-box-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.ddsmoothmenu ul {
  z-index: 100;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.ddsmoothmenu ul li {
  position: relative;
  display: inline-block;
  float: none;
  text-align: left;
}
.ddsmoothmenu ul li a {
  display: block;
  margin: 1px;
  padding: 8px 16px;
  text-decoration: none;
  text-transform: uppercase;
  color: #31438c;
  border-radius: 5px;
  font-size: 16px;
  font-size: 1rem;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.ddsmoothmenu ul li a:hover,
.ddsmoothmenu ul li a:active,
.ddsmoothmenu ul li a.selected {
  color: #6777ba;
}
.ddsmoothmenu ul li.active > a {
  color: #6777ba;
}
.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 {
  width: 250px;
  margin: 0;
  color: #ffffff;
  background: #31438c;
}
.ddsmoothmenu ul li ul li a:hover,
.ddsmoothmenu ul li ul li a:active,
.ddsmoothmenu ul li ul li a.selected {
  color: #ffffff;
  background-color: #6777ba;
}
.ddsmoothmenu ul li ul li.active > a {
  color: #ffffff;
  background-color: #6777ba;
}
.ddsmoothmenu ul li ul li ul {
  top: 0;
}
.ddsmoothmenu ul li.menu-header {
  display: none;
}
.ddsmoothmenu ul li.highlight a {
  background: #31438c;
  color: #ffffff;
  border: 1px solid #31438c;
}
.ddsmoothmenu ul li.highlight a:hover,
.ddsmoothmenu ul li.highlight a:active,
.ddsmoothmenu ul li.highlight a.selected {
  background: #ffffff;
  color: #6777ba;
  border: 1px solid #6777ba;
}
.ddsmoothmenu ul li.highlight ul li a {
  color: #ffffff;
  background: #31438c;
}
.ddsmoothmenu ul li.highlight ul li a:hover,
.ddsmoothmenu ul li.highlight ul li a:active,
.ddsmoothmenu ul li.highlight ul li a.selected {
  color: #ffffff;
  background-color: #6777ba;
}
.ddsmoothmenu > ul > li.highlight {
  margin: 0 5px;
}
* html .ddsmoothmenu ul li a {
  display: inline-block;
}
* html .ddsmoothmenu {
  height: 1%;
}
#more-link .more-icon::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f141";
}
#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: 1;
  top: 0;
  width: auto;
  margin-left: 20px;
  min-height: 100%;
  zoom: 1;
  cursor: default;
  background: #eeeeee;
}
.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;
  padding: 0;
  border-bottom: 1px solid #cccccc;
  white-space: nowrap;
}
.mblmenu .backItemClass a {
  padding-left: 50px;
  font-size: 14px;
  font-size: 0.875rem;
  color: #a19f9a;
}
.mblmenu .backItemClass .fas {
  background: none !important;
  color: #a19f9a;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.mblmenu .backItemClass:hover .fas {
  color: #6777ba;
}
.mblmenu .fas {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 50px;
  background: #6777ba;
  color: #ffffff;
  font-size: 16px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.mblmenu .fas:before {
  position: absolute;
  top: 50%;
  margin-top: -8px;
  left: 0;
  right: 0;
  text-align: center;
}
.mblmenu .fa-times {
  font-size: 14px;
}
.mblmenu .more-icon {
  left: auto;
  right: 0;
}
.mblmenu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mblmenu li {
  cursor: pointer;
  padding: 0;
  text-align: left !important;
  border-bottom: 1px solid #d0d5ea;
}
.mblmenu li .levelHolderClass {
  -webkit-box-shadow: 0px 0px 15px 0px rgba(11, 11, 11, 0.35);
  box-shadow: 0px 0px 15px 0px rgba(11, 11, 11, 0.35);
}
.mblmenu li a {
  display: block;
  position: relative;
  z-index: 0;
  outline: none;
  overflow: hidden;
  padding: 0;
  padding: 15px 70px 15px 20px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  background: none;
  color: #31438c;
  text-transform: uppercase;
  font-weight: 900;
}
.mblmenu li a:hover,
.mblmenu li a:active {
  color: #6777ba;
}
.mblmenu li a:hover .fas,
.mblmenu li a:active .fas {
  background: #31438c;
}
.mblmenu li.highlight a {
  background: #31438c;
  color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.mblmenu li.highlight a:hover,
.mblmenu li.highlight a:active {
  background: #6777ba;
}
.mblmenu li.highlight .fas {
  background: #ffffff;
  color: #31438c;
}
.mblmenu li.highlight .backItemClass a,
.mblmenu li.highlight .levelHolderClass a {
  background: none;
  color: #ffffff;
}
.mblmenu li.highlight .backItemClass a:hover,
.mblmenu li.highlight .levelHolderClass a:hover,
.mblmenu li.highlight .backItemClass a:active,
.mblmenu li.highlight .levelHolderClass a:active {
  background: #6777ba;
}
.mblmenu li.highlight .backItemClass .fas,
.mblmenu li.highlight .levelHolderClass .fas {
  background: #6777ba !important;
  color: #ffffff !important;
}
.mblmenu li.menu-contact {
  padding: 20px;
  color: #ffffff;
  border: 0;
}
.mblmenu li.menu-contact ul {
  display: block !important;
  visibility: visible !important;
}
.mblmenu li.menu-contact ul li {
  border: 0;
  display: block;
  clear: both;
  font-weight: 500;
  color: #545350;
  text-transform: none;
}
.mblmenu li.menu-contact ul li .label {
  font-size: 0;
}
.mblmenu li.menu-contact ul li .label:before {
  content: "";
  font-size: 14px;
  float: left;
  display: block;
  width: 14px;
  text-align: center;
  padding: 12px 8px 0 0;
  font-style: normal;
  color: #6777ba;
}
.mblmenu li.menu-contact ul li a,
.mblmenu li.menu-contact ul li div {
  padding: 0;
  padding: 8px 0;
  float: left;
  display: block;
  font-weight: 500;
  color: #545350;
  text-transform: none;
}
.mblmenu li.menu-contact ul li a:hover,
.mblmenu li.menu-contact ul li div:hover {
  color: #6777ba;
}
.mblmenu li.menu-contact ul li span.line-1 {
  display: block;
}
.mblmenu li.menu-contact ul li.address .label:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f3c5";
}
.mblmenu li.menu-contact ul li.phone .label:before,
.mblmenu li.menu-contact ul li.tollfree .label:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f3cd";
}
.mblmenu li.menu-contact ul li.fax .label:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f1ac";
}
.mblmenu li.menu-contact ul li.mailto .label:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  content: "\f0e0";
}
#menu-toggle {
  position: absolute;
  width: 30px;
  height: 22px;
  z-index: 500;
  top: 50%;
  right: 20px;
  margin: -11px 0 0 auto;
  cursor: pointer;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
#menu-toggle span {
  position: absolute;
  display: block;
  height: 4px;
  width: 100%;
  background: #6777ba;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.25s ease-in-out 0s;
  transition: all 0.25s ease-in-out 0s;
}
#menu-toggle span:nth-child(1) {
  top: 0px;
}
#menu-toggle span:nth-child(2),
#menu-toggle span:nth-child(3) {
  top: 9px;
}
#menu-toggle span:nth-child(4) {
  top: 18px;
}
#menu-toggle.close span:nth-child(1) {
  top: 9px;
  width: 0%;
  left: 50%;
}
#menu-toggle.close span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#menu-toggle.close span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#menu-toggle.close span:nth-child(4) {
  top: 9px;
  width: 0%;
  left: 50%;
}
#breadcrumbs {
  position: relative;
  margin: 0 auto;
  max-width: 1280px;
  padding: 20px;
  font-size: 14px;
}
#breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
#breadcrumbs ol li {
  display: inline-block;
}
#breadcrumbs ol li a {
  display: inline-block;
  color: #a19f9a;
}
#breadcrumbs ol li a:hover,
#breadcrumbs ol li a:active {
  color: #31438c;
}
#breadcrumbs ol li .arrow {
  padding: 0 5px;
}
#sitemap {
  margin: 0 0 0 20px;
}
#sitemap ul {
  margin: 0 0 0 20px;
  padding: 0;
}
#sitemap ul li.menu-header {
  display: none;
}
#sitemap .fas {
  display: none;
}
@media all and (min-width: 769px) {
  #page-navigation .container #page-logo img {
    max-width: 200px;
  }
  #breadcrumbs {
    padding-left: 30px;
    padding-right: 30px;
    font-size: 16px;
  }
}
@media all and (min-width: 1025px) {
  .ddsmoothmenu {
    display: block !important;
    margin-left: auto;
  }
  #menu-toggle {
    display: none;
  }
  #breadcrumbs {
    padding-left: 40px;
    padding-right: 40px;
  }
}
/*------ header ------*/
#page-contact {
  display: none;
  padding: 20px;
  background: #31438c;
  text-align: right;
}
#page-contact > .container {
  position: relative;
  margin: 0 auto;
  max-width: 1580px;
}
#page-contact ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#page-contact ul li {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
}
#page-contact ul li.fax,
#page-contact ul li.mailto,
#page-contact ul li .label {
  display: none;
}
#page-contact ul li.phone a:before,
#page-contact ul li.tollfree a:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f3cd";
  padding-right: 10px;
}
#page-contact ul li.address a:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f3c5";
  padding-right: 10px;
}
#page-contact ul li a {
  color: #ffffff;
  padding: 5px 10px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#page-contact ul li a:before {
  color: #6777ba;
  font-style: normal;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#page-contact ul li a:hover {
  color: #ffffff;
}
#page-contact ul li a:hover:before {
  color: #ffffff;
}
#page-hero {
  position: relative;
  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;
  min-height: 150px;
  max-height: 250px;
  text-shadow: 0px 2px 15px rgba(11, 11, 11, 0.2);
  border-bottom: 1px solid #fff;
  background: #eeeeee;
}
#page-hero:after {
  content: '';
  min-height: inherit;
  font-size: 0;
  display: block;
}
#page-hero .container {
  display: block;
  width: 100%;
}
#page-hero #page-header {
  position: relative;
  margin: 0 auto;
  max-width: 1280px;
  z-index: 3;
  padding: 30px 20px;
}
#page-hero #page-header .page-subtitle {
  font-size: 18px;
  font-size: 1.125rem;
  margin-top: 10px;
  color: #ffffff;
}
#page-hero #page-header .page-buttons {
  margin-top: 20px;
}
#page-hero #page-hero-image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}
#page-hero #page-hero-image .responsive-bg {
  width: 100%;
  height: 100%;
  background-attachment: scroll;
}
#page-hero #page-hero-image .overlay.arrow {
  top: 0;
  background-size: 80%;
  background-position: 0 20;
}
#page-hero.noimage #page-header h1 {
  color: #31438c;
  text-shadow: 0px 2px 15px transparent;
}
#page-hero.noimage #page-header .page-subtitle {
  color: #333333;
}
#page-hero.noimage #page-hero-image .overlay.arrow {
  background-image: url("../../images/ui/overlay-light.png");
  background-position: 0 -50px;
}
#slideshow {
  position: relative;
  z-index: 1;
  height: auto;
  overflow: hidden;
}
#slideshow .cycle-slideshow {
  position: relative;
  text-shadow: 0px 2px 15px rgba(11, 11, 11, 0.2);
  min-height: 300px;
}
#slideshow .cycle-slideshow .slide {
  position: relative;
  width: 100%;
  min-height: 100%;
  border-bottom: 1px solid #fff;
  display: none;
}
#slideshow .cycle-slideshow .slide.cycle-slide {
  display: block;
}
#slideshow .cycle-slideshow .slide.cycle-slide-active {
  height: 100%;
}
#slideshow .cycle-slideshow .slide .container {
  display: block;
  width: 100%;
  height: 100%;
}
#slideshow .cycle-slideshow .slide .slide-content {
  position: relative;
  margin: 0 auto;
  max-width: 1280px;
  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;
  z-index: 2;
  height: 100%;
  padding: 30px 20px;
}
#slideshow .cycle-slideshow .slide .slide-content .slide-header {
  display: block;
  width: 100%;
}
#slideshow .cycle-slideshow .slide .slide-content .slide-title h2 {
  color: #ffffff;
  margin: 0;
}
#slideshow .cycle-slideshow .slide .slide-content .slide-text {
  color: #ffffff;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 180%;
  line-height: 1.2;
  font-size: 140%;
  margin-top: 10px;
}
#slideshow .cycle-slideshow .slide .slide-content .slide-buttons {
  margin-top: 20px;
}
#slideshow .cycle-slideshow .slide .slide-image,
#slideshow .cycle-slideshow .slide .slide-video {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}
#slideshow .cycle-slideshow .slide .slide-image .responsive-bg,
#slideshow .cycle-slideshow .slide .slide-video .responsive-bg {
  width: 100%;
  height: 100%;
  background-attachment: scroll;
}
#slideshow .cycle-slideshow .slide .slide-video {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  display: none;
}
#slideshow .cycle-slideshow .slideshow-prev-next {
  position: absolute;
  z-index: 500;
  display: none;
  font-style: normal;
  font-size: 60px;
  background: red;
  left: 0;
  right: 0;
  top: calc(50% - 36px);
}
#slideshow .cycle-slideshow .slideshow-prev-next a {
  position: absolute;
  color: rgba(255, 255, 255, 0.25);
  text-shadow: 0 0 0 transparent;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  outline: none;
}
#slideshow .cycle-slideshow .slideshow-prev-next a span {
  display: none;
}
#slideshow .cycle-slideshow .slideshow-prev-next a:hover,
#slideshow .cycle-slideshow .slideshow-prev-next a:active {
  color: #ffffff;
}
#slideshow .cycle-slideshow .slideshow-prev-next #cycle-prev {
  left: 20px;
}
#slideshow .cycle-slideshow .slideshow-prev-next #cycle-prev:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f104";
}
#slideshow .cycle-slideshow .slideshow-prev-next #cycle-next {
  right: 20px;
}
#slideshow .cycle-slideshow .slideshow-prev-next #cycle-next:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
}
#slideshow .slideshow-pager {
  display: none;
}
#slideshow .overlay.arrow {
  z-index: 1;
  top: 5%;
  background-size: 100%;
  background-position: 0 0;
}
#scroll-down-btn {
  position: absolute;
  display: none;
  z-index: 900;
  top: calc(100% - 85px);
  left: calc(50% - 30px);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 30px;
  line-height: 60px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#scroll-down-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}
@media all and (min-width: 481px) {
  #page-hero {
    min-height: 200px;
    max-height: 300px;
  }
  #page-hero #page-header {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  #slideshow .cycle-slideshow {
    min-height: 400px;
  }
  #slideshow .cycle-slideshow .overlay.arrow {
    background-size: 90%;
  }
}
@media all and (min-width: 769px) {
  #page-contact {
    display: block;
    padding: 20px;
  }
  #page-hero {
    max-height: 400px;
  }
  #page-hero #page-header {
    padding-left: 30px;
    padding-right: 30px;
  }
  #page-hero #page-hero-image .overlay.arrow {
    background-size: 50%;
  }
  #page-hero.noimage #page-hero-image .overlay.arrow {
    background-size: 80%;
    background-position: 0 50%;
  }
  #slideshow .cycle-slideshow {
    height: 100%;
  }
  #slideshow .cycle-slideshow .slide .slide-content .slide-header {
    max-width: 60%;
  }
  #slideshow .cycle-slideshow .slideshow-prev-next {
    display: block;
  }
  #slideshow .cycle-slideshow .overlay.arrow {
    top: 15%;
  }
  #scroll-down-btn {
    display: block;
  }
}
@media all and (min-width: 1025px) {
  #page-hero {
    min-height: 250px;
    max-height: 450px;
  }
  #page-hero #page-header {
    padding: 60px 40px;
    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: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #page-hero #page-header .page-subtitle {
    font-size: 24px;
    font-size: 1.5rem;
  }
  #page-hero #page-header .page-buttons {
    margin-top: 0;
  }
  #page-hero #page-hero-image .overlay.arrow {
    background-size: auto;
  }
  #page-hero.noimage #page-hero-image .overlay.arrow {
    background-size: auto;
    background-position: 0 45%;
  }
  #slideshow .cycle-slideshow {
    height: 100%;
  }
  #slideshow .cycle-slideshow .slide .slide-content .slide-text {
    font-size: 24px;
    font-size: 1.5rem;
    margin-top: 20px;
  }
  #slideshow .cycle-slideshow .slide .slide-content .slide-buttons {
    margin-top: 30px;
  }
  #slideshow .cycle-slideshow .overlay.arrow {
    top: 10%;
    background-size: auto;
  }
  .no-touch #slideshow .cycle-slideshow .slide .slide-video {
    display: block;
  }
}
@media all and (min-width: 1367px) {
  #page-hero {
    max-height: 500px;
  }
  #slideshow .cycle-slideshow .slide .slide-content .slide-title h2 {
    font-size: 72px;
    font-size: 4.5rem;
  }
}
/*------ main ------*/
#page-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
#contact-locations {
  margin-top: 40px;
}
#contact-locations .container {
  padding: 0;
}
.contact-information .contact-table {
  border: 0;
}
.contact-information .contact-table th {
  width: 120px;
  font-weight: normal;
  color: #666666;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
}
.contact-information .contact-table th,
.contact-information .contact-table td {
  background: none;
  padding: 0 0 16px;
}
.contact-information .contact-table th {
  width: 26px;
}
.contact-information .contact-table th .label {
  display: none;
}
.contact-information .contact-table th:before {
  font-style: normal;
  color: #6777ba;
  font-size: 16px;
}
.contact-information .contact-table td .title {
  padding-bottom: 6px;
  font-weight: 900;
  color: #1f1a33;
}
.contact-information .contact-table tr.address th {
  vertical-align: top;
}
.contact-information .contact-table tr.address th:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f3c5";
}
.contact-information .contact-table tr.phone th:before,
.contact-information .contact-table tr.phone-alt th:before,
.contact-information .contact-table tr.tollfree th:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f3cd";
}
.contact-information .contact-table tr.fax th:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f1ac";
}
.contact-information .contact-table tr.mailto th:before,
.contact-information .contact-table tr.mailto-alt th:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  content: "\f0e0";
}
.contact-hours .hours-table {
  border: 0;
  margin-top: 0;
}
.contact-hours .hours-table tr th {
  width: 100px;
  font-weight: normal;
  color: #666666;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  font-style: normal;
}
.contact-hours .hours-table tr th,
.contact-hours .hours-table tr td {
  background: none;
  padding: 0 0 6px;
}
.contact-hours .hours-table tr.current th,
.contact-hours .hours-table tr.current td {
  font-weight: 500;
  color: #1f1a33;
}
.contact-hours .open-text,
.contact-hours .closing-text,
.contact-hours .closed-text {
  font-weight: 900;
}
.contact-hours .open-text {
  color: #31438c;
}
.contact-hours .closing-text,
.contact-hours .closed-text {
  color: #c70000;
}
#google-map {
  position: relative;
  width: 100%;
  height: 400px;
}
#google-map .container {
  width: 100%;
  height: 100%;
}
#google-map .container #load-map {
  width: 100%;
  height: 100%;
  background: #e5e3df;
}
#google-map .container #map-buttons {
  position: absolute;
  bottom: 20px;
  left: auto;
  right: 20px;
  text-align: center;
}
#google-map .container #map-buttons a {
  border: 1px solid #ccc;
  background: #fff;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: normal;
  padding: 10px 20px;
  margin: 0 0 10px;
  height: 60px;
  max-width: 100%;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: background-color 0.3s, color 0.3s, border-color 0.3s, color 0.3s ease 0s, border-color 0.3s ease 0s, background-color 0.3s ease 0s;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s, color 0.3s ease 0s, border-color 0.3s ease 0s, background-color 0.3s ease 0s;
  cursor: pointer;
  width: auto;
  display: inline-block;
  padding: 0 20px;
  margin: 0;
  line-height: 60px;
  height: auto;
  padding: 15px 25px;
  margin: 1px;
  border: 0;
  color: #ffffff;
  background: #31438c;
  line-height: 1.4;
  font-weight: 900;
  font-style: normal;
  text-transform: uppercase;
  font-size: 14px;
  font-size: 0.875rem;
  border-radius: 4px;
  border: 1px solid #ffffff;
  color: #31438c;
  background: #ffffff;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-shadow: 0px 2px 15px transparent;
  background-color: #31438c;
  border-color: #31438c;
  color: #ffffff !important;
  margin-bottom: 5px;
}
#google-map .container #map-buttons a::-webkit-input-placeholder {
  color: inherit;
}
#google-map .container #map-buttons a:-ms-input-placeholder {
  color: inherit;
}
#google-map .container #map-buttons a::-ms-input-placeholder {
  color: inherit;
}
#google-map .container #map-buttons a::placeholder {
  color: inherit;
}
#google-map .container #map-buttons a .fas {
  margin-right: 8px;
}
#google-map .container #map-buttons a:hover,
#google-map .container #map-buttons a:active {
  background: #6777ba;
  border-color: #6777ba;
  color: #ffffff;
}
#google-map .container #map-buttons a.simple {
  padding: 10px 15px;
  margin: 1px;
  font-weight: 400;
  background-color: transparent;
  border: 1px solid #31438c;
  font-weight: 500;
  color: #31438c;
  font-size: 14px;
  font-size: 0.875rem;
}
#google-map .container #map-buttons a.simple:hover,
#google-map .container #map-buttons a.simple:active {
  background: #31438c;
  border-color: #31438c;
  color: #ffffff;
}
#google-map .container #map-buttons a:hover,
#google-map .container #map-buttons a:active {
  background: #31438c;
  border-color: #31438c;
  color: #ffffff;
}
#google-map .container #map-buttons a span.tollfree::before,
#google-map .container #map-buttons a span.mailto::before,
#google-map .container #map-buttons a span.phone::before {
  line-height: 1;
}
#google-map .container #map-buttons a span.tollfree::before,
#google-map .container #map-buttons a span.phone::before {
  font-style: normal;
  padding-right: 8px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f3cd";
}
#google-map .container #map-buttons a span.mailto::before {
  font-style: normal;
  padding-right: 8px;
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  content: "\f0e0";
}
#google-map .container #map-buttons a.inverse {
  color: #ffffff;
  background: #31438c;
  border-color: #31438c;
}
#google-map .container #map-buttons a.inverse:hover,
#google-map .container #map-buttons a.inverse:active {
  background: #ffffff;
  border-color: #ffffff;
  color: #31438c;
}
#google-map .container #map-buttons a.border:hover,
#google-map .container #map-buttons a.border:active {
  border-color: currentColor;
}
#google-map .container #map-buttons a.solid {
  background: #31438c;
  border-color: transparent;
  color: #ffffff;
}
#google-map .container #map-buttons a.solid:hover {
  background: #6777ba;
}
#google-map .container #map-buttons a.outline:not(:hover),
#google-map .container #map-buttons a.outline:not(:active) {
  border-color: currentColor;
  background: rgba(0, 0, 0, 0.25);
}
#google-map .container #map-buttons a:disabled {
  background: #eee !important;
  border-color: #eee !important;
  color: #ccc !important;
  cursor: default;
}
#google-map .container #map-buttons a:hover {
  background-color: #6777ba;
  border-color: #6777ba;
}
#switch-location-modal a {
  display: inline-block;
  padding: 5px 0;
  outline: none;
}
#switch-location-modal a:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f3c5";
  padding-right: 6px;
  font-style: normal;
}
#panel-gallery {
  margin-top: 0 !important;
}
.photo-galleries {
  margin-top: 20px;
}
.photo-galleries .container {
  padding: 0 !important;
  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;
}
.photo-galleries .container .gallery-box {
  position: relative;
  width: 100%;
  max-width: 640px;
}
.photo-galleries .container .gallery-box .gallery-hover {
  position: relative;
}
.photo-galleries .container .gallery-box .gallery-hover .gallery-image {
  position: relative;
  z-index: 1;
  display: block;
}
.photo-galleries .container .gallery-box .gallery-hover .gallery-image img {
  display: block;
}
.photo-galleries .container .gallery-box .gallery-hover .gallery-image:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f054";
  position: absolute;
  z-index: 3;
  font-size: 40px;
  line-height: 40px;
  color: #fff;
  font-style: normal;
  top: calc(50% - 20px);
  left: calc(50% - 15px);
  opacity: 0;
  text-shadow: 0 0 20px #000000;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
.photo-galleries .container .gallery-box .gallery-hover .gallery-image .overlay {
  background: #31438c;
  background: -webkit-gradient(left bottom, right top, color-stop(0%, #31438c), color-stop(100%, #6777ba));
  background: linear-gradient(45deg, #31438c 0%, #6777ba 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#31438c', endColorstr='#6777ba', GradientType=1);
  z-index: 2;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
.photo-galleries .container .gallery-box .gallery-hover .gallery-image:hover .overlay {
  opacity: 0.5;
}
.photo-galleries .container .gallery-box .gallery-hover .gallery-image:hover:before {
  opacity: 1;
}
.photo-galleries .container .gallery-box .gallery-content {
  padding: 20px;
}
.photo-galleries .container .gallery-box .gallery-content h3 {
  font-size: 24px;
  font-size: 1.5rem;
  margin: 0 0 10px;
}
.photo-galleries .container .gallery-box .gallery-content h3 a {
  color: #333333;
}
.photo-galleries .container .gallery-box .gallery-content h3 a:hover,
.photo-galleries .container .gallery-box .gallery-content h3 a:active {
  color: #6777ba;
}
.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
  border-color: #31438c;
}
@media all and (min-width: 769px) {
  .photo-galleries .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: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .photo-galleries .container .gallery-box {
    width: 50%;
    padding-right: 10px;
  }
  .photo-galleries .container .gallery-box:nth-child(2n) {
    padding-right: 0;
    padding-left: 10px;
  }
}
/*------ panels ------*/
.panel {
  position: relative;
  padding: 20px 0;
  z-index: 2;
}
.panel .panel-content {
  position: relative;
  z-index: 2;
}
.panel .panel-header h1 {
  text-transform: uppercase;
  font-size: 16px;
  font-size: 1rem;
}
.panel.standard .container,
body.landing-page #page-hero .container {
  position: relative;
  margin: 0 auto;
  max-width: 1280px;
  padding-left: 20px;
  padding-right: 20px;
}
.panel.standard:first-child .container {
  padding-top: 10px;
}
.panel.standard #google-map {
  height: 300px;
  padding-left: 20px;
  padding-right: 20px;
}
.panel.standard #google-map .container {
  border: 1px solid #ccc;
  padding: 10px;
}
.panel.standard #google-map #map-buttons .switch-btn {
  display: none;
}
.panel.standard + .cta {
  margin-top: 80px;
}
.panel.side {
  padding-left: 20px;
  padding-right: 20px;
  overflow: hidden;
}
.panel.side .container {
  position: relative;
  margin: 0 auto;
  max-width: 1580px;
}
.panel.side .panel-content {
  padding: 40px 30px 20px;
}
.panel.side .panel-content h1,
.panel.side .panel-content h2 {
  color: #31438c;
  margin-bottom: 20px;
}
.panel.side .panel-content h3 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 900;
  color: #6777ba;
  margin-bottom: 20px;
}
.panel.side .panel-media {
  position: relative;
  z-index: 3;
}
.panel.side .panel-media .panel-image {
  position: relative;
  padding: 15px;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 25px 0px rgba(102, 102, 102, 0.25);
  box-shadow: 0px 0px 25px 0px rgba(102, 102, 102, 0.25);
}
.panel.side .panel-media .panel-image img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.panel.side .panel-media .panel-video {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 15px;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 25px 0px rgba(102, 102, 102, 0.25);
  box-shadow: 0px 0px 25px 0px rgba(102, 102, 102, 0.25);
}
.panel.side .panel-media .panel-video::before {
  content: '';
  width: 100%;
  height: 0;
  display: block;
  padding-bottom: 56.25%;
}
.panel.side .panel-media .panel-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 15px;
  border: 0;
}
.panel.side .panel-media.centered .panel-image,
.panel.side .panel-media.centered .panel-video {
  top: 0 !important;
}
.panel.side .overlay-gradient {
  width: 120%;
  left: -10%;
  background: #eeeeee;
  background: -webkit-gradient(left bottom, right top, color-stop(0%, #eeeeee), color-stop(100%, #cccccc));
  background: -webkit-gradient(linear, left top, right top, from(#eeeeee), to(#cccccc));
  background: linear-gradient(90deg, #eeeeee 0%, #cccccc 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#cccccc', GradientType=1);
  border-radius: 5px;
}
.panel.side.ltr .panel-content {
  padding-bottom: 0;
  margin-bottom: -20px;
}
.panel.side.ltr .panel-media {
  margin-bottom: 30px;
}
.panel.side.ltr .panel-media .panel-image,
.panel.side.ltr .panel-media .panel-video {
  top: 30px;
}
.panel.side.rtl .panel-content {
  padding-top: 0;
}
.panel.side.rtl .panel-media {
  margin-top: 30px;
}
.panel.side.rtl .panel-media .panel-image,
.panel.side.rtl .panel-media .panel-video {
  top: -30px;
}
.panel.side.rtl .overlay-gradient {
  background: #cccccc;
  background: -webkit-gradient(left bottom, right top, color-stop(0%, #cccccc), color-stop(100%, #eeeeee));
  background: -webkit-gradient(linear, left top, right top, from(#cccccc), to(#eeeeee));
  background: linear-gradient(90deg, #cccccc 0%, #eeeeee 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cccccc', endColorstr='#eeeeee', GradientType=1);
}
.panel.standard + .side,
.panel.promo + .side,
.panel.gallery + .side,
.panel.side + .side {
  padding-top: 0;
}
.panel.cta,
.panel.parallax {
  text-shadow: 0px 2px 15px rgba(11, 11, 11, 0.2);
  border-bottom: 1px solid #fff;
}
.panel.cta .panel-content,
.panel.parallax .panel-content {
  position: relative;
  margin: 0 auto;
  max-width: 1280px;
  padding: 40px 20px;
  color: #ffffff;
}
.panel.cta .panel-content h1,
.panel.parallax .panel-content h1,
.panel.cta .panel-content h2,
.panel.parallax .panel-content h2 {
  color: inherit;
}
.panel.cta .panel-content h2,
.panel.parallax .panel-content h2 {
  margin: 0;
}
.panel.cta .panel-content .panel-text,
.panel.parallax .panel-content .panel-text,
.panel.cta .panel-content .panel-subtitle h3,
.panel.parallax .panel-content .panel-subtitle h3 {
  color: #ffffff;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 180%;
  line-height: 1.2;
  font-size: 140%;
  margin-top: 10px;
  margin-bottom: 0;
  font-style: normal;
  text-transform: none;
}
.panel.cta .panel-content .panel-text p:last-child,
.panel.parallax .panel-content .panel-text p:last-child,
.panel.cta .panel-content .panel-subtitle h3 p:last-child,
.panel.parallax .panel-content .panel-subtitle h3 p:last-child,
.panel.cta .panel-content .panel-text ol:last-child,
.panel.parallax .panel-content .panel-text ol:last-child,
.panel.cta .panel-content .panel-subtitle h3 ol:last-child,
.panel.parallax .panel-content .panel-subtitle h3 ol:last-child,
.panel.cta .panel-content .panel-text ul:last-child,
.panel.parallax .panel-content .panel-text ul:last-child,
.panel.cta .panel-content .panel-subtitle h3 ul:last-child,
.panel.parallax .panel-content .panel-subtitle h3 ul:last-child {
  padding-bottom: 0;
}
.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 .panel-buttons,
.panel.parallax .panel-buttons {
  margin-top: 20px;
}
.panel.cta .panel-text small,
.panel.parallax .panel-text small {
  color: #ffffff;
  opacity: 0.75;
  font-size: 60%;
}
.panel.cta {
  z-index: 1;
}
.panel.cta .overlay.arrow {
  top: -200px;
  height: calc(100% + 200px);
  background-position: 0 150px;
  background-size: 100%;
  pointer-events: none;
}
.panel.promo {
  overflow: hidden;
}
.panel.promo .panel-content {
  position: relative;
  margin: 0 auto;
  max-width: 1280px;
  padding-left: 20px;
  padding-right: 20px;
}
.panel.promo .promo-boxes {
  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;
  margin-left: -2px;
  margin-right: -2px;
}
.panel.promo .promo-boxes .promo-box {
  position: relative;
  display: block;
  width: 100%;
  margin: -1px;
}
.panel.promo .promo-boxes .promo-box .promo-hover {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease 0s;
  transition: opacity 0.5s ease 0s;
}
.panel.promo .promo-boxes .promo-box .promo-hover .promo-title {
  display: none;
}
.panel.promo .promo-boxes .promo-box .promo-hover .promo-text {
  display: block;
  width: 100%;
  white-space: normal;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  padding-bottom: 20px;
  font-weight: 500;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
}
.panel.promo .promo-boxes .promo-box .promo-hover .promo-button {
  border: 1px solid #ccc;
  background: #fff;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: normal;
  padding: 10px 20px;
  margin: 0 0 10px;
  height: 60px;
  max-width: 100%;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: background-color 0.3s, color 0.3s, border-color 0.3s, color 0.3s ease 0s, border-color 0.3s ease 0s, background-color 0.3s ease 0s;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s, color 0.3s ease 0s, border-color 0.3s ease 0s, background-color 0.3s ease 0s;
  cursor: pointer;
  width: auto;
  display: inline-block;
  padding: 0 20px;
  margin: 0;
  line-height: 60px;
  height: auto;
  padding: 15px 25px;
  margin: 1px;
  border: 0;
  color: #ffffff;
  background: #31438c;
  line-height: 1.4;
  font-weight: 900;
  font-style: normal;
  text-transform: uppercase;
  font-size: 14px;
  font-size: 0.875rem;
  border-radius: 4px;
  border: 1px solid #ffffff;
  color: #31438c;
  background: #ffffff;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-shadow: 0px 2px 15px transparent;
}
.panel.promo .promo-boxes .promo-box .promo-hover .promo-button::-webkit-input-placeholder {
  color: inherit;
}
.panel.promo .promo-boxes .promo-box .promo-hover .promo-button:-ms-input-placeholder {
  color: inherit;
}
.panel.promo .promo-boxes .promo-box .promo-hover .promo-button::-ms-input-placeholder {
  color: inherit;
}
.panel.promo .promo-boxes .promo-box .promo-hover .promo-button::placeholder {
  color: inherit;
}
.panel.promo .promo-boxes .promo-box .promo-hover .promo-button .fas {
  margin-right: 8px;
}
.panel.promo .promo-boxes .promo-box .promo-hover .promo-button:hover,
.panel.promo .promo-boxes .promo-box .promo-hover .promo-button:active {
  background: #6777ba;
  border-color: #6777ba;
  color: #ffffff;
}
.panel.promo .promo-boxes .promo-box .promo-hover .promo-button.simple {
  padding: 10px 15px;
  margin: 1px;
  font-weight: 400;
  background-color: transparent;
  border: 1px solid #31438c;
  font-weight: 500;
  color: #31438c;
  font-size: 14px;
  font-size: 0.875rem;
}
.panel.promo .promo-boxes .promo-box .promo-hover .promo-button.simple:hover,
.panel.promo .promo-boxes .promo-box .promo-hover .promo-button.simple:active {
  background: #31438c;
  border-color: #31438c;
  color: #ffffff;
}
.panel.promo .promo-boxes .promo-box .promo-hover .promo-button:hover,
.panel.promo .promo-boxes .promo-box .promo-hover .promo-button:active {
  background: #31438c;
  border-color: #31438c;
  color: #ffffff;
}
.panel.promo .promo-boxes .promo-box .promo-hover .promo-button span.tollfree::before,
.panel.promo .promo-boxes .promo-box .promo-hover .promo-button span.mailto::before,
.panel.promo .promo-boxes .promo-box .promo-hover .promo-button span.phone::before {
  line-height: 1;
}
.panel.promo .promo-boxes .promo-box .promo-hover .promo-button span.tollfree::before,
.panel.promo .promo-boxes .promo-box .promo-hover .promo-button span.phone::before {
  font-style: normal;
  padding-right: 8px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f3cd";
}
.panel.promo .promo-boxes .promo-box .promo-hover .promo-button span.mailto::before {
  font-style: normal;
  padding-right: 8px;
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  content: "\f0e0";
}
.panel.promo .promo-boxes .promo-box .promo-hover .promo-button.inverse {
  color: #ffffff;
  background: #31438c;
  border-color: #31438c;
}
.panel.promo .promo-boxes .promo-box .promo-hover .promo-button.inverse:hover,
.panel.promo .promo-boxes .promo-box .promo-hover .promo-button.inverse:active {
  background: #ffffff;
  border-color: #ffffff;
  color: #31438c;
}
.panel.promo .promo-boxes .promo-box .promo-hover .promo-button.border:hover,
.panel.promo .promo-boxes .promo-box .promo-hover .promo-button.border:active {
  border-color: currentColor;
}
.panel.promo .promo-boxes .promo-box .promo-hover .promo-button.solid {
  background: #31438c;
  border-color: transparent;
  color: #ffffff;
}
.panel.promo .promo-boxes .promo-box .promo-hover .promo-button.solid:hover {
  background: #6777ba;
}
.panel.promo .promo-boxes .promo-box .promo-hover .promo-button.outline:not(:hover),
.panel.promo .promo-boxes .promo-box .promo-hover .promo-button.outline:not(:active) {
  border-color: currentColor;
  background: rgba(0, 0, 0, 0.25);
}
.panel.promo .promo-boxes .promo-box .promo-hover .promo-button:disabled {
  background: #eee !important;
  border-color: #eee !important;
  color: #ccc !important;
  cursor: default;
}
.panel.promo .promo-boxes .promo-box .promo-hover .promo-text,
.panel.promo .promo-boxes .promo-box .promo-hover .promo-button {
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.panel.promo .promo-boxes .promo-box .promo-hover .overlay {
  position: absolute;
  z-index: -1;
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
}
.panel.promo .promo-boxes .promo-box .promo-content {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-bottom: 10%;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.panel.promo .promo-boxes .promo-box .promo-content .promo-text,
.panel.promo .promo-boxes .promo-box .promo-content .promo-link {
  display: none;
}
.panel.promo .promo-boxes .promo-box .promo-content h3 {
  margin: 0;
  color: #fff;
  text-shadow: 0px 3px 15px rgba(11, 11, 11, 0.6);
  text-align: center;
  padding: 0 20px;
  text-transform: uppercase;
}
.panel.promo .promo-boxes .promo-box .promo-image {
  position: relative;
  z-index: 0;
}
.panel.promo .promo-boxes .promo-box .promo-image img {
  display: block;
  width: 100%;
}
.panel.promo .promo-boxes .promo-box .promo-image + .overlay {
  opacity: 0.2;
  filter: alpha(opacity=20);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=20);
}
.panel.promo .promo-boxes .promo-box:hover .promo-hover {
  opacity: 1;
}
.panel.promo .promo-boxes .promo-box:hover .promo-hover .promo-text,
.panel.promo .promo-boxes .promo-box:hover .promo-hover .promo-button {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.panel.promo .promo-boxes .promo-box:hover .promo-content {
  opacity: 0;
  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);
}
.panel.standard + .promo,
.panel.promo + .promo,
.panel.gallery + .promo {
  padding-top: 0;
}
.panel.gallery {
  position: relative;
  overflow: hidden;
}
.panel.gallery .panel-content {
  position: relative;
  margin: 0 auto;
  max-width: 1280px;
  padding-left: 20px;
  padding-right: 20px;
}
.panel.gallery .panel-content .panel-text {
  padding-bottom: 30px;
}
.panel.gallery .dynamic-gallery {
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.panel.gallery .dynamic-gallery .light-gallery .grid-sizer,
.panel.gallery .dynamic-gallery .light-gallery .gal-item {
  width: 50%;
}
.panel.gallery .dynamic-gallery .light-gallery .gal-item {
  float: left;
  display: block;
}
.panel.gallery .dynamic-gallery .light-gallery .gal-item a {
  display: block;
  border: 1px solid #fff;
}
.panel.gallery .dynamic-gallery .light-gallery .gal-item a img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
}
.panel.gallery .dynamic-gallery .light-gallery .gal-item a .overlay {
  background: #31438c;
  background: -webkit-gradient(left bottom, right top, color-stop(0%, #31438c), color-stop(100%, #6777ba));
  background: linear-gradient(45deg, #31438c 0%, #6777ba 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#31438c', endColorstr='#6777ba', GradientType=1);
  z-index: 2;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
.panel.gallery .dynamic-gallery .light-gallery .gal-item a:before,
.panel.gallery .dynamic-gallery .light-gallery .gal-item a:after {
  position: absolute;
  top: calc(50% - 10px);
  left: calc(50% - 10px);
  z-index: 3;
  font-size: 20px;
  line-height: 20px;
  color: #fff;
  font-style: normal;
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  text-shadow: 0 0 20px #000000;
  transform: scale(0.5);
  -webkit-transform: scale(0.5) rotate(0.02deg);
  -moz-transform: scale(0.5) rotate(0.02deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.panel.gallery .dynamic-gallery .light-gallery .gal-item a:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f077";
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.panel.gallery .dynamic-gallery .light-gallery .gal-item a:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f077";
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.panel.gallery .dynamic-gallery .light-gallery .gal-item a:hover .overlay {
  opacity: 0.5;
}
.panel.gallery .dynamic-gallery .light-gallery .gal-item a:hover:before,
.panel.gallery .dynamic-gallery .light-gallery .gal-item a:hover:after {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  transform: scale(1);
  -webkit-transform: scale(1) rotate(0.02deg);
  -moz-transform: scale(1) rotate(0.02deg);
}
.panel.gallery .dynamic-gallery .light-gallery .gal-item a:hover:before {
  top: calc(50% - 25px);
  left: calc(50% + 10px);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.panel.gallery .dynamic-gallery .light-gallery .gal-item a:hover:after {
  top: calc(50% + 10px);
  left: calc(50% - 25px);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.panel.standard + .gallery,
.panel.promo + .gallery,
.panel.gallery + .gallery {
  padding-top: 0;
}
.panel.standard .panel-title,
.panel.promo .panel-title,
.panel.gallery .panel-title {
  position: relative;
  overflow: hidden;
}
.panel.standard .panel-title h2,
.panel.promo .panel-title h2,
.panel.gallery .panel-title h2 {
  display: inline-block;
}
.panel.standard .panel-title h2.less-margin,
.panel.promo .panel-title h2.less-margin,
.panel.gallery .panel-title h2.less-margin {
  margin-bottom: 20px;
}
.panel.standard .panel-title:after,
.panel.promo .panel-title:after,
.panel.gallery .panel-title:after {
  position: absolute;
  z-index: 0;
  content: "";
  height: 1px;
  width: 100%;
  top: calc(30%);
  background: rgba(103, 119, 186, 0.2);
  margin-left: 10px;
}
.panel.parallax + .standard,
.panel.cta + .standard,
.panel.parallax + .gallery .panel-header,
.panel.cta + .gallery .panel-header,
.panel.parallax + .promo .panel-header,
.panel.cta + .promo .panel-header {
  margin-top: 20px;
}
#breadcrumbs + #body-content .panel:first-child {
  margin-top: -20px;
}
#breadcrumbs + #body-content .panel:first-child.parallax,
#breadcrumbs + #body-content .panel:first-child.cta {
  margin-top: 0;
}
@media all and (min-width: 481px) {
  .panel.standard .panel-title:after,
  .panel.promo .panel-title:after,
  .panel.gallery .panel-title:after {
    top: calc(35%);
    margin-left: 20px;
  }
  .panel.side .panel-content {
    padding-left: 40px;
    padding-right: 40px;
  }
  .panel.gallery .dynamic-gallery .light-gallery .grid-sizer,
  .panel.gallery .dynamic-gallery .light-gallery .gal-item {
    width: 33.3334%;
  }
  .contact-hours .hours-table tr th {
    width: 150px;
  }
}
@media all and (min-width: 769px) {
  .panel {
    padding: 40px 0;
  }
  .panel.standard .container,
  body.landing-page #page-hero .container {
    padding-left: 30px;
    padding-right: 30px;
  }
  .panel.standard #google-map {
    padding-left: 30px;
    padding-right: 30px;
  }
  .panel.side {
    padding-left: 30px;
    padding-right: 30px;
  }
  .panel.side .panel-media .panel-image {
    padding: 20px;
  }
  .panel.promo .panel-content {
    padding-left: 30px;
    padding-right: 30px;
  }
  .panel.promo .promo-boxes .promo-box {
    width: 50%;
  }
  .panel.promo .promo-boxes .promo-box .promo-hover .promo-text {
    font-size: 21px;
    font-size: 1.3125rem;
  }
  .panel.cta .panel-content,
  .panel.parallax .panel-content {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 30px;
    padding-right: 30px;
  }
  .panel.cta .overlay.arrow {
    background-position: 0 100px;
    background-size: 80%;
  }
  .panel.gallery .panel-content {
    padding-left: 30px;
    padding-right: 30px;
  }
  #contact-locations .location-panel {
    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: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  #contact-locations .location-panel .column:first-child {
    width: 50%;
    padding-right: 30px;
  }
}
@media all and (min-width: 1025px) {
  .panel {
    padding: 60px 0;
  }
  .panel.standard .container,
  body.landing-page #page-hero .container {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 0;
  }
  .panel.standard #google-map {
    position: relative;
    margin: 0 auto;
    max-width: 1280px;
    height: 400px;
    padding-left: 40px;
    padding-right: 40px;
  }
  .panel.standard #google-map .container {
    padding: 20px;
  }
  .panel.standard #google-map #map-buttons {
    bottom: 30px;
  }
  .panel.side {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .panel.side .container {
    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 .panel-content {
    padding: 60px !important;
    width: calc(50% + 20px);
  }
  .panel.side .panel-content h2 {
    margin-top: 20px;
  }
  .panel.side .panel-media {
    position: relative;
    width: calc(50% - 20px);
    margin: 0 !important;
  }
  .panel.side .panel-media .panel-image {
    position: relative;
    height: 100%;
  }
  .panel.side .panel-media .panel-video iframe {
    padding: 0;
  }
  .panel.side .overlay-gradient {
    width: 80%;
    left: 0;
  }
  .panel.side.ltr .panel-content {
    margin-bottom: 0;
  }
  .panel.side.ltr .panel-media {
    padding-right: 30px;
  }
  .panel.side.ltr .panel-media .panel-image,
  .panel.side.ltr .panel-media .panel-video {
    top: 30px;
  }
  .panel.side.ltr .overlay-gradient {
    left: auto;
  }
  .panel.side.rtl .panel-media {
    padding-left: 30px;
  }
  .panel.side.rtl .panel-media .panel-image,
  .panel.side.rtl .panel-media .panel-video {
    top: 30px;
  }
  .panel.side.noimage {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .panel.side.noimage .panel-content {
    width: 100%;
  }
  .panel.side.noimage .overlay-gradient {
    width: 100%;
  }
  .panel.promo .panel-content {
    padding-left: 40px;
    padding-right: 40px;
  }
  .panel.cta .panel-content,
  .panel.parallax .panel-content {
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 40px;
    padding-right: 40px;
  }
  .panel.cta .panel-content .panel-text,
  .panel.parallax .panel-content .panel-text,
  .panel.cta .panel-content .panel-subtitle h3,
  .panel.parallax .panel-content .panel-subtitle h3 {
    margin-top: 20px;
  }
  .panel.cta .panel-content .panel-text,
  .panel.parallax .panel-content .panel-text {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .panel.cta .panel-content .panel-buttons,
  .panel.parallax .panel-content .panel-buttons {
    margin-top: 30px;
  }
  .panel.cta .overlay.arrow {
    background-position: 0 0;
    background-size: auto;
  }
  .panel.gallery .panel-content {
    padding-left: 40px;
    padding-right: 40px;
  }
  .panel.gallery .dynamic-gallery .light-gallery .grid-sizer,
  .panel.gallery .dynamic-gallery .light-gallery .gal-item {
    width: 25%;
  }
}
@media all and (min-width: 1367px) {
  .panel.promo .promo-boxes .promo-box {
    width: calc(100%/3);
  }
  .panel.promo .promo-boxes .promo-box .promo-hover .promo-button {
    padding: 25px 40px;
  }
  .panel.promo .promo-boxes .promo-box .promo-hover .promo-text {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .panel.gallery .dynamic-gallery .light-gallery .grid-sizer,
  .panel.gallery .dynamic-gallery .light-gallery .gal-item {
    width: 16.6667%;
  }
}
/*------ tabs ------*/
.content-tabs .tabs-nav-wrapper ul,
.content-tabs div.tabs-panel {
  display: none;
}
.content-tabs.ui-tabs {
  display: block;
  padding-top: 20px;
}
.content-tabs.ui-tabs .ui-tabs-nav {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 0;
}
.content-tabs.ui-tabs .ui-tabs-nav li {
  display: block;
  position: relative;
}
.content-tabs.ui-tabs .ui-tabs-nav li a {
  display: block;
  position: relative;
  z-index: 1;
  padding: 10px 15px;
  border: 0;
  border-bottom: 0;
  margin: 0 0 1px 0;
  outline: none;
  text-decoration: none;
  text-transform: uppercase;
  color: #31438c;
  font-size: 14px;
  font-size: 0.875rem;
  background: rgba(103, 119, 186, 0.25);
  font-weight: 900;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border-radius: 4px;
}
.content-tabs.ui-tabs .ui-tabs-nav li a:hover {
  color: #ffffff;
  background: #31438c;
}
.content-tabs.ui-tabs .ui-tabs-nav li.ui-state-active a,
.content-tabs.ui-tabs .ui-tabs-nav li.ui-state-active a:hover {
  color: #ffffff;
  background: #31438c;
  z-index: 2;
}
.content-tabs.ui-tabs .ui-tabs-panel {
  display: block;
  clear: both;
  padding: 30px 10px 0;
}
.content-tabs.ui-tabs.responsive-tabs .ui-tabs-nav {
  display: none;
}
.content-tabs.ui-tabs.responsive-tabs .ui-tabs-select {
  display: block;
  max-width: 100%;
}
@media all and (min-width: 769px) {
  .content-tabs.ui-tabs .tabs-nav-wrapper {
    position: relative;
    overflow: hidden;
  }
  .content-tabs.ui-tabs .tabs-nav-wrapper .ui-tabs-nav {
    display: inline-block;
  }
  .content-tabs.ui-tabs .tabs-nav-wrapper:after {
    position: absolute;
    z-index: 0;
    content: "";
    height: 1px;
    width: 100%;
    top: calc(50%);
    background: #ccc;
    margin-left: 20px;
  }
  .content-tabs.ui-tabs .ui-tabs-nav {
    display: block;
    padding: 0;
  }
  .content-tabs.ui-tabs .ui-tabs-nav li {
    display: inline-block;
  }
  .content-tabs.ui-tabs .ui-tabs-nav li a {
    padding: 20px 35px;
    margin: 0 1px 1px 0;
  }
  .content-tabs.ui-tabs .ui-tabs-panel {
    padding: 40px 20px 20px;
  }
  .content-tabs.ui-tabs.responsive-tabs .ui-tabs-nav {
    display: block;
  }
  .content-tabs.ui-tabs.responsive-tabs .ui-tabs-select {
    display: none;
  }
}
/*------ projects ------*/
#panel-project-details .project-info {
  margin-top: 40px;
}
#panel-project-details .project-info .info {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(103, 119, 186, 0.2);
}
#panel-project-details .project-info .info span {
  display: block;
}
#panel-project-details .project-info .info .label {
  color: #1f1a33;
  font-weight: 900;
}
@media all and (min-width: 481px) {
  #panel-project-details .project-info .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: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  #panel-project-details .project-info .info span {
    width: 55%;
  }
  #panel-project-details .project-info .info .label {
    width: 45%;
  }
}
@media all and (min-width: 1025px) {
  #panel-project-details .panel-text {
    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-project-details .project-content {
    width: 70%;
    padding-right: 80px;
  }
  #panel-project-details .project-info {
    width: 30%;
    margin-top: 15px;
  }
  #panel-project-details #google-map {
    margin-top: 40px;
    padding: 0;
  }
  #panel-project-details #google-map .container {
    padding: 0;
    border: 0;
  }
}
/*------ footer ------*/
#footer-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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  border-top: 1px solid #ccc;
  margin-top: -1px;
}
#footer-wrapper #page-footer {
  width: 100%;
  font-size: 16px;
  font-size: 1rem;
}
#footer-wrapper #page-footer #footer-logo {
  display: inline-block;
  padding-bottom: 20px;
}
#footer-wrapper #page-footer #footer-logo img {
  max-width: 200px;
}
#footer-wrapper #page-footer .container {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 20px;
  padding-right: 20px;
}
#footer-wrapper #page-footer .contact-snippets {
  list-style: none;
  margin: 0;
}
#footer-wrapper #page-footer .contact-snippets li {
  display: inline-block;
}
#footer-wrapper #page-footer .contact-snippets li a {
  color: #333333;
}
#footer-wrapper #page-footer .contact-snippets li a:hover,
#footer-wrapper #page-footer .contact-snippets li a:active {
  color: #6777ba;
}
#footer-wrapper #page-footer .contact-snippets li .label {
  display: none;
}
#footer-wrapper #page-footer .contact-snippets li.address {
  display: block;
  padding-bottom: 8px;
}
#footer-wrapper #page-footer .contact-snippets li.address span.street,
#footer-wrapper #page-footer .contact-snippets li.address span.postal-code {
  white-space: nowrap;
}
#footer-wrapper #page-footer .contact-snippets li.fax {
  display: none;
}
#footer-wrapper #page-footer .contact-snippets li:after {
  display: inline-block;
  content: "/";
  padding: 0 15px;
  color: #cccccc;
  font-size: 14px;
}
#footer-wrapper #page-footer .contact-snippets li:last-child:after,
#footer-wrapper #page-footer .contact-snippets li.address:after {
  display: none;
}
#footer-wrapper #page-footer #page-disclaimer a {
  color: #a19f9a;
}
#footer-wrapper #page-footer #page-disclaimer a:hover,
#footer-wrapper #page-footer #page-disclaimer a:active {
  color: #6777ba;
}
#footer-wrapper #google-map {
  width: 100%;
  height: 300px;
}
#footer-wrapper #google-map .container #map-buttons .google-btn {
  display: none;
}
@media all and (min-width: 769px) {
  #footer-wrapper #page-footer .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media all and (min-width: 1025px) {
  #footer-wrapper {
    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: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  #footer-wrapper #page-footer {
    font-size: 18px;
    font-size: 1.125rem;
  }
  #footer-wrapper #page-footer .container {
    padding-top: 70px;
    padding-bottom: 70px;
    padding-left: 40px;
    padding-right: 40px;
  }
  #footer-wrapper #page-footer.left {
    width: 50%;
  }
  #footer-wrapper #page-footer.left .container {
    float: right;
    display: block;
    max-width: 640px;
  }
  #footer-wrapper #page-footer .contact-snippets li:after {
    font-size: 16px;
  }
  #footer-wrapper #google-map {
    width: 50%;
    height: auto;
  }
}
/*------ 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: 16/9) {
  .video-bg > video {
    width: 100%;
    height: auto;
    /* actually taller than viewport */
    min-height: 100%;
  }
}
@media (max-aspect-ratio: 16/9) {
  .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: 16/9) {
      width: 100%;
      height: auto;
      min-height: 100%;
      
      /* actually taller than viewport */
    }
    @media (max-aspect-ratio: 16/9) {
      width: auto;
      height: 100%;
      min-width: 100%;
      
      /* actually wider than viewport */
    }
  }
}
/*------ icons ------*/
.social-icons {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  font-size: 0;
}
.social-icons li {
  display: inline-block;
  margin: 0 1px 1px 0;
  padding: 0;
  border: 0;
  text-align: center;
}
.social-icons li a {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: #f0efef;
  overflow: hidden;
  color: #333333;
}
.social-icons li a span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: 21px;
  line-height: 40px;
  -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 {
  background: #3b5998;
}
.social-icons li a:hover span + span.fa-google-plus {
  background: #d94a39;
}
.social-icons li a:hover span + span.fa-linkedin {
  background: #1b92bd;
}
.social-icons li a:hover span + span.fa-pinterest {
  background: #cb2027;
}
.social-icons li a:hover span + span.fa-twitter {
  background: #00bdec;
}
.social-icons li a:hover span + span.fa-youtube {
  background: #d20800;
}
.social-icons li a:hover span + span.fa-instagram {
  background: #316c95;
}
.social-icons li a:hover span + span.fa-houzz {
  background: #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;
}
/*------ leadin ------*/
.leadin-popup {
  max-width: 100%;
  visibility: hidden;
  z-index: 10;
  font-size: 16px;
  font-size: 1rem;
}
.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.875rem;
}
.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;
}
.leadin-popup .button {
  display: block;
  width: 100%;
  padding: 14px 25px;
  text-align: center;
}
.leadin-popup .button.theme-theme1 {
  background: #31438c;
  color: #fff;
}
.leadin-popup .button.theme-theme1:hover,
.leadin-popup .button.theme-theme1:active {
  background: rgba(17, 17, 17, 0.5);
  color: #fff;
}
.leadin-popup .button.theme-theme2 {
  background: #6777ba;
  color: #fff;
}
.leadin-popup .button.theme-theme2:hover,
.leadin-popup .button.theme-theme2:active {
  background: rgba(17, 17, 17, 0.5);
  color: #fff;
}
.leadin-popup .button.theme-gradient {
  background: #31438c;
  background: -webkit-gradient(left bottom, right top, color-stop(0%, #31438c), color-stop(100%, #6777ba));
  background: linear-gradient(45deg, #31438c 0%, #6777ba 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#31438c', endColorstr='#6777ba', GradientType=1);
  color: #fff;
}
.leadin-popup .button.theme-gradient:hover,
.leadin-popup .button.theme-gradient:active {
  background: rgba(17, 17, 17, 0.5);
  color: #fff;
}
.leadin-popup .button.theme-black {
  background: #545350;
  color: #fff;
}
.leadin-popup .button.theme-black:hover,
.leadin-popup .button.theme-black:active {
  background: #fff;
  color: #31438c;
}
.leadin-popup .button.theme-white {
  background: #fff;
  color: #31438c;
}
.leadin-popup .button.theme-white:hover,
.leadin-popup .button.theme-white:active {
  background: rgba(17, 17, 17, 0.5);
  color: #fff;
}
.leadin-popup.open {
  visibility: visible;
}
.leadin-popup.theme-theme1 {
  background: #31438c;
  color: #fff;
}
.leadin-popup.theme-theme1 .button.theme-theme1 {
  background: #243166;
}
.leadin-popup.theme-theme1 .button.theme-theme1:hover,
.leadin-popup.theme-theme1 .button.theme-theme1:active {
  background: rgba(17, 17, 17, 0.5);
  color: #fff;
}
.leadin-popup.theme-theme1 .button:hover,
.leadin-popup.theme-theme1 .button:active {
  background: rgba(17, 17, 17, 0.5);
  color: #fff;
}
.leadin-popup.theme-theme2 {
  background: #6777ba;
  color: #fff;
}
.leadin-popup.theme-theme2 .button.theme-theme2 {
  background: #4a5ca4;
}
.leadin-popup.theme-theme2 .button.theme-theme2:hover,
.leadin-popup.theme-theme2 .button.theme-theme2:active {
  background: rgba(17, 17, 17, 0.5);
  color: #fff;
}
.leadin-popup.theme-gradient {
  background: #31438c;
  background: -webkit-gradient(left bottom, right top, color-stop(0%, #31438c), color-stop(100%, #6777ba));
  background: linear-gradient(45deg, #31438c 0%, #6777ba 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#31438c', endColorstr='#6777ba', GradientType=1);
  color: #fff;
}
.leadin-popup.theme-gradient .button.theme-gradient {
  background: #243166;
  background: -webkit-gradient(left bottom, right top, color-stop(0%, #243166), color-stop(100%, #4a5ca4));
  background: linear-gradient(45deg, #243166 0%, #4a5ca4 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#243166', endColorstr='#4a5ca4', GradientType=1);
}
.leadin-popup.theme-gradient .button.theme-gradient:hover,
.leadin-popup.theme-gradient .button.theme-gradient:active {
  background: rgba(17, 17, 17, 0.5);
  color: #fff;
}
.leadin-popup.theme-gradient .button.theme-black {
  background: rgba(17, 17, 17, 0.5);
}
.leadin-popup.theme-gradient .button.theme-black:hover,
.leadin-popup.theme-gradient .button.theme-black:active {
  background: #fff;
  color: #31438c;
}
.leadin-popup.theme-black {
  background: #545350;
  color: #fff;
}
.leadin-popup.theme-black .button.theme-black {
  background: rgba(17, 17, 17, 0.5);
}
.leadin-popup.theme-black .button.theme-black:hover,
.leadin-popup.theme-black .button.theme-black:active {
  background: #fff;
  color: #31438c;
}
.leadin-popup.theme-white {
  background: #fff;
  color: #666666;
}
.leadin-popup.theme-white .button.theme-black:hover,
.leadin-popup.theme-white .button.theme-black:active {
  background: rgba(17, 17, 17, 0.5);
  color: #fff;
}
.leadin-popup.theme-white .button.theme-white {
  border: 1px solid #31438c;
}
.leadin-popup.theme-white .button.theme-white:hover,
.leadin-popup.theme-white .button.theme-white:active {
  border-color: transparent;
}
.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: 10px;
}
.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: 1.125rem;
}
.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: 1.125rem;
}
.leadin-popup.type-popup .control-buttons {
  top: 20px;
  right: 20px;
}
.leadin-popup.type-popup .close-button {
  font-size: 21px;
  font-size: 1.3125rem;
  text-shadow: 0 0 20px #545350;
}
.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 .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: #666666;
}
.leadin-form .button {
  width: 100%;
  margin: 10px 0;
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
}
.leadin-form.hidden-modal .button {
  color: #ffffff;
  background: #31438c;
}
.leadin-form.hidden-modal .button:hover,
.leadin-form.hidden-modal .button:active {
  color: #ffffff;
  background: #111111;
  border-color: #111111;
}
.ui-dialog[aria-describedby^="leadin-popup-"] {
  border: 0;
}
.ui-dialog[aria-describedby^="leadin-popup-"] .ui-dialog-titlebar {
  display: none;
}
@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%;
    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;
  }
}
body.landing-page #page-logo {
  padding-left: 30px;
}
body.landing-page #breadcrumbs + #body-content .panel:first-child {
  margin-top: 0;
}
@media all and (min-width: 1025px) {
  body.landing-page #page-logo {
    padding-left: 40px;
  }
}
