@-webkit-keyframes blink {
  50% {
    opacity: 0; } }
@keyframes blink {
  50% {
    opacity: 0; } }
.blink {
  -webkit-animation: blink 1s step-start 0s infinite;
  animation: blink 1s step-start 0s infinite; }

@-webkit-keyframes flash {
  0% {
    opacity: 1; }
  50% {
    opacity: 0.2; }
  100% {
    opacity: 1; } }
@keyframes flash {
  0% {
    opacity: 1; }
  50% {
    opacity: 0.2; }
  100% {
    opacity: 1; } }
.flash {
  -webkit-animation: flash linear 1.2s infinite;
  animation: flash linear 1.2s infinite; }

@-webkit-keyframes pulsate {
  0% {
    opacity: 0.6; }
  50% {
    opacity: 1; }
  100% {
    opacity: 0.6; } }
@keyframes pulsate {
  0% {
    opacity: 0.6; }
  50% {
    opacity: 1; }
  100% {
    opacity: 0.6; } }
.pulsate {
  opacity: 0.6;
  -webkit-animation: pulsate 1.5s ease-out;
  -webkit-animation-iteration-count: infinite;
  animation: pulsate 1.5s ease-out;
  animation-iteration-count: infinite; }

@-webkit-keyframes jumpPulse {
  0% {
    opacity: 0.6;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  20% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  40% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px); }
  50% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  60% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px); }
  80% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0.6;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }
@keyframes jumpPulse {
  0% {
    opacity: 0.6;
    transform: translateY(0); }
  20% {
    transform: translateY(0); }
  40% {
    transform: translateY(-5px); }
  50% {
    opacity: 1;
    transform: translateY(0); }
  60% {
    transform: translateY(-2px); }
  80% {
    transform: translateY(0); }
  100% {
    opacity: 0.6;
    transform: translateY(0); } }
.jump-pulse {
  display: inline-block;
  font-weight: bold;
  opacity: 0.6;
  -webkit-animation: jumpPulse 1.5s ease 0s infinite normal;
  animation: jumpPulse 1.5s ease 0s infinite normal; }

.media, .media-body {
  display: block;
  width: auto;
  overflow: hidden;
  margin-bottom: 0.375rem; }

.media .media-aside {
  display: block;
  float: left;
  width: auto;
  margin-right: 0.75rem; }
.media .media-aside img {
  max-width: 6.25rem;
  margin-bottom: 0.375rem; }

.full-height {
  height: 100%; }

.is-marginless {
  margin: 0 !important; }

.is-bold {
  font-weight: bold !important; }

.ir {
  display: block;
  border: 0;
  text-indent: -999em;
  overflow: hidden;
  background-color: transparent;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr; }

.ir br {
  display: none; }

.hidden, [hidden] {
  display: none !important;
  visibility: hidden; }

.sr-only, .visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto; }

.invisible {
  visibility: hidden; }

.clearfix:before, .clearfix:after {
  content: "";
  display: table; }

.clearfix:after {
  clear: both; }

.clear {
  clear: both;
  line-height: 1px;
  height: 1px; }

.print-only {
  display: none; }

.fl_left {
  float: left; }

.fl_right {
  float: right; }

.ta_right {
  text-align: right; }

.ta_center {
  text-align: center; }

