@charset "UTF-8";
html, body, address, blockquote, div, dl, form, h1, h2, h3, h4, h5, h6, ol, p, pre, table, ul, dd, dt, li, tbody, td, tfoot, th, thead, tr, button, del, ins, map, object, a, abbr, acronym, b, bdo, big, br, cite, code, dfn, em, i, img, kbd, q, samp, small, span, strong, sub, sup, tt, var, legend, fieldset {
  margin: 0;
  padding: 0;
}
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section, summary {
  display: block;
}
audio, canvas, video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
html, button, input, select, textarea {
  font-family: sans-serif;
}
body {
  margin: 0;
}
a:focus {
  outline: none;
}
a:active, a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b, strong {
  font-weight: bold;
}
blockquote {
  margin: 1em 40px;
}
dfn {
  font-style: italic;
}
mark {
  background: #ff0;
  color: #000;
}
p, pre {
  margin: 1em 0;
}
code, kbd, pre, samp {
  font-family: monospace, serif;
  _font-family: "courier new", monospace;
  font-size: 1em;
}
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
  margin: 20px 0;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px;
  color: #FFF;
  font-size: 11px;
  line-height: 16px;
  display: block;
  border-radius: 10px;
}
q {
  quotes: none;
}
q:before, q:after {
  content: "";
  content: none;
}
small {
  font-size: 80%;
}
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
dl, menu, ol, ul {
  margin: 1em 0;
}
dd {
  margin: 0;
}
menu, ol, ul {
  padding: 0;
}
nav ul, nav ol {
  list-style: none;
  list-style-image: none;
}
img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 0;
}
form {
  margin: 0;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
  white-space: normal;
  *margin-left: -7px;
}
button, input, select, textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}
button, input {
  line-height: normal;
}
button, html input[type="button"], input[type="reset"], input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
  *overflow: visible;
}
button[disabled], input[disabled] {
  cursor: default;
}
input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
  *height: 13px;
  *width: 13px;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
  vertical-align: top;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
