@charset "utf-8";
/*
	critical.less

	Project: Pure Canadian Gaming

*/
/*------ imports ------*/
/* 
	global.less
	
*/
/*------ imports ------*/
/*
	core.less

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

*/
/*------ typography ------*/
.light {
  font-weight: 300;
}
.regular {
  font-weight: 400;
}
.medium {
  font-weight: 500;
}
.semibold {
  font-weight: 600;
}
.bold {
  font-weight: 700;
}
.extrabold {
  font-weight: 800;
}
.black {
  font-weight: 900;
}
.uppercase {
  text-transform: uppercase;
}
.capitalize {
  text-transform: capitalize;
}
.strikethrough {
  text-decoration: line-through;
}
.underline {
  text-decoration: underline;
}
/*------ 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;
}
.sr-only {
  position: absolute;
  margin: 0;
  padding: 0;
  border: 0;
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  background: none;
  overflow: hidden;
}
.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% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubber-band {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 3deg);
  }
}
@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) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 3deg);
  }
}
/*---- leadin animations ----*/
.leadin-popup.open.type-corner,
.leadin-popup.open.type-bar.position-bottom {
  -webkit-animation: fade-up 0.4s ease-out 0s;
  animation: fade-up 0.4s ease-out 0s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.leadin-popup.open .button.bounce {
  -webkit-animation: bounce 0.8s ease-out 0.8s;
  animation: bounce 0.8s ease-out 0.8s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.leadin-popup.open .button.rubber-band {
  -webkit-animation: rubber-band 1s ease-out 0.8s;
  animation: rubber-band 1s ease-out 0.8s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.leadin-popup.open .button.swing {
  -webkit-animation: swing 0.6s ease-out 0.8s;
  animation: swing 0.6s ease-out 0.8s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.leadin-popup.open .button.tada {
  -webkit-animation: tada 1s ease-out 0.8s;
  animation: tada 1s ease-out 0.8s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
/*------ reset ------*/
* {
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
body,
html {
  width: 100%;
  height: 100%;
}
main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
/*------ typography ------*/
body,
th,
td {
  line-height: 1.4;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
p {
  padding: 0 0 20px;
  margin: 0;
}
ul,
ol {
  padding: 0 0 20px;
  margin: 0 0 0 40px;
}
a {
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}
h1,
h2,
h3,
h4,
h5,
h6,
#slideshow .cycle-slideshow .slide .slide-content .slide-title,
#slideshow .cycle-slideshow .slide .slide-content .slide-text,
#page-hero #page-header .page-title {
  padding: 0;
  font-weight: normal;
  line-height: 1;
  letter-spacing: -0.025em;
}
h1,
#slideshow .cycle-slideshow .slide .slide-content .slide-title,
#page-hero #page-header .page-title {
  margin: 0;
}
h2 {
  margin: 0 0 30px;
}
h3 {
  margin: 0 0 25px;
}
h4 {
  margin: 0 0 20px;
}
h5 {
  margin: 0 0 15px;
  line-height: 1.2;
}
h6,
#slideshow .cycle-slideshow .slide .slide-content .slide-text {
  margin: 0;
  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: 1900px) {
  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 label {
  display: none;
  margin: 0;
}
@media all and (max-width: 768px) {
  table {
    width: 100% !important;
    border: 1px solid #ccc;
  }
  table tr.header-row,
  table th {
    display: none;
  }
  table td {
    display: block;
    width: auto !important;
    text-align: left;
  }
  table label {
    display: inline-block;
    font-weight: bold;
  }
  table.noresponsive tr.header-row {
    display: table-row;
  }
  table.noresponsive th,
  table.noresponsive td {
    display: table-cell;
  }
}
/*------ forms ------*/
label {
  display: block;
}
.input,
.select,
.textarea,
.button {
  border: 1px solid #ccc;
  background: #fff;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  -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;
  background-clip: padding-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
.input::-webkit-input-placeholder,
.select::-webkit-input-placeholder,
.textarea::-webkit-input-placeholder,
.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::-moz-placeholder,
.select::-moz-placeholder,
.textarea::-moz-placeholder,
.button::-moz-placeholder {
  color: inherit;
}
.input:-moz-placeholder,
.select:-moz-placeholder,
.textarea:-moz-placeholder,
.button:-moz-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;
  margin: 0;
}
.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%;
  background-clip: padding-box;
  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;
  font-weight: bold;
}
.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 !important;
}
.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;
}
/*------ leadin ------*/
#leadin-popup {
  max-width: 100%;
  visibility: hidden;
  z-index: 10;
}
#leadin-popup.open {
  visibility: visible;
}
#leadin-popup.theme-black {
  background: #111;
  color: #fff;
}
#leadin-popup.theme-white {
  background: #fff;
  color: #666666;
}
#leadin-popup.theme-theme1 {
  background: #D22128;
  color: #fff;
}
#leadin-popup.theme-theme2 {
  background: #AB1F25;
  color: #fff;
}
#leadin-popup.theme-gradient {
  background: #D22128;
  background: -webkit-gradient(left bottom, right top, color-stop(0%, #D22128), color-stop(100%, #AB1F25));
  background: linear-gradient(45deg, #D22128 0%, #AB1F25 100%);
  color: #fff;
}
#leadin-popup.type-corner,
#leadin-popup.type-bar.position-bottom {
  position: fixed;
}
#leadin-popup.type-bar {
  width: 100%;
}
#leadin-popup.type-bar.position-bottom {
  bottom: 0;
}
#leadin-popup.type-bar #leadin-form-wrapper {
  display: none;
}
#leadin-popup.type-corner {
  bottom: 0;
  width: 420px;
}
#leadin-popup.type-corner.position-left {
  left: 0;
}
#leadin-popup.type-corner.position-right {
  right: 0;
}
#leadin-popup.type-corner #leadin-form-wrapper {
  display: none;
}
#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:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00d";
}
/* 
	definitions.less
	
*/
@font-face {
  font-family: 'Public Sans';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/publicsans/v15/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymulpm5ww.ttf) format('truetype');
}
@font-face {
  font-family: 'Public Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/publicsans/v15/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuSJm5ww.ttf) format('truetype');
}
@font-face {
  font-family: 'Public Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/publicsans/v15/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuFpm5ww.ttf) format('truetype');
}
@font-face {
  font-family: 'Public Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/publicsans/v15/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuJJm5ww.ttf) format('truetype');
}
@font-face {
  font-family: 'Public Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/publicsans/v15/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuyJ65ww.ttf) format('truetype');
}
@font-face {
  font-family: 'Public Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/publicsans/v15/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymu8Z65ww.ttf) format('truetype');
}
@font-face {
  font-family: 'Public Sans';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/publicsans/v15/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymulp65ww.ttf) format('truetype');
}
@font-face {
  font-family: 'Public Sans';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/publicsans/v15/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuv565ww.ttf) format('truetype');
}
@font-face {
  font-family: 'Teko';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/teko/v20/LYjYdG7kmE0gV69VVPPdFl06VN_JHLSy.ttf) format('truetype');
}
@font-face {
  font-family: 'Teko';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/teko/v20/LYjYdG7kmE0gV69VVPPdFl06VN_wHLSy.ttf) format('truetype');
}
:root {
  --text-wrap: 795px;
  --text-wrap-s: 678px;
  --text-wrap-m: 915px;
  --cont-width-sm: 1280px;
  --cont-margin-sm: max(0px, (100% - var(--cont-width-sm) - var(--cont-padding)*2) / 2);
  --cont-width: 1410px;
  --cont-margin: max(0px, (100% - var(--cont-width) - var(--cont-padding)*2) / 2);
  --cont-width-lg: 1652px;
  --cont-margin-lg: max(0px, (100% - var(--cont-width-lg) - var(--cont-padding)*2) / 2);
  --cont-padding: clamp(20px, 8.68056vw - 46.66667px, 120px);
  --cont-padding-m: clamp(20px, 14.75694vw - 93.33333px, 190px);
  --cont-padding-l: clamp(20px, 18.66319vw - 123.33333px, 235px);
  --font-h1: clamp(57px, 2.50417vw + 37.76795px, 72px);
  --font-h2: clamp(46px, 3.50584vw + 19.07513px, 67px);
  --font-h3: clamp(37px, 2.33723vw + 19.05008px, 51px);
  --font-h4: clamp(29px, 1.5025vw + 17.46077px, 38px);
  --font-h5: clamp(23px, 0.83472vw + 16.58932px, 28px);
  --font-h6: clamp(19px, 0.33389vw + 16.43573px, 21px);
  --font-caption: 12px;
  --font-footnote: 10px;
}
/*------ typography ------*/
.font-footnote {
  font-size: var(--font-footnote);
}
.font-caption,
small {
  font-size: var(--font-caption);
}
.font-paragraph,
body,
table th,
table td {
  font-size: 15px;
}
.font-h6,
h6,
#slideshow .cycle-slideshow .slide .slide-content .slide-text {
  font-size: var(--font-h6);
}
.font-h5,
h5 {
  font-size: var(--font-h5);
}
.font-h4,
h4 {
  font-size: var(--font-h4);
}
.font-h3,
h3 {
  font-size: var(--font-h3);
}
.font-h2,
h2 {
  font-size: var(--font-h2);
}
.font-h1,
h1,
#slideshow .cycle-slideshow .slide .slide-content .slide-title,
#page-hero #page-header .page-title {
  font-size: var(--font-h1);
}
body {
  font-family: 'Public Sans', sans-serif;
  color: #666666;
  line-height: 1.5;
  letter-spacing: -0.02em;
}
h1,
h2,
h3,
h4,
h5,
h6,
#slideshow .cycle-slideshow .slide .slide-content .slide-title,
#slideshow .cycle-slideshow .slide .slide-content .slide-text,
#page-hero #page-header .page-title {
  font-family: 'Teko', sans-serif;
  word-break: break-word;
}
h1,
#slideshow .cycle-slideshow .slide .slide-content .slide-title,
#page-hero #page-header .page-title {
  font-weight: 700;
  color: #FFFFFF;
  line-height: 0.8;
  letter-spacing: -0.035em;
}
h2 {
  font-weight: 700;
  color: #333333;
  line-height: 0.8;
  letter-spacing: -0.035em;
}
h3 {
  font-weight: 700;
  color: #AB1F25;
  line-height: 0.8;
  letter-spacing: -0.035em;
}
h4 {
  font-weight: 600;
  color: #333333;
  line-height: 0.8;
  letter-spacing: -0.03em;
}
h5 {
  font-weight: 600;
  color: #D22128;
  line-height: 0.9;
  letter-spacing: -0.025em;
}
h6,
#slideshow .cycle-slideshow .slide .slide-content .slide-text {
  font-weight: 600;
  color: #333333;
  line-height: 0.9;
  letter-spacing: -0.02em;
}
small {
  color: #666666;
  line-height: 1.2;
}
@media all and (min-width: 769px) {
  .font-paragraph,
  body,
  table th,
  table td {
    font-size: 16px;
  }
  body {
    letter-spacing: -0.02em;
  }
}
/*------ interface ------*/
::-moz-selection {
  background: #D22128;
  color: #FFFFFF;
}
::selection {
  background: #D22128;
  color: #FFFFFF;
}
::-moz-selection {
  background: #D22128;
  color: #FFFFFF;
}
hr {
  border-color: #D5D5D5;
}
a {
  color: #D22128;
  word-break: break-word;
}
a:hover,
a:active {
  color: #AB1F25;
}
blockquote {
  font-size: var(--font-h6);
  font-weight: 500;
  position: relative;
  border-left: 1px solid rgba(210, 33, 40, 0.5);
  color: #222222;
  font-style: italic;
  line-height: 1.4;
  padding: 20px 0 15px 20px;
  margin-bottom: 20px;
}
blockquote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10px;
  height: 100%;
  width: 99px;
  z-index: -1;
  background: url('/images/svg/blockquote.svg') no-repeat;
}
@media all and (min-width: 1025px) {
  blockquote {
    padding: 40px 0 20px 55px;
  }
  blockquote::before {
    left: 40px;
  }
}
.fancy-block img {
  display: inline-block !important;
  height: 22px;
  margin: 0 2px 0 5px;
  height: clamp(36px, 1.90972vw + 21.33333px, 58px);
}
.fancy-block img.mini {
  height: clamp(28px, 1.47569vw + 16.66667px, 45px);
}
span.fancy-text {
  color: #AB1F25;
}
.house-pattern {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  background-image: url('/images/svg/pattern.svg');
  background-repeat: repeat;
  background-size: 280px 280px;
}
.gray-pattern {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}
.gray-pattern::after {
  position: absolute;
  content: '';
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url('/images/svg/pattern-dark.svg');
  background-repeat: repeat;
  background-size: 280px 280px;
  opacity: 0.03;
}
.light-pattern {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  max-height: 420px;
  z-index: -1;
}
.light-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#111), to(rgba(17, 17, 17, 0.6)));
  background: linear-gradient(to bottom, #111 0%, rgba(17, 17, 17, 0.6) 100%);
  max-height: 420px;
  z-index: 1;
}
.light-pattern::after {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  background-image: url('/images/svg/pattern.svg');
  background-repeat: repeat;
  background-size: 280px 280px;
  left: 0;
  background-size: 250px 240px;
  opacity: 0.2;
}
.pcg-gradient {
  background: #D22128;
  background: -webkit-gradient(left, right, color-stop(0%, #D22128), color-stop(100%, #80171c));
  background: -webkit-gradient(linear, right top, left top, from(#D22128), to(#80171c));
  background: linear-gradient(270deg, #D22128 0%, #80171c 100%);
}
.felt {
  background: url('/images/ui/felt-bg.jpg');
}
.stat-red {
  background: url('/images/svg/stat-poker-red.svg');
}
.stat-blue {
  background: url('/images/svg/stat-poker-blue.svg');
}
.stat-green {
  background: url('/images/svg/stat-poker-green.svg');
}
table {
  border-color: #CCCCCC;
}
table th,
table td {
  color: #666666;
  padding: 10px 20px;
}
table .table-header,
table th {
  color: #D22128;
  font-weight: 700;
}
.button {
  --text: #FFFFFF;
  --text-hover: #FFFFFF;
  --bg: #D22128;
  --bg-hover: #D22128;
  --border: #D22128;
  --border-hover: #D22128;
  --radius: 3px;
  font-size: clamp(17px, 0.73529vw + 13.47059px, 21px);
  --padding-v: clamp(12px, 2.34375vw - 6px, 18px);
  --padding-h: clamp(22px, 7.03125vw - 32px, 40px);
  position: relative;
  display: inline-block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: auto;
  height: 100%;
  color: var(--text);
  background: var(--bg);
  background-size: 101%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  line-height: 0.9;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  padding: var(--padding-v) var(--padding-h);
  z-index: 0;
  overflow: hidden;
  vertical-align: middle;
  font-weight: 900;
  -webkit-transition: background-color 0.3s ease 0s, border-color 0.3s ease 0s, opacity 0.3s ease 0s, color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s, border-color 0.3s ease 0s, opacity 0.3s ease 0s, color 0.3s ease 0s;
}
.button .fa,
.button .far,
.button .fab,
.button .fas,
.button span.mailto::before,
.button span.phone::before {
  line-height: 1;
  margin-right: 8px;
}
.button span.phone::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f3cd";
}
.button span.mailto::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0e0";
}
.button::before {
  position: absolute;
  content: '';
  bottom: 10px;
  left: 50%;
  width: 161.29032258%;
  height: 315.2173913%;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 150px / 70px;
  opacity: 0;
  z-index: -1;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: background 0.3s ease 0s, opacity 0.3s ease 0s;
  transition: background 0.3s ease 0s, opacity 0.3s ease 0s;
}
.button.simple {
  font-size: 17px;
  font-size: 1.0625rem;
  height: 2.7em;
  padding: 12px 15px 11px;
}
.button.simple.dark {
  --bg: #333333;
  --bg-hover: #333333;
  --border: #333333;
  --border-hover: #333333;
  --text-hover: #FFFFFF;
}
.button.outline {
  --text: #333333;
  --bg: none;
  --border: #333333;
}
.button.outline-light {
  --bg: none;
  --bg-hover: none;
  --border: rgba(255, 255, 255, 0.5);
  --border-hover: #FFFFFF;
}
.button.outline-dark {
  --bg: none;
  --bg-hover: #333333;
  --border: rgba(51, 51, 51, 0.75);
  --border-hover: #333333;
  --text: #333333;
  --text-hover: #FFFFFF;
}
.button:hover {
  background: var(--bg-hover);
  color: var(--text-hover);
  border-color: var(--border-hover);
}
.button:hover::before {
  opacity: 1;
}
.button:disabled {
  --bg: #F9F9F9;
  --border: #F9F9F9;
  --text: #CCCCCC;
  cursor: default;
}
.gradient-text {
  color: #D22128;
  background-color: #AB1F25;
  background-image: -webkit-gradient(linear, left top, right top, from(#D22128), color-stop(50%, #AB1F25), to(#D22128));
  background-image: linear-gradient(to right, #D22128 0%, #AB1F25 50%, #D22128 100%);
  background-clip: text;
  background-size: 200% auto;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
  padding-bottom: 0.25ch;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .gradient-text {
    /* IE10+ CSS styles go here */
    background: transparent;
  }
}
.panel-text {
  word-break: break-word;
}
.panel-text h1,
.panel-text h2,
.panel-text h3,
.panel-text h4,
.panel-text h5,
.panel-text h6,
.panel-text p,
.panel-text ul,
.panel-text small,
.panel-text table {
  max-width: var(--text-wrap, 100%);
}
/*------ email template ------*/
body.email-template {
  background: #F9F9F9;
  max-width: none;
}
body.email-template #email-wrapper {
  margin: 0 auto;
}
body.email-template #email-wrapper #email-header,
body.email-template #email-wrapper #email-content,
body.email-template #email-wrapper #email-footer {
  border: 0;
}
body.email-template #email-wrapper #email-header {
  padding: 30px 0;
  background: none;
}
body.email-template #email-wrapper #email-header img {
  display: block;
}
body.email-template #email-wrapper #email-content {
  padding: 0 0 30px;
  background: none;
}
body.email-template #email-wrapper #email-content #email-content-inner {
  background: #FFFFFF;
  padding: 30px 30px 10px;
  border-radius: 10px;
}
body.email-template #email-wrapper #email-footer {
  padding: 20px 0;
  background: none;
  border-top: 1px solid #CCCCCC;
  text-align: center;
}
/* 
	animations.less
	
*/
/*------ globals ------*/
@-webkit-keyframes scale-up {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(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;
    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);
  }
}
@keyframes scale-up {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(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;
    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);
  }
}
@-webkit-keyframes scale-up-rotate {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    -webkit-transform: scale(0.75) rotate(0);
    transform: scale(0.75) rotate(0);
  }
  60% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    -webkit-transform: scale(1) rotate(-2deg);
    transform: scale(1) rotate(-2deg);
  }
}
@keyframes scale-up-rotate {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    -webkit-transform: scale(0.75) rotate(0);
    transform: scale(0.75) rotate(0);
  }
  60% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    -webkit-transform: scale(1) rotate(-2deg);
    transform: scale(1) rotate(-2deg);
  }
}
@-webkit-keyframes scale-down {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    transform: scale(1.05);
    -webkit-transform: scale(1.05) rotate(0.02deg);
    -moz-transform: scale(1.05) rotate(0.02deg);
  }
  100% {
    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);
  }
}
@keyframes scale-down {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    transform: scale(1.05);
    -webkit-transform: scale(1.05) rotate(0.02deg);
    -moz-transform: scale(1.05) rotate(0.02deg);
  }
  100% {
    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);
  }
}
@-webkit-keyframes slide-left-rotate {
  0% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    -webkit-transform: rotate(15deg) translateX(100%);
    transform: rotate(15deg) translateX(100%);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
  }
}
@keyframes slide-left-rotate {
  0% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    -webkit-transform: rotate(15deg) translateX(100%);
    transform: rotate(15deg) translateX(100%);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
  }
}
@-webkit-keyframes slide-right-rotate {
  0% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    -webkit-transform: rotate(-15deg) translateX(-100%);
    transform: rotate(-15deg) translateX(-100%);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
  }
}
@keyframes slide-right-rotate {
  0% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    -webkit-transform: rotate(-15deg) translateX(-100%);
    transform: rotate(-15deg) translateX(-100%);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
  }
}
@-webkit-keyframes clip-from-bottom {
  0% {
    -webkit-clip-path: inset(100% 0 0 0);
            clip-path: inset(100% 0 0 0);
    opacity: 0;
  }
  100% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
    opacity: 1;
  }
}
@keyframes clip-from-bottom {
  0% {
    -webkit-clip-path: inset(100% 0 0 0);
            clip-path: inset(100% 0 0 0);
    opacity: 0;
  }
  100% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
    opacity: 1;
  }
}
@-webkit-keyframes clip-to-bottom {
  0% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
    opacity: 1;
  }
  100% {
    -webkit-clip-path: inset(100% 0 0 0);
            clip-path: inset(100% 0 0 0);
    opacity: 0;
  }
}
@keyframes clip-to-bottom {
  0% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
    opacity: 1;
  }
  100% {
    -webkit-clip-path: inset(100% 0 0 0);
            clip-path: inset(100% 0 0 0);
    opacity: 0;
  }
}
@-webkit-keyframes clip-from-top {
  0% {
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
    opacity: 1;
  }
}
@keyframes clip-from-top {
  0% {
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
            transform: translate3d(100px, 0, 0);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
            transform: translate3d(100px, 0, 0);
  }
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-60px, 0, 0);
            transform: translate3d(-60px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-60px, 0, 0);
            transform: translate3d(-60px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
}
@-webkit-keyframes slide-out-ltr {
  0% {
    -webkit-transform: translate3D(0, 0, 0);
            transform: translate3D(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3D(100%, 0, 0);
            transform: translate3D(100%, 0, 0);
  }
}
@keyframes slide-out-ltr {
  0% {
    -webkit-transform: translate3D(0, 0, 0);
            transform: translate3D(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3D(100%, 0, 0);
            transform: translate3D(100%, 0, 0);
  }
}
@-webkit-keyframes slide-out-rtl {
  0% {
    -webkit-transform: translate3D(0, 0, 0);
            transform: translate3D(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3D(-100%, 0, 0);
            transform: translate3D(-100%, 0, 0);
  }
}
@keyframes slide-out-rtl {
  0% {
    -webkit-transform: translate3D(0, 0, 0);
            transform: translate3D(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3D(-100%, 0, 0);
            transform: translate3D(-100%, 0, 0);
  }
}
@-webkit-keyframes reveal-ltr {
  0% {
    -webkit-transform: translate3D(-100%, 0, 0);
            transform: translate3D(-100%, 0, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3D(0, 0, 0);
            transform: translate3D(0, 0, 0);
    opacity: 1;
  }
}
@keyframes reveal-ltr {
  0% {
    -webkit-transform: translate3D(-100%, 0, 0);
            transform: translate3D(-100%, 0, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3D(0, 0, 0);
            transform: translate3D(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes reveal-rtl {
  0% {
    -webkit-transform: translate3D(100%, 0, 0);
            transform: translate3D(100%, 0, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3D(0, 0, 0);
            transform: translate3D(0, 0, 0);
    opacity: 1;
  }
}
@keyframes reveal-rtl {
  0% {
    -webkit-transform: translate3D(100%, 0, 0);
            transform: translate3D(100%, 0, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3D(0, 0, 0);
            transform: translate3D(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes reveal-top-20 {
  0% {
    -webkit-transform: translateY(20%);
            transform: translateY(20%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes reveal-top-20 {
  0% {
    -webkit-transform: translateY(20%);
            transform: translateY(20%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes draw {
  0% {
    stroke-dasharray: var(--draw-length);
    stroke-dashoffset: var(--draw-length);
  }
  100% {
    stroke-dasharray: var(--draw-length);
    stroke-dashoffset: var(--draw-offset, 0);
  }
}
@keyframes draw {
  0% {
    stroke-dasharray: var(--draw-length);
    stroke-dashoffset: var(--draw-length);
  }
  100% {
    stroke-dasharray: var(--draw-length);
    stroke-dashoffset: var(--draw-offset, 0);
  }
}
@-webkit-keyframes draw-reverse {
  0% {
    stroke-dasharray: var(--draw-length);
    stroke-dashoffset: calc(-1 * var(--draw-length));
  }
  100% {
    stroke-dasharray: var(--draw-length);
    stroke-dashoffset: var(--draw-offset, 0);
  }
}
@keyframes draw-reverse {
  0% {
    stroke-dasharray: var(--draw-length);
    stroke-dashoffset: calc(-1 * var(--draw-length));
  }
  100% {
    stroke-dasharray: var(--draw-length);
    stroke-dashoffset: var(--draw-offset, 0);
  }
}
/*------ header ------*/
@media all and (min-width: 769px) {
  #slideshow .slide .slide-title,
  #slideshow .slide .slide-text,
  #slideshow .slide .slide-buttons {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  }
  #slideshow .slide.cycle-slide .slide-title,
  #slideshow .slide.cycle-slide .slide-text,
  #slideshow .slide.cycle-slide .slide-buttons {
    -webkit-animation: fade-out 0.6s ease-out 0s;
    animation: fade-out 0.6s ease-out 0s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  #slideshow .slide.cycle-slide-active .slide-title {
    -webkit-animation: fade-up 0.6s ease-out 0s;
    animation: fade-up 0.6s ease-out 0s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  #slideshow .slide.cycle-slide-active .slide-text {
    -webkit-animation: fade-up 0.6s ease-out 0.2s;
    animation: fade-up 0.6s ease-out 0.2s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  #slideshow .slide.cycle-slide-active .slide-buttons {
    -webkit-animation: fade-up 0.6s ease-out 0.4s;
    animation: fade-up 0.6s ease-out 0.4s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  #slideshow .slide.cycle-slide-active svg.maple path {
    --draw-length: 2574.842;
    fill: transparent;
    stroke: #FFFFFF;
    stroke-width: 1px;
    stroke-dashoffset: var(--draw-length);
    stroke-dasharray: var(--draw-length);
    -webkit-animation: draw 1s ease-in 0s;
    animation: draw 1s ease-in 0s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  #page-hero .page-subtitle,
  #page-hero .page-buttons {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  }
  #page-hero.animated .page-subtitle {
    -webkit-animation: fade-up 0.6s ease-out 0.2s;
    animation: fade-up 0.6s ease-out 0.2s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  #page-hero.animated .page-buttons {
    -webkit-animation: fade-up 0.6s ease-out 0.4s;
    animation: fade-up 0.6s ease-out 0.4s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  #page-hero.animated svg.maple path {
    --draw-length: 2574.842;
    fill: transparent;
    stroke: #FFFFFF;
    stroke-width: 1px;
    stroke-dashoffset: var(--draw-length);
    stroke-dasharray: var(--draw-length);
    -webkit-animation: draw 1s ease-in 0s;
    animation: draw 1s ease-in 0s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  #page-hero .graphic {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  }
  #page-hero .graphic.animated.graphic-1 {
    -webkit-animation: slide-left-rotate 0.5s ease-in 0.2s;
    animation: slide-left-rotate 0.5s ease-in 0.2s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  #page-hero .graphic.animated.graphic-2 {
    -webkit-animation: slide-left-rotate 0.5s ease-out 0.2s;
    animation: slide-left-rotate 0.5s ease-out 0.2s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  #page-hero .graphic.animated.graphic-3 {
    -webkit-animation: slide-left-rotate 0.4s ease-out 0.2s;
    animation: slide-left-rotate 0.4s ease-out 0.2s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
}
/*------ panels ------*/
@media all and (min-width: 769px) {
  .fade-right,
  .fade-in,
  .promo-box {
    opacity: 0;
  }
  .fade-right.animated {
    -webkit-animation: fade-right 0.3s ease-in-out 0s;
    animation: fade-right 0.3s ease-in-out 0s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .fade-in.animated {
    -webkit-animation: fade-in 0.3s ease-in 0s;
    animation: fade-in 0.3s ease-in 0s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .panel.standard .panel-title,
  .panel.side .panel-title,
  .panel.parallax .panel-title,
  .panel.cta .panel-title,
  .panel.standard .panel-subtitle,
  .panel.side .panel-subtitle,
  .panel.parallax .panel-subtitle,
  .panel.cta .panel-subtitle,
  .panel.standard .tab-subtitle,
  .panel.side .tab-subtitle,
  .panel.parallax .tab-subtitle,
  .panel.cta .tab-subtitle,
  .panel.standard .tab-content,
  .panel.side .tab-content,
  .panel.parallax .tab-content,
  .panel.cta .tab-content,
  .panel.standard .panel-buttons,
  .panel.side .panel-buttons,
  .panel.parallax .panel-buttons,
  .panel.cta .panel-buttons {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  }
  .panel.standard.animated .panel-title,
  .panel.side.animated .panel-title,
  .panel.parallax.animated .panel-title,
  .panel.cta.animated .panel-title {
    -webkit-animation: clip-from-bottom 0.8s ease 0s;
    animation: clip-from-bottom 0.8s ease 0s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .panel.standard.animated .panel-subtitle,
  .panel.side.animated .panel-subtitle,
  .panel.parallax.animated .panel-subtitle,
  .panel.cta.animated .panel-subtitle,
  .panel.standard.animated .tab-subtitle,
  .panel.side.animated .tab-subtitle,
  .panel.parallax.animated .tab-subtitle,
  .panel.cta.animated .tab-subtitle {
    -webkit-animation: fade-up 0.6s ease-out 0.2s;
    animation: fade-up 0.6s ease-out 0.2s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .panel.standard.animated .tab-content,
  .panel.side.animated .tab-content,
  .panel.parallax.animated .tab-content,
  .panel.cta.animated .tab-content,
  .panel.standard.animated .panel-buttons,
  .panel.side.animated .panel-buttons,
  .panel.parallax.animated .panel-buttons,
  .panel.cta.animated .panel-buttons {
    -webkit-animation: fade-up 0.6s ease-out 0.4s;
    animation: fade-up 0.6s ease-out 0.4s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .panel.standard.animated svg.maple path,
  .panel.side.animated svg.maple path,
  .panel.parallax.animated svg.maple path,
  .panel.cta.animated svg.maple path {
    --draw-length: 2574.842;
    fill: transparent;
    stroke: #FFFFFF;
    stroke-width: 1px;
    stroke-dashoffset: var(--draw-length);
    stroke-dasharray: var(--draw-length);
    -webkit-animation: draw 1s ease-in 0s;
    animation: draw 1s ease-in 0s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .panel.mini-promo .promo-box {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }
  .panel.mini-promo .promo-box.animated {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
    -webkit-transition: opacity 1s ease 0s, -webkit-transform 1s ease 0s;
    transition: opacity 1s ease 0s, -webkit-transform 1s ease 0s;
    transition: opacity 1s ease 0s, transform 1s ease 0s;
    transition: opacity 1s ease 0s, transform 1s ease 0s, -webkit-transform 1s ease 0s;
  }
  .panel.side .panel-media,
  .panel.side .panel-text,
  .panel.side .pattern {
    opacity: 0;
  }
  .panel.side.animated .panel-title {
    -webkit-animation-delay: 0.8s;
            animation-delay: 0.8s;
  }
  .panel.side.animated .panel-subtitle {
    -webkit-animation-delay: 0.8s;
            animation-delay: 0.8s;
  }
  .panel.side.animated .panel-text,
  .panel.side.animated .panel-media {
    -webkit-animation: fade-in 0.3s cubic-bezier(0.76, 0, 0.24, 1) 1.2s;
    animation: fade-in 0.3s cubic-bezier(0.76, 0, 0.24, 1) 1.2s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .panel.side.animated.rtl .panel-content::before {
    -webkit-animation: slide-out-rtl 0.8s cubic-bezier(0.76, 0, 0.24, 1) 0.6s;
    animation: slide-out-rtl 0.8s cubic-bezier(0.76, 0, 0.24, 1) 0.6s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .panel.side.animated.rtl .pattern {
    -webkit-animation: fade-left 0.8s cubic-bezier(0.76, 0, 0.24, 1) 1.2s;
    animation: fade-left 0.8s cubic-bezier(0.76, 0, 0.24, 1) 1.2s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .panel.side.animated.ltr .panel-content::before {
    -webkit-animation: slide-out-ltr 0.8s cubic-bezier(0.76, 0, 0.24, 1) 0.6s;
    animation: slide-out-ltr 0.8s cubic-bezier(0.76, 0, 0.24, 1) 0.6s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .panel.side.animated.ltr .pattern {
    -webkit-animation: fade-right 0.8s cubic-bezier(0.76, 0, 0.24, 1) 1.2s;
    animation: fade-right 0.8s cubic-bezier(0.76, 0, 0.24, 1) 1.2s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .panel.side.animated.noimage .panel-title {
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
  }
  .panel.side.animated.noimage .panel-subtitle {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
  }
  .panel.side.animated.noimage .panel-text {
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s;
  }
  .panel.side.animated.noimage .pattern {
    -webkit-animation: fade-right 0.8s cubic-bezier(0.76, 0, 0.24, 1) 0.6s;
    animation: fade-right 0.8s cubic-bezier(0.76, 0, 0.24, 1) 0.6s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .panel.full_image .panel-image img {
    opacity: 0;
  }
  .panel.full_image.animated .panel-image img {
    -webkit-animation: fade-in 0.6s cubic-bezier(0.76, 0, 0.24, 1) 0s;
    animation: fade-in 0.6s cubic-bezier(0.76, 0, 0.24, 1) 0s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .event-modal-wrapper .event-image {
    opacity: 0;
  }
  .event-modal-wrapper .event-image {
    -webkit-animation: fade-down 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    animation: fade-down 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .event-modal-wrapper .event-content-wrapper h4.event-date,
  .event-modal-wrapper .event-content-wrapper h3,
  .event-modal-wrapper .event-content-wrapper .event-info {
    opacity: 0;
  }
  .event-modal-wrapper .event-content-wrapper h4.event-date {
    -webkit-animation: fade-up 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    animation: fade-up 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .event-modal-wrapper .event-content-wrapper h3 {
    -webkit-animation: fade-up 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
    animation: fade-up 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .event-modal-wrapper .event-content-wrapper .event-info {
    -webkit-animation: fade-up 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
    animation: fade-up 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  #events .event-box.animated .event-content .event-tag {
    -webkit-animation: tada 0.5s ease-in 0.6s;
    animation: tada 0.5s ease-in 0.6s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  #right-sidebar .page-contact,
  #right-sidebar ul.navigation-list {
    opacity: 0;
  }
  #right-sidebar.active {
    background-size: cover;
  }
  #right-sidebar.active .page-contact {
    -webkit-animation: fade-up 0.6s ease-out 0.5s;
    animation: fade-up 0.6s ease-out 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  #right-sidebar.active ul.navigation-list {
    -webkit-animation: fadeInRight 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
    animation: fadeInRight 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .panel.statistics .stat .stat-icon,
  .panel.statistics .stat .stat-value,
  .panel.statistics .stat .stat-label {
    opacity: 0;
  }
  .panel.statistics.animated .stat .stat-icon {
    -webkit-animation: fade-down 0.4s ease-out 0s;
    animation: fade-down 0.4s ease-out 0s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .panel.statistics.animated .stat .stat-value {
    -webkit-animation: reveal-top-20 0.4s ease-in 0s;
    animation: reveal-top-20 0.4s ease-in 0s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .panel.statistics.animated .stat .stat-label {
    -webkit-animation: reveal-top-20 0.6s ease-in 0.2s;
    animation: reveal-top-20 0.6s ease-in 0.2s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
}
/*------ dynamic elements------*/
.jcarousel-wrapper {
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
}
.animated .jcarousel-wrapper {
  -webkit-animation: fade-up 0.6s ease-out 0.2s;
  animation: fade-up 0.6s ease-out 0.2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.panel.gallery .dynamic-gallery .gal-item {
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
}
.panel.gallery .dynamic-gallery .gal-item.animated {
  -webkit-animation: scale-up 0.6s ease-out 0s;
  animation: scale-up 0.6s ease-out 0s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.panel.facebook .facebook-post {
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
}
.panel.facebook.animated .facebook-post {
  -webkit-animation: scale-up 0.6s ease-out 0s;
  animation: scale-up 0.6s ease-out 0s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
@media all and (min-width: 481px) {
  .staff-box,
  .event-box {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  }
  .staff-box.animated,
  .event-box.animated {
    -webkit-animation: scale-up 0.6s ease-out 0.2s;
    animation: scale-up 0.6s ease-out 0.2s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .staff-box #location-panel #locations .logo,
  .event-box #location-panel #locations .logo {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  }
  .staff-box #location-panel.animated #locations .logo,
  .event-box #location-panel.animated #locations .logo {
    -webkit-animation: scale-up 0.6s ease-out 0.2s;
    animation: scale-up 0.6s ease-out 0.2s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
}
/*------ footer ------*/
/*------ utilities ------*/
.container {
  --container-width: var(--cont-width);
  width: 100%;
  max-width: calc(var(--container-width) + var(--cont-padding) * 2);
  margin: 0 auto;
  padding: 0 var(--cont-padding);
}
.container.container-sm {
  --container-width: var(--cont-width-sm);
}
.container.container-lg {
  --container-width: var(--cont-width-lg);
}
a.sneaky-link:not(:hover) {
  color: inherit;
}
.buttons-container {
  --margin-t: clamp(25px, 13.67188vw - 80px, 60px);
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: var(--margin-t) 0 0;
  gap: 10px;
}
.responsive-bg {
  --src: var(--bg-src, none);
  --src-tablet-p: var(--bg-src-tablet-p, var(--src));
  --src-tablet-l: var(--bg-src-tablet-l, var(--src-tablet-p));
  --src-notebook: var(--bg-src-notebook, var(--src-tablet-l));
  --src-desktop: var(--bg-src-desktop, var(--src-notebook));
  --pos-desktop: var(--bg-pos, center);
  --pos-mobile: var(--bg-pos-mobile, var(--pos-desktop));
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: var(--pos-mobile);
  z-index: -1;
}
.responsive-bg.visible {
  background-image: var(--src);
}
@media all and (min-width: 481px) {
  .responsive-bg.visible {
    background-image: var(--src-tablet-p);
  }
}
@media all and (min-width: 769px) {
  .responsive-bg.visible {
    background-image: var(--src-tablet-l);
  }
}
@media all and (min-width: 1025px) {
  .responsive-bg.visible {
    background-image: var(--src-notebook);
  }
}
@media all and (min-width: 1367px) {
  .responsive-bg.visible {
    background-image: var(--src-desktop);
  }
}
.touch .responsive-bg {
  background-attachment: scroll !important;
}
@media all and (min-width: 769px) {
  .responsive-bg {
    background-position: var(--pos-desktop);
  }
}
img.lazy-load:not(.loaded):not(.fancy-img):not(.fancy-img-mini) {
  background-color: #CCCCCC;
}
.touch .responsive-bg {
  background-attachment: scroll;
  background-size: cover;
}
.touch .ps__rail-y {
  display: none;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  z-index: 1;
}
.overlay.overlay-theme1 {
  background-color: #D22128;
}
.overlay.overlay-theme2 {
  background-color: #AB1F25;
}
.overlay.overlay-gradient {
  background: #D22128;
  background: -webkit-gradient(left, right, color-stop(0%, #D22128), color-stop(100%, #80171c));
  background: -webkit-gradient(linear, right top, left top, from(#D22128), to(#80171c));
  background: linear-gradient(270deg, #D22128 0%, #80171c 100%);
}
.overlay.overlay-black {
  background-color: #111111;
}
.overlay.solid {
  opacity: 1;
}
.svg-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
@media (max-width: 768px) {
  .svg-wrapper svg.maple path,
  .maple-wrapper svg.maple path {
    stroke: #FFFFFF;
  }
}
.language-properties {
  margin-bottom: 10px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.language-properties select {
  background: none;
  border: 0;
  color: #CCCCCC;
  cursor: pointer;
  font-size: 15px;
  padding: 0 25px 0 0 !important;
  margin: 0;
  max-width: 170px;
  font-weight: 300;
}
.language-properties select:focus {
  color: #CCCCCC;
}
.language-properties select.language {
  max-width: 105px;
}
.language-properties .property-selector,
.language-properties .language-selector {
  position: relative;
}
.language-properties .property-selector::before,
.language-properties .language-selector::before,
.language-properties .property-selector::after,
.language-properties .language-selector::after {
  position: absolute;
  content: '';
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.language-properties .property-selector::after,
.language-properties .language-selector::after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f078";
  font-size: 13px;
  right: 5px;
  color: #CCCCCC;
}
.language-properties .property-selector .input,
.language-properties .language-selector .input,
.language-properties .property-selector label,
.language-properties .language-selector label {
  display: none;
}
.language-properties .property-selector {
  margin-right: 7px;
}
.language-properties .property-selector::before {
  height: 17px;
  width: 1px;
  right: -6px;
  background: rgba(238, 238, 238, 0.2);
}
.language-properties .language-selector {
  margin-left: 7px;
}
#mobile-navigation {
  display: none;
}
#menu-toggle {
  position: absolute;
  display: block;
  cursor: pointer;
  top: 0;
  right: 0;
  width: 61px;
  height: 61px;
  background-color: #D22128;
  -webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.16);
  border-radius: 0px 0px 0px 3px;
  z-index: 500;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: transform 0.3s ease 0s, display 0.3s ease 0s;
  -webkit-transition: display 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  transition: display 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, display 0.3s ease 0s;
  transition: transform 0.3s ease 0s, display 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}
#menu-toggle span {
  position: absolute;
  height: 1px;
  width: 30px;
  background: #FFFFFF;
  left: 50%;
  margin-left: -15px;
  opacity: 1;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: transform 0.3s ease 0s;
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}
#menu-toggle span:nth-child(1) {
  top: calc(50% - 11.5px);
}
#menu-toggle span:nth-child(2),
#menu-toggle span:nth-child(3) {
  top: calc(50% - 0.5px);
}
#menu-toggle span:nth-child(4) {
  top: calc(50% + 10.5px);
}
#menu-toggle.open {
  display: inherit;
}
#menu-toggle.close {
  display: none;
}
/*------ navigation ------*/
#page-sidebar {
  position: fixed;
  background: #111111;
  border-right: 1px solid #FFFFFF;
  top: 0;
  bottom: 0;
  left: -270px;
  width: 270px;
  padding-bottom: 50px;
  z-index: 100;
}
#menu-wrapper {
  /*.absolute; top:0; left:0;*/
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(11, 11, 11, 0.35);
  box-shadow: 0px 0px 10px 0px rgba(11, 11, 11, 0.35);
}
#menu-wrapper .ps__rail-y {
  position: absolute;
}
#menu-wrapper .ps__rail-y .ps__thumb-y {
  position: absolute;
  left: 7px;
}
#menu-wrapper span.language-header {
  font-weight: 300;
  color: #EEEEEE;
  margin-top: 25px;
  margin-bottom: 3px;
}
#menu-wrapper .language-selector {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
#menu-wrapper .language-selector .select {
  display: none;
}
#menu-wrapper .language-selector label {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  width: 20px !important;
  height: 20px;
}
#menu-wrapper .language-selector label .radio {
  cursor: pointer;
  display: block;
  width: 20px;
  height: 20px;
  opacity: 0;
}
#menu-wrapper .language-selector label::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
}
#menu-wrapper .language-selector label:not(.checked)::before {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}
#menu-wrapper .language-selector label.English::before {
  background: url('/images/svg/lang-english.svg') center;
}
#menu-wrapper .language-selector label.Chinese::before {
  background: url('/images/svg/lang-chinese.svg?v=1.01') center;
}
#menu-wrapper .language-selector label.Vietnamese::before {
  background: url('/images/svg/lang-vietnamese.svg') center;
}
#menu-wrapper .page-menu-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  padding-top: 35px;
  text-align: center;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#menu-wrapper .page-menu-wrapper #main-navigation {
  margin-top: 40px;
}
#menu-wrapper .page-menu-wrapper #main-navigation ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  position: relative;
}
#menu-wrapper .page-menu-wrapper #main-navigation ul::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 50%;
  height: 1px;
  width: 100px;
  background: rgba(153, 153, 153, 0.5);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
#menu-wrapper .page-menu-wrapper #main-navigation ul > li:not(:first-of-type)::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 50%;
  height: 1px;
  width: 50px;
  background: rgba(153, 153, 153, 0.5);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
#menu-wrapper .page-menu-wrapper #main-navigation ul li {
  position: relative;
}
#menu-wrapper .page-menu-wrapper #main-navigation ul li a {
  position: relative;
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 800;
  display: block;
  padding: 15px 20px 17px;
  text-align: center;
}
#menu-wrapper .page-menu-wrapper #main-navigation ul li a:not(:hover) {
  color: #FFFFFF;
}
#menu-wrapper .page-menu-wrapper #main-navigation ul li a::after {
  position: absolute;
  content: '';
  top: 100%;
  left: 0;
  width: calc(100% - 20px);
  height: 1px;
  background: rgba(171, 31, 37, 0.75);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transform: scaleX(0) rotate(0deg);
          transform: scaleX(0) rotate(0deg);
  -webkit-transition: transform 0.5s ease 0s;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}
#menu-wrapper .page-menu-wrapper #main-navigation ul li a:hover::after {
  display: none;
}
#menu-wrapper .page-menu-wrapper #main-navigation ul li.active a {
  color: #D22128;
}
#menu-wrapper .page-menu-wrapper #main-navigation ul li ul {
  display: none;
}
#menu-wrapper .page-menu-wrapper #main-navigation ul li ul .menu-header {
  display: none;
}
#menu-wrapper .page-menu-wrapper #main-navigation ul li ul li a {
  font-size: 19px;
}
#menu-wrapper .page-menu-wrapper #main-navigation ul li ul li a:not(:hover) {
  color: #CCCCCC;
}
#menu-wrapper .page-menu-wrapper #main-navigation ul li ul li::before {
  display: none;
}
#menu-wrapper .page-menu-wrapper #main-navigation ul li ul li:last-child a {
  padding-top: 10px;
}
#menu-wrapper .page-menu-wrapper #main-navigation ul li ul li:not(:last-child) a {
  padding: 10px 20px;
}
#menu-wrapper .page-menu-wrapper #main-navigation ul li ul li.active a {
  color: #AB1F25;
}
#menu-wrapper .page-menu-wrapper .social-icons {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: auto;
  padding-top: 20px;
  gap: 5px;
}
#menu-wrapper .page-menu-wrapper .social-icons a {
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
}
#menu-wrapper .page-menu-wrapper .language-properties {
  margin: 30px 0 20px;
}
#menu-wrapper .page-menu-wrapper .language-properties .select {
  max-width: 190px;
}
#menu-wrapper .page-menu-wrapper .language-properties .property-selector::before {
  display: none;
}
#page-navigation {
  position: absolute;
  display: block;
  text-align: right;
  width: 100%;
}
#page-navigation .container {
  height: 100%;
  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;
}
#page-navigation #page-logo {
  position: relative;
  display: block;
  margin: 20px 0 20px;
  max-width: 125px;
  z-index: 200;
  -webkit-box-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-transition: margin 0.2s;
  transition: margin 0.2s;
}
#page-navigation #page-logo img {
  max-height: 100%;
  display: none;
  -webkit-transition: opacity 0.3s ease 0s, width 0.3s ease 0s, height 0.3s ease 0s, max-height 0.3s ease 0s;
  transition: opacity 0.3s ease 0s, width 0.3s ease 0s, height 0.3s ease 0s, max-height 0.3s ease 0s;
}
#page-navigation #page-logo img + img {
  display: block;
}
@media all and (min-width: 1025px) {
  #page-navigation {
    display: none;
  }
}
.homepage #page-navigation #page-logo img {
  display: block;
}
.homepage #page-navigation #page-logo img ~ img {
  display: none;
}
#page-wrapper {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  z-index: 1;
}
@media all and (min-width: 1025px) {
  #page-wrapper {
    margin-left: 270px !important;
  }
  #page-sidebar {
    -webkit-transition: none;
    transition: none;
    left: 0;
  }
}
/*------ slideshow ------*/
#slideshow {
  min-height: 650px;
}
#slideshow::after {
  content: '';
  min-height: inherit;
  font-size: 0;
}
#slideshow .cycle-slideshow {
  position: relative;
  min-height: 650px;
}
#slideshow .cycle-slideshow .slide {
  position: relative;
  width: 100%;
  /*height:100%;*/
  display: none;
}
#slideshow .cycle-slideshow .slide.cycle-slide {
  display: block;
}
#slideshow .cycle-slideshow .slide.slide-0 {
  height: 100%;
}
#slideshow .cycle-slideshow .slide .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: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 0 var(--cont-padding-l);
  z-index: 2;
}
#slideshow .cycle-slideshow .slide .slide-content {
  position: relative;
  max-width: var(--text-wrap-s);
  z-index: 1;
}
#slideshow .cycle-slideshow .slide .slide-content .slide-title {
  font-size: clamp(57px, 3.7246vw + 39.1219px, 90px);
}
#slideshow .cycle-slideshow .slide .slide-content .slide-text {
  font-weight: 300;
  text-transform: uppercase;
  color: #FFFFFF;
  font-family: 'Public Sans', sans-serif;
  line-height: 1;
  margin-top: clamp(15px, 1.95313vw, 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;
}
#slideshow .cycle-slideshow .slide .slide-video {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  display: none;
}
#slideshow .slideshow-prev-next {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 999;
}
#slideshow .slideshow-prev-next a {
  float: left;
  display: block;
  position: relative;
  width: var(--size);
  height: var(--size);
  background: #111111;
  color: #FFFFFF;
  margin-left: 2px;
  line-height: var(--size);
  text-align: center;
  --size: clamp(50px, 3.90625vw + 20px, 60px);
  --size-hover: clamp(65px, 5.85938vw + 20px, 80px);
  -webkit-transition: width 0.3s ease 0s;
  transition: width 0.3s ease 0s;
}
#slideshow .slideshow-prev-next a::after {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#slideshow .slideshow-prev-next a#cycle-prev {
  border-top-left-radius: 3px;
}
#slideshow .slideshow-prev-next a#cycle-prev::after {
  background: url("/images/svg/arrow-left.svg") no-repeat;
}
#slideshow .slideshow-prev-next a#cycle-next {
  border-top-right-radius: 3px;
}
#slideshow .slideshow-prev-next a#cycle-next::after {
  background: url("/images/svg/arrow-right.svg") no-repeat;
}
#slideshow .slideshow-prev-next a:hover {
  width: var(--size-hover);
}
#slideshow .slideshow-pager {
  display: none;
}
#slideshow .overlay.overlay-black {
  opacity: 1;
  background: -webkit-gradient(linear, left top, right top, from(rgba(34, 34, 34, 0.9)), to(rgba(102, 102, 102, 0)));
  background: linear-gradient(to right, rgba(34, 34, 34, 0.9) 0%, rgba(102, 102, 102, 0) 100%);
}
#slideshow .svg-wrapper {
  z-index: 1;
  opacity: 0.25;
}
#slideshow .svg-wrapper svg {
  position: absolute;
  bottom: 0;
  left: -6px;
  height: 80%;
}
.touch #slideshow .slideshow-prev-next {
  display: none;
}
/*------ banner ------*/
#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: 205px;
}
#page-hero::after {
  content: '';
  min-height: inherit;
  font-size: 0;
  display: block;
}
#page-hero .container {
  padding: 0 var(--cont-padding-l);
}
#page-hero #page-header {
  position: relative;
  color: #FFFFFF;
  padding: 110px 0 30px;
  z-index: 3;
}
#page-hero #page-header .page-title {
  font-size: clamp(57px, 3.7246vw + 39.1219px, 90px);
  max-width: 600px;
}
#page-hero #page-header .page-subtitle {
  font-size: var(--font-h6);
  font-weight: 300;
  margin-top: 5px;
}
#page-hero #page-hero-image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
#page-hero:not(.noimage) {
  min-height: 400px;
}
#page-hero:not(.noimage) .overlay {
  background: -webkit-gradient(linear, left top, right top, from(rgba(34, 34, 34, 0.8)), color-stop(36.45%, rgba(43, 43, 43, 0.7)), to(rgba(102, 102, 102, 0)));
  background: linear-gradient(to right, rgba(34, 34, 34, 0.8) 0%, rgba(43, 43, 43, 0.7) 36.45%, rgba(102, 102, 102, 0) 100%);
  opacity: 1;
}
#page-hero:not(.noimage) .maple-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.25;
  z-index: 2;
}
#page-hero:not(.noimage) .maple-wrapper svg {
  position: absolute;
  bottom: 0;
  left: 0px;
  height: 90%;
}
#page-hero.noimage {
  background: url('/images/ui/felt-bg.jpg');
  background-repeat: repeat-x;
}
#page-hero.noimage .overlay {
  background: -webkit-gradient(linear, right top, left top, from(rgba(34, 34, 34, 0.8)), color-stop(36.45%, rgba(43, 43, 43, 0.7)), to(rgba(102, 102, 102, 0)));
  background: linear-gradient(to left, rgba(34, 34, 34, 0.8) 0%, rgba(43, 43, 43, 0.7) 36.45%, rgba(102, 102, 102, 0) 100%);
}
#page-hero.noimage .svg-wrapper svg {
  position: absolute;
  top: 5px;
  right: 0;
  width: 100%;
  opacity: 0.1;
}
#page-hero .graphic.graphic-1 {
  top: -270px;
  right: -85px;
}
#page-hero .graphic.graphic-1 img {
  -webkit-transform: rotate(220deg);
  transform: rotate(220deg);
  max-width: 270px;
}
#page-hero .graphic.graphic-2 {
  top: -35%;
  right: -18%;
}
#page-hero .graphic.graphic-2 img {
  max-width: 200px;
}
#page-hero .graphic.graphic-3 {
  top: -15%;
  right: -5%;
}
#page-hero .graphic.graphic-3 img {
  -webkit-transform: rotate(70deg);
  transform: rotate(70deg);
  max-width: 150px;
}
#slideshow .responsive-bg,
#page-hero .responsive-bg {
  width: 100%;
  height: 100%;
  background-attachment: scroll;
}
#breadcrumbs {
  font-weight: 300;
  position: relative;
  font-size: var(--font-caption);
  padding: 15px var(--cont-padding-l);
}
#breadcrumbs::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
  background-image: url('/images/svg/pattern-h.svg');
  background-repeat: repeat-x;
  opacity: 0.02;
  z-index: -1;
}
#breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
#breadcrumbs ol li {
  display: inline-block;
}
#breadcrumbs ol li a:not(:hover) {
  color: inherit;
}
#breadcrumbs ol li .arrow {
  margin: 0 4px;
}
@media all and (min-width: 481px) {
  #page-hero .graphic.graphic-1 {
    right: -140px;
  }
  #page-hero .graphic.graphic-1 img {
    -webkit-transform: rotate(235deg);
    transform: rotate(235deg);
    max-width: 300px;
  }
  #page-hero .graphic.graphic-2 {
    right: -20%;
  }
  #page-hero .graphic.graphic-2 img {
    max-width: 240px;
  }
  #page-hero .graphic.graphic-3 {
    top: -15%;
    right: -5%;
  }
  #page-hero .graphic.graphic-3 img {
    -webkit-transform: rotate(70deg);
    transform: rotate(70deg);
    max-width: 100%;
  }
}
@media (min-width: 650px) {
  #page-hero .graphic.graphic-2 {
    right: -15%;
  }
  #page-hero .graphic.graphic-2 img {
    max-width: 300px;
  }
  #page-hero .graphic.graphic-3 {
    top: 10px;
    right: 0;
  }
  #page-hero .graphic.graphic-3 img {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}