.vertical-center {
  position: absolute;
  width: auto;
  margin: auto;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.blurred {
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
  cursor: default !important; }

@media screen\0 {
  .blurred {
    opacity: 0.3; } }
html {
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

html, body {
  height: 100%;
  margin: 0;
  -webkit-text-size-adjust: 100%; }

::-moz-selection {
  background: #212121;
  color: #fff;
  text-shadow: none; }

::selection {
  background: #212121;
  color: #fff;
  text-shadow: none; }

audio, canvas, video {
  vertical-align: middle; }

*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

body {
  background: #fff;
  font-family: "WorkSans-Regular", Arial, Helvetica, Gadget, sans-serif;
  font-size: 16px;
  color: #333;
  line-height: 1.5; }

a {
  color: #e01f1d;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }
a:hover {
  color: #212121; }
a:focus {
  color: #212121;
  outline: 0; }
a:hover, a:active {
  outline: 0; }

button {
  border: 0;
  cursor: pointer;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }
button::-moz-focus-inner {
  border: 0; }

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  border: 0; }

svg:not(:root) {
  overflow: hidden; }

hr {
  display: block;
  height: 1px;
  margin: 0.75rem 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #f2f2f2; }

h1, h2, h3, h4, h5 {
  font-family: "Montserrat-Bold";
  line-height: 1.2;
  margin: 0 0 0.75rem 0; }

h1 {
  font-size: 1.375rem; }

h2 {
  font-size: 1.25rem; }

h3 {
  font-size: 1.125rem; }

h4 {
  font-size: 1rem; }

h5 {
  font-size: 1rem; }

ul, ol, dl {
  margin: 0 0 1.25rem 0; }

p {
  margin: 0 0 1.25rem 0; }

ul {
  list-style: none;
  padding: 0; }

q {
  display: block; }

strong, b {
  font-family: "WorkSans-SemiBold"; }

em, i {
  font-family: "WorkSans-Italic"; }

strong > i, b > i, strong > em, b > em, i > strong, i > b, em > strong, em > b {
  font-family: "WorkSans-SemiBoldItalic"; }

.wp-block-quote {
  margin-left: 0;
  padding-left: 0.75rem;
  border-left: 0.5rem solid #212121; }

@font-face {
  font-family: "Montserrat-LightItalic";
  src: url("fonts/montserrat/Montserrat-LightItalic.woff2") format("woff2"), url("fonts/montserrat/Montserrat-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic; }
@font-face {
  font-family: "MontserratAlternates-ExtraBoldItalic";
  src: url("fonts/montserrat/MontserratAlternates-ExtraBoldItalic.woff2") format("woff2"), url("fonts/montserrat/MontserratAlternates-ExtraBoldItalic.woff") format("woff");
  font-weight: 800;
  font-style: italic; }
@font-face {
  font-family: "Montserrat-ExtraLightItalic";
  src: url("fonts/montserrat/Montserrat-ExtraLightItalic.woff2") format("woff2"), url("fonts/montserrat/Montserrat-ExtraLightItalic.woff") format("woff");
  font-weight: 200;
  font-style: italic; }
@font-face {
  font-family: "MontserratAlternates-Italic";
  src: url("fonts/montserrat/MontserratAlternates-Italic.woff2") format("woff2"), url("fonts/montserrat/MontserratAlternates-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic; }
@font-face {
  font-family: "Montserrat-Medium";
  src: url("fonts/montserrat/Montserrat-Medium.woff2") format("woff2"), url("fonts/montserrat/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal; }
@font-face {
  font-family: "Montserrat-Light";
  src: url("fonts/montserrat/Montserrat-Light.woff2") format("woff2"), url("fonts/montserrat/Montserrat-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal; }
@font-face {
  font-family: "MontserratAlternates-BlackItalic";
  src: url("fonts/montserrat/MontserratAlternates-BlackItalic.woff2") format("woff2"), url("fonts/montserrat/MontserratAlternates-BlackItalic.woff") format("woff");
  font-weight: 900;
  font-style: italic; }
@font-face {
  font-family: "Montserrat-BoldItalic";
  src: url("fonts/montserrat/Montserrat-BoldItalic.woff2") format("woff2"), url("fonts/montserrat/Montserrat-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic; }
@font-face {
  font-family: "Montserrat-Italic";
  src: url("fonts/montserrat/Montserrat-Italic.woff2") format("woff2"), url("fonts/montserrat/Montserrat-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic; }
@font-face {
  font-family: "MontserratAlternates-ExtraLight";
  src: url("fonts/montserrat/MontserratAlternates-ExtraLight.woff2") format("woff2"), url("fonts/montserrat/MontserratAlternates-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal; }
@font-face {
  font-family: "Montserrat-BlackItalic";
  src: url("fonts/montserrat/Montserrat-BlackItalic.woff2") format("woff2"), url("fonts/montserrat/Montserrat-BlackItalic.woff") format("woff");
  font-weight: 900;
  font-style: italic; }
@font-face {
  font-family: "Montserrat-ExtraLight";
  src: url("fonts/montserrat/Montserrat-ExtraLight.woff2") format("woff2"), url("fonts/montserrat/Montserrat-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal; }
@font-face {
  font-family: "MontserratAlternates-Medium";
  src: url("fonts/montserrat/MontserratAlternates-Medium.woff2") format("woff2"), url("fonts/montserrat/MontserratAlternates-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal; }
@font-face {
  font-family: "Montserrat-Bold";
  src: url("fonts/montserrat/Montserrat-Bold.woff2") format("woff2"), url("fonts/montserrat/Montserrat-Bold.woff") format("woff");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: "Montserrat-ThinItalic";
  src: url("fonts/montserrat/Montserrat-ThinItalic.woff2") format("woff2"), url("fonts/montserrat/Montserrat-ThinItalic.woff") format("woff");
  font-weight: 100;
  font-style: italic; }
@font-face {
  font-family: "MontserratAlternates-Thin";
  src: url("fonts/montserrat/MontserratAlternates-Thin.woff2") format("woff2"), url("fonts/montserrat/MontserratAlternates-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal; }
@font-face {
  font-family: "MontserratAlternates-ExtraBold";
  src: url("fonts/montserrat/MontserratAlternates-ExtraBold.woff2") format("woff2"), url("fonts/montserrat/MontserratAlternates-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal; }
@font-face {
  font-family: "MontserratAlternates-BoldItalic";
  src: url("fonts/montserrat/MontserratAlternates-BoldItalic.woff2") format("woff2"), url("fonts/montserrat/MontserratAlternates-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic; }
@font-face {
  font-family: "Montserrat-SemiBold";
  src: url("fonts/montserrat/Montserrat-SemiBold.woff2") format("woff2"), url("fonts/montserrat/Montserrat-SemiBold.woff") format("woff");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: "Montserrat-Black";
  src: url("fonts/montserrat/Montserrat-Black.woff2") format("woff2"), url("fonts/montserrat/Montserrat-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal; }
@font-face {
  font-family: "Montserrat-Regular";
  src: url("fonts/montserrat/Montserrat-Regular.woff2") format("woff2"), url("fonts/montserrat/Montserrat-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: "Montserrat-MediumItalic";
  src: url("fonts/montserrat/Montserrat-MediumItalic.woff2") format("woff2"), url("fonts/montserrat/Montserrat-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic; }
@font-face {
  font-family: "Montserrat-SemiBoldItalic";
  src: url("fonts/montserrat/Montserrat-SemiBoldItalic.woff2") format("woff2"), url("fonts/montserrat/Montserrat-SemiBoldItalic.woff") format("woff");
  font-weight: 600;
  font-style: italic; }
@font-face {
  font-family: "MontserratAlternates-Bold";
  src: url("fonts/montserrat/MontserratAlternates-Bold.woff2") format("woff2"), url("fonts/montserrat/MontserratAlternates-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal; }
@font-face {
  font-family: "MontserratAlternates-Light";
  src: url("fonts/montserrat/MontserratAlternates-Light.woff2") format("woff2"), url("fonts/montserrat/MontserratAlternates-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal; }
@font-face {
  font-family: "Montserrat-ExtraBold";
  src: url("fonts/montserrat/Montserrat-ExtraBold.woff2") format("woff2"), url("fonts/montserrat/Montserrat-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal; }
@font-face {
  font-family: "Montserrat-Thin";
  src: url("fonts/montserrat/Montserrat-Thin.woff2") format("woff2"), url("fonts/montserrat/Montserrat-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal; }
@font-face {
  font-family: "Montserrat-ExtraBoldItalic";
  src: url("fonts/montserrat/Montserrat-ExtraBoldItalic.woff2") format("woff2"), url("fonts/montserrat/Montserrat-ExtraBoldItalic.woff") format("woff");
  font-weight: 800;
  font-style: italic; }
@font-face {
  font-family: "MontserratAlternates-Regular";
  src: url("fonts/montserrat/MontserratAlternates-Regular.woff2") format("woff2"), url("fonts/montserrat/MontserratAlternates-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: "MontserratAlternates-MediumItalic";
  src: url("fonts/montserrat/MontserratAlternates-MediumItalic.woff2") format("woff2"), url("fonts/montserrat/MontserratAlternates-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic; }
@font-face {
  font-family: "MontserratAlternates-ExtraLightItalic.";
  src: url("fonts/montserrat/MontserratAlternates-ExtraLightItalic.woff2") format("woff2"), url("fonts/montserrat/MontserratAlternates-ExtraLightItalic.woff") format("woff");
  font-weight: 200;
  font-style: italic; }
@font-face {
  font-family: "MontserratAlternates-ThinItalic";
  src: url("fonts/montserrat/MontserratAlternates-ThinItalic.woff2") format("woff2"), url("fonts/montserrat/MontserratAlternates-ThinItalic.woff") format("woff");
  font-weight: 100;
  font-style: italic; }
@font-face {
  font-family: "MontserratAlternates-LightItalic";
  src: url("fonts/montserrat/MontserratAlternates-LightItalic.woff2") format("woff2"), url("fonts/montserrat/MontserratAlternates-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic; }
@font-face {
  font-family: "MontserratAlternates-SemiBold";
  src: url("fonts/montserrat/MontserratAlternates-SemiBold.woff2") format("woff2"), url("fonts/montserrat/MontserratAlternates-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal; }
@font-face {
  font-family: "MontserratAlternates-SemiBoldItalic";
  src: url("fonts/montserrat/MontserratAlternates-SemiBoldItalic.woff2") format("woff2"), url("fonts/montserrat/MontserratAlternates-SemiBoldItalic.woff") format("woff");
  font-weight: 600;
  font-style: italic; }
@font-face {
  font-family: "MontserratAlternates-Black";
  src: urfonts/montserrat/l("fonts/montserrat/MontserratAlternates-Black.woff2") format("woff2"), url("MontserratAlternates-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal; }
@font-face {
  font-family: "WorkSans-Italic";
  src: url("fonts/worksans/WorkSans-Italic.woff2") format("woff2"), url("fonts/worksans/WorkSans-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic; }
@font-face {
  font-family: "WorkSans-Regular";
  src: url("fonts/worksans/WorkSans-Regular.woff2") format("woff2"), url("fonts/worksans/WorkSans-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: "WorkSans-SemiBoldItalic";
  src: url("fonts/worksans/WorkSans-SemiBoldItalic.woff2") format("woff2"), url("fonts/worksans/WorkSans-SemiBoldItalic.woff") format("woff");
  font-weight: 600;
  font-style: italic; }
@font-face {
  font-family: "WorkSans-BoldItalic";
  src: url("fonts/worksans/WorkSans-BoldItalic.woff2") format("woff2"), url("fonts/worksans/WorkSans-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic; }
@font-face {
  font-family: "WorkSans-Thin";
  src: url("fonts/worksans/WorkSans-Thin.woff2") format("woff2"), url("fonts/worksans/WorkSans-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal; }
@font-face {
  font-family: "WorkSans-BlackItalic";
  src: url("fonts/worksans/WorkSans-BlackItalic.woff2") format("woff2"), url("fonts/worksans/WorkSans-BlackItalic.woff") format("woff");
  font-weight: 900;
  font-style: italic; }
@font-face {
  font-family: "WorkSans-Black";
  src: url("fonts/worksans/WorkSans-Black.woff2") format("woff2"), url("fonts/worksans/WorkSans-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal; }
@font-face {
  font-family: "WorkSans-Light";
  src: url("fonts/worksans/WorkSans-Light.woff2") format("woff2"), url("fonts/worksans/WorkSans-Light.woff") format("woff");
  font-weight: 100;
  font-style: normal; }
@font-face {
  font-family: "WorkSans-SemiBold";
  src: url("fonts/worksans/WorkSans-SemiBold.woff2") format("woff2"), url("fonts/worksans/WorkSans-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal; }
@font-face {
  font-family: "WorkSans-Bold";
  src: url("fonts/worksans/WorkSans-Bold.woff2") format("woff2"), url("fonts/worksans/WorkSans-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal; }
@font-face {
  font-family: "WorkSans-ExtraLight";
  src: url("fonts/worksans/WorkSans-ExtraLight.woff2") format("woff2"), url("fonts/worksans/WorkSans-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal; }
@font-face {
  font-family: "WorkSans-Regular";
  src: url("fonts/worksans/WorkSans-Regular.woff2") format("woff2"), url("fonts/worksans/WorkSans-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: "WorkSans-LightItalic";
  src: url("fonts/worksans/WorkSans-LightItalic.woff2") format("woff2"), url("fonts/worksans/WorkSans-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic; }
@font-face {
  font-family: "WorkSans-Hairline";
  src: url("fonts/worksans/WorkSans-Hairline.woff2") format("woff2"), url("fonts/worksans/WorkSans-Hairline.woff") format("woff");
  font-weight: 100;
  font-style: normal; }
@font-face {
  font-family: "WorkSans-Medium";
  src: url("fonts/worksans/WorkSans-Medium.woff2") format("woff2"), url("fonts/worksans/WorkSans-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal; }
@font-face {
  font-family: "WorkSans-MediumItalic";
  src: url("fonts/worksans/WorkSans-MediumItalic.woff2") format("woff2"), url("fonts/worksans/WorkSans-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic; }
@font-face {
  font-family: "WorkSans-Italic";
  src: url("fonts/worksans/WorkSans-Italic.woff2") format("woff2"), url("fonts/worksans/WorkSans-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic; }
@font-face {
  font-family: "WorkSans-ThinItalic";
  src: url("fonts/worksans/WorkSans-ThinItalic.woff2") format("woff2"), url("fonts/worksans/WorkSans-ThinItalic.woff") format("woff");
  font-weight: 100;
  font-style: italic; }
@font-face {
  font-family: "WorkSans-ExtraBold";
  src: url("fonts/worksans/WorkSans-ExtraBold.woff2") format("woff2"), url("fonts/worksans/WorkSans-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal; }
@font-face {
  font-family: "WorkSans-ExtraBoldItalic";
  src: url("fonts/worksans/WorkSans-ExtraBoldItalic.woff2") format("woff2"), url("fonts/worksans/WorkSans-ExtraBoldItalic.woff") format("woff");
  font-weight: 800;
  font-style: italic; }
@font-face {
  font-family: "WorkSans-ExtraLightItalic";
  src: url("fonts/worksans/WorkSans-ExtraLightItalic.woff2") format("woff2"), url("fonts/worksans/WorkSans-ExtraLightItalic.woff") format("woff");
  font-weight: 200;
  font-style: italic; }
.form-row {
  clear: both; }
.form-row:before, .form-row:after {
  content: "";
  display: table; }
.form-row:after {
  clear: both; }

fieldset {
  display: block;
  padding: 1.25rem 0.75rem 0.75rem 0.75rem;
  border: 0;
  border-bottom: 1px solid #e0e0e0; }
fieldset legend {
  float: left;
  font-size: 1.125rem;
  width: 100%;
  position: relative;
  margin-bottom: 0.5rem; }

label {
  display: block;
  font-size: 0.9375rem;
  position: relative;
  margin-bottom: 0.25rem; }

textarea {
  background: transparent;
  resize: vertical;
  padding: 0.75rem;
  border: solid 1px #f2f2f2;
  outline: 0 none;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  border-radius: 0; }

.searchField {
  margin-top: 1.25rem; }

.form-control {
  display: block;
  font-size: 0.875rem;
  line-height: 1.4;
  color: #555; }

.form-control {
  width: 100%;
  height: 34px;
  padding: 0.375rem 0.75rem;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
.form-control:focus {
  border-color: #66afe9;
  outline: 0 none;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); }

.form-control::-moz-placeholder {
  color: #999;
  opacity: 1; }

.form-control:-ms-input-placeholder {
  color: #999; }

.form-control::-webkit-input-placeholder {
  color: #999; }

.form-control::-ms-expand {
  background-color: transparent;
  border: 0; }

.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
  background-color: #eee;
  opacity: 1; }

.form-control[disabled], fieldset[disabled] .form-control {
  cursor: not-allowed; }

textarea.form-control {
  height: auto; }

input[type="search"] {
  -webkit-appearance: none; }

input[type="text"], input[type="password"], input[type="url"], input[type="search"], input[type="email"], input[type="tel"], input[type="number"] {
  background: #fff;
  display: inline-block;
  width: 100%;
  min-height: 2.25rem;
  padding: 0 0.5rem;
  border: 1px solid #e0e0e0;
  outline: 0 none;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  border-radius: 0; }

select {
  background: transparent;
  min-height: 2.25rem;
  min-width: 7.5rem;
  width: 100%;
  padding: 0.5rem 0.3125rem 0.3125rem 0.3125rem;
  cursor: pointer;
  outline: none;
  border: 0;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  -moz-appearance: none;
  border-radius: 0; }
select.is-medium {
  min-width: 11.25rem; }
select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000; }
select::-ms-expand {
  display: none; }

input[type="text"]:focus, input[type="password"]:focus, input[type="url"]:focus, input[type="email"]:focus, input[type="tel"]:focus, input[type="number"]:focus, select:focus {
  outline: 0 none; }

input[type="submit"] {
  background: transparent;
  display: inline-block;
  font-size: 0.875rem;
  width: auto;
  height: 2.5rem;
  min-width: 6.25rem;
  color: #fff;
  text-align: center;
  padding: 0 0.75rem;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }
input[type="submit"]:hover, input[type="submit"]:focus {
  background: #212121; }

button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

.form-group {
  text-align: left;
  position: relative; }
.form-group input[type="text"], .form-group input[type="password"], .form-group input[type="url"], .form-group input[type="search"], .form-group input[type="email"], .form-group input[type="tel"], .form-group input[type="number"] {
  display: block;
  border-radius: 0.1875rem; }
.form-group input[type="text"].invalid, .form-group input[type="password"].invalid, .form-group input[type="url"].invalid, .form-group input[type="search"].invalid, .form-group input[type="email"].invalid, .form-group input[type="tel"].invalid, .form-group input[type="number"].invalid {
  border: 2px solid #b82a3d; }
.form-group input[type="number"] {
  -moz-appearance: textfield; }
.form-group input[type="number"]::-webkit-inner-spin-button, .form-group input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }
.form-group input[type="submit"] {
  display: block;
  font-family: "WorkSans-Bold";
  min-width: 5.9375rem;
  -webkit-border-radius: 0;
  border-radius: 0; }

::-webkit-input-placeholder {
  font-family: "WorkSans-Regular", Arial, Helvetica, Gadget, sans-serif;
  color: rgba(64, 63, 64, 0.5); }

:-moz-placeholder {
  font-family: "WorkSans-Regular", Arial, Helvetica, Gadget, sans-serif;
  color: rgba(64, 63, 64, 0.5); }

::-moz-placeholder {
  font-family: "WorkSans-Regular", Arial, Helvetica, Gadget, sans-serif;
  color: rgba(64, 63, 64, 0.5); }

:-ms-input-placeholder {
  font-family: "WorkSans-Regular", Arial, Helvetica, Gadget, sans-serif;
  color: rgba(64, 63, 64, 0.5); }

input[placeholder], [placeholder], *[placeholder] {
  font-family: "WorkSans-Regular", Arial, Helvetica, Gadget, sans-serif;
  color: rgba(64, 63, 64, 0.5); }

h1.block-title, h2.block-title, h3.block-title {
  font-size: 1.5rem;
  letter-spacing: 0.125rem;
  line-height: 1.2;
  margin-bottom: 2.5rem; }
@media only screen and (min-width: 48rem) {
  h1.block-title, h2.block-title, h3.block-title {
    font-size: 2rem; }
  h1.block-title.page-title, h2.block-title.page-title, h3.block-title.page-title {
    font-size: 3.25rem;
    margin-bottom: 1.5625rem; } }
h1.block-title::after, h2.block-title::after, h3.block-title::after {
  background: #e0e0e0;
  display: block;
  content: "";
  height: 0.125rem;
  width: 2.5rem;
  margin: 1.0625rem 0 0 0; }
h1.block-title.centered, h2.block-title.centered, h3.block-title.centered {
  text-align: center; }
h1.block-title.centered::after, h2.block-title.centered::after, h3.block-title.centered::after {
  margin: 1.0625rem auto 0 auto; }

table {
  width: 100%;
  font-size: 1.0625rem;
  text-align: left;
  margin: 0.75rem 0 1.5625rem 0;
  border-bottom: 2px solid #e0e0e0;
  border-collapse: collapse; }
@media screen and (max-width: 40rem) {
  table {
    font-size: 0.75rem; }
  table thead {
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    overflow: hidden;
    margin: -1px;
    padding: 0;
    position: absolute;
    border: 0; } }
table tr th {
  background: #fff;
  font-family: "WorkSans-SemiBold";
  border-bottom: 2px solid #e0e0e0; }
table tr th.first {
  width: 160px; }
table th, table td {
  line-height: 1.3;
  vertical-align: top;
  padding: 0.75rem;
  border-bottom: 2px solid #e0e0e0; }
@media screen and (max-width: 40rem) {
  table tr {
    display: block;
    border-top: 1px solid #e0e0e0;
    border-bottom: 0; } }
table tr:nth-child(odd) {
  background-color: #f1f1f1; }
@media screen and (max-width: 40rem) {
  table td {
    display: block;
    text-align: right;
    border-bottom: 0; }
  table td::before {
    content: attr(data-label);
    float: left; } }

.accessTarget, .accessLink {
  position: absolute;
  top: -624.9375rem; }

.accessLink:focus {
  top: 0; }

.wrapper {
  position: relative; }

.main {
  font-family: "WorkSans-Light";
  font-size: 1.25rem;
  position: relative; }
@media only screen and (min-width: 48rem) {
  .main {
    min-height: calc(100vh - 61px); } }

.page-container .page-content {
  padding-top: 2.5rem; }
@media only screen and (min-width: 48rem) {
  .page-container .page-content {
    padding-top: 4.375rem; } }
.page-container .the-content {
  min-height: 27.5rem;
  position: relative;
  padding-bottom: 1.875rem; }
.page-container .the-content h2 {
  text-align: left;
  line-height: 1.2; }
.page-container .the-content ul > li {
  line-height: 1.4;
  position: relative;
  padding: 0 0 0.5rem 0.75rem; }
.page-container .the-content ul > li::before {
  background: #e01f1d;
  display: block;
  content: "";
  height: 0.3125rem;
  width: 0.3125rem;
  position: absolute;
  top: 0.75rem;
  left: 0; }
.page-container .main-content {
  padding-top: 6.25rem; }
.page-container.page-contact {
  padding-bottom: 3.75rem; }

.container {
  max-width: 90rem;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding: 0 0.75rem;
  clear: both; }
.container.container-extra-wide {
  max-width: 103.75rem; }
.container.container-1344 {
  max-width: 84rem; }
.container.container-1200 {
  max-width: 75rem; }
.container.container-1140 {
  max-width: 71.25rem; }
.container.container-1116 {
  max-width: 69.75rem; }
.container.container-small {
  max-width: 64rem; }
.container.container-xtra-small {
  max-width: 41.25rem; }
@media only screen and (min-width: 48rem) {
  .container {
    margin-left: auto;
    margin-right: auto; } }
@media only screen and (min-width: 90rem) {
  .container {
    padding: 0; } }

.social > li {
  display: inline-block;
  margin-right: 0.625rem; }
.social > li > a {
  background: url("../img/layout/social.png") 0 0 no-repeat;
  display: block;
  height: 2.5rem;
  width: 2.5rem;
  text-indent: -624.9375rem; }
.social > li > a:hover, .social > li > a:focus {
  text-decoration: none;
  border: 0;
  opacity: 0.75; }
.social > li > a.facebook {
  background-position: -5px 0; }
.social > li > a.twitter {
  background-position: -70px 0; }
.social > li > a.youtube {
  background-position: -130px 0; }
.social > li > a.instagram {
  background-position: -205px 0; }

.scroll-down {
  width: 22px; }
.scroll-down > span.scroll-icon {
  background: url("../img/layout/scroll-down.png") 0 0 no-repeat;
  display: block;
  height: 130px;
  position: relative;
  margin-bottom: 1.875rem; }
.scroll-down > span.scroll-text {
  color: #fff;
  display: block;
  font-size: 0.8125rem;
  color: #f2f2f2;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.125rem;
  position: relative;
  left: -2px;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  white-space: nowrap; }

.site-header {
  background: #fff;
  min-height: 3.75rem;
  min-width: 100%;
  position: relative;
  z-index: 9999;
  box-shadow: 0 0.1875rem 1.25rem 0.1875rem rgba(0, 0, 0, 0.1);
  -moz-transition: all 0.25s ease-in;
  -webkit-transition: all 0.25s ease-in;
  -ms-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in; }
@media only screen and (min-width: 58.75rem) {
  .site-header {
    position: fixed;
    top: 0;
    left: 0; } }
.site-header .site-logo {
  display: block;
  max-width: 12.75rem;
  position: absolute;
  top: 0;
  left: 0; }

@media only screen and (min-width: 58.75rem) {
  .home .site-header {
    background: #212121;
    background: linear-gradient(to bottom, #212121, transparent);
    box-shadow: none;
    min-height: 4.6875rem; }
  .home .site-header.header-scroll {
    background: #fff;
    min-height: 3.75rem;
    box-shadow: 0 0.1875rem 1.25rem 0.1875rem rgba(0, 0, 0, 0.1); }
  .home .site-header.header-scroll .main-nav > ul li > a {
    color: #6d6d6d; } }
@media only screen and (min-width: 58.75rem) and (min-width: 48rem) {
  .home .site-header.header-scroll .main-nav > ul li > a:hover, .home .site-header.header-scroll .main-nav > ul li > a:focus {
    color: #000; } }

.site-footer {
  background: #fff;
  font-family: "Montserrat-Medium";
  font-size: 0.875rem;
  position: relative;
  border-top: 1px solid rgba(33, 33, 33, 0.25); }
.site-footer .container {
  min-height: 60px;
  padding-top: 1.1875rem; }
@media only screen and (min-width: 48rem) {
  .site-footer .container {
    padding-top: 1.25rem; } }
@media only screen and (min-width: 48rem) {
  .site-footer {
    font-size: 0.8125rem;
    text-align: left;
    position: relative; } }
.site-footer a {
  color: #fff;
  text-decoration: none; }
.site-footer a:hover, .site-footer a:focus {
  color: #fff; }
.site-footer .site-info {
  text-align: center;
  text-transform: uppercase; }
.site-footer .footer-nav {
  display: inline-block;
  position: relative; }
.site-footer .footer-nav ul > li {
  line-height: 1.3;
  position: relative; }
.site-footer .footer-nav ul > li > a {
  color: #212121; }
.site-footer .footer-nav ul > li > a:hover, .site-footer .footer-nav ul > li > a:focus {
  color: #e01f1d;
  text-decoration: underline; }

.grid-table {
  display: block;
  width: 100%;
  position: relative; }
@media only screen and (min-width: 40rem) {
  .grid-table {
    display: table; } }
@media only screen and (min-width: 40rem) {
  .grid-table .grid-table-cell {
    display: table-cell; } }

.grid {
  position: relative; }

@media only screen and (min-width: 48rem) {
  .grid-row {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; }
  .grid-row.ac {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center; }
  .grid-row.ab {
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline; }
  .grid-row.jc {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
  .grid-row.js {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
  .grid-row.sa {
    -ms-flex-pack: distribute;
    justify-content: space-around; }
  .grid-row.acsb {
    -ms-flex-line-pack: justify;
    align-content: space-between; }
  .grid-row.fs {
    -ms-flex-line-pack: start;
    align-content: flex-start; }
  .grid-row.wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .grid-row .grid-last {
    margin-left: auto; }
  .grid-row .grid-50 {
    width: 50%; }
  .grid-row .grid-1 {
    width: 6.8666666667%; }
  .grid-row .grid-2 {
    width: 16.6666666667%; }
  .grid-row .grid-3 {
    width: 25%; }
  .grid-row .grid-3-1 {
    width: 30%; }
  .grid-row .grid-4 {
    width: 33.3333333333%; }
  .grid-row .grid-5 {
    width: 40.7333333333%; }
  .grid-row .grid-6 {
    width: 49.9%; }
  .grid-row .grid-7 {
    width: 57.6666666667%; }
  .grid-row .grid-8 {
    width: 66.6666666667%; }
  .grid-row .grid-9 {
    width: 75%; }
  .grid-row .grid-10 {
    width: 83.3333333337%; }
  .grid-row .grid-11 {
    width: 91.5333333333%; }
  .grid-row .grid-12 {
    width: 100%;
    margin-left: 0;
    margin-right: 0; } }
.grid-flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex; }
.grid-flex.ac {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center; }
.grid-flex.ab {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline; }
.grid-flex.jc {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }
.grid-flex.js {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }
.grid-flex.sa {
  -ms-flex-pack: distribute;
  justify-content: space-around; }
.grid-flex.acsb {
  -ms-flex-line-pack: justify;
  align-content: space-between; }
.grid-flex.wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
.grid-flex.grid-last {
  margin-left: auto; }
.grid-flex .grid-50 {
  width: 50%; }
.grid-flex .grid-1 {
  width: 6.8666666667%; }
.grid-flex .grid-2 {
  width: 16.6666666667%; }
.grid-flex .grid-3 {
  width: 25%; }
.grid-flex .grid-4 {
  width: 33.3333333333%; }
.grid-flex .grid-5 {
  width: 40.7333333333%; }
.grid-flex .grid-6 {
  width: 49.9%; }
.grid-flex .grid-7 {
  width: 57.6666666667%; }
.grid-flex .grid-8 {
  width: 66.6666666667%; }
.grid-flex .grid-9 {
  width: 75%; }
.grid-flex .grid-10 {
  width: 83.3333333337%; }
.grid-flex .grid-11 {
  width: 91.5333333333%; }
.grid-flex .grid-12 {
  width: 100%; }

@media only screen and (min-width: 22.5rem) {
  .grid-row-grid {
    display: -ms-grid;
    display: grid; } }
.grid-row-grid.col-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 1.875rem; }

.main-nav {
  background: #e01f1d;
  font-size: 20px;
  width: 90%;
  height: 100%;
  position: fixed;
  top: 0;
  left: -100%;
  z-index: 1999; }
@media only screen and (min-width: 58.75rem) {
  .main-nav {
    background: transparent;
    display: block !important;
    float: right;
    width: auto;
    text-align: left;
    position: relative;
    top: 0.5625rem;
    left: auto !important;
    margin: 0;
    padding: 0; } }
.main-nav > ul {
  margin: 3.75rem 0 0 0; }
@media only screen and (min-width: 58.75rem) {
  .main-nav > ul {
    margin: 0; } }
.main-nav > ul li {
  text-transform: uppercase;
  position: relative;
  margin: 0 0 1.25rem 1.25rem; }
@media only screen and (min-width: 58.75rem) {
  .main-nav > ul li {
    float: left;
    margin: 0 1.25rem; } }
@media only screen and (min-width: 78.75rem) {
  .main-nav > ul li {
    margin: 0 1.25rem; } }
.main-nav > ul li > a {
  display: block;
  font-family: "WorkSans-Regular", Arial, Helvetica, Gadget, sans-serif;
  font-size: 1.125rem;
  color: #fff;
  min-height: 2.5rem;
  text-decoration: none;
  letter-spacing: 1px;
  line-height: 1;
  position: relative;
  padding: 0.75rem;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }
@media only screen and (min-width: 58.75rem) {
  .main-nav > ul li > a {
    font-size: 0.9375rem;
    color: #6d6d6d; }
  .main-nav > ul li > a::before, .main-nav > ul li > a::after {
    display: block;
    height: 0.5rem;
    width: 0.5rem;
    position: absolute; }
  .main-nav > ul li > a::before {
    border-top: 1px solid #d5d5d4;
    border-left: 1px solid #d5d5d4;
    top: 0;
    left: 0; }
  .main-nav > ul li > a::after {
    border-bottom: 1px solid #d5d5d4;
    border-right: 1px solid #d5d5d4;
    bottom: 0;
    right: 0; }
  .main-nav > ul li > a:hover, .main-nav > ul li > a:focus {
    color: #000;
    font-weight: 500; } }
@media only screen and (min-width: 58.75rem) {
  .main-nav > ul li.current-menu-item > a, .main-nav > ul li.current_page_item > a, .main-nav > ul li.current-page-ancestor > a, .main-nav > ul li.current_page_parent > a, .main-nav > ul li > a.active {
    color: #e01f1d; }
  .main-nav > ul li.current-menu-item > a::before, .main-nav > ul li.current-menu-item > a::after, .main-nav > ul li.current_page_item > a::before, .main-nav > ul li.current_page_item > a::after, .main-nav > ul li.current-page-ancestor > a::before, .main-nav > ul li.current-page-ancestor > a::after, .main-nav > ul li.current_page_parent > a::before, .main-nav > ul li.current_page_parent > a::after, .main-nav > ul li > a.active::before, .main-nav > ul li > a.active::after {
    content: ""; }
  .main-nav > ul li.current-menu-item > a:hover, .main-nav > ul li.current-menu-item > a:focus, .main-nav > ul li.current_page_item > a:hover, .main-nav > ul li.current_page_item > a:focus, .main-nav > ul li.current-page-ancestor > a:hover, .main-nav > ul li.current-page-ancestor > a:focus, .main-nav > ul li.current_page_parent > a:hover, .main-nav > ul li.current_page_parent > a:focus, .main-nav > ul li > a.active:hover, .main-nav > ul li > a.active:focus {
    font-weight: normal; } }
.main-nav .menu-close {
  background: transparent;
  display: block;
  float: right;
  font-size: 0.875rem;
  line-height: 1.4;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  margin: 0.75rem 0.75rem 0 0;
  padding: 0.375rem;
  border: 1px solid #fff;
  border-radius: 0.25rem; }
@media only screen and (min-width: 58.75rem) {
  .main-nav .menu-close {
    display: none; } }

@media only screen and (min-width: 58.75rem) {
  .home .main-nav > ul li > a {
    color: #fff; } }

a.toggle-menu {
  display: block;
  z-index: 999;
  padding: 0.3125rem;
  border: 0.125rem solid #e01f1d;
  border-radius: 0.3125rem;
  position: absolute;
  top: 0.75rem;
  right: 0.75rem; }
@media only screen and (min-width: 58.75rem) {
  a.toggle-menu {
    display: none; } }
a.toggle-menu > span.menu-title {
  display: none;
  float: left;
  color: #fff;
  padding-left: 1.25rem; }
a.toggle-menu > span.icon-bar {
  background: #e01f1d;
  display: block;
  width: 1.5rem;
  height: 0.125rem;
  margin: 0.25rem; }

.page-banner {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  background-blend-mode: saturation;
  position: relative; }
.page-banner .container {
  min-height: 22.5rem;
  max-width: 77.5rem;
  margin: 0 auto;
  padding: 0; }
@media only screen and (min-width: 64rem) {
  .page-banner .container {
    min-height: 35rem; } }
@media only screen and (min-width: 78.75rem) {
  .page-banner .container {
    min-height: 100vh; } }
.page-banner .pb-content {
  color: #fff;
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 999;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }
@media only screen and (min-width: 78.75rem) {
  .page-banner .pb-content {
    width: 43.75rem;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
    left: 21.25rem;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    transform: translate(0, -50%); } }
.page-banner .pb-content h1 {
  font-family: "WorkSans-Regular", Arial, Helvetica, Gadget, sans-serif;
  font-size: 1.75rem;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  margin-bottom: 1.25rem; }
@media only screen and (min-width: 48rem) {
  .page-banner .pb-content h1 {
    font-size: 3.125rem; } }
@media only screen and (min-width: 78.75rem) {
  .page-banner .pb-content h1 {
    font-size: 5rem; } }
.page-banner .pb-content span.pb-tagline {
  display: block;
  font-family: "WorkSans-Light";
  font-size: 1.375rem;
  color: #dde35d;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 0.625rem; }
@media only screen and (min-width: 64rem) {
  .page-banner .pb-content span.pb-tagline {
    font-size: 1.5625rem; } }
@media only screen and (min-width: 78.75rem) {
  .page-banner .pb-content span.pb-tagline {
    font-size: 3.125rem; } }
.page-banner .pb-content p {
  font-family: "WorkSans-Light";
  font-size: 1.75rem;
  color: #dde35d;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 0.625rem; }
.page-banner .pb-content .common-btn {
  background: #224289;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase; }
.page-banner .pb-content .common-btn:hover, .page-banner .pb-content .common-btn:focus {
  background: #000;
  color: #fff; }

.page-intro {
  background: #f2f2f2;
  padding: 5rem 0 2.5rem 0;
  box-shadow: inset 0 -10px 10px -10px rgba(102, 102, 102, 0.2); }
@media only screen and (min-width: 58.75rem) {
  .page-intro {
    min-height: 25.625rem;
    padding: 8.75rem 0 3.125rem 0; } }
.page-intro.centered {
  text-align: center; }

.page-block {
  position: relative; }
.page-block .page-block-in {
  padding: 1.25rem; }
@media only screen and (min-width: 48rem) {
  .page-block .page-block-in {
    padding: 1.25rem; } }
@media only screen and (min-width: 78.75rem) {
  .page-block .page-block-in {
    padding-left: 2.5rem;
    padding-right: 2.5rem; } }
@media only screen and (min-width: 90rem) {
  .page-block .page-block-in {
    padding-left: 0;
    padding-right: 0; } }
.page-block .page-block-content {
  font-family: "WorkSans-Light";
  font-size: 1.25rem;
  position: relative;
  text-align: center;
  max-width: 55.625rem;
  margin: 0 auto; }

.simple-block {
  background: #f2f2f2; }
.simple-block .the-sb-content {
  font-family: "WorkSans-Light";
  font-size: 1.25rem; }
.simple-block .container {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem; }
@media only screen and (min-width: 48rem) {
  .simple-block .container {
    min-height: 17.1875rem;
    padding-top: 0;
    padding-bottom: 0; } }
.simple-block h3 {
  font-size: 1.25rem;
  line-height: 1.4; }
@media only screen and (min-width: 48rem) {
  .simple-block h3 {
    padding-right: 2.5rem; } }
@media only screen and (min-width: 64rem) {
  .simple-block h3 {
    font-size: 2rem; } }

.content-block {
  background: #f2f2f2;
  position: relative;
  margin: 0 0 1.5625rem 0;
  padding: 0.75rem 0.75rem 1.375rem 0.75rem; }
@media only screen and (min-width: 48rem) {
  .content-block {
    margin: 0 0 3.125rem 0;
    padding: 1.875rem; } }
.content-block .block-excerpt {
  padding: 0 0 1.25rem 0; }
@media only screen and (min-width: 48rem) {
  .content-block .block-excerpt {
    padding-right: 1.5625rem;
    flex-basis: 66.666666%; } }
@media only screen and (min-width: 64rem) {
  .content-block .block-excerpt {
    flex-basis: 50%; } }
.content-block .block-excerpt .block-date {
  display: block;
  font-family: "Montserrat-SemiBold";
  color: #e01f1d;
  margin-bottom: 0.9375rem; }
.content-block .block-excerpt h2 {
  font-size: 1.5rem;
  letter-spacing: 0.125rem;
  line-height: 1;
  margin-bottom: 1.875rem; }
@media only screen and (min-width: 48rem) {
  .content-block .block-excerpt h2 {
    font-size: 2.375rem; } }
@media only screen and (min-width: 64rem) {
  .content-block .block-excerpt h2 {
    font-size: 3.25rem; } }
.content-block .as-link {
  margin-top: 1.5625rem; }
@media only screen and (min-width: 48rem) {
  .content-block .as-link {
    margin-top: -0.9375rem;
    position: absolute; } }
.content-block .as-link::after {
  display: inline-block;
  content: "";
  height: 0.5625rem;
  width: 0.5625rem;
  position: relative;
  top: -0.1875rem;
  left: 0.375rem;
  border: solid #212121;
  border-width: 0 0.125rem 0.125rem 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg); }
.content-block .as-link.expanded {
  color: #e01f1d; }
.content-block .as-link.expanded::after {
  top: 0.0625rem;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  transform: rotate(-135deg);
  border-color: #e01f1d; }
.content-block .as-link:hover {
  color: #e01f1d; }
.content-block .as-link:hover::after {
  border-color: #e01f1d; }
@media only screen and (min-width: 48rem) {
  .content-block .block-image {
    flex-basis: 33.333333%; } }
@media only screen and (min-width: 64rem) {
  .content-block .block-image {
    flex-basis: 50%; } }
.content-block .block-image > img {
  box-shadow: 0 0 10px 5px rgba(102, 102, 102, 0.25); }
.content-block .block-content {
  display: none;
  position: relative; }
.content-block .block-content > .block-content-in {
  padding-top: 1.875rem; }

@media only screen and (min-width: 58.75rem) {
  .recent-games {
    min-height: 39.0625rem; } }
.recent-games .container {
  padding: 0 1.875rem; }
@media only screen and (min-width: 78.75rem) {
  .recent-games .container {
    padding: 0; } }
.recent-games .block-title {
  margin-bottom: 5rem; }
.recent-games .game-card {
  max-width: 18.625rem;
  position: relative;
  margin: 0 auto; }
.recent-games .game-card > a:hover > img, .recent-games .game-card > a:focus > img {
  box-shadow: 0 0 8px 4px rgba(0, 0, 0, 0.25); }
.recent-games .game-card > .game-status {
  background: #212121;
  font-family: "Montserrat-SemiBold";
  font-size: 0.75rem;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.4;
  padding: 0.75rem 0.75rem;
  position: absolute;
  top: -1rem;
  left: -1rem; }
@media only screen and (min-width: 48rem) {
  .recent-games .game-card > .game-status {
    font-size: 0.8125rem;
    top: -1rem;
    left: -1rem;
    padding: 0.75rem 1.0625rem; } }
@media only screen and (min-width: 64rem) {
  .recent-games .game-card > .game-status {
    font-size: 1.125rem;
    top: -1.4375rem;
    left: -1.4375rem; } }

.video-block {
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 75rem;
  min-height: 42.5rem;
  position: relative;
  margin: 3.75rem auto 6.25rem auto; }
.video-block .overlay {
  background: rgba(0, 0, 0, 0.75);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99; }
.video-block .vb-content {
  font-family: "WorkSans-Light";
  padding: 1.25rem;
  position: absolute;
  bottom: 3.75rem;
  left: 3.75rem;
  z-index: 999; }
.video-block .vb-content h3 {
  font-size: 1.375rem;
  color: #fff;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.3125rem;
  margin: 0 0 10rem 0; }
@media only screen and (min-width: 64rem) {
  .video-block .vb-content h3 {
    font-size: 2.5rem; } }
@media only screen and (min-width: 78.75rem) {
  .video-block .vb-content h3 {
    font-size: 4.6875rem; } }
.video-block .vb-content .vid-link {
  display: inline-block;
  vertical-align: middle; }
.video-block .vb-content .vid-tagline {
  display: inline-block;
  font-size: 1rem;
  color: #dde35d;
  text-transform: uppercase;
  letter-spacing: 0.3125rem;
  vertical-align: middle;
  margin: 0; }
@media only screen and (min-width: 64rem) {
  .video-block .vb-content .vid-tagline {
    font-size: 1.375rem; } }
@media only screen and (min-width: 78.75rem) {
  .video-block .vb-content .vid-tagline {
    font-size: 1.875rem; } }

.wp-block-media-text {
  font-family: "Montserrat-Regular"; }
.wp-block-media-text .wp-block-media-text__content {
  font-family: "Montserrat-Light";
  font-size: 1.375rem;
  padding-left: 15%; }
@media only screen and (min-width: 48rem) {
  .wp-block-media-text .wp-block-media-text__content {
    font-size: 2rem; } }
@media only screen and (min-width: 64rem) {
  .wp-block-media-text .wp-block-media-text__content h1 {
    font-size: 3.25rem; } }
.wp-block-media-text .wp-block-media-text__content strong {
  font-family: "Montserrat-SemiBold"; }
.wp-block-media-text .wp-block-media-text__content ol {
  font-size: 1rem;
  list-style: none;
  padding: 0;
  counter-reset: ol-counter; }
@media only screen and (min-width: 64rem) {
  .wp-block-media-text .wp-block-media-text__content ol {
    font-size: 1.25rem; } }
.wp-block-media-text .wp-block-media-text__content ol > li {
  line-height: 1.2;
  margin-bottom: 1.875rem;
  counter-increment: ol-counter; }
.wp-block-media-text .wp-block-media-text__content ol > li::before {
  content: "0" counter(ol-counter);
  font-family: "Montserrat-SemiBold";
  color: #c7c7c7;
  padding-right: 0.625rem; }
.wp-block-media-text .wp-block-media-text__content ol > li:nth-child(n + 10):before {
  content: "0" counter(ol-counter); }
.wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
  padding-left: 0; }

.callouts .callout {
  background: #f2f2f2;
  font-family: "WorkSans-Light";
  font-size: 1.25rem;
  line-height: 1.2;
  min-height: 20.25rem;
  text-align: center;
  position: relative;
  border-bottom: 0.25rem solid #fff; }
@media only screen and (min-width: 48rem) {
  .callouts .callout {
    font-size: 1rem;
    border-left: 0.25rem solid #fff; } }
@media only screen and (min-width: 64rem) {
  .callouts .callout {
    font-size: 1.125rem; } }
@media only screen and (min-width: 78.75rem) {
  .callouts .callout {
    font-size: 1.25rem; } }
.callouts .callout h3 {
  font-family: "Montserrat-Medium";
  font-size: 1.25rem;
  margin: 0; }
@media only screen and (min-width: 48rem) {
  .callouts .callout h3 {
    font-size: 1.125rem; } }
@media only screen and (min-width: 64rem) {
  .callouts .callout h3 {
    font-size: 1.25rem; } }
.callouts .callout .co-initial-content {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 99;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }
.callouts .callout .co-initial-content > img {
  margin-bottom: 1.25rem; }
.callouts .callout .the-co-content {
  background: #e01f1d;
  color: #fff;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  opacity: 0;
  transform: scale(0.75);
  transition: all 0.3s ease; }
.callouts .callout .the-co-content .co-content {
  width: 100%;
  padding: 0.75rem;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%); }
@media only screen and (min-width: 64rem) {
  .callouts .callout .the-co-content .co-content {
    padding: 1.25rem; } }
@media only screen and (min-width: 78.75rem) {
  .callouts .callout .the-co-content .co-content {
    padding: 1.25rem 2.5rem; } }
.callouts .callout .the-co-content .co-content > h3 {
  text-transform: uppercase;
  margin-bottom: 1.25rem; }
.callouts .callout .the-co-content .common-link {
  color: #fff; }
.callouts .callout .the-co-content .common-link:hover, .callouts .callout .the-co-content .common-link:focus {
  color: #000; }
.callouts .callout .the-co-content .common-link:hover > .svg-icon, .callouts .callout .the-co-content .common-link:focus > .svg-icon {
  fill: #000; }
.callouts .callout:hover .the-co-content, .callouts .callout:focus .the-co-content {
  opacity: 1;
  transition: 0.3s ease;
  transform: translate3d(0, 0, 0) scale(1); }

.callout-block {
  padding: 7.5rem 0; }
@media only screen and (min-width: 48rem) {
  .callout-block {
    max-width: none; } }
.callout-block .the-cb-content {
  background: #f2f2f2;
  font-family: "WorkSans-Light";
  font-size: 1.25rem;
  position: relative; }
@media only screen and (min-width: 64rem) {
  .callout-block .the-cb-content {
    min-height: 37.5rem;
    width: 62.5%; } }
@media only screen and (min-width: 78.75rem) {
  .callout-block .the-cb-content {
    min-height: 37.5rem;
    width: 53.75%;
    margin-left: 2.5rem; } }
.callout-block .cb-image {
  max-width: 52.5rem;
  text-align: center;
  margin-top: 2.5rem; }
@media only screen and (min-width: 64rem) {
  .callout-block .cb-image {
    width: 50%;
    margin: 0;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%); } }
@media only screen and (min-width: 78.75rem) {
  .callout-block .cb-image {
    width: 60%; } }
@media only screen and (min-width: 90rem) {
  .callout-block .cb-image {
    width: auto; } }
.callout-block .cb-content {
  width: 100%;
  padding: 1.875rem 1.25rem 1.25rem 1.25rem; }
@media only screen and (min-width: 64rem) {
  .callout-block .cb-content {
    padding: 0 12.5rem 0 6.25rem;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%); } }
.callout-block .cb-content h3 {
  font-size: 1.5rem;
  position: relative;
  margin-bottom: 1.875rem; }
@media only screen and (min-width: 64rem) {
  .callout-block .cb-content h3 {
    font-size: 2rem; } }
.callout-block .cb-content h3 > a {
  color: #e01f1d;
  text-decoration: none; }
.callout-block .cb-content h3 > a:hover, .callout-block .cb-content h3 > a:focus {
  color: #212121; }
.callout-block .cb-content .cb-excerpt {
  position: relative; }

@media only screen and (min-width: 64rem) {
  .home .callout-block .the-cb-content {
    min-height: 31.25rem;
    width: 62.5%; } }
@media only screen and (min-width: 78.75rem) {
  .home .callout-block .the-cb-content {
    width: 45.8333333333%; } }
@media only screen and (min-width: 64rem) {
  .home .cb-content {
    padding: 5rem 11.25rem 5rem 5rem; } }
@media only screen and (min-width: 78.75rem) {
  .home .cb-content {
    padding-right: 6.25rem; } }

.item {
  margin: 0 0.75rem 0.75rem 0.75rem; }
.item > a .item-thumb {
  margin-bottom: 0.75rem; }
.item h3 {
  font-size: 1.25rem;
  line-height: 1.1;
  margin-bottom: 0.375rem; }
.item h3 > a {
  color: #000;
  text-decoration: none; }
.item h3 > a:hover, .item h3 > a:focus {
  color: #212121; }
.item.game {
  max-width: 20rem;
  margin: 0 auto 2.5rem auto; }
@media only screen and (min-width: 40rem) {
  .item.game {
    max-width: 12.75rem;
    margin: 0 0.75rem 1.5rem 0.75rem; } }
.item.game > .info {
  background: rgba(33, 33, 33, 0.55);
  color: #fff;
  height: 100%;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0;
  transform: scale(0.1);
  transition: all 0.2s ease; }
.item.game > .info .info-content {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%); }
.item.game > .info .info-content .common-btn {
  width: 80%;
  margin: 0.75rem 0; }
@media only screen and (min-width: 40rem) {
  .item.game > .info .info-content .common-btn {
    width: auto; } }
.item.game > .info .info-content .common-btn.info-btn {
  background: transparent;
  border: 1px solid #fff; }
.item.game > .info .info-content .common-btn.info-btn:hover, .item.game > .info .info-content .common-btn.info-btn:focus {
  background: #fff;
  color: #000;
  border: 1px solid #000; }
.item.game:hover > .info, .item.game:focus > .info {
  z-index: 1;
  opacity: 1;
  transition: 0.2s ease;
  transform: translate3d(0, 0, 0) scale(1); }

.page-template-page-services .tabbed-component {
  min-height: calc(100vh - 121px); }
@media only screen and (min-width: 58.75rem) {
  .page-template-page-services .tabbed-component {
    min-height: calc(100vh - 61px); } }
@media only screen and (min-width: 48rem) {
  .page-template-page-services .site-footer {
    width: 100%;
    position: fixed;
    bottom: 0; } }

.tabbed-component {
  background: #f2f2f2;
  position: relative; }
.tabbed-component .panes {
  display: none;
  overflow-x: hidden;
  padding: 0 1.25rem 1.25rem 1.25rem; }
@media only screen and (min-width: 48rem) {
  .tabbed-component .panes {
    display: block;
    padding: 0 1.25rem 0 2.5rem; } }
@media only screen and (min-width: 64rem) {
  .tabbed-component .panes {
    padding-right: 0; } }
@media only screen and (min-width: 78.75rem) {
  .tabbed-component .panes {
    padding: 0 0 0 8.125rem; } }
.tabbed-component .panes .pane {
  overflow-x: hidden;
  padding-top: 3.75rem; }
@media only screen and (min-width: 48rem) {
  .tabbed-component .panes .pane {
    height: calc(100vh - 121px);
    overflow-y: auto; } }
@media only screen and (min-width: 58.75rem) {
  .tabbed-component .panes .pane {
    height: calc(100vh - 61px);
    padding-top: 7.5rem; } }
@media only screen and (min-width: 64rem) {
  .tabbed-component .panes .pane {
    padding-top: 10rem; } }
@media only screen and (min-width: 64rem) {
  .tabbed-component .panes .pane .pane-in {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    column-gap: 1.25rem; } }
.tabbed-component .panes .pane .pane-in .pane-content {
  position: relative; }
@media only screen and (min-width: 64rem) {
  .tabbed-component .panes .pane .pane-in .pane-content h2 {
    font-size: 2rem; } }
.tabbed-component .panes .pane .pane-in .pane-content .list-block {
  background: #fff;
  font-size: 1.0625rem;
  padding: 1.875rem 1.875rem 0.75rem 1.875rem; }
.tabbed-component .panes .pane .pane-in .pane-content .list-block ul > li {
  line-height: 1.4;
  position: relative;
  padding: 0 0 0.5rem 0.75rem; }
.tabbed-component .panes .pane .pane-in .pane-content .list-block ul > li::before {
  background: #666;
  display: block;
  content: "";
  height: 0.375rem;
  width: 0.375rem;
  border-radius: 50%;
  position: absolute;
  top: 0.625rem;
  left: 0; }
.tabbed-component .panes .pane .pane-in .pane-image {
  position: relative;
  padding: 1.25rem; }
@media only screen and (min-width: 64rem) {
  .tabbed-component .panes .pane .pane-in .pane-image {
    padding: 1.25rem 0; } }
@media only screen and (min-width: 90rem) {
  .tabbed-component .panes .pane .pane-in .pane-image {
    align-self: center; } }
.tabbed-component .panes .pane .pane-in .pane-image > img {
  display: block;
  position: relative;
  margin: 0 auto; }
@media only screen and (min-width: 64rem) {
  .tabbed-component .panes .pane .pane-in .pane-image > img {
    margin: 0; } }
@media only screen and (min-width: 64rem) {
  .tabbed-component .panes .pane.pane_1 .pane-in {
    -ms-grid-columns: 60% 50%;
    grid-template-columns: 60% 50%; } }
.tabbed-component .panes .pane.pane_1 .pane-in .pane-image {
  margin-left: auto; }
@media only screen and (min-width: 64rem) {
  .tabbed-component .panes .pane.pane_2 .pane-in {
    -ms-grid-columns: 60% 50%;
    grid-template-columns: 60% 50%; } }
.tabbed-component .panes .pane.pane_2 .pane-in .pane-image {
  margin-left: auto; }
.tabbed-component .panes .pane.pane_4 .pane-in {
  display: block;
  max-width: 69.75rem; }
.tabbed-component .panes .pane.pane_4 .pane-in .pane-content {
  padding-right: 1.25rem; }
.tabbed-component .panes .pane.pane_4 .pane-in .pane-image {
  max-width: 55rem;
  text-align: center; }
.tabbed-component .panes .pane.pane_4 .pane-in .pane-image > img {
  margin: 1.25rem auto; }
@media only screen and (min-width: 64rem) {
  .tabbed-component .panes .pane.pane_4 .pane-in .pane-image > img {
    display: inline-block;
    margin: 2.5rem; } }
.tabbed-component .panes .pane.pane_5 .pane-in .pane-image {
  margin-left: auto;
  max-width: 40rem; }
.tabbed-component .panes .pane.pane_6 .pane-in .pane-image > img {
  max-width: 100%; }
@media only screen and (min-width: 78.75rem) {
  .tabbed-component .panes .pane.pane_6 .pane-in .pane-image > img {
    max-width: 33.75rem; } }
@media only screen and (min-width: 48rem) {
  .tabbed-component .tabs-container {
    width: 30%;
    max-width: 15.75rem; } }
.tabbed-component ul.tabs {
  height: 100%;
  margin: 0; }
@media only screen and (min-width: 48rem) {
  .tabbed-component ul.tabs {
    min-width: 12.5rem;
    max-width: 15.75rem;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; } }
@media only screen and (min-width: 58.75rem) {
  .tabbed-component ul.tabs {
    padding-top: 3.75rem; } }
.tabbed-component ul.tabs > li {
  margin: 0.125rem 0 0 0;
  padding: 0; }
@media only screen and (min-width: 48rem) {
  .tabbed-component ul.tabs > li {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex: 1; } }
.tabbed-component ul.tabs > li > a {
  background: #fff;
  display: block;
  font-family: "Montserrat-Medium";
  font-size: 0.8125rem;
  color: #8e8e8e;
  min-height: 5rem;
  height: 100%;
  width: 100%;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  padding: 0.75rem; }
@media only screen and (max-width: 767px) {
  .tabbed-component ul.tabs > li > a::after {
    display: block;
    content: "";
    height: 0.8125rem;
    width: 0.8125rem;
    position: absolute;
    top: 39%;
    right: 1.25rem;
    border: solid #8e8e8e;
    border-width: 0 0.1875rem 0.1875rem 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg); }
  .tabbed-component ul.tabs > li > a.active::after {
    top: 45.5%;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg); } }
@media only screen and (min-width: 48rem) {
  .tabbed-component ul.tabs > li > a {
    min-height: 3.125rem; } }
.tabbed-component ul.tabs > li > a > span {
  display: block;
  position: absolute;
  top: 50%;
  left: 1.125rem;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%); }
.tabbed-component ul.tabs > li > a > span.tab-label {
  width: calc(100% - 80px);
  position: absolute;
  left: 5rem; }
@media only screen and (min-width: 48rem) {
  .tabbed-component ul.tabs > li > a > span.tab-label {
    display: block;
    padding-right: 1.25rem; } }
.tabbed-component ul.tabs > li > a .tab-icon {
  display: block; }
.tabbed-component ul.tabs > li > a:hover, .tabbed-component ul.tabs > li > a:focus {
  color: #212121; }
.tabbed-component ul.tabs > li > a:hover .tab-icon, .tabbed-component ul.tabs > li > a:focus .tab-icon {
  filter: sepia(1) saturate(87) hue-rotate(1deg); }
.tabbed-component ul.tabs > li > a.active {
  background: #f2f2f2;
  color: #212121; }
.tabbed-component ul.tabs > li > a.active .tab-icon {
  filter: sepia(1) saturate(87) hue-rotate(1deg); }
.tabbed-component ul.tabs > li.pane-content {
  display: none;
  padding: 1.25rem; }
@media only screen and (min-width: 48rem) {
  .tabbed-component ul.tabs > li.pane-content {
    display: none !important; } }
.tabbed-component ul.tabs > li.pane-content .pane-image {
  margin: 0.75rem 0 2.5rem 0; }
.tabbed-component ul.tabs > li.pane-content .pane-image > img {
  display: block;
  margin: 0 auto; }

.component-tabs ul > li {
  display: block;
  margin: 0.25rem 0; }
@media only screen and (min-width: 48rem) {
  .component-tabs ul > li {
    display: inline-block;
    margin: 0.25rem; }
  .component-tabs ul > li:first-child {
    margin-left: 0; } }
.component-tabs ul > li > a {
  background: #212121;
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 1.25rem;
  border-radius: 0.375rem -1; }
.component-tabs ul > li > a:hover, .component-tabs ul > li > a:focus {
  background: #212121; }

.dropdown {
  width: 100%;
  position: relative; }
.dropdown .dropdown-toggle {
  min-width: 120px;
  width: 100%;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0.5rem 1.25rem 0.5rem 0.375rem;
  text-shadow: none; }
.dropdown .dropdown-toggle:focus {
  outline: 0 none; }
.dropdown .dropdown-toggle .caret {
  display: inline-block;
  width: 0;
  height: 0;
  vertical-align: middle;
  border-top: 4px dashed;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  position: absolute;
  top: 1.375rem;
  right: 0.65625rem; }
.dropdown button {
  display: inline-block;
  padding: 6px 12px; }
.dropdown .dropdown-menu {
  background-color: #fff;
  background-clip: padding-box;
  display: none;
  float: left;
  min-width: 160px;
  font-size: 0.875rem;
  text-align: left;
  list-style: none;
  margin: 0;
  padding: 0.3125rem 0;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); }
.dropdown .dropdown-menu > li > a {
  display: block;
  color: #212121;
  text-decoration: none;
  line-height: 1.4;
  clear: both;
  padding: 0.1875rem 1.25rem;
  white-space: nowrap; }
.dropdown .dropdown-menu > li.active {
  background: #e0e0e0; }
.dropdown.open .dropdown-menu {
  display: block; }
.dropdown .dropdown-header {
  display: block;
  font-size: 0.75rem;
  color: #777;
  line-height: 1.4;
  padding: 0.1875rem erm(20px);
  white-space: nowrap; }
.dropdown .dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999; }

.game-listing-filters {
  max-width: 69.75rem;
  margin: 0 auto;
  padding: 4.375rem 0 0 0; }
.game-listing-filters h2.block-title {
  margin-left: 0.75rem; }
@media only screen and (min-width: 78.75rem) {
  .game-listing-filters h2.block-title {
    margin-left: 0; } }

.game-listing {
  min-height: 35rem;
  max-width: 28.75rem;
  position: relative;
  margin: 0 auto; }
@media only screen and (min-width: 48rem) {
  .game-listing {
    max-width: 41.375rem; } }
@media only screen and (min-width: 58.75rem) {
  .game-listing {
    max-width: 55.625rem; } }
@media only screen and (min-width: 78.75rem) {
  .game-listing {
    max-width: 69.75rem; } }
@media only screen and (min-width: 48rem) {
  .game-listing .games {
    margin-left: -0.75rem;
    margin-right: -0.75rem; } }
.game-listing .no-results {
  padding: 0.9375rem; }
.game-listing .overlay {
  background: rgba(0, 0, 0, 0.25);
  display: none;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 899; }
.game-listing .loading {
  display: none; }

.game-iframe {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; }
.game-iframe > iframe {
  background-color: #000;
  height: 100%;
  width: 100%;
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0; }
.game-iframe .game-play-button {
  background: #e01f1d;
  display: block;
  font-weight: bold;
  height: 6.25rem;
  width: 6.25rem;
  text-align: center;
  text-transform: uppercase;
  position: absolute;
  top: calc(50% - 50px);
  left: calc(50% - 50px);
  border-radius: 50%;
  outline: 0 none; }
.game-iframe .game-play-button::before {
  display: inline-block;
  content: "";
  width: 0;
  height: 0;
  position: relative;
  left: 0.3125rem;
  border-top: 1.75rem solid transparent;
  border-bottom: 1.75rem solid transparent;
  border-left: 2.5rem solid #fff; }
.game-iframe .game-play-button:hover, .game-iframe .game-play-button:focus {
  background: #45c2c8; }
.game-iframe .game-loading {
  display: block;
  height: 6.25rem;
  width: 6.25rem;
  position: absolute;
  top: calc(50% - 50px);
  left: calc(50% - 50px);
  border: 1rem solid rgba(224, 31, 29, 0.4);
  border-left: 1rem solid #e01f1d;
  border-radius: 50%;
  animation: loading 1s infinite linear; }
@keyframes loading {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
.game-iframe button.go-fs, .game-iframe button.exit-fs {
  position: absolute;
  bottom: 0.625rem;
  right: 0.625rem;
  z-index: 99; }
.game-iframe button.exit-fs {
  display: none; }
.game-iframe:-webkit-full-screen button.go-fs {
  display: none; }
.game-iframe:-webkit-full-screen button.exit-fs {
  display: block; }
.game-iframe:-moz-full-screen button.go-fs {
  display: none; }
.game-iframe:-moz-full-screen button.exit-fs {
  display: block; }
.game-iframe:-ms-fullscreen button.go-fs {
  display: none; }
.game-iframe:-ms-fullscreen button.exit-fs {
  display: block; }
.game-iframe:fullscreen button.go-fs {
  display: none; }
.game-iframe:fullscreen button.exit-fs {
  display: block; }
.game-iframe.fs {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  padding: 0;
  z-index: 9999; }
.game-iframe.fs button.go-fs {
  display: none; }
.game-iframe.fs button.exit-fs {
  display: block; }

.single-game {
  padding-bottom: 1.875rem; }
@media only screen and (min-width: 48rem) {
  .single-game {
    padding-bottom: 8.75rem; } }
.single-game .single-game-block {
  background: #f2f2f2;
  padding: 6.25rem 0 3.125rem 0;
  box-shadow: inset 0 -10px 10px -10px rgba(102, 102, 102, 0.25); }
@media only screen and (min-width: 48rem) {
  .single-game .single-game-block {
    min-height: 39.0625rem; } }
.single-game .game-info {
  margin-top: 3.125rem; }
@media only screen and (min-width: 69.75rem) {
  .single-game .game-info {
    padding: 0; } }
.single-game .game-meta {
  background: #212121;
  color: #fff;
  min-width: 19.875rem;
  margin-top: 2.5rem;
  -ms-flex-item-align: start;
  align-self: flex-start; }
.single-game .game-meta > .game-thumbnail {
  display: block;
  position: relative;
  margin: 0 auto 2.1875rem auto;
  box-shadow: 0 0 10px 5px rgba(102, 102, 102, 0.2); }
@media only screen and (min-width: 48rem) {
  .single-game .game-meta > .game-thumbnail {
    max-width: 18rem;
    margin: 0;
    top: -2.5rem;
    left: 1.875rem; } }
.single-game .game-meta .the-game-meta {
  font-family: "WorkSans-Light";
  font-size: 1.125rem;
  color: #e0e0e0;
  padding: 0 1.875rem 1.25rem 1.875rem; }
.single-game .game-meta .the-game-meta p > strong {
  font-family: "Montserrat-SemiBold";
  font-size: 0.9375rem;
  text-transform: uppercase; }
.single-game .game-content {
  width: 100%;
  max-width: 49.875rem; }
.single-game .game-content .the-game-content {
  background: #f2f2f2;
  min-height: 33.75rem;
  padding: 2.25rem 0.625rem 0.625rem 0.9375rem; }
@media only screen and (min-width: 48rem) {
  .single-game .game-content .the-game-content {
    padding: 2.25rem 1.875rem 8.75rem 1.875rem; } }
.single-game .game-content h1 {
  font-size: 2rem;
  margin-bottom: 1.5625rem; }
@media only screen and (min-width: 64rem) {
  .single-game .game-content h1 {
    font-size: 3.25rem; } }
.single-game .game-content h2 {
  font-size: 1.625rem;
  margin-bottom: 1.5625rem; }
@media only screen and (min-width: 64rem) {
  .single-game .game-content h2 {
    font-size: 2rem; } }
.single-game .game-content h3 {
  font-family: "Montserrat-SemiBold";
  font-size: 1.25rem; }
.single-game .game-slides {
  max-width: 45.25rem;
  margin: 0 auto;
  box-shadow: 0 0 10px 5px rgba(102, 102, 102, 0.25); }
@media only screen and (min-width: 48rem) {
  .single-game .game-slides {
    max-width: 22.5rem;
    margin-top: -6.25rem; } }
@media only screen and (min-width: 55rem) {
  .single-game .game-slides {
    max-width: 30rem; } }
@media only screen and (min-width: 64rem) {
  .single-game .game-slides {
    max-width: 37.5rem; } }
@media only screen and (min-width: 69.75rem) {
  .single-game .game-slides {
    max-width: 43.75rem; } }
@media only screen and (min-width: 78.75rem) {
  .single-game .game-slides {
    max-width: 45rem; } }
.single-game .game-slides .slick-arrow {
  background: #e01f1d;
  color: #e01f1d;
  font-size: 0;
  height: 3.125rem;
  width: 3.125rem;
  margin-top: -1.5625rem;
  position: absolute;
  top: 50%;
  z-index: 99; }
.single-game .game-slides .slick-arrow::before {
  background: url("../img/layout/arrow-white.svg") 0 0 no-repeat;
  display: block;
  content: "";
  height: 0.75rem;
  width: 1.1875rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }
.single-game .game-slides .slick-arrow.slick-next {
  right: -0.3125rem; }
@media only screen and (min-width: 48rem) {
  .single-game .game-slides .slick-arrow.slick-next {
    right: -1.5625rem; } }
.single-game .game-slides .slick-arrow.slick-prev {
  left: -0.3125rem; }
@media only screen and (min-width: 48rem) {
  .single-game .game-slides .slick-arrow.slick-prev {
    left: -1.5625rem; } }
.single-game .game-slides .slick-arrow.slick-prev::before {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
  -moz-transform: translate(-50%, -50%) rotate(180deg);
  transform: translate(-50%, -50%) rotate(180deg); }

.featured-content {
  background: #1d1c1d;
  padding: 7.5rem 0 0 0; }
@media only screen and (min-width: 78.75rem) {
  .featured-content {
    padding-top: 12.5rem; } }
.featured-content h2 {
  font-size: 2.5rem;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.3125rem;
  margin-bottom: 6.25rem; }
@media only screen and (min-width: 64rem) {
  .featured-content h2 {
    font-size: 3.125rem; } }
@media only screen and (min-width: 78.75rem) {
  .featured-content h2 {
    font-size: 5rem;
    margin-bottom: 11.25rem; } }
.featured-content .featured-blog-items .blog-item {
  display: block;
  text-decoration: none;
  position: relative;
  margin: 0 0.9375rem; }
.featured-content .featured-blog-items .blog-item:hover::after, .featured-content .featured-blog-items .blog-item:focus::after {
  background: #dde35d;
  display: block;
  content: "";
  height: 0.5rem;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0; }
.featured-content .featured-blog-items .blog-item .bs-content {
  background: rgba(33, 33, 33, 0.5);
  font-family: "WorkSans-Light";
  color: #fff;
  max-width: 25rem;
  padding: 1.25rem;
  position: absolute;
  top: 50%;
  left: 1.25rem;
  z-index: 999;
  -webkit-transform: translateY(-30%);
  -moz-transform: translateY(-30%);
  transform: translateY(-30%); }
.featured-content .featured-blog-items .blog-item .bs-content h3 {
  font-size: 1.375rem;
  color: #fff;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.125rem;
  margin: 0 0 1.25rem 0; }
@media only screen and (min-width: 78.75rem) {
  .featured-content .featured-blog-items .blog-item .bs-content h3 {
    font-size: 1.875rem; } }
@media only screen and (min-width: 90rem) {
  .featured-content .featured-blog-items .blog-item .bs-content h3 {
    font-size: 2.5rem; } }
.featured-content .featured-blog-items .blog-item .bs-content .post-author {
  color: #dde35d;
  text-transform: uppercase;
  letter-spacing: 0.3125rem;
  margin: 0; }
.featured-content .featured-story {
  margin: 2.5rem 0 5rem 0; }
.featured-content .featured-story h3 {
  font-size: 1.5rem;
  color: #fff;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.125rem;
  margin: 0 0 2.5rem 0;
  padding: 0 0 1.25rem 0;
  border-bottom: 1px solid #fff; }
@media only screen and (min-width: 48rem) {
  .featured-content .featured-story h3 {
    font-size: 3rem;
    padding: 0 0 2.5rem 0; } }
.featured-content .featured-story .fs-content {
  background: rgba(33, 33, 33, 0.4);
  font-family: "WorkSans-Light";
  max-width: 31.25rem;
  padding: 1.25rem;
  position: absolute;
  bottom: 1.875rem;
  left: 3.75rem; }
@media only screen and (min-width: 48rem) {
  .featured-content .featured-story .fs-content {
    max-width: 25rem; } }
@media only screen and (min-width: 64rem) {
  .featured-content .featured-story .fs-content {
    max-width: 31.25rem; } }
.featured-content .featured-story .fs-content h4 {
  font-size: 1.375rem;
  color: #fff;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.125rem;
  margin: 0 0 2.5rem 0; }
@media only screen and (min-width: 64rem) {
  .featured-content .featured-story .fs-content h4 {
    font-size: 1.875rem; } }
@media only screen and (min-width: 78.75rem) {
  .featured-content .featured-story .fs-content h4 {
    font-size: 3rem; } }
.featured-content .featured-story .fs-content h4 > a {
  color: #fff;
  text-decoration: none; }
.featured-content .featured-story .fs-content h4 > a:hover, .featured-content .featured-story .fs-content h4 > a:focus {
  color: #dde35d; }
.featured-content .featured-story .fs-content .vid-link {
  display: inline-block;
  vertical-align: middle; }
.featured-content .featured-story .fs-content .post-author {
  display: inline-block;
  font-size: 1rem;
  color: #dde35d;
  text-transform: uppercase;
  letter-spacing: 0.3125rem;
  vertical-align: middle;
  margin: 0; }
@media only screen and (min-width: 64rem) {
  .featured-content .featured-story .fs-content .post-author {
    font-size: 1.375rem; } }
@media only screen and (min-width: 78.75rem) {
  .featured-content .featured-story .fs-content .post-author {
    font-size: 1.875rem; } }
.featured-content .featured-story .fs-excerpt {
  font-size: 1rem;
  color: #fff;
  margin-top: 2.5rem; }
@media only screen and (min-width: 48rem) {
  .featured-content .featured-story .fs-excerpt {
    padding-left: 1.25rem; } }
@media only screen and (min-width: 64rem) {
  .featured-content .featured-story .fs-excerpt {
    font-size: 1.5625rem;
    margin-top: 0;
    padding-left: 3.75rem; } }
.featured-content .featured-story .fs-excerpt .post-date {
  display: block;
  color: #dde35d;
  text-transform: uppercase;
  letter-spacing: 0.125rem;
  margin: 0 0 1.25rem 0; }
@media only screen and (min-width: 64rem) {
  .featured-content .featured-story .grid-8 {
    width: 57.6666666667%; }
  .featured-content .featured-story .grid-4 {
    width: 40.7333333333%; } }
@media only screen and (min-width: 78.75rem) {
  .featured-content .featured-story .grid-8 {
    width: 66.6666666667%; }
  .featured-content .featured-story .grid-4 {
    width: 33.3333333333%; } }

@media only screen and (min-width: 78.75rem) {
  .page-container.page-blog-container {
    padding: 11.25rem 0 0 0; } }
.page-container.page-blog-container .post-meta {
  max-width: 18.125rem;
  text-align: center; }
.page-container.page-blog-container .post-meta .avatar {
  max-width: 15rem;
  margin-bottom: 1.25rem; }
.page-container.page-blog-container .post-meta .post-author {
  font-family: "WorkSans-Bold";
  font-size: 1.375rem;
  margin: 0 0 0.75rem 0; }
.page-container.page-blog-container .post-meta .post-date {
  font-family: "WorkSans-Bold";
  font-size: 0.875rem;
  text-transform: uppercase; }

.the-blog-content {
  font-family: "WorkSans-Light";
  font-size: 1.0625rem;
  line-height: 1.8;
  padding-bottom: 3.75rem; }
.the-blog-content .entry-content {
  position: relative;
  padding: 0 0.75rem 0 0.75rem; }
@media only screen and (min-width: 48rem) {
  .the-blog-content .entry-content {
    padding: 0 1.25rem 0 3.75rem; } }
.the-blog-content .entry-content ul > li {
  line-height: 1.4;
  position: relative;
  padding: 0 0 0.75rem 4.6875rem; }
.the-blog-content .entry-content ul > li::before {
  background: #dde35d;
  display: block;
  content: "";
  height: 4px;
  width: 2.8125rem;
  position: absolute;
  top: 0.5625rem;
  left: 0; }
.the-blog-content .entry-content::before {
  background: #45c2c8;
  display: block;
  height: 0.25rem;
  width: 2.75rem;
  margin: 0;
  position: absolute;
  top: 0.75rem;
  left: -3.125rem; }
@media only screen and (min-width: 64rem) {
  .the-blog-content .entry-content::before {
    content: "";
    top: 0.75rem;
    left: 0; } }
@media only screen and (min-width: 78.75rem) {
  .the-blog-content .entry-content::before {
    content: "";
    top: 0.75rem;
    left: -2.5rem; } }

.latest-blog-items {
  background: #f5f5f5;
  padding-top: 5rem;
  padding-bottom: 5rem; }
.latest-blog-items h3 {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 3.125rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #656465; }
@media only screen and (min-width: 48rem) {
  .latest-blog-items h3 {
    font-size: 3rem;
    padding: 0 0 1.875rem 0; } }
.latest-blog-items .blog-item {
  max-width: 30.9375rem;
  margin: 0 auto 2.5rem auto; }
@media only screen and (min-width: 64rem) {
  .latest-blog-items .blog-item + .blog-item {
    margin-left: 2.0967741935484%; } }
.latest-blog-items .blog-item .blog-item-thb {
  display: block;
  position: relative;
  margin-bottom: 1.875rem; }
.latest-blog-items .blog-item .blog-item-thb:hover::after, .latest-blog-items .blog-item .blog-item-thb:focus::after {
  background: #dde35d;
  display: block;
  content: "";
  height: 0.5rem;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0; }
.latest-blog-items .blog-item .post-content {
  color: #403f40; }
.latest-blog-items .blog-item .post-link {
  font-size: 0.875rem;
  font-family: "WorkSans-Bold";
  color: #212121;
  text-decoration: none;
  text-transform: uppercase; }
.latest-blog-items .blog-item .post-date, .latest-blog-items .blog-item .post-author {
  display: block;
  font-size: 0.875rem;
  font-family: "WorkSans-Bold";
  text-transform: uppercase;
  letter-spacing: 0.125rem;
  margin-bottom: 1.25rem; }
.latest-blog-items .blog-item h4 {
  font-size: 1.875rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.125rem;
  padding-right: 1.25rem; }
.latest-blog-items .blog-item h4 > a {
  color: #212121;
  text-decoration: none; }
.latest-blog-items .blog-item h4 > a:hover, .latest-blog-items .blog-item h4 > a:focus {
  color: #45c2c8; }

.featured-article {
  background-color: #212121;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  position: relative;
  border-bottom: 5rem solid #181c1d; }
.featured-article .overlay {
  background: rgba(33, 33, 33, 0.4);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99; }
.featured-article .container {
  min-height: 22.5rem;
  max-width: 77.5rem;
  margin: 0 auto;
  padding: 0; }
@media only screen and (min-width: 64rem) {
  .featured-article .container {
    min-height: 35rem; } }
@media only screen and (min-width: 78.75rem) {
  .featured-article .container {
    min-height: 62.5rem; } }
.featured-article .container .vert-text {
  display: none;
  font-size: 0.875rem;
  font-family: "WorkSans-Bold";
  color: rgba(221, 227, 93, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1875rem;
  position: absolute;
  bottom: 2.5rem;
  right: 0;
  z-index: 999;
  transform: rotate(90deg); }
@media only screen and (min-width: 64rem) {
  .featured-article .container .vert-text {
    display: block; } }
.featured-article .container .fa-content {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 999;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }
.featured-article .container .fa-content h3 {
  font-size: 1.375rem;
  color: #fff;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.3125rem;
  margin: 0 0 0.75rem 0; }
@media only screen and (min-width: 78.75rem) {
  .featured-article .container .fa-content h3 {
    font-size: 2.5rem; } }
@media only screen and (min-width: 90rem) {
  .featured-article .container .fa-content h3 {
    font-size: 5rem; } }
.featured-article .container .fa-content h3 > a {
  color: #fff;
  text-decoration: none; }
.featured-article .container .fa-content h3 > a:hover, .featured-article .container .fa-content h3 > a:focus {
  color: #dde35d; }
.featured-article .container .fa-content p.post-author {
  color: #dde35d;
  text-transform: uppercase;
  letter-spacing: 0.3125rem;
  margin: 0; }

.hp-featured-story {
  padding: 3.75rem 0 5rem 0; }
@media only screen and (min-width: 64rem) {
  .hp-featured-story {
    padding: 9.375rem 0; } }
.hp-featured-story .fs-image {
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 18.75rem;
  position: relative;
  margin-bottom: 2.5rem; }
@media only screen and (min-width: 64rem) {
  .hp-featured-story .fs-image {
    min-height: 30.625rem;
    margin-bottom: 9.375rem; } }
.hp-featured-story .fs-image .fs-quote {
  background: url("../img/layout/left-quote.png") 0 0 no-repeat;
  background-size: 3.125rem 2.4375rem;
  font-family: "WorkSans-Bold";
  font-size: 2.25rem;
  color: #dde35d;
  line-height: 0.85;
  padding: 0.9375rem 0 0 2.5rem;
  position: absolute;
  bottom: 1.25rem;
  right: 10%; }
@media only screen and (min-width: 64rem) {
  .hp-featured-story .fs-image .fs-quote {
    background-size: 9.9375rem 7.6875rem;
    font-size: 6.25rem;
    padding: 3.125rem 0 0 8.125rem;
    bottom: -5.25rem;
    right: 20%; } }
.hp-featured-story .fs-content {
  position: relative; }
@media only screen and (min-width: 64rem) {
  .hp-featured-story .fs-content {
    margin-left: 30%; } }
.hp-featured-story .fs-content h3 {
  font-size: 1.5rem;
  text-transform: uppercase;
  line-height: 1;
  position: relative; }
@media only screen and (min-width: 64rem) {
  .hp-featured-story .fs-content h3 {
    max-width: 70%;
    font-size: 3rem; } }
@media only screen and (min-width: 64rem) {
  .hp-featured-story .fs-content h3::before {
    background: #212121;
    display: block;
    content: "";
    height: 0.0625rem;
    width: 9.375rem;
    margin: 0;
    position: absolute;
    top: 1.25rem;
    left: -10.625rem; } }
.hp-featured-story .fs-content h3 > a {
  color: #000;
  text-decoration: none; }
.hp-featured-story .fs-content h3 > a:hover, .hp-featured-story .fs-content h3 > a:focus {
  color: #45c2c8; }
.hp-featured-story .fs-content .fs-excerpt {
  max-width: 42.5rem;
  position: relative; }
@media only screen and (min-width: 64rem) {
  .hp-featured-story .fs-content .fs-excerpt::after {
    background: #45c2c8;
    display: block;
    content: "";
    height: 0.25rem;
    width: 2.75rem;
    position: absolute;
    top: 0.5rem;
    left: -4.0625rem; } }
.hp-featured-story .fs-content .more-link {
  display: block;
  font-family: "WorkSans-Bold";
  font-size: 1.625rem;
  color: #45c2c8;
  text-decoration: underline;
  line-height: 1;
  margin: 1.25rem 0; }
@media only screen and (min-width: 64rem) {
  .hp-featured-story .fs-content .more-link {
    margin: 0;
    position: absolute;
    top: 0;
    right: 0.75rem; } }
.hp-featured-story .fs-content .more-link:hover {
  color: #dde35d; }

.wp-pagenavi {
  flex-basis: 100%;
  font-size: 1.0625rem;
  text-align: center;
  margin: 1.25rem 0 0 0.75rem; }
.wp-pagenavi > span {
  display: inline-block;
  line-height: 1.4375rem;
  vertical-align: middle;
  position: relative; }
.wp-pagenavi > a.page {
  background-color: #f2f2f2;
  display: inline-block;
  color: #212121;
  height: 1.625rem;
  width: 1.625rem;
  line-height: 1.4375rem;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  position: relative;
  margin-right: 0.375rem;
  border: 1px solid #eee; }
.wp-pagenavi > a.page:hover, .wp-pagenavi > a.page:focus {
  background-color: #e0e0e0; }
.wp-pagenavi > span.current {
  background-color: #e01f1d;
  display: inline-block;
  color: #fff;
  height: 1.625rem;
  width: 1.625rem;
  line-height: 1.5rem;
  text-align: center;
  margin-right: 0.375rem;
  border: 1px solid #e01f1d; }
.wp-pagenavi > .previouspostslink, .wp-pagenavi > .nextpostslink, .wp-pagenavi > .last {
  display: none; }
.wp-pagenavi > .pages {
  margin-right: 0.75rem; }

.breadcrumb {
  font-size: 0.9375rem;
  color: #6d6d6d;
  margin-bottom: 1.875rem; }
.breadcrumb .current-item {
  color: #e01f1d; }
.breadcrumb a {
  color: #6d6d6d;
  text-decoration: none; }
.breadcrumb a:hover, .breadcrumb a:focus {
  text-decoration: underline; }

.loading {
  height: 4rem;
  width: 4rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 999; }

.loader, .loader::after {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%; }

.loader {
  position: relative;
  margin: 0 auto;
  border-left: 0.5rem solid #e01f1d;
  border-top: 0.5rem solid rgba(224, 31, 29, 0.4);
  border-right: 0.5rem solid rgba(224, 31, 29, 0.4);
  border-bottom: 0.5rem solid rgba(224, 31, 29, 0.4);
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0, 0, 2px, 2px, rgba(242, 242, 242, 0.75);
  -webkit-animation: load 1.5s infinite linear;
  animation: load 1.5s infinite linear; }
.loader.dark {
  border-left: 0.5rem solid #333;
  border-top: 0.5rem solid rgba(51, 51, 51, 0.4);
  border-right: 0.5rem solid rgba(51, 51, 51, 0.4);
  border-bottom: 0.5rem solid rgba(51, 51, 51, 0.4); }

@-webkit-keyframes load {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
@keyframes load {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
.search-filters {
  margin: 0 0 1.25rem 0; }
@media only screen and (min-width: 48rem) {
  .search-filters {
    position: relative;
    margin: 0 0 1.5625rem 0; } }

.content-listing-filtered {
  position: relative;
  padding: 0 0.75rem; }
@media only screen and (min-width: 78.75rem) {
  .content-listing-filtered {
    padding: 0; } }
.content-listing-filtered .component-filters {
  border-top: 2px solid transparent;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
.content-listing-filtered .component-filters.expanded {
  border-top: 2px solid #e0e0e0;
  padding: 0.75rem 0 1.5625rem 0; }

.searchandfilter ul {
  margin: 0;
  padding: 0; }
.searchandfilter ul li {
  padding: 0; }
.searchandfilter ul li.sf-field-taxonomy-rival_games_tax {
  display: block; }
.searchandfilter ul li.sf-field-taxonomy-rival_games_tax > ul > li {
  display: inline-block;
  cursor: pointer;
  margin: 0 0.375rem 0.75rem 0;
  padding: 0; }
@media only screen and (min-width: 64rem) {
  .searchandfilter ul li.sf-field-taxonomy-rival_games_tax > ul > li {
    margin-right: 0.75rem; } }
.searchandfilter ul li.sf-field-taxonomy-rival_games_tax > ul > li > input.sf-input-radio {
  display: none; }
.searchandfilter ul li.sf-field-taxonomy-rival_games_tax > ul > li > label {
  font-family: "Montserrat-SemiBold";
  padding: 0.5rem 0.375rem;
  cursor: pointer; }
@media only screen and (min-width: 64rem) {
  .searchandfilter ul li.sf-field-taxonomy-rival_games_tax > ul > li > label {
    padding: 0.5rem 0.75rem; } }
.searchandfilter ul li.sf-field-taxonomy-rival_games_tax > ul > li:hover {
  color: #e01f1d; }
.searchandfilter ul li.sf-field-taxonomy-rival_games_tax > ul > li.sf-option-active {
  background: rgba(245, 245, 245, 0.5);
  color: #e01f1d; }
.searchandfilter ul li.sf-field-search {
  padding-bottom: 1.25rem; }
.searchandfilter ul li.sf-field-search > label {
  display: block; }
@media only screen and (min-width: 48rem) {
  .searchandfilter ul li.sf-field-search {
    padding-bottom: 0;
    position: absolute;
    top: 0;
    right: 11.75rem; } }
@media only screen and (min-width: 78.75rem) {
  .searchandfilter ul li.sf-field-search {
    right: 11rem; } }
.searchandfilter ul li.sf-field-search input.sf-input-text {
  height: 2.5rem;
  width: 100%;
  max-width: 33.75rem;
  border: 2px solid #e0e0e0; }
@media only screen and (min-width: 48rem) {
  .searchandfilter ul li.sf-field-search input.sf-input-text {
    width: 10rem; } }

@media only screen and (min-width: 48rem) {
  .search-filters-second-level .searchandfilter > ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; } }
.search-filters-second-level .searchandfilter > ul > li.sf-field-sort_order, .search-filters-second-level .searchandfilter > ul > li.sf-field-taxonomy-rival_games_features_tax, .search-filters-second-level .searchandfilter > ul > li.sf-field-taxonomy-rival_games_providers_tax, .search-filters-second-level .searchandfilter > ul > li.sf-field-post-meta-rival_game_lines {
  width: 16.5rem;
  position: relative;
  margin: 0 auto 0.75rem auto; }
@media only screen and (min-width: 48rem) {
  .search-filters-second-level .searchandfilter > ul > li.sf-field-sort_order, .search-filters-second-level .searchandfilter > ul > li.sf-field-taxonomy-rival_games_features_tax, .search-filters-second-level .searchandfilter > ul > li.sf-field-taxonomy-rival_games_providers_tax, .search-filters-second-level .searchandfilter > ul > li.sf-field-post-meta-rival_game_lines {
    margin: 0 0 0 1.25rem; } }
.search-filters-second-level .searchandfilter > ul > li.sf-field-sort_order > h4, .search-filters-second-level .searchandfilter > ul > li.sf-field-taxonomy-rival_games_features_tax > h4, .search-filters-second-level .searchandfilter > ul > li.sf-field-taxonomy-rival_games_providers_tax > h4, .search-filters-second-level .searchandfilter > ul > li.sf-field-post-meta-rival_game_lines > h4 {
  font-family: "WorkSans-Regular", Arial, Helvetica, Gadget, sans-serif;
  font-size: 0.9375rem;
  min-height: 2.8125rem;
  position: relative;
  margin: 0;
  padding: 0.75rem 0.9375rem;
  border: 1px solid #e0e0e0;
  cursor: pointer; }
.search-filters-second-level .searchandfilter > ul > li.sf-field-sort_order > h4::after, .search-filters-second-level .searchandfilter > ul > li.sf-field-taxonomy-rival_games_features_tax > h4::after, .search-filters-second-level .searchandfilter > ul > li.sf-field-taxonomy-rival_games_providers_tax > h4::after, .search-filters-second-level .searchandfilter > ul > li.sf-field-post-meta-rival_game_lines > h4::after {
  display: block;
  content: "";
  height: 0.5625rem;
  width: 0.5625rem;
  border: solid #212121;
  border-width: 0 0.125rem 0.125rem 0;
  position: absolute;
  top: calc(50% - 7px);
  right: 0.9375rem;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg); }
.search-filters-second-level .searchandfilter > ul > li.sf-field-sort_order > h4.expanded::after, .search-filters-second-level .searchandfilter > ul > li.sf-field-taxonomy-rival_games_features_tax > h4.expanded::after, .search-filters-second-level .searchandfilter > ul > li.sf-field-taxonomy-rival_games_providers_tax > h4.expanded::after, .search-filters-second-level .searchandfilter > ul > li.sf-field-post-meta-rival_game_lines > h4.expanded::after {
  top: calc(50% - 5px);
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  transform: rotate(-135deg); }
.search-filters-second-level .searchandfilter > ul > li.sf-field-sort_order > ul, .search-filters-second-level .searchandfilter > ul > li.sf-field-taxonomy-rival_games_features_tax > ul, .search-filters-second-level .searchandfilter > ul > li.sf-field-taxonomy-rival_games_providers_tax > ul, .search-filters-second-level .searchandfilter > ul > li.sf-field-post-meta-rival_game_lines > ul {
  background: #fff;
  display: none;
  width: 100%;
  border: 1px solid #e0e0e0;
  border-top: 0;
  position: absolute;
  top: 4.625rem;
  left: 0;
  z-index: 999;
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1); }
@media only screen and (min-width: 48rem) {
  .search-filters-second-level .searchandfilter > ul > li.sf-field-taxonomy-rival_games_tax {
    position: absolute;
    top: 0.3125rem;
    left: 0.75rem; } }
@media only screen and (min-width: 78.75rem) {
  .search-filters-second-level .searchandfilter > ul > li.sf-field-taxonomy-rival_games_tax {
    left: 0; } }
.search-filters-second-level .searchandfilter > ul > li.sf-field-search {
  display: none; }
.search-filters-second-level .searchandfilter > ul > li.sf-field-sort_order::before {
  content: "Sort By";
  font-size: 0.9375rem;
  line-height: 1.3;
  text-transform: uppercase; }
@media only screen and (min-width: 48rem) {
  .search-filters-second-level .searchandfilter > ul > li.sf-field-sort_order {
    margin-left: 0; } }
.search-filters-second-level .searchandfilter > ul > li.sf-field-taxonomy-rival_games_features_tax::before {
  content: "Features";
  font-size: 0.9375rem;
  line-height: 1.3;
  text-transform: uppercase; }
.search-filters-second-level .searchandfilter > ul > li.sf-field-taxonomy-rival_games_providers_tax::before {
  content: "Game Provider";
  font-size: 0.9375rem;
  line-height: 1.3;
  text-transform: uppercase; }
.search-filters-second-level .searchandfilter > ul > li.sf-field-post-meta-rival_game_lines::before {
  content: "Lines";
  font-size: 0.9375rem;
  line-height: 1.3;
  text-transform: uppercase; }
.search-filters-second-level .searchandfilter > ul > li.sf-field-sort_order, .search-filters-second-level .searchandfilter > ul > li.sf-field-taxonomy-rival_games_features_tax, .search-filters-second-level .searchandfilter > ul > li.sf-field-taxonomy-rival_games_providers_tax, .search-filters-second-level .searchandfilter > ul > li.sf-field-post-meta-rival_game_lines {
  display: none; }
.search-filters-second-level .searchandfilter > ul > li.sf-field-sort_order > ul > li, .search-filters-second-level .searchandfilter > ul > li.sf-field-taxonomy-rival_games_features_tax > ul > li, .search-filters-second-level .searchandfilter > ul > li.sf-field-taxonomy-rival_games_providers_tax > ul > li, .search-filters-second-level .searchandfilter > ul > li.sf-field-post-meta-rival_game_lines > ul > li {
  position: relative;
  margin: 0.0625rem 0 0 0;
  padding: .search-filters-second-level .searchandfilter > ul > li.sf-field-sort_order > ul > li, .search-filters-second-level .searchandfilter > ul > li.sf-field-taxonomy-rival_games_features_tax > ul > li, .search-filters-second-level .searchandfilter > ul > li.sf-field-taxonomy-rival_games_providers_tax > ul > li, .search-filters-second-level .searchandfilter > ul > li.sf-field-post-meta-rival_game_lines > ul > li pm-size-05; }
.search-filters-second-level .searchandfilter > ul > li.sf-field-sort_order > ul > li:first-child, .search-filters-second-level .searchandfilter > ul > li.sf-field-taxonomy-rival_games_features_tax > ul > li:first-child, .search-filters-second-level .searchandfilter > ul > li.sf-field-taxonomy-rival_games_providers_tax > ul > li:first-child, .search-filters-second-level .searchandfilter > ul > li.sf-field-post-meta-rival_game_lines > ul > li:first-child {
  margin-top: 0; }
.search-filters-second-level .searchandfilter > ul > li.sf-field-sort_order > ul > li:hover, .search-filters-second-level .searchandfilter > ul > li.sf-field-taxonomy-rival_games_features_tax > ul > li:hover, .search-filters-second-level .searchandfilter > ul > li.sf-field-taxonomy-rival_games_providers_tax > ul > li:hover, .search-filters-second-level .searchandfilter > ul > li.sf-field-post-meta-rival_game_lines > ul > li:hover {
  background: #f1f1f1; }
.search-filters-second-level .searchandfilter > ul > li.sf-field-sort_order > ul > li.sf-option-active, .search-filters-second-level .searchandfilter > ul > li.sf-field-taxonomy-rival_games_features_tax > ul > li.sf-option-active, .search-filters-second-level .searchandfilter > ul > li.sf-field-taxonomy-rival_games_providers_tax > ul > li.sf-option-active, .search-filters-second-level .searchandfilter > ul > li.sf-field-post-meta-rival_game_lines > ul > li.sf-option-active {
  background: #e01f1d;
  color: #fff; }
.search-filters-second-level .searchandfilter > ul > li.sf-field-sort_order > ul > li input[type="radio"], .search-filters-second-level .searchandfilter > ul > li.sf-field-taxonomy-rival_games_features_tax > ul > li input[type="radio"], .search-filters-second-level .searchandfilter > ul > li.sf-field-taxonomy-rival_games_providers_tax > ul > li input[type="radio"], .search-filters-second-level .searchandfilter > ul > li.sf-field-post-meta-rival_game_lines > ul > li input[type="radio"] {
  display: none; }
.search-filters-second-level .searchandfilter > ul > li.sf-field-sort_order > ul > li input[type="checkbox"], .search-filters-second-level .searchandfilter > ul > li.sf-field-taxonomy-rival_games_features_tax > ul > li input[type="checkbox"], .search-filters-second-level .searchandfilter > ul > li.sf-field-taxonomy-rival_games_providers_tax > ul > li input[type="checkbox"], .search-filters-second-level .searchandfilter > ul > li.sf-field-post-meta-rival_game_lines > ul > li input[type="checkbox"] {
  display: block;
  position: absolute;
  top: 0.875rem;
  left: 0.875rem; }
@-moz-document url-prefix() {
  .search-filters-second-level .searchandfilter > ul > li.sf-field-sort_order > ul > li input[type="checkbox"], .search-filters-second-level .searchandfilter > ul > li.sf-field-taxonomy-rival_games_features_tax > ul > li input[type="checkbox"], .search-filters-second-level .searchandfilter > ul > li.sf-field-taxonomy-rival_games_providers_tax > ul > li input[type="checkbox"], .search-filters-second-level .searchandfilter > ul > li.sf-field-post-meta-rival_game_lines > ul > li input[type="checkbox"] {
    top: 0.75rem; } }
.search-filters-second-level .searchandfilter > ul > li.sf-field-sort_order > ul > li > label, .search-filters-second-level .searchandfilter > ul > li.sf-field-taxonomy-rival_games_features_tax > ul > li > label, .search-filters-second-level .searchandfilter > ul > li.sf-field-taxonomy-rival_games_providers_tax > ul > li > label, .search-filters-second-level .searchandfilter > ul > li.sf-field-post-meta-rival_game_lines > ul > li > label {
  display: block;
  width: 100%;
  padding: 0.375rem 2.5rem 0.3125rem 2.5rem;
  cursor: pointer; }
.search-filters-second-level .searchandfilter > ul > li.sf-field-sort_order > ul > li > label {
  padding: 0.375rem 0.9375rem; }

.common-btn {
  background: #e01f1d;
  display: inline-block;
  font-size: 0.9375rem;
  font-family: "Montserrat-SemiBold";
  color: #fff;
  width: auto;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.125rem;
  vertical-align: top;
  margin: 0.375rem 0;
  padding: 0.75rem 1.875rem 0.6875rem 1.875rem;
  border: 2px solid transparent;
  outline: 0 none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }
.common-btn:hover, .common-btn:focus {
  background: #212121;
  color: #fff; }
.common-btn:disabled, .common-btn[disabled], .common-btn.disabled {
  opacity: 0.65;
  cursor: default; }
.common-btn.btn-prev::before {
  display: inline-block;
  content: "";
  position: relative;
  top: -1px;
  right: 0.25rem;
  padding: 0.25rem;
  border: solid #fff;
  border-width: 0 0.1875rem 0.1875rem 0;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  transform: rotate(135deg); }
.common-btn.btn-next::after {
  display: inline-block;
  content: "";
  padding: 0.25rem;
  position: relative;
  top: -1px;
  left: 0.25rem;
  border: solid #fff;
  border-width: 0 0.1875rem 0.1875rem 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg); }
.common-btn.go-fs {
  margin: 0;
  padding: 0.1875rem; }
.common-btn.go-fs > span {
  display: block;
  border: 0.125rem solid #fff;
  width: 1rem;
  height: 1rem;
  position: relative; }
.common-btn.go-fs > span::before, .common-btn.go-fs > span::after {
  background: #e01f1d;
  content: "";
  position: absolute; }
.common-btn.go-fs > span::before {
  width: 0.25rem;
  height: 1rem;
  left: 0.25rem;
  top: -0.125rem; }
.common-btn.go-fs > span::after {
  width: 1rem;
  height: 0.28125rem;
  top: 0.25rem;
  left: -0.125rem; }
.common-btn.go-fs:hover, .common-btn.go-fs:focus {
  background: #e01f1d; }
.common-btn.exit-fs {
  height: 1.625rem;
  width: 1.625rem;
  margin: 0;
  padding: 0; }
.common-btn.exit-fs::before, .common-btn.exit-fs::after {
  background: #fff;
  content: " ";
  height: 1.125rem;
  width: 0.125rem;
  position: absolute;
  top: 0.125rem;
  left: 0.625rem; }
.common-btn.exit-fs::before {
  transform: rotate(45deg); }
.common-btn.exit-fs::after {
  transform: rotate(-45deg); }
.common-btn.exit-fs:hover, .common-btn.exit-fs:focus {
  background: #e01f1d; }

.common-link {
  background: transparent;
  display: inline-block;
  font-family: "Montserrat-SemiBold";
  font-size: 0.9375rem;
  color: #212121;
  width: auto;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.0625rem;
  vertical-align: top;
  position: relative;
  margin: 0.375rem 0;
  padding: 0.75rem 1.875rem 0.6875rem 0;
  outline: 0 none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }
.common-link > .svg-icon {
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }
.common-link:hover, .common-link:focus {
  color: #e01f1d; }
.common-link:hover > .svg-icon, .common-link:focus > .svg-icon {
  fill: #e01f1d; }
.common-link.white {
  color: #fff; }
.common-link.white > .svg-icon {
  fill: #fff; }

.as-link {
  background: transparent;
  font-family: "Montserrat-SemiBold";
  font-size: 0.9375rem;
  color: #212121;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0 none; }

.btn-group, .btn-group-vertical {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate; }
.btn-group > .btn-group, .btn-group-vertical > .btn-group {
  display: table-cell;
  float: none;
  width: 1%; }
.btn-group > .btn-group .btn, .btn-group-vertical > .btn-group .btn {
  width: 100%;
  margin: 0;
  padding: 0.375rem 0; }

.btn-search {
  background: transparent url("../img/layout/search-icon.svg") 50% 50% no-repeat;
  height: 2.5rem;
  width: 2.5rem;
  color: #707070;
  text-align: left;
  text-transform: uppercase;
  text-indent: -624.9375rem;
  vertical-align: top;
  margin-right: 0.5rem;
  padding: 0.3125rem;
  border: 1px solid #e0e0e0;
  outline: 0 none; }
.btn-search:hover, .btn-search.active {
  background-color: #f2f2f2; }

.btn-filters {
  background: transparent;
  font-family: "Montserrat-SemiBold";
  font-size: 0.9375rem;
  height: 2.5rem;
  width: 7.5rem;
  color: #707070;
  text-align: left;
  text-transform: uppercase;
  vertical-align: top;
  padding: 0 0.625rem 0.3125rem 1.25rem;
  border: 1px solid #e0e0e0;
  outline: 0 none; }
.btn-filters > span {
  display: inline-block;
  height: 1.25rem;
  width: 1.125rem;
  position: relative;
  margin-right: 0.5rem;
  top: 0.375rem; }
.btn-filters > span > i {
  background: #707070;
  display: block;
  height: 2px;
  width: 75%;
  margin: 0.1875rem auto; }
.btn-filters > span > i:first-child {
  width: 100%; }
.btn-filters > span > i:last-child {
  width: 25%; }
.btn-filters:hover, .btn-filters.active {
  background: #f2f2f2; }

.btn-icon {
  display: inline-block;
  color: #fff;
  text-indent: -999em;
  position: relative;
  margin: 0 0.75rem;
  border: 0;
  outline: 0 none;
  cursor: pointer;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }
.btn-icon.icon-close {
  background-color: transparent;
  height: 1.875rem;
  width: 1.875rem;
  text-indent: -999em;
  position: absolute;
  border: 0;
  border-radius: 1px; }
.btn-icon.icon-close::before, .btn-icon.icon-close::after {
  background: #fff;
  content: " ";
  width: 1.875rem;
  position: absolute;
  top: 50%;
  left: 0;
  height: 6px;
  border: 0; }
.btn-icon.icon-close::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg); }
.btn-icon.icon-close::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg); }
.btn-icon:hover, .btn-icon:focus {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  transform: scale(1.1); }

.btn-menu {
  background: #212121;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  height: 26px;
  width: 26px;
  position: relative;
  padding: 2px 6px;
  border: 1px solid #fff;
  outline: 0 none; }
.btn-menu > span {
  background: #fff;
  display: block;
  height: 2px;
  width: 100%;
  position: relative;
  margin: 3px 0; }
.btn-menu.active {
  background: #fff; }
.btn-menu.active > span {
  background: #212121; }
.btn-menu.btn-menu-close > span {
  display: none; }
.btn-menu.btn-menu-close::before {
  content: "X";
  line-height: 23px; }

.btn-page-down {
  background: url("../img/layout/icon-page-down.svg") 0 0 no-repeat;
  display: block;
  height: 2.6875rem;
  width: 2.6875rem;
  text-indent: -624.9375rem;
  margin-left: -1.25rem;
  position: absolute;
  bottom: 1.5625rem;
  left: 50%; }

.btn-svg-icon {
  background: transparent;
  display: inline-block;
  height: 26px;
  width: 26px;
  position: relative;
  margin: 8px 0.75rem 0 0.75rem;
  border: 1px solid transparent;
  outline: 0 none;
  cursor: pointer;
  -moz-transition: all 0.1s ease-in;
  -webkit-transition: all 0.1s ease-in;
  -ms-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in; }
.btn-svg-icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.gform_wrapper .gform_confirmation_message {
  font-family: "WorkSans-Bold";
  font-size: 1.25rem;
  text-align: center; }
.gform_wrapper .gform_heading, .gform_wrapper .gfield_html, .gform_wrapper .validation_error {
  text-align: left; }
.gform_wrapper .validation_error, .gform_wrapper .validation_message {
  color: #e01f1d; }
.gform_wrapper .validation_error {
  margin-bottom: 1.25rem; }
.gform_wrapper .validation_message {
  font-size: 0.9375rem;
  margin-top: 0.375rem; }
.gform_wrapper .gform_description {
  display: block;
  font-size: 0.9375rem;
  margin-bottom: 1.25rem; }
.gform_wrapper .gform_body input[type="text"], .gform_wrapper .gform_body input[type="password"], .gform_wrapper .gform_body input[type="url"], .gform_wrapper .gform_body input[type="search"], .gform_wrapper .gform_body input[type="email"], .gform_wrapper .gform_body input[type="tel"], .gform_wrapper .gform_body input[type="number"] {
  background: #fff;
  display: inline-block;
  font-size: 0.9375rem;
  width: 100%;
  min-height: 3.125rem;
  padding: 0 0.5rem;
  border: 1px solid #e0e0e0;
  outline: 0 none; }
.gform_wrapper .gform_body textarea {
  background: #fff;
  display: block;
  font-size: 0.9375rem;
  width: 100%;
  height: 8.75rem;
  padding: 0.75rem;
  border: 1px solid #e0e0e0;
  outline: 0 none; }
.gform_wrapper .gform_body .gform_fields {
  margin: 0;
  padding: 0; }
.gform_wrapper .gform_body .gform_fields .gfield {
  margin-bottom: 1.875rem; }
.gform_wrapper .gform_body .gform_fields .gform-form-control {
  float: left;
  width: 31.6666666667%; }
.gform_wrapper .gform_body .gform_fields .gform-form-control ~ .gform-form-control {
  margin-left: 2.5%; }
.gform_wrapper .gform_body .gform_fields .gfield_label {
  text-transform: uppercase; }
.gform_wrapper .gform_body .gform_fields .gform-form-message {
  clear: both; }
.gform_wrapper .gform_body .gform_fields .gfield_html {
  font-size: 0.9375rem;
  margin-bottom: 6.25rem; }
.gform_wrapper .gform_body .gform_validation_container {
  display: none; }
.gform_wrapper .gform_footer {
  padding: 0.75rem 0 0 0; }
.gform_wrapper .gform_footer input[type="submit"] {
  background: #e01f1d;
  display: block;
  font-size: 0.9375rem;
  color: #fff;
  min-height: 3.125rem;
  width: auto;
  text-transform: uppercase;
  padding: 0.75rem 1.875rem;
  border: 0;
  outline: 0 none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }
.gform_wrapper .gform_footer input[type="submit"]:hover, .gform_wrapper .gform_footer input[type="submit"]:focus {
  background-color: #212121; }

@media only screen and (min-width: 40rem) {
  .wp-block-column .gform_wrapper {
    max-width: 30rem; } }

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0; }

.slick-list:focus {
  outline: 0 none; }

.slick-list.dragging {
  cursor: pointer;
  cursor: grab; }

.slick-slider .slick-track, .slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }

.slick-track:before, .slick-track:after {
  display: table;
  content: " "; }

.slick-track:after {
  clear: both; }

.slick-loading .slick-track {
  visibility: hidden; }

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px; }
.slick-slide:focus {
  outline: 0 none; }

[dir="rtl"] .slick-slide {
  float: right; }

.slick-slide img {
  display: block; }

.slick-slide.slick-loading img {
  display: none; }

.slick-slide.dragging img {
  pointer-events: none; }

.slick-initialized .slick-slide {
  display: block; }

.slick-loading .slick-slide {
  visibility: hidden; }

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

.slick-dots {
  text-align: center;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 999; }

.slick-dots > li {
  position: relative; }

.slick-dots > li button {
  display: block;
  font-size: 0;
  height: 0.5rem;
  width: 0.5rem;
  text-indent: -624.9375rem;
  text-decoration: none;
  margin: 0;
  padding: 0;
  outline: 0 none;
  border-radius: 50%; }

.slick-dots > li button:hover, .slick-dots > li button:focus, .slick-dots > li.slick-active button {
  text-decoration: none; }

.image-slider {
  position: relative; }
.image-slider #ss {
  margin: 0;
  padding: 0; }
.image-slider .slide-count {
  display: none;
  font-size: 2.5rem;
  color: #dde35d;
  margin-left: -5px;
  position: absolute;
  top: 43%;
  left: 13%;
  z-index: 999;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%); }
.image-slider .slide-count::before {
  background: #dde35d;
  display: block;
  content: "";
  height: 2.75rem;
  width: 0.25rem;
  position: absolute;
  top: -3.125rem;
  left: 1.25rem; }
.image-slider .slide {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  background-blend-mode: saturation;
  min-height: 28.75rem;
  position: relative; }
@media only screen and (min-width: 64rem) {
  .image-slider .slide {
    min-height: 35rem; } }
@media only screen and (min-width: 78.75rem) {
  .image-slider .slide {
    min-height: 61.25rem; } }
@media only screen and (min-width: 64rem) and (max-height: 64rem) {
  .image-slider .slide {
    min-height: 100vh; } }
.image-slider .slide .container {
  margin: 0 auto;
  padding: 0 1.25rem; }
.image-slider .slide .overlay {
  background: rgba(33, 33, 33, 0.7);
  height: 100vh;
  width: 100vw;
  position: absolute;
  top: 0;
  left: -1px;
  z-index: 899; }
.image-slider .slide .slide-content {
  background: transparent;
  background: linear-gradient(to bottom, transparent, #212121);
  color: #fff;
  width: auto;
  min-width: 100%;
  min-height: 16.625rem;
  padding-top: 6.25rem;
  padding-right: 1.25rem;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 999; }
@media only screen and (min-width: 78.75rem) {
  .image-slider .slide .slide-content {
    padding-top: 2.8125rem; } }
.image-slider .slide .slide-content h1 {
  font-family: "Montserrat-Bold";
  font-size: 1.375rem;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 0.625rem; }
@media only screen and (min-width: 64rem) {
  .image-slider .slide .slide-content h1 {
    font-size: 1.5rem; } }
@media only screen and (min-width: 78.75rem) {
  .image-slider .slide .slide-content h1 {
    font-size: 3.25rem; } }
.image-slider .slide .slide-content h1 > a {
  color: #fff;
  text-decoration: none; }
.image-slider .slide .slide-content h1 > a:hover, .image-slider .slide .slide-content h1 > a:focus {
  color: #e01f1d; }
.image-slider .slide .slide-content p {
  font-size: 1rem;
  line-height: 1.4; }
@media only screen and (min-width: 48rem) {
  .image-slider .slide .slide-content p {
    font-size: 1.25rem; } }
.image-slider .slide .slide-content .common-btn:hover, .image-slider .slide .slide-content .common-btn:focus {
  background: #000;
  color: #fff; }
.image-slider .slick-dots {
  bottom: 1.875rem;
  right: 1.5625rem; }
.image-slider .slick-dots > li {
  display: block;
  margin: 1.25rem 0 0 0; }
.image-slider .slick-dots > li button {
  background: rgba(255, 255, 255, 0.25);
  display: block;
  height: 2.5rem;
  width: 0.1875rem;
  border-radius: 0; }
.image-slider .slick-dots > li button:hover, .image-slider .slick-dots > li button:focus, .image-slider .slick-dots > li.slick-active button {
  background: #fff;
  color: #fff; }

.featured-games {
  margin-top: 3.75rem;
  margin-bottom: 2.5rem; }
@media only screen and (min-width: 64rem) {
  .featured-games {
    margin-bottom: 12.5rem; } }
.featured-games .slick-list {
  overflow-x: hidden;
  overflow-y: initial;
  padding-bottom: 2.5rem; }
.featured-games .featured-game-slide {
  background: #f2f2f2;
  min-height: 18rem;
  width: 23.75rem;
  position: relative;
  margin: 0 0.75rem; }
@media only screen and (min-width: 64rem) {
  .featured-games .featured-game-slide {
    width: 41.25rem; } }
.featured-games .featured-game-slide .featured-game-content {
  width: 50%;
  position: relative;
  padding: 1.25rem; }
@media only screen and (min-width: 64rem) {
  .featured-games .featured-game-slide .featured-game-content {
    padding: 1.25rem 1.875rem; } }
.featured-games .featured-game-slide .featured-game-content .featured-game-term {
  display: block;
  color: #e01f1d;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 1.125rem; }
.featured-games .featured-game-slide .featured-game-content h3 {
  font-size: 1.625rem;
  line-height: 1.2;
  margin: 0; }
@media only screen and (min-width: 64rem) {
  .featured-games .featured-game-slide .featured-game-content h3 {
    font-size: 3.125rem;
    line-height: 1; } }
.featured-games .featured-game-slide .featured-game-content h3 > a {
  color: #212121;
  text-decoration: none; }
.featured-games .featured-game-slide .featured-game-content h3 > a:hover, .featured-games .featured-game-slide .featured-game-content h3 > a:focus {
  color: #e01f1d; }
.featured-games .featured-game-slide .featured-game-content .common-link {
  position: absolute;
  bottom: 0;
  left: 1.25rem; }
@media only screen and (min-width: 64rem) {
  .featured-games .featured-game-slide .featured-game-content .common-link {
    left: 1.875rem; } }
.featured-games .featured-game-slide .game-thumb {
  display: block;
  max-width: 11.25rem;
  position: relative;
  top: 1.875rem;
  right: 1.25rem;
  box-shadow: 0 0 0.625rem 0.3125rem rgba(0, 0, 0, 0.15); }
@media only screen and (min-width: 64rem) {
  .featured-games .featured-game-slide .game-thumb {
    max-width: 18rem;
    right: 0; } }
.featured-games .slick-slide {
  position: relative; }
.featured-games .slick-dots {
  top: auto;
  right: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%); }
@media only screen and (min-width: 64rem) {
  .featured-games .slick-dots {
    bottom: -5.625rem; } }
.featured-games .slick-dots > li {
  display: inline-block;
  margin: 0 0.75rem; }
.featured-games .slick-dots > li button {
  background: #e0e0e0;
  display: block;
  height: 0.625rem;
  width: 0.625rem; }
.featured-games .slick-dots > li button:hover, .featured-games .slick-dots > li button:focus, .featured-games .slick-dots > li.slick-active button {
  background: #373737;
  color: #373737; }

/*# sourceMappingURL=main.css.map */