html, button, input, select, textarea {
  color: #222;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
img {
  vertical-align: middle;
}
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
textarea {
  resize: vertical;
}
img, fieldset {
  border: 0;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  width: auto\9 ;
  /* ie8 */
}
.clearfix:after {
  content: "";
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
  line-height: 0;
  clear: both;
}
/* ===========================================
   
	Variables

=========================================== */
/* Media Queries */
/* Grid */
/* Colors */
/* Typography colors */
/* Container colors */
/* Notice colors */
/* Font Awesome */
/* Font families */
/* Font properties */
/******************************************************************
Site Name:
Author:

Stylesheet: Sass Functions

You can do a lot of really cool things in Sass. Functions help you
make repeated actions a lot easier. They are really similar to mixins,
but can be used for so much more.

Anyway, keep them all in here so it's easier to find when you're
looking for one.

For more info on functions, go here:
http://sass-lang.com/documentation/Sass/Script/Functions.html

******************************************************************/
/*********************
COLOR FUNCTIONS
These are helpful when you're working
with shadows and such things. It's essentially
a quicker way to write RGBA.

Example:
box-shadow: 0 0 4px black(0.3);
compiles to:
box-shadow: 0 0 4px rgba(0,0,0,0.3);
*********************/
/*********************
RESPONSIVE HELPER FUNCTION
If you're creating a responsive site, then
you've probably already read
Responsive Web Design: http://www.abookapart.com/products/responsive-web-design

Here's a nice little helper function for calculating
target / context
as mentioned in that book.

Example:
width: cp(650px, 1000px);
or
width: calc-percent(650px, 1000px);
both compile to:
width: 65%;
*********************/
/* ============================================================================
    Mixins
============================================================================ */
/* @include transition(all 0.2s ease-in-out); */
/* @include transform(translateY(-50%)); */
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/* @include box-sizing(border-box); */
/* @include border-radius(50%); */
/* @include box-shadow(0 0 2px 0 rgba(0,0,0,0.2); */
/* ===========================================
   
	Typography

=========================================== */
/* Basics */
body {
  color: #1b1d1f;
  font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 30px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
/* Titles */
.title {
  color: #242722;
  margin: 0 0 20px;
  font-style: normal;
  font-size: 55px;
  letter-spacing: 0;
  line-height: 65px;
}
.subtitle {
  color: #e63634;
  font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 30px;
  margin: 0 0 10px;
  text-transform: uppercase;
}
.smallTitle {
  color: #242722;
  font-size: 27px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 43px;
  margin: 0 0 20px;
}
/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  color: #242722;
  margin: 0 0 20px;
}
h1, .articleContent h1 {
  font-size: 55px;
  line-height: 65px;
  font-weight: 700;
}
h2, .articleContent h2 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
}
h3, .articleContent h3 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
}
h4, .articleContent h4 {
  font-size: 27px;
  line-height: 40px;
  font-weight: 700;
}
h5, .articleContent h5 {
  font-size: 27px;
  line-height: 40px;
  font-weight: 700;
}
h6, .articleContent h6 {
  font-size: 27px;
  line-height: 40px;
  font-weight: 700;
}
/* Paragraphs */
p {
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  margin: 20px 0;
}
/* Lists */
ul, ol {
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  margin: 20px 0;
}
/* Links */
a {
  color: #e63634;
  text-decoration: none;
}
a.disabled {
  color: #cfcfcf;
  pointer-events: none;
}
/* Misc */
blockquote {
  border-left: 2px solid #000000;
  color: #242722;
  font-size: 27px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  margin: 20px 0;
  padding: 0 30px;
}
blockquote p {
  color: #242722;
  font-size: 27px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
}
code {
  background-color: #e6e6e6;
}
.desc {
  font-weight: 400;
  font-style: normal;
  font-size: 27px;
  line-height: 40px;
}
.desc a {
  color: #e63634;
}
.desc .Btn {
  vertical-align: middle;
  margin-right: 10px;
  color: #FFFFFF;
  text-decoration: none;
}
/* Utilities */
.whiteText, .whiteText a, .whiteText .title, .whiteText .subtitle, .whiteText .smallTitle, .whiteText h1, .whiteText h2, .whiteText h3, .whiteText h4, .whiteText h5, .whiteText h6, .whiteText p {
  color: #FFFFFF;
}
.textWrap {
  margin: 0 0 20px;
}
.textWrap .title, .textWrap .subtitle, .textWrap .smallTitle {
  margin: 0;
}
.alignLeft {
  text-align: left;
}
.alignCenter {
  text-align: center;
}
.alignRight {
  text-align: right;
}
.floatLeft {
  float: left;
}
.floatRight {
  float: right;
}
/* Responsive */
@media screen and (max-width: 1220px) {
  .title, h1, .articleContent h1 {
    font-size: 49.5px;
    line-height: 58.5px;
  }
  .smallTitle {
    font-size: 24.3px;
    line-height: 38.7px;
  }
  .desc {
    font-size: 24.3px;
    line-height: 36px;
  }
  h2, h3, .articleContent h2, .articleContent h3 {
    font-size: 28.8px;
    line-height: 36px;
  }
  h4, h5, h6, .articleContent h4, .articleContent h5, .articleContent h6 {
    font-size: 24.3px;
    line-height: 36px;
  }
}
@media screen and (max-width: 960px) {
  .title {
    font-size: 44px;
    line-height: 52px;
  }
  .smallTitle {
    font-size: 21.6px;
    line-height: 34.4px;
  }
  .desc {
    font-size: 21.6px;
    line-height: 32px;
  }
  h2, h3, .articleContent h2, .articleContent h3 {
    font-size: 25.6px;
    line-height: 32px;
  }
  h4, h5, h6, .articleContent h4, .articleContent h5, .articleContent h6 {
    font-size: 21.6px;
    line-height: 32px;
  }
}
@media screen and (max-width: 720px) {
  /*.subtitle {
		font-size: ($subtitleSize * .7);
		line-height: ($subtitleHeight * .7);
	}*/
  body, p {
    font-size: 18px;
    line-height: 27px;
  }
}
@media screen and (max-width: 480px) {
  body, p {
    font-size: 16px;
    line-height: 24px;
  }
  .title {
    font-size: 33px;
    line-height: 39px;
  }
  .subtitle {
    font-size: 14px;
    line-height: 21px;
  }
  .smallTitle {
    font-size: 16.2px;
    line-height: 25.8px;
  }
  h2, h3, .articleContent h2, .articleContent h3 {
    font-size: 22.4px;
    line-height: 28px;
  }
  h4, h5, h6, .articleContent h4, .articleContent h5, .articleContent h6 {
    font-size: 18.9px;
    line-height: 28px;
  }
}
form {
  display: block;
}
form label {
  font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 20px;
  line-height: 30px;
  display: block;
  font-weight: 300;
  margin: 0 0 5px;
}
form input, form select, form textarea {
  -webkit-border-radius: 21px;
  -moz-border-radius: 21px;
  -ms-border-radius: 21px;
  border-radius: 21px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  color: #1b1d1f;
  font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 300;
  height: 42px;
  line-height: 32px;
  margin-bottom: 5px;
  overflow: visible;
  padding: 5px 30px;
  width: 100%;
  outline: none;
}
form input:focus, form select:focus, form textarea:focus {
  background: rgba(0, 0, 0, 0.2);
}
form input::-webkit-input-placeholder, form select::-webkit-input-placeholder, form textarea::-webkit-input-placeholder {
  color: #1b1d1f;
  opacity: 1;
}
form input::-moz-placeholder, form select::-moz-placeholder, form textarea::-moz-placeholder {
  color: #1b1d1f;
  opacity: 1;
}
form input:-ms-input-placeholder, form select:-ms-input-placeholder, form textarea:-ms-input-placeholder {
  color: #1b1d1f;
  opacity: 1;
}
form input:-moz-placeholder, form select:-moz-placeholder, form textarea:-moz-placeholder {
  color: #1b1d1f;
  opacity: 1;
}
form select {
  cursor: pointer;
}
form textarea {
  height: 200px;
  min-height: 100px;
  max-height: 300px;
  resize: vertical;
  padding: 3px 15px;
}
form input[type="radio"], form input[type="checkbox"] {
  width: inherit !important;
  height: inherit;
  background: none;
}
form input:focus:invalid:focus, form textarea:focus:invalid:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
form input[type="submit"], form button[type="submit"] {
  display: block;
  outline: none;
  border: none;
  text-indent: 0;
  margin: 0;
  background-color: #e63634;
  color: #FFFFFF;
  height: 42px;
  line-height: 42px;
  padding: 0 30px;
  text-align: center;
  font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
form input[type="file"] {
  background: none;
  height: inherit;
  padding: inherit;
}
form .checkWrap input[type="radio"], form .checkWrap input[type="checkbox"] {
  display: inline-block;
  line-height: 40px;
  margin: 8px 5px 0 0;
  vertical-align: top;
  cursor: pointer;
}
.darkBg form input {
  background-color: rgba(255, 255, 255, 0.05);
}
.darkBg form input[type="submit"] {
  background-color: #e63634;
}
.alignCenter form {
  margin: 0 auto;
}
div.wpcf7-response-output {
  border: none;
  color: #909090;
  font-size: 12px;
  margin: 0;
  padding: 0;
}
span.wpcf7-not-valid-tip {
  background: #000;
  border-radius: 3px;
  color: #fff;
  font-size: 12px;
  opacity: 0.75;
  padding: 3px 9px;
  position: absolute;
  right: 10px;
  top: -10px;
  z-index: 1;
}
span.wpcf7-form-control-wrap {
  display: block !important;
  position: relative;
}
.wpcf7-checkbox span.wpcf7-list-item, .wpcf7-radio span.wpcf7-list-item {
  display: block;
  margin: 0;
}
.wpcf7-checkbox span.wpcf7-list-item label, .wpcf7-radio span.wpcf7-list-item label {
  cursor: pointer;
}
.wpcf7-checkbox span.wpcf7-list-item label input, .wpcf7-radio span.wpcf7-list-item label input {
  margin: 0 5px 0 0;
}
.grecaptcha-badge {
  visibility: collapse !important;
  opacity: 0 !important;
}
.captchaNotice {
  font-size: 12px;
  line-height: 20px;
}
.nlForm .captchaNotice small {
  font-size: 12px;
}
/* ============================================================================
    Grid
============================================================================ */
.cols {
  /* overflow: hidden; */
  margin: 0 0 0 -17px;
}
.cols:after {
  content: "";
  display: block;
  clear: both;
  width: 0;
  height: 0;
  line-height: 0;
  visibility: hidden;
}
.cols.hugeGutter {
  margin-left: -80px;
}
.cols.largeGutter {
  margin-left: -30px;
}
.cols.smallGutter {
  margin-left: -2px;
}
.cols.noGutter {
  margin-left: 0;
}
.cols:after {
  display: block;
  content: "";
  clear: both;
  width: 0;
  height: 0;
  line-height: 0;
  overflow: hidden;
  visibility: hidden;
}
.cols > div {
  float: left;
  padding-left: 17px;
  margin-bottom: 17px;
}
.cols.hugeGutter > div {
  padding-left: 80px;
}
.cols.largeGutter > div {
  padding-left: 30px;
}
.cols.smallGutter > div {
  padding-left: 2px;
}
.cols.noGutter > div {
  padding-left: 0;
}
.cols.hugeBottom > div {
  margin-bottom: 80px;
}
.cols.largeBottom > div {
  margin-bottom: 30px;
}
.cols.smallBottom > div {
  margin-bottom: 2px;
}
.cols.noBottom > div {
  margin-bottom: 0;
}
.cols > .clearRow {
  float: none;
  clear: both;
  margin-bottom: 0;
  width: 100%;
}
.cols .col-right {
  float: right;
}
.col-hide {
  display: none;
}
.col-full {
  width: 100% !important;
}
.col-1 {
  width: 100%;
}
.col-2-1 {
  width: 50%;
}
.col-3-2 {
  width: 66.666666%;
}
.col-3-1 {
  width: 33.333333%;
}
.col-4-3 {
  width: 75%;
}
.col-4-1 {
  width: 25%;
}
.col-5-4 {
  width: 80%;
}
.col-5-3 {
  width: 60%;
}
.col-5-2 {
  width: 40%;
}
.col-5-1 {
  width: 20%;
}
.cols-10-1 > div {
  width: 10%;
}
.col-9-5 {
  width: 55%;
}
.col-9-4 {
  width: 45%;
}
.cols-9 > div {
  width: 11.1111111%;
}
.cols-8 > div {
  width: 12.5%;
}
.cols-6 > div {
  width: 16.6666666%;
}
.cols-5 > div {
  width: 20%;
}
.cols-4 > div {
  width: 25%;
}
.cols-3 > div {
  width: 33.3333333%;
}
.cols-2 > div {
  width: 50%;
}
.clearCols.cols-2 > div:nth-child(2n+1) {
  clear: left;
}
.cols-1 > div {
  width: 100%;
}
/* ============================================================================
    Media Queries
============================================================================ */
@media screen and (max-width: 1333px) {
  .colXL-hide {
    display: none;
  }
  .colXL-show {
    display: block;
  }
  .colsXL-alignCenter {
    text-align: center;
  }
  .colsXL-alignLeft {
    text-align: left;
  }
  .colsXL-alignRight {
    text-align: right;
  }
  .colXL-clear {
    clear: both;
  }
  .cols .colXL-left {
    float: left;
  }
  .cols .colXL-right {
    float: right;
  }
  .colXL-alignLeft {
    text-align: left;
  }
  .colXL-alignRight {
    text-align: right;
  }
  .colXL-alignCenter {
    text-align: center;
  }
  .cols.colsXL-hugeGutter {
    margin-left: -80px;
  }
  .cols.colsXL-largeGutter {
    margin-left: -30px;
  }
  .cols.colsXL-mediumGutter {
    margin-left: -17px;
  }
  .cols.colsXL-smallGutter {
    margin-left: -2px;
  }
  .cols.colsXL-noGutter {
    margin-left: 0;
  }
  .cols.colsXL-hugeGutter > div {
    padding-left: 80px;
  }
  .cols.colsXL-largeGutter > div {
    padding-left: 30px;
  }
  .cols.colsXL-mediumGutter > div {
    padding-left: 17px;
  }
  .cols.colsXL-smallGutter > div {
    padding-left: 2px;
  }
  .cols.colsXL-noGutter > div {
    padding-left: 0;
  }
  .cols.colsXL-hugeBottom > div {
    margin-bottom: 80px;
  }
  .cols.colsXL-largeBottom > div {
    margin-bottom: 30px;
  }
  .cols.colsXL-mediumBottom > div {
    margin-bottom: 17px;
  }
  .cols.colsXL-smallBottom > div {
    margin-bottom: 2px;
  }
  .cols.colsXL-noBottom > div {
    margin-bottom: 0;
  }
  .colsXL-10 > div {
    width: 10%;
  }
  .colsXL-8 > div {
    width: 12.5%;
  }
  .colsXL-6 > div {
    width: 16.6666666%;
  }
  .colsXL-5 > div {
    width: 20%;
  }
  .colsXL-4 > div {
    width: 25%;
  }
  .colsXL-3 > div {
    width: 33.3333333%;
  }
  .colsXL-2 > div {
    width: 50%;
  }
  .colsXL-1 > div {
    width: 100%;
  }
  .colXL-1 {
    width: 100%;
  }
  .colXL-2-1 {
    width: 50%;
  }
  .colXL-3-2 {
    width: 66.6666666%;
  }
  .colXL-3-1 {
    width: 33.3333333%;
  }
  .colXL-4-3 {
    width: 75%;
  }
  .colXL-4-1 {
    width: 25%;
  }
  .colXL-5-4 {
    width: 80%;
  }
  .colXL-5-3 {
    width: 60%;
  }
  .colXL-5-2 {
    width: 40%;
  }
  .colXL-5-1 {
    width: 20%;
  }
  .colXL-6-5 {
    width: 25%;
  }
  .colXL-6-1 {
    width: 16.6666666%;
  }
  .colXL-8-1 {
    width: 12.5%;
  }
  .colXL-10-1 > div {
    width: 10%;
  }
}
@media screen and (max-width: 960px) {
  .colL-hide {
    display: none;
  }
  .colL-show {
    display: block;
  }
  .colL-clear {
    clear: both;
  }
  .colsL-alignCenter {
    text-align: center;
  }
  .colsL-alignLeft {
    text-align: left;
  }
  .colsL-alignRight {
    text-align: right;
  }
  .cols .colL-left {
    float: left;
  }
  .cols .colL-right {
    float: right;
  }
  .colL-alignLeft {
    text-align: left;
  }
  .colL-alignRight {
    text-align: right;
  }
  .colL-alignCenter {
    text-align: center;
  }
  .cols.colsL-hugeGutter {
    margin-left: -80px;
  }
  .cols.colsL-largeGutter {
    margin-left: -30px;
  }
  .cols.colsL-mediumGutter {
    margin-left: -17px;
  }
  .cols.colsL-smallGutter {
    margin-left: -2px;
  }
  .cols.colsL-noGutter {
    margin-left: 0;
  }
  .cols.colsL-hugeGutter > div {
    padding-left: 80px;
  }
  .cols.colsL-largeGutter > div {
    padding-left: 30px;
  }
  .cols.colsL-mediumGutter > div {
    padding-left: 17px;
  }
  .cols.colsL-smallGutter > div {
    padding-left: 2px;
  }
  .cols.colsL-noGutter > div {
    padding-left: 0;
  }
  .cols.colsL-hugeBottom > div {
    margin-bottom: 80px;
  }
  .cols.colsL-largeBottom > div {
    margin-bottom: 30px;
  }
  .cols.colsL-mediumBottom > div {
    margin-bottom: 17px;
  }
  .cols.colsL-smallBottom > div {
    margin-bottom: 2px;
  }
  .cols.colsL-noBottom > div {
    margin-bottom: 0;
  }
  .colsL-10 > div {
    width: 10%;
  }
  .colsL-8 > div {
    width: 12.5%;
  }
  .colsL-6 > div {
    width: 16.6666666%;
  }
  .colsL-5 > div {
    width: 20%;
  }
  .colsL-4 > div {
    width: 25%;
  }
  .colsL-3 > div {
    width: 33.3333333%;
  }
  .colsL-2 > div {
    width: 50%;
  }
  .colsL-1 > div {
    width: 100%;
  }
  .colL-1 {
    width: 100%;
  }
  .colL-2-1 {
    width: 50%;
  }
  .colL-3-2 {
    width: 66.6666666%;
  }
  .colL-3-1 {
    width: 33.3333333%;
  }
  .colL-4-3 {
    width: 75%;
  }
  .colL-4-1 {
    width: 25%;
  }
  .colL-5-4 {
    width: 80%;
  }
  .colL-5-3 {
    width: 60%;
  }
  .colL-5-2 {
    width: 40%;
  }
  .colL-5-1 {
    width: 20%;
  }
  .colL-6-5 {
    width: 25%;
  }
  .colL-6-1 {
    width: 16.6666666%;
  }
  .colL-8-1 {
    width: 12.5%;
  }
  .colL-10-1 > div {
    width: 10%;
  }
}
@media screen and (max-width: 720px) {
  .colM-hide {
    display: none;
  }
  .colM-show {
    display: block;
  }
  .colM-clear {
    clear: both;
  }
  .colsM-alignCenter {
    text-align: center;
  }
  .colsM-alignLeft {
    text-align: left;
  }
  .colsM-alignRight {
    text-align: right;
  }
  .cols .colM-left {
    float: left;
  }
  .cols .colM-right {
    float: right;
  }
  .colM-alignLeft {
    text-align: left;
  }
  .colM-alignRight {
    text-align: right;
  }
  .colM-alignCenter {
    text-align: center;
  }
  .cols.colsM-hugeGutter {
    margin-left: -80px;
  }
  .cols.colsM-largeGutter {
    margin-left: -30px;
  }
  .cols.colsM-mediumGutter {
    margin-left: -17px;
  }
  .cols.colsM-smallGutter {
    margin-left: -2px;
  }
  .cols.colsM-noGutter {
    margin-left: 0;
  }
  .cols.colsM-hugeGutter > div {
    padding-left: 80px;
  }
  .cols.colsM-largeGutter > div {
    padding-left: 30px;
  }
  .cols.colsM-mediumGutter > div {
    padding-left: 17px;
  }
  .cols.colsM-smallGutter > div {
    padding-left: 2px;
  }
  .cols.colsM-noGutter > div {
    padding-left: 0;
  }
  .cols.colsM-hugeBottom > div {
    margin-bottom: 80px;
  }
  .cols.colsM-largeBottom > div {
    margin-bottom: 30px;
  }
  .cols.colsM-mediumBottom > div {
    margin-bottom: 17px;
  }
  .cols.colsM-smallBottom > div {
    margin-bottom: 2px;
  }
  .cols.colsM-noBottom > div {
    margin-bottom: 0;
  }
  .colsM-10 > div {
    width: 10%;
  }
  .colsM-8 > div {
    width: 12.5%;
  }
  .colsM-6 > div {
    width: 16.6666666%;
  }
  .colsM-5 > div {
    width: 20%;
  }
  .colsM-4 > div {
    width: 25%;
  }
  .colsM-3 > div {
    width: 33.3333333%;
  }
  .colsM-2 > div {
    width: 50%;
  }
  .colsM-1 > div {
    width: 100%;
  }
  .colM-1 {
    width: 100%;
  }
  .colM-2-1 {
    width: 50%;
  }
  .colM-3-2 {
    width: 66.6666666%;
  }
  .colM-3-1 {
    width: 33.3333333%;
  }
  .colM-4-3 {
    width: 75%;
  }
  .colM-4-1 {
    width: 25%;
  }
  .colM-5-4 {
    width: 80%;
  }
  .colM-5-3 {
    width: 60%;
  }
  .colM-5-2 {
    width: 40%;
  }
  .colM-5-1 {
    width: 20%;
  }
  .colM-6-5 {
    width: 25%;
  }
  .colM-6-1 {
    width: 16.6666666%;
  }
  .colM-8-1 {
    width: 12.5%;
  }
  .colM-10-1 > div {
    width: 10%;
  }
}
@media screen and (max-width: 480px) {
  .colS-hide {
    display: none;
  }
  .colS-show {
    display: block;
  }
  .colS-clear {
    clear: both;
  }
  .colsS-alignCenter {
    text-align: center;
  }
  .colsS-alignLeft {
    text-align: left;
  }
  .colsS-alignRight {
    text-align: right;
  }
  .cols .colS-left {
    float: left;
  }
  .cols .colS-right {
    float: right;
  }
  .colS-alignLeft {
    text-align: left;
  }
  .colS-alignRight {
    text-align: right;
  }
  .colS-alignCenter {
    text-align: center;
  }
  .cols.colsS-hugeGutter {
    margin-left: -80px;
  }
  .cols.colsS-largeGutter {
    margin-left: -30px;
  }
  .cols.colsS-mediumGutter {
    margin-left: -17px;
  }
  .cols.colsS-smallGutter {
    margin-left: -2px;
  }
  .cols.colsS-noGutter {
    margin-left: 0;
  }
  .cols.colsS-hugeGutter > div {
    padding-left: 80px;
  }
  .cols.colsS-largeGutter > div {
    padding-left: 30px;
  }
  .cols.colsS-mediumGutter > div {
    padding-left: 17px;
  }
  .cols.colsS-smallGutter > div {
    padding-left: 2px;
  }
  .cols.colsS-noGutter > div {
    padding-left: 0;
  }
  .cols.colsS-hugeBottom > div {
    margin-bottom: 80px;
  }
  .cols.colsS-largeBottom > div {
    margin-bottom: 30px;
  }
  .cols.colsS-mediumBottom > div {
    margin-bottom: 17px;
  }
  .cols.colsS-smallBottom > div {
    margin-bottom: 2px;
  }
  .cols.colsS-noBottom > div {
    margin-bottom: 0;
  }
  .colsS-10 > div {
    width: 10%;
  }
  .colsS-8 > div {
    width: 12.5%;
  }
  .colsS-6 > div {
    width: 16.6666666%;
  }
  .colsS-5 > div {
    width: 20%;
  }
  .colsS-4 > div {
    width: 25%;
  }
  .colsS-3 > div {
    width: 33.3333333%;
  }
  .colsS-2 > div {
    width: 50%;
  }
  .colsS-1 > div {
    width: 100%;
  }
  .colS-1 {
    width: 100%;
  }
  .colS-2-1 {
    width: 50%;
  }
  .colS-3-2 {
    width: 66.6666666%;
  }
  .colS-3-1 {
    width: 33.3333333%;
  }
  .colS-4-3 {
    width: 75%;
  }
  .colS-4-1 {
    width: 25%;
  }
  .colS-5-4 {
    width: 80%;
  }
  .colS-5-3 {
    width: 60%;
  }
  .colS-5-2 {
    width: 40%;
  }
  .colS-5-1 {
    width: 20%;
  }
  .colS-6-5 {
    width: 25%;
  }
  .colS-6-1 {
    width: 16.6666666%;
  }
  .colS-8-1 {
    width: 12.5%;
  }
  .colS-10-1 > div {
    width: 10%;
  }
}
/* ===========================================
   
	Buttons

=========================================== */
.Btn {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  background-color: #e63634;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-weight: 900;
  font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  line-height: 42px;
  text-transform: uppercase;
  overflow: hidden;
  padding: 0 26px;
  -webkit-border-radius: 21px;
  -moz-border-radius: 21px;
  -ms-border-radius: 21px;
  border-radius: 21px;
  border: none;
  position: relative;
  text-align: left;
  text-decoration: none !important;
  vertical-align: top;
  width: auto;
  z-index: 1;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.altBtn {
  background-color: transparent;
  -webkit-box-shadow: inset 0 0 0 3px #e63634;
  -moz-box-shadow: inset 0 0 0 3px #e63634;
  -ms-box-shadow: inset 0 0 0 3px #e63634;
  box-shadow: inset 0 0 0 3px #e63634;
  color: #e63634;
}
.darkBtn {
  background-color: #1b1d1f;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
}
.clearBtn {
  background-color: transparent;
  -webkit-box-shadow: inset 0 0 0 3px #FFFFFF;
  -moz-box-shadow: inset 0 0 0 3px #FFFFFF;
  -ms-box-shadow: inset 0 0 0 3px #FFFFFF;
  box-shadow: inset 0 0 0 3px #FFFFFF;
  color: #FFFFFF;
}
.fullBtn {
  display: block;
  width: 100%;
  text-align: center;
}
html.no-touchevents .Btn:hover {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
@media screen and (max-width: 720px) {
  .Btn {
    font-size: 12px;
  }
}
/* ===========================================
   
	Containers

=========================================== */
.siteWrap {
  height: 100%;
  margin: 0 auto;
  max-width: 100%;
  padding: 0 0 0 70px;
  position: relative;
}
.container {
  min-height: 100%;
  background-color: #fbf9f8;
}
.wrapper {
  margin: 0 auto;
}
.wrapper:before, .wrapper:after {
  clear: both;
  content: "";
  display: block;
  height: 0;
  line-height: 0;
  overflow: hidden;
  visibility: hidden;
  width: 0;
}
.inner {
  margin: 0 auto;
  position: relative;
  width: 1200px;
}
.inner .inner {
  width: 100%;
}
/* Standard paddings and margins */
.content {
  padding: 30px 0;
}
.padding {
  padding: 80px 0;
}
.noMargin {
  margin: 0;
}
.noPadding {
  padding: 0;
}
/* Content sizes */
.largeContent {
  max-width: 850px;
}
.halfContent {
  max-width: 750px;
}
.mediumContent {
  max-width: 650px;
}
.smallContent {
  max-width: 550px;
}
.tinyContent {
  max-width: 450px;
}
.miniContent {
  max-width: 350px;
}
.alignCenter .largeContent, .alignCenter.largeContent, .alignCenter .halfContent, .alignCenter.halfContent, .alignCenter .mediumContent, .alignCenter.mediumContent, .alignCenter .smallContent, .alignCenter.smallContent, .alignCenter .tinyContent, .alignCenter.tinyContent {
  margin: 0 auto;
}
/* Pushes */
.hugePush {
  height: 0;
  overflow: hidden;
  padding: 0 0 30%;
}
.push {
  height: 50px;
}
.smallPush {
  height: 30px;
}
.tinyPush {
  height: 12px;
}
/* Utilities */
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.static {
  position: static;
}
.fixed {
  position: fixed;
}
.noFlow {
  overflow: hidden;
}
/* Backgrounds */
.lightBg {
  background-color: #fbf9f8;
}
.whiteBg {
  background-color: #FFFFFF;
}
.lightGreyBg {
  background-color: #e6e6e6;
}
.greyBg {
  background-color: #bbbcbc;
}
.darkBg {
  background-color: #1b1d1f;
}
.purpleBg {
  background-color: #2f1a39;
}
.blueBg {
  background-color: #0097d5;
}
.babyBlueBg {
  background-color: #e7ebf1;
}
.greenBg {
  background-color: #006633;
}
.blackBg {
  background-color: #000000;
}
.mainBg {
  background-color: #e63634;
}
.secondBg {
  background-color: #1b1d1f;
}
.thirdBg {
  background-color: #1b1d1f;
}
/* Swipebox */
#swipebox-overlay {
  background-color: rgba(0, 0, 0, 0.9) !important;
}
#swipebox-bottom-bar, #swipebox-top-bar {
  background-color: transparent;
}
#swipebox-close {
  background-color: #000000;
}
/* Video */
.vidWrap {
  overflow: hidden;
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  background-color: #e6e6e6;
}
.vidWrap > iframe {
  display: block;
  position: absolute;
  max-width: 100%;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
/* Maps */
.googleMap {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#gmap {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.googleMap img {
  max-width: inherit;
  height: inherit;
}
@media screen and (max-width: 1333px) {
  body {
    min-width: 100%;
  }
  body:after {
    display: none;
    content: "";
    position: fixed;
    z-index: 999;
    bottom: 0;
    right: 0;
    border-bottom: 20px solid rebeccapurple;
    border-left: 20px solid transparent;
  }
  .inner {
    width: 90%;
  }
}
@media screen and (max-width: 960px) {
  body:after {
    border-bottom-color: yellowgreen;
  }
}
@media screen and (max-width: 720px) {
  body:after {
    border-bottom-color: salmon;
  }
  .articleContent .articleImg {
    float: none;
    margin: 0 0 20px;
    max-width: 100%;
  }
  .articleContent .articleImg img {
    width: 100%;
  }
  .pageContent {
    -moz-column-count: 1;
    -moz-column-gap: 0;
    -webkit-column-count: 1;
    -webkit-column-gap: 0;
    column-count: 1;
    column-gap: 0;
  }
}
@media screen and (max-width: 480px) {
  body {
    min-width: 320px;
  }
  body:after {
    border-bottom-color: lightblue;
  }
  .Btns .Btn {
    display: block;
    width: 100%;
    padding: 0;
    text-align: center;
  }
  .Btns .Btn + .Btn {
    margin-left: 0;
    margin-top: 10px;
  }
  .articleContent img.alignleft, .articleContent img.alignright {
    float: none;
    margin: 10px 0;
    width: 100%;
  }
}
.modditNotice {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  background-color: #FFFFFF;
  border: 1px solid #e8ddd8;
  max-width: 500px;
  overflow: hidden;
  padding: 20px 40px;
  position: relative;
  width: 90%;
}
.modditNotice + .modditNotice:not(.modditNoticeFixedTop):not(.modditNoticeFixedBottom) {
  margin-top: 10px;
}
.modditNotice:before {
  position: absolute;
  content: "";
  display: block;
  pointer-events: none;
  height: 100%;
  left: 0;
  top: 0;
  width: 4px;
}
.modditNotice p:first-of-type, .modditNotice ul:first-of-type {
  margin-top: 0;
}
.modditNotice p:last-of-type, .modditNotice ul:last-of-type {
  margin-bottom: 0;
}
.modditNoticeFixedTop, .modditNoticeFixedBottom, .modditNoticeFixedCenter {
  position: fixed;
  z-index: 999999;
}
.modditNoticeFixedTop {
  top: 30px;
}
.modditNoticeFixedBottom {
  bottom: 30px;
}
.modditNoticeFixedLeft {
  left: 30px;
}
.modditNoticeFixedCenter {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  position: fixed;
}
.modditNoticeFixedRight {
  right: 30px;
}
.modditNoticeInfo:before {
  background-color: #3498db;
}
.modditNoticeSuccess:before {
  background-color: #2ecc71;
}
.modditNoticeWarning:before {
  background-color: #f39c12;
}
.modditNoticeError:before {
  background-color: #e74c3c;
}
.modditNoticeClose {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #bbbcbc;
  padding: 5px 10px;
  right: 10px;
}
.modditNoticeClose:hover {
  color: #a1a3a3;
}
.sitenotice {
  position: fixed;
  z-index: 100001;
  top: 50%;
  left: 0;
  width: 100%;
  max-width: 300px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
  -ms-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 0 10px 10px 0;
  -moz-border-radius: 0 10px 10px 0;
  -ms-border-radius: 0 10px 10px 0;
  border-radius: 0 10px 10px 0;
  background-color: #FFFFFF;
}
.sitenoticeContent {
  overflow: hidden;
  padding: 20px;
}
.sitenoticeContent h3 {
  margin: 0;
  font-size: 19px;
  line-height: 30px;
}
.sitenoticeContent .sitenoticeDesc {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 20px;
}
.sitenoticeContent .sitenoticeDesc p {
  margin: 0;
  font-size: 12px;
  line-height: 20px;
}
.sitenoticeContent .sitenoticeDesc a {
  text-decoration: underline;
}
.sitenotice .Btn {
  margin: 10px 0 0;
  line-height: 40px;
  font-size: 13px;
}
.sitenoticeClose {
  position: absolute;
  top: 10px;
  right: 10px;
  display: block;
  background-color: #e63634;
  color: #FFFFFF;
  font-size: 13px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  cursor: pointer;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.cookieNotice {
  position: fixed;
  z-index: 10;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(27, 29, 31, 0.8);
}
.cookieNoticeContent {
  overflow: hidden;
  padding: 20px 0;
}
.cookieNoticeContent h3 {
  margin: 0;
  color: #FFFFFF;
  font-size: 16px;
  line-height: 30px;
}
.cookieNoticeContent .cookieNoticeDesc {
  margin: 0;
  color: #FFFFFF;
  font-size: 12px;
  line-height: 20px;
}
.cookieNoticeContent .cookieNoticeDesc p {
  margin: 0;
  color: #FFFFFF;
  font-size: 12px;
  line-height: 20px;
}
.cookieNoticeContent .cookieNoticeDesc a {
  text-decoration: underline;
  color: #FFFFFF;
}
.cookieNotice .Btn {
  float: right;
  margin: 0 0 0 10px;
}
@media screen and (max-width: 480px) {
  .cookieNotice .Btn {
    float: none;
    margin: 0 0 10px;
    width: 100%;
    padding: 0;
    text-align: center;
    line-height: 40px;
    font-size: 13px;
  }
}
/* ============================================================================
    Globals
============================================================================ */
#wpadminbar {
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  #wpadminbar {
    display: none;
  }
  html.js {
    margin-top: 0 !important;
  }
}
body.logged-in .scss_errors {
  position: fixed;
  top: 50px;
  left: 50px;
  right: 50px;
  background-color: #FFFFFF;
  z-index: 50;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
html, body {
  background: #FFFFFF;
  height: 100%;
}
body {
  min-height: 100%;
}
/* ============================================================================
    Breadcrumbs
============================================================================ */
.breadCrumbs {
  padding: 10px 0;
  width: 100%;
}
.breadCrumbs p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
  line-height: 30px;
  font-size: 12px;
  color: #1b1d1f;
}
.breadCrumbs p a {
  color: #1b1d1f;
  text-decoration: none;
  border-bottom: none;
}
.breadCrumbs i {
  font-size: 8px;
  margin: 0 5px;
}
.breadCrumbs p a:hover {
  color: #e63634;
  text-decoration: underline;
}
/* ============================================================================
    Nieuws / Article
============================================================================ */
.articleWrap {
  background-color: #FFFFFF;
  padding: 45px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid #e8ddd8;
}
.articleHeader {
  border-bottom: 1px solid #e8ddd8;
}
.articleHeader .title {
  line-height: 45px;
  margin: 0 0 20px;
}
.articleContent:after {
  content: "";
  display: block;
  clear: both;
  width: 0;
  height: 0;
  line-height: 0;
  visibility: hidden;
}
.articleContent p a {
  text-decoration: underline;
}
.pageContent {
  -moz-column-count: 2;
  -moz-column-gap: 28px;
  -webkit-column-count: 2;
  -webkit-column-gap: 28px;
  column-count: 2;
  column-gap: 28px;
  margin: 0;
}
.articleContent.pageContent p {
  margin: 0 0 20px;
}
.pageContent h1, .pageContent h2, .pageContent h3, .pageContent h4, .pageContent h5, .pageContent h6 {
  margin: 0 0 30px;
}
.articleContent .desc {
  font-size: 19px;
  line-height: 30px;
}
.articleContent ul {
  list-style: outside disc;
  padding: 0 0 0 20px;
}
.articleContent ul li {
  vertical-align: top;
}
.articleContent ol {
  list-style: outside decimal;
  padding: 0 0 0 20px;
}
.articleContent ol li {
  vertical-align: top;
}
.ellipsis {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.articleImg, .articleContent .articleImg {
  display: block;
  padding: 5px;
  border: 1px solid #e5e5e5;
  background-color: #FFFFFF;
  width: 100%;
  max-width: 400px;
  margin: 0 0 30px 30px;
  float: right;
}
.articleImg img, .articleContent .articleImg img {
  width: 100%;
}
.fullImg img {
  width: 100%;
}
.postSocials {
  max-width: 280px;
}
.articleContent img {
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #e8ddd8;
  background-color: #f2ebe8;
}
.articleContent img.alignleft {
  float: left;
  margin: 10px 30px 10px 0;
}
.articleContent img.alignright {
  float: right;
  margin: 10px 0 10px 30px;
}
#impressionSlider .slides li {
  display: none;
  max-width: 480px;
}
#impressionSlider .slides li a {
  display: block;
}
.articleContent table {
  width: 100%;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
}
.articleContent table th, .articleContent table td {
  padding: 5px;
  font-size: 13px;
  line-height: 20px;
}
.articleContent table th {
  background-color: #1b1d1f;
  color: #FFFFFF;
  font-weight: bold;
}
.articleContent table tbody tr {
  background-color: #FFFFFF;
}
.articleContent table tbody tr:nth-child(even) {
  background-color: #fbf9f8;
}
.animated {
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  33% {
    -webkit-transform: scale3d(0.8, 0.8, 0.8);
    transform: scale3d(0.8, 0.8, 0.8);
  }
  66% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  90% {
    -webkittransform: scale3d(0.95, 0.95, 0.95);
    transform: scale3d(0.95, 0.95, 0.95);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  33% {
    -webkit-transform: scale3d(0.8, 0.8, 0.8);
    transform: scale3d(0.8, 0.8, 0.8);
  }
  66% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  90% {
    -webkittransform: scale3d(0.95, 0.95, 0.95);
    transform: scale3d(0.95, 0.95, 0.95);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
/* ===========================================
   
	Header

=========================================== */
.header {
  position: relative;
  background-color: #1b1d1f;
  height: 0;
  overflow: hidden;
  padding-bottom: 28.75%;
  min-height: 300px;
}
.headerSlider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.headerSlider .slides, .headerSlider .slides li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.headerBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  opacity: 0.25;
}
.headerBig {
  padding-bottom: 56.25%;
  min-height: 450px;
}
.headerContent {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  z-index: 2;
}
.headerTitle {
  font-size: 84px;
  line-height: 92px;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.headerDesc {
  font-size: 34px;
  line-height: 40px;
  margin: 0 0 40px;
}
@media screen and (max-width: 1333px) {
  .headerTitle {
    font-size: 70px;
    line-height: 82px;
    max-width: 500px;
  }
}
@media screen and (max-width: 960px) {
  .headerTitle {
    font-size: 50px;
    line-height: 58px;
    max-width: 400px;
  }
  .headerDesc {
    font-size: 28px;
    line-height: 36px;
    margin: 0 0 20px;
  }
}
@media screen and (max-width: 480px) {
  .headerTitle {
    font-size: 40px;
    line-height: 42px;
    max-width: 260px;
    margin: 0 0 10px;
  }
  .headerDesc {
    font-size: 24px;
    line-height: 30px;
  }
}
.hero {
  position: relative;
  background-color: #1b1d1f;
  height: 0;
  overflow: hidden;
  padding-bottom: 28.75%;
  min-height: 300px;
}
.heroBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  opacity: 0.25;
}
.heroInner {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  z-index: 2;
}
/* ===========================================
   
	Footer

=========================================== */
.innerContainer {
  padding: 0 0 700px;
}
.footer {
  clear: both;
  min-height: 700px;
  margin-top: -700px;
  position: relative;
  width: 100%;
  z-index: 2;
}
.footerTop {
  height: 640px;
  padding: 60px 0;
}
.footerTitle {
  margin: 0 0 20px;
  font-size: 27px;
  line-height: 40px;
  color: #FFFFFF;
}
.footerDesc {
  margin: 0;
  font-size: 16px;
  line-height: 26px;
  color: #bbbcbc;
}
.footerDesc i {
  margin-right: 5px;
}
.footerDesc a {
  color: #bbbcbc;
}
.footerDesc a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}
.footerMenu ul {
  list-style: none;
  margin: 0;
}
.footerMenu ul li {
  font-size: 16px;
  line-height: 26px;
  color: #bbbcbc;
  position: relative;
}
.footerMenu ul li a {
  display: block;
  color: #bbbcbc;
}
.footerMenu ul li a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}
.footerBottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  height: 60px;
  padding: 15px 0;
}
.footerLogo {
  display: block;
  height: 60px;
  margin: 0 0 10px;
}
.footerLogo img {
  width: auto;
  max-height: 100%;
}
.footerRight {
  float: right;
}
.nlForm {
  position: relative;
}
.nlFormInput input {
  margin: 0;
  padding-right: 180px;
  width: 100%;
  color: #fbf9f8;
}
.nlFormInput input::-webkit-input-placeholder {
  color: #fbf9f8;
  opacity: 1;
}
.nlFormInput input::-moz-placeholder {
  color: #fbf9f8;
  opacity: 1;
}
.nlFormInput input:-ms-input-placeholder {
  color: #fbf9f8;
  opacity: 1;
}
.nlFormInput input:-moz-placeholder {
  color: #fbf9f8;
  opacity: 1;
}
.nlFormSubmit {
  width: 150px;
  padding: 0;
  margin: 0;
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
}
.socialIcons {
  margin: 20px 0 0;
}
.socialIcons li {
  display: inline-block;
  vertical-align: top;
  margin: 0 10px 5px 0;
}
.socialIcons li a {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  text-align: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}
.socialIcons li a:hover {
  background-color: #e63634;
}
.copyright {
  float: left;
  margin: 0 20px 0 0;
  line-height: 30px;
  font-size: 12px;
  color: #FFFFFF;
}
.modditM {
  display: block;
  float: left;
  margin: 0;
  width: 30px;
  height: 30px;
}
.modditM svg {
  display: block;
  width: 30px;
  height: 30px;
}
.modditM svg .mIcon {
  fill: rgba(255, 255, 255, 0.5);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.modditM:hover svg .mIcon {
  fill: #2263a8;
}
.bottomMenu ul {
  list-style: none;
  margin: 0;
}
.bottomMenu ul li {
  padding: 0 0 0 20px;
  line-height: 30px;
  font-size: 12px;
  color: #FFFFFF;
  float: left;
  position: relative;
}
.bottomMenu ul li a {
  color: #FFFFFF;
}
.bottomMenu ul li a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}
.bottomMenu ul li:before {
  position: absolute;
  content: "";
  display: block;
  pointer-events: none;
  content: "-";
  width: 20px;
  left: 0;
  top: 0;
  text-align: center;
}
.bottomMenu ul li:first-child {
  padding: 0;
}
.bottomMenu ul li:first-child:before {
  display: none;
}
@media screen and (max-width: 1333px) {
  .container {
    min-height: inherit;
  }
  .innerContainer {
    padding: 0;
  }
  .footer {
    height: auto;
    margin: 0;
  }
  .footerTop, .footerBottom {
    height: auto;
  }
  .footer .smallTitle {
    font-size: 20px;
    line-height: 30px;
  }
  .socialIcons li a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 13px;
  }
}
@media screen and (max-width: 720px) {
  .socialIcons li {
    float: left;
  }
  .footerRight {
    float: none;
    text-align: left;
  }
}
/* ===========================================
	Menu
=========================================== */
.navBar {
  position: fixed;
  top: 0;
  bottom: -80px;
  left: 0;
  width: 70px;
  background-color: #FFFFFF;
  z-index: 100000;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
}
.menuToggle {
  display: block;
  cursor: pointer;
  width: 70px;
  height: 70px;
  background-color: #1b1d1f;
  position: relative;
}
.mtBars {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.mtBar {
  position: absolute;
  width: 30px;
  height: 3px;
  top: 50%;
  left: 0;
  background-color: #FFFFFF;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.mtBarTop {
  margin-top: -8px;
  width: 18px;
}
.mtBarBottom {
  margin-top: 8px;
  width: 24px;
}
.menuToggle.active .mtBar {
  margin: 0;
  width: 30px;
}
.menuToggle.active .mtBarTop {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.menuToggle.active .mtBarBottom {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.menuToggle.active .mtBarTop, .menuToggle.active .mtBarBottom {
  margin: 0;
}
.menuToggle.active .mtBarMiddle {
  width: 0;
}
html.no-touchevents .menuToggle:hover .mtBar {
  width: 30px;
}
html.no-touchevents .menuToggle.active .mtBar {
  width: 30px;
}
html.no-touchevents .menuToggle.active .mtBarMiddle {
  width: 0;
}
.logo {
  display: block;
  text-indent: -99999px;
  cursor: pointer;
  width: 70px;
  height: 70px;
  background: url(../images/logo.svg) no-repeat 50% 50%;
  background-size: 50px auto;
}
@media screen and (max-width: 720px) {
  .siteWrap {
    padding: 50px 0 0;
  }
  .navBar {
    bottom: inherit;
    width: 100%;
    height: 50px;
  }
  .menuToggle {
    width: 50px;
    height: 50px;
    float: left;
  }
  .mtBars {
    width: 30px;
    height: 30px;
  }
  .logo {
    width: 50px;
    height: 50px;
    float: left;
    background-size: 36px auto;
  }
}
/* ===========================================
   
	Panel

=========================================== */
.siteOverlay {
  position: fixed;
  z-index: 8;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1b1d1f;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.siteOverlay:before {
  position: absolute;
  content: "";
  display: block;
  pointer-events: none;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #e63634;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 0;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: opacity 0.3s ease-in-out 0.5s;
  transition: opacity 0.3s ease-in-out 0.5s;
  z-index: 9;
  opacity: 0;
  overflow: hidden;
}
.panelInner {
  padding: 10% 80px 50px 150px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
.panelMenu {
  padding: 0 0 30px;
}
.panelMenu ul {
  margin: 0;
}
.panelMenu ul li {
  display: block;
  font-size: 36px;
  line-height: 60px;
  margin: 0;
  font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.panelMenu ul li.current-menu-item a, .panelMenu ul li.current-menu-parent a {
  color: #FFFFFF;
}
.panelMenu ul li a {
  display: inline-block;
  position: relative;
  color: #FFFFFF;
}
.panelMenu ul li a:before {
  position: absolute;
  content: "";
  display: block;
  pointer-events: none;
  width: 100%;
  height: 4px;
  opacity: 0;
  background-color: #e63634;
  bottom: 50%;
  -webkit-transition: opacity 0.5s ease, bottom 0.5s ease;
  transition: opacity 0.5s ease, bottom 0.5s ease;
}
.panelMenu ul li a:hover {
  text-decoration: none;
}
.panelMenuSmall ul li {
  font-size: 24px;
  line-height: 40px;
}
body.lock .siteOverlay {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
body.lock .siteOverlay:before {
  width: 0;
}
body.lock .panel {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
html.no-touchevents .panelMenu li a:hover:before {
  opacity: 1;
  bottom: 0;
}
@media screen and (max-width: 1333px) {
  .panelMenu ul li {
    font-size: 30px;
    line-height: 54px;
  }
  .panelMenuSmall ul li {
    font-size: 20px;
    line-height: 32px;
  }
}
@media screen and (max-width: 960px) {
  .panelMenuSmall ul li {
    float: none;
    width: 100%;
  }
}
@media screen and (max-width: 720px) {
  .panelInner {
    padding: 100px 5% 60px 5%;
  }
}
@media screen and (max-width: 480px) {
  .panelMenu ul li {
    font-size: 20px;
    line-height: 32px;
  }
}
/* ===========================================
   
	Blocks

=========================================== */
.block {
  display: block;
  position: relative;
  background-color: #1b1d1f;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.blockImg {
  position: relative;
  height: 0;
  overflow: hidden;
  padding-bottom: 100%;
}
.blockImg img {
  position: absolute;
  display: block;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: 100%;
  width: auto;
  width: 100%;
  max-height: inherit;
  -webkit-transition: all 1.3s ease;
  transition: all 1.3s ease;
  opacity: 0.7;
}
.blockImg img.greyImg {
  -webkit-filter: grayscale(90%);
  filter: grayscale(90%);
}
.blockImg:after {
  position: absolute;
  content: "";
  display: block;
  pointer-events: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.4) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.4) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.4) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000", endColorstr="#66000000",GradientType=0);
}
.block.darkBlock .blockImg img {
  opacity: 0.4;
}
.blockLabel {
  position: absolute;
  left: 50px;
  top: 30px;
  padding: 0 12px;
  z-index: 3;
  background-color: #e63634;
  color: #FFFFFF;
  font-size: 10px;
  line-height: 22px;
  font-weight: 900;
  font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  -webkit-border-radius: 11px;
  -moz-border-radius: 11px;
  -ms-border-radius: 11px;
  border-radius: 11px;
}
.blockContent {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 40px 50px;
  z-index: 2;
}
.blockTitle {
  font-size: 40px;
  line-height: 50px;
  max-height: 100px;
  overflow: hidden;
  margin: 0 0 20px;
  color: #FFFFFF;
}
.blockSmalltitle {
  font-size: 28px;
  line-height: 35px;
  max-height: 70px;
  overflow: hidden;
  margin: 0 0 20px;
  color: #FFFFFF;
}
.blockTinytitle {
  font-size: 20px;
  line-height: 30px;
  max-height: 60px;
  overflow: hidden;
  margin: 0 0 20px;
  color: #FFFFFF;
}
.blockOverlay {
  overflow: hidden;
  -webkit-transition: max-height 0.75s ease;
  transition: max-height 0.75s ease;
}
.blockDesc {
  font-size: 18px;
  line-height: 30px;
  margin: 0;
  color: #e5e5e5;
  max-height: 90px;
  overflow: hidden;
}
.blockDescFull {
  max-height: inherit;
}
.blockDesc a {
  color: #bbbcbc;
}
.blockDesc a:hover {
  text-decoration: underline;
}
.blockAlt {
  display: block;
  background-color: #e63634;
  padding: 0 0 100%;
  height: 0;
  overflow: hidden;
  text-align: center;
  position: relative;
}
.blockAltInner {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  padding: 0 40px;
}
.blockAlt h3 {
  margin: 0 0 20px;
  font-size: 28px;
  line-height: 38px;
  color: #FFFFFF;
}
.block.faceBlock .blockImg img {
  opacity: 1;
}
.block.faceBlock .blockLabel {
  background-color: #000000;
  left: 0;
  top: 10px;
  -webkit-border-radius: 0 11px 11px 0;
  -moz-border-radius: 0 11px 11px 0;
  -ms-border-radius: 0 11px 11px 0;
  border-radius: 0 11px 11px 0;
}
.block.faceBlock .blockContent {
  padding: 0 20px 30px;
}
.block.faceBlock .blockTitle {
  margin: 0;
  font-size: 16px;
  line-height: 30px;
}
html.no-touchevents a.block:hover {
  -webkit-box-shadow: 3px 3px 0 0 #fbf9f8;
  -moz-box-shadow: 3px 3px 0 0 #fbf9f8;
  -ms-box-shadow: 3px 3px 0 0 #fbf9f8;
  box-shadow: 3px 3px 0 0 #fbf9f8;
}
html.no-touchevents a.block:hover .blockImg img {
  opacity: 0.15;
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}
html.no-touchevents a.block:hover .blockOverlay {
  max-height: 300px;
}
.blockSlider {
  position: relative;
}
.blockSlider .slides li {
  max-width: 435px;
}
.blockSlider .flex-direction-nav a {
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  -ms-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 14px;
  line-height: 42px;
  text-align: center;
  color: #000000;
}
.blockSlider .flex-direction-nav a.flex-prev {
  left: -21px;
}
.blockSlider .flex-direction-nav a.flex-next {
  right: -21px;
}
.blockSlider .flex-direction-nav a:hover {
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.35);
  -ms-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.35);
}
@media screen and (max-width: 1333px) {
  .blockAlt h3 {
    font-size: 22px;
    line-height: 28px;
  }
  .blockTitle, .blockSmalltitle {
    font-size: 22px;
    line-height: 28px;
    max-height: 56px;
  }
}
@media screen and (max-width: 960px) {
  .blockLabel {
    left: 35px;
  }
  .blockContent {
    padding: 30px 35px;
  }
}
@media screen and (max-width: 720px) {
  .blockSlider .flex-direction-nav a {
    width: 34px;
    height: 34px;
    line-height: 34px;
  }
  .blockSlider .flex-direction-nav a.flex-prev {
    left: 10px;
  }
  .blockSlider .flex-direction-nav a.flex-next {
    right: 10px;
  }
  .blockAlt h3, .blockTitle, .blockSmalltitle {
    font-size: 18px;
    line-height: 24px;
  }
  .blockAltInner {
    padding: 0 22px;
  }
}
.woodBg {
  background: url(../images/woodBg.jpg) no-repeat 50% 50% #1b1d1f;
  background-size: cover;
}
.svzwLogo {
  background: url(../images/logo.svg) no-repeat 50% 50%;
  background-size: contain;
  width: 100%;
  max-width: 250px;
  height: 270px;
  margin: 0 auto;
}
.darkBg .title, .darkBg .smallTitle {
  color: #FFFFFF;
}
.darkBg p {
  color: #bbbcbc;
}
.vacNum {
  display: none;
}
.vacMenu a {
  position: relative;
}
.vacMenu .vacNum {
  display: block;
  position: absolute;
  background-color: #e63634;
  color: #FFFFFF;
  min-width: 20px;
  font-size: 13px;
  line-height: 20px;
  margin: 0;
  padding: 0 3px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  top: -10px;
  right: -30px;
  text-align: center;
}
.logoBlock {
  position: relative;
  display: block;
  padding: 0 0 60%;
  height: 0;
  border-radius: 10px;
  background-color: #FFF;
}
.logoBlock img {
  position: absolute;
  display: block;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: 100%;
  width: auto;
  padding: 40px;
}
@media screen and (max-width: 720px) {
  .logoBlock img {
    padding: 10px;
  }
}
.banner {
  position: relative;
  min-height: 300px;
  padding: 0 0 28.75%;
  overflow: hidden;
  height: 0;
}
.bannerBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.15;
}
.bannerContent {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  z-index: 2;
}
.Btn.catFilter {
  line-height: 30px;
  font-size: 10px;
  padding: 0 15px;
  margin-bottom: 5px;
}
.Btn.catFilter.active {
  background-color: #e63634;
  color: #FFFFFF;
}
html.no-touchevents .Btn.catFilter.active {
  background-color: #e63634;
}
.aboutHeader {
  background: url(../images/aboutHeader.jpg);
}
.wePlay {
  display: block;
  text-align: center;
}
.wePlay h2 {
  display: block;
  margin: 0;
  color: #1b1d1f;
  font-size: 100px;
  line-height: 100px;
  font-weight: 700;
  text-transform: uppercase;
}
.wePlaySlider {
  overflow: hidden;
  height: 100px;
}
.wePlaySlider .slides {
  margin: 0;
  line-height: 0;
}
.wePlaySlider .slides li {
  color: #1b1d1f;
  font-size: 100px;
  line-height: 100px;
  font-weight: 900;
  font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
}
.wePlay .svzwLogo {
  max-width: 50px;
  height: 80px;
}
@media screen and (max-width: 720px) {
  .wePlay h2, .wePlaySlider .slides li {
    font-size: 50px;
    line-height: 50px;
  }
  .wePlaySlider {
    height: 50px;
  }
}
.circle {
  position: relative;
  width: 200px;
  height: 200px;
  text-align: center;
  margin: 0 auto 50px;
}
.circleShape {
  padding: 10px;
  fill: transparent;
  stroke: #e63634;
  stroke-width: 10px;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.circle i {
  color: #FFFFFF;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: block;
  font-size: 60px;
  line-height: 60px;
  width: 60px;
  height: 60px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.circle p {
  color: #FFFFFF;
  position: absolute;
  top: 100%;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  margin: 20px 0 0;
  width: 100%;
}
.tabControl .Btn {
  line-height: 30px;
  font-size: 10px;
  padding: 0 15px;
}
.tabControl.active .Btn {
  background-color: #1b1d1f;
}
.tabNav {
  margin: 0 0 20px;
}
.tabNav li {
  display: inline-block;
  vertical-align: top;
  margin: 0 0 5px;
}
.tabContent {
  display: none;
}
.tabContent.active {
  display: block;
}
.card {
  display: block;
  background-color: #FFFFFF;
}
.cardImg {
  padding: 20px 30px;
}
.cardImg img {
  width: 100%;
}
.cardContent {
  padding: 30px;
}
.cardTitle {
  margin: 0 0 20px;
  font-size: 24px;
  line-height: 30px;
}
.cardDesc {
  margin: 0;
  font-size: 20px;
  line-height: 30px;
}
.faceSlider {
  position: relative;
}
.faceSlider .flex-direction-nav a {
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  -ms-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 14px;
  line-height: 42px;
  text-align: center;
  color: #000000;
}
.faceSlider .flex-direction-nav a.flex-prev {
  left: 21px;
}
.faceSlider .flex-direction-nav a.flex-next {
  right: 21px;
}
.faceSlider .flex-direction-nav a:hover {
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.35);
  -ms-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.35);
}
@media screen and (max-width: 720px) {
  .faceSlider .flex-direction-nav a {
    width: 34px;
    height: 34px;
    line-height: 34px;
  }
  .faceSlider .flex-direction-nav a.flex-prev {
    left: 10px;
  }
  .faceSlider .flex-direction-nav a.flex-next {
    right: 10px;
  }
}
.teamLogo {
  background-color: #fbf9f8;
}
.teamLogo span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
}
.teamLogo span.hide {
  background-image: none !important;
}
.teamLogo img {
  position: absolute;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  padding: 0;
  border: none;
}
.teamLogoSVZW span {
  background-image: url(../images/logos/svzw.svg);
}
.teamLogoTheValleyBucketeers span {
  background-image: url(../images/logos/valleybucketeers.png);
}
.teamLogoUitsmijters span {
  background-image: url(../images/logos/uitsmijters.png);
}
.teamLogoTheValleyBucketeers span {
  background-image: url(../images/logos/valleybucketeers.png);
}
.teamLogoTwenteBuzzards span {
  background-image: url(../images/logos/twentebuzzards.png);
}
.teamLogoBVIsala span {
  background-image: url(../images/logos/isala.png);
}
.teamLogoWSV span {
  background-image: url(../images/logos/wsv.png);
}
.teamLogoDBVArriba span {
  background-image: url(../images/logos/arriba.png);
}
.teamLogoPeatminers span {
  background-image: url(../images/logos/peatminers.png);
}
.teamLogoAmical span {
  background-image: url(../images/logos/amical.png);
}
.teamLogoTheJugglers span {
  background-image: url(../images/logos/jugglers.png);
}
.teamLogoTONEGO65 span {
  background-image: url(../images/logos/tonego.png);
}
.teamLogoRisneStars span {
  background-image: url(../images/logos/risnestars.png);
}
.teamLogoStars84 span {
  background-image: url(../images/logos/stars84.png);
}
.teamLogoKikkers span {
  background-image: url(../images/logos/kikkers.png);
}
.teamLogoSecondDribble span, .teamLogoBVSecondDribble span {
  background-image: url(../images/logos/seconddribble.png);
}
.teamLogoJollyJumpers span {
  background-image: url(../images/logos/jollyjumpers.png);
}
.teamLogoPickerReds span {
  background-image: url(../images/logos/pickerreds.png);
}
.teamLogoOlstars span {
  background-image: url(../images/logos/olstars.png);
}
.teamLogoSVTwello span, .teamLogoSVTwelloIsala span {
  background-image: url(../images/logos/twello.png);
}
.teamLogoVUAS span {
  background-image: url(../images/logos/vuas.jpg);
}
.teamLogoLandstedeBasketbalZAC span {
  background-image: url(../images/logos/zac.jpg);
}
.standings {
  text-align: center;
}
.standings .teamLogo {
  width: 30px;
  height: 30px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  overflow: hidden;
}
.standingsTeam {
  text-align: left;
}
.standings .homeTeam {
  font-weight: 700;
}
.standings.schema {
  text-align: left;
}
.gameTeams {
  margin: 20px 0;
  text-align: center;
}
.filterTeam {
  display: inline-block;
  vertical-align: top;
  padding: 10px;
  background-color: #FFFFFF;
  width: 80px;
  height: 80px;
  margin: 0 2px 8px;
  position: relative;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  cursor: pointer;
}
.filterTeam .teamLogo {
  width: 60px;
  height: 60px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  margin: 0 auto 10px;
  padding: 10px;
}
.filterTeam > span {
  position: absolute;
  opacity: 0;
  bottom: 0px;
  display: block;
  background: #000000;
  color: #FFFFFF;
  padding: 0 10px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  font-size: 11px;
  text-transform: uppercase;
  line-height: 20px;
  width: 130px;
  font-weight: 900;
  text-align: center;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: bottom 0.3s ease, opacity 0.3s ease;
  transition: bottom 0.3s ease, opacity 0.3s ease;
}
.filterTeam.active {
  background-color: #e63634;
}
html.no-touchevents .filterTeam:hover {
  background-color: #bbbcbc;
}
html.no-touchevents .filterTeam:hover > span {
  opacity: 1;
  bottom: -20px;
}
html.no-touchevents .filterTeam.active {
  background-color: #e63634;
}
.game {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  background-color: #FFFFFF;
  overflow: hidden;
  text-align: center;
}
.gameHead {
  padding: 5px 10px;
  background-color: #1b1d1f;
}
.gameHead p {
  margin: 0;
  color: #FFFFFF;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
}
.gameMatchup {
  margin: 0 0 10px;
  padding: 10px;
}
.gameTeam {
  width: 45%;
  float: left;
}
.gameTeam .teamLogo {
  width: 60px;
  height: 60px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  margin: 0 auto 10px;
  padding: 10px;
}
.gameTeamName {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
}
.gameSep {
  width: 10%;
  float: left;
  font-size: 12px;
  font-weight: 700;
  line-height: 90px;
}
.gameFooter {
  border-top: 4px solid #fbf9f8;
}
.gameFooter .gameSep {
  line-height: 30px;
}
.gameFooter p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 30px;
}
.gameScore {
  float: left;
  width: 45%;
  font-size: 19px;
  font-weight: 700;
  line-height: 30px;
}
.hall {
  display: block;
  padding: 20px 30px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  background-color: #FFFFFF;
}
.hall h3 {
  position: relative;
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 30px;
  padding-left: 40px;
}
.hall .teamLogo {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
}
.hall p {
  font-size: 14px;
  line-height: 22px;
  margin: 0;
}
.hall p a {
  color: #e63634;
}
.hall p a:hover {
  text-decoration: underline;
}
.hallMap {
  position: relative;
  padding: 0 0 50%;
  min-height: 400px;
  overflow: hidden;
  background-color: #e6e6e6;
}
.contactCard {
  background-color: #fbf9f8;
  border: 1px solid #ece3de;
  padding: 30px;
}
.contactCard p a {
  color: #828282;
}
.contactCard p a:hover {
  color: #e63634;
  text-decoration: underline;
}
.contactCard .socialIcons {
  margin: 20px 0 0;
}
.contactCard .socialIcons li a {
  background-color: #1b1d1f;
}
.contactCard .socialIcons li a:hover {
  background-color: #e63634;
}
.layoutWrap {
  max-width: 1000px;
  margin: -100px auto 0;
  position: relative;
  z-index: 3;
}
.layoutInner {
  background-color: #fbf9f8;
  padding: 50px;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
}
.layoutSection {
  margin: 10px 0 0;
}
.layoutSection .articleContent h2, .layoutSection .articleContent h3, .layoutSection .articleContent h4, .layoutSection .articleContent h5, .layoutSection .articleContent h6 {
  font-size: 26px;
}
.layoutSection .articleContent p {
  margin: 0 0 20px;
  line-height: 25px;
}
.layoutSection .articleContent p strong {
  text-transform: uppercase;
  font-size: 16px;
}
.layoutVid {
  position: relative;
  height: 0;
  padding: 0 0 56.25%;
  overflow: hidden;
  display: block;
}
.layoutVid img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
}
.layoutVid:before {
  position: absolute;
  content: "";
  display: block;
  pointer-events: none;
  width: 110px;
  height: 110px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background-color: #FFFFFF;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
}
.layoutVid:after {
  position: absolute;
  content: "";
  display: block;
  pointer-events: none;
  width: 110px;
  height: 110px;
  line-height: 110px;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #1b1d1f;
  font-size: 50px;
  font-family: "FontAwesome";
  content: "";
}
.layoutFooter {
  padding: 30px 0 0;
}
.layoutReturn {
  float: left;
}
.layoutReturn a {
  cursor: pointer;
  color: #1b1d1f;
  text-decoration: underline;
  font-size: 14px;
  line-height: 30px;
}
.layoutReturn a i {
  margin-right: 10px;
}
.layoutReturn a:hover {
  color: #e63634;
}
.layoutShare {
  float: right;
}
.layoutShare .socialSharesTitle {
  color: #1b1d1f;
  font-size: 14px;
  line-height: 30px;
  margin: 0;
  float: left;
}
.layoutShare .socialSharesIcons {
  width: 200px;
  float: right;
}
.layoutShare div.simplesocialbuttons {
  margin: 0;
}
.layoutShare .simplesocialbuttons.simplesocial-round-icon button.simplesocial-fb-share, .layoutShare .simplesocialbuttons.simplesocial-round-icon button.simplesocial-whatsapp-share, .layoutShare .simplesocialbuttons.simplesocial-round-icon button.simplesocial-twt-share, .layoutShare .simplesocialbuttons.simplesocial-round-icon button.simplesocial-gplus-share, .layoutShare .simplesocialbuttons.simplesocial-round-icon button.simplesocial-linkedin-share {
  border: none;
  background-color: #e63634;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 13px;
  padding: 0;
  margin: 0 0 0 5px;
}
.layoutShare .simplesocialbuttons.simplesocial-round-icon button.simplesocial-fb-share:after, .layoutShare .simplesocialbuttons.simplesocial-round-icon button.simplesocial-whatsapp-share:after, .layoutShare .simplesocialbuttons.simplesocial-round-icon button.simplesocial-twt-share:after, .layoutShare .simplesocialbuttons.simplesocial-round-icon button.simplesocial-gplus-share:after, .layoutShare .simplesocialbuttons.simplesocial-round-icon button.simplesocial-linkedin-share:after {
  color: #FFFFFF;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 15px;
}
.layoutShare .rrssb-buttons {
  width: 200px;
  height: 30px;
  float: right;
  padding: 0;
}
.layoutShare .rrssb-buttons li {
  width: 34px !important;
  height: 100%;
  padding: 0 2px;
  float: right;
}
.layoutShare .rrssb-buttons li a {
  padding: 0;
  background-color: #e63634;
  -webkit-border-radius: 23px;
  -moz-border-radius: 23px;
  -ms-border-radius: 23px;
  border-radius: 23px;
}
.layoutShare .rrssb-buttons li a .rrssb-icon {
  left: auto;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  top: 50%;
  padding: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
}
.layoutShare .rrssb-buttons li a .rrssb-icon svg {
  width: 14px;
  height: 14px;
  top: 8px;
}
.layoutShare .rrssb-buttons li a .rrssb-text {
  display: none;
}
html.no-touchevents .layoutShare .simplesocialbuttons.simplesocial-round-icon button.simplesocial-fb-share:hover, html.no-touchevents .layoutShare .simplesocialbuttons.simplesocial-round-icon button.simplesocial-whatsapp-share:hover, html.no-touchevents .layoutShare .simplesocialbuttons.simplesocial-round-icon button.simplesocial-twt-share:hover, html.no-touchevents .layoutShare .simplesocialbuttons.simplesocial-round-icon button.simplesocial-gplus-share:hover, html.no-touchevents .layoutShare .simplesocialbuttons.simplesocial-round-icon button.simplesocial-linkedin-share:hover {
  background-color: #1b1d1f;
}
@media screen and (max-width: 1333px) {
  .layoutWrap {
    max-width: 90%;
  }
}
@media screen and (max-width: 720px) {
  .layoutInner {
    padding: 40px 30px;
  }
}
@media screen and (max-width: 480px) {
  .layoutWrap {
    max-width: 100%;
  }
  .layoutInner {
    padding: 40px 5%;
  }
  .layoutFooter {
    padding: 30px 5% 0;
  }
  .layoutReturn, .layoutShare {
    float: none;
    margin: 10px 0;
  }
}
.lidList {
  padding: 100px 0;
}
.lidList table {
  margin: 0 auto;
  width: 100%;
  font: 400 14px/20px "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #1b1d1f;
}
.lidList table th {
  border: 1px solid #ce1b19;
  padding: 5px;
  font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #e63634;
  color: #FFFFFF;
}
.lidList table td {
  border: 1px solid #828282;
  padding: 5px;
  font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #1b1d1f;
}
.formStep {
  display: none;
}
.formStep h3 {
  font-size: 25px;
  line-height: 30px;
  margin: 0 0 20px;
}
.formStep h3 span {
  display: inline-block;
  vertical-align: top;
  margin-right: 5px;
  background-color: #e63634;
  color: #FFFFFF;
  font-size: 16px;
  line-height: 30px;
  font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  padding: 0 20px;
}
.formStepWrap1.formStep1 {
  display: block;
}
.formStepWrap2.formStep2 {
  display: block;
}
.formStepWrap3.formStep3 {
  display: block;
}
.formStepWrap4.formStep4 {
  display: block;
}
.formStepControls a {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  background-color: #000000;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-weight: 900;
  font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  line-height: 42px;
  text-transform: uppercase;
  overflow: hidden;
  padding: 0 26px;
  -webkit-border-radius: 21px;
  -moz-border-radius: 21px;
  -ms-border-radius: 21px;
  border-radius: 21px;
}
.formStepControls br {
  display: none;
}
.poll {
  border-top: 1px solid #e8ddd8;
  padding-top: 20px;
  margin-top: 20px;
}
.pollDesc {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 24px;
}
.pollWrap .Btns input[type="button"], .pollWrap .Btns .Btn {
  padding: 0 10px;
  height: 30px;
  line-height: 30px;
  font-size: 11px;
}
.pollWrap .Btns .Btn.darkBtn {
  display: none;
}
.pollWrap .wp-polls-ans {
  margin: 20px 0;
}
.pollWrap .pollQuestion {
  display: none;
}
.pollWrap .pollList {
  margin: 20px 0;
}
.pollWrap .pollList input {
  line-height: 20px;
}
.pollWrap .pollList label {
  line-height: 20px;
  font-size: 14px;
}
.pollWrap .pollResults {
  margin: 20px 0;
}
.pollWrap .pollResults li {
  line-height: 20px;
  font-size: 14px;
}
.pollWrap .pollResults .pollbar {
  background-color: #c2c2c2;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  height: 8px;
  border: none;
  font-size: none;
  text-indent: -99999px;
  line-height: 0;
  margin: 5px 0 0;
  display: none;
}
.blockPlayer {
  display: block;
  position: relative;
  background-color: #1b1d1f;
  padding: 40px 20px 20px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
}
.blockPlayerLabel {
  position: absolute;
  left: 20px;
  top: 20px;
  padding: 0 12px;
  z-index: 3;
  background-color: #e63634;
  color: #FFFFFF;
  font-size: 10px;
  line-height: 22px;
  font-weight: 900;
  font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  -webkit-border-radius: 11px;
  -moz-border-radius: 11px;
  -ms-border-radius: 11px;
  border-radius: 11px;
}
.blockPlayerTitle {
  margin: 10px 0 0;
  font-size: 18px;
  line-height: 30px;
  color: #FFFFFF;
}