@media (min-width: 800px) {
  #page-hero .graphic.graphic-1 {
    right: -10%;
  }
  #page-hero .graphic.graphic-1 img {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
  }
  #page-hero .graphic.graphic-2 {
    right: -55px;
    top: 5px;
  }
  #page-hero .graphic.graphic-3 {
    right: 10px;
  }
}
@media all and (min-width: 1025px) {
  #slideshow {
    min-height: 750px;
  }
  #slideshow .cycle-slideshow {
    min-height: 750px;
  }
  .no-touch #slideshow .cycle-slideshow .slide .slide-video {
    display: block;
  }
  #page-hero {
    min-height: 280px;
  }
  #page-hero #page-header {
    padding: 60px 0;
  }
  #page-hero #page-header .page-subtitle {
    margin-top: 10px;
  }
  #page-hero:not(.noimage) {
    min-height: 450px;
  }
  #page-hero.noimage .svg-wrapper svg {
    top: 0;
    width: auto;
    height: 100%;
  }
  #page-hero .graphic.graphic-2 {
    top: 20px;
  }
  #page-hero .graphic.graphic-3 {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  #breadcrumbs {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
@media all and (min-width: 1367px) {
  #slideshow {
    min-height: 880px;
  }
  #slideshow .cycle-slideshow {
    min-height: 880px;
  }
  #slideshow .slideshow-prev-next a::after {
    width: 35px;
    height: 35px;
  }
  #page-hero .graphic.graphic-1 img {
    max-width: 390px;
  }
  #page-hero .graphic.graphic-2 {
    top: 20px;
  }
  #page-hero .graphic.graphic-3 {
    right: 50px;
  }
}
@media all and (min-width: 1900px) {
  #page-hero #page-header .page-title {
    max-width: 1000px;
  }
  #page-hero .graphic.graphic-1 {
    top: -210px;
    right: -80px;
  }
}
/*------ body content ------*/
.panel {
  --panel-margin: clamp(60px, 6.6778vw + 8.71452px, 100px);
  --panel-margin-sm: clamp(25px, 3.3389vw - 0.64274px, 45px);
  position: relative;
  display: block;
  font-weight: 300;
  margin-top: var(--panel-margin);
}
.panel:first-child {
  margin-top: var(--panel-margin-sm);
}
.panel .panel-header {
  max-width: var(--text-wrap-m);
}
.panel .fancy-block img {
  display: inline-block !important;
  position: relative;
  height: 22px;
  margin: 0 0 0 2px;
  height: clamp(30px, 1.21528vw + 20.66667px, 44px);
}
.panel .fancy-block img.mini {
  bottom: -3px;
  height: clamp(26px, 1.04167vw + 18px, 38px);
}
.panel .fancy-block h3 img {
  height: clamp(24px, 0.86806vw + 17.33333px, 34px);
}
.panel .fancy-block h3 img.mini {
  height: clamp(20px, 0.69444vw + 14.66667px, 28px);
}
.panel .fancy-block h5 img {
  height: clamp(16px, 0.17361vw + 14.66667px, 18px);
}
.panel.standard .container {
  padding: 0 var(--cont-padding-l);
}
.panel:where(:not(.standard:first-child)) {
  display: none;
}
.panel-tabs {
  display: none;
}
/*------ leadins ------*/
.leadin-popup {
  display: none;
}
/*------ footer ------*/
#page-footer {
  display: none;
}
/*------ icons ------*/
.social-icons {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
}
.social-icons a span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: 21px;
  line-height: 25px;
}
.social-icons a:not(:hover) {
  color: #999999;
}
.social-icons a::after {
  display: none;
}
