@charset "UTF-8";
/*!
Theme Name:G-Works WP Framework
Theme URI:http://www.g-works.fi/
Description: GW-WP Framework for WordPress themes
Author:G-Works Oy
Author URI:http://www.g-works.fi/
Version: latest
*/
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

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

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: 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;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 27px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 10s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 1;
}

.hamburger-box {
  width: 30px;
  height: 14px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 30px;
  height: 2px;
  background-color: #000;
  border-radius: 0px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -6px;
}
.hamburger-inner::after {
  bottom: -6px;
}

/*
 * Spring
 */
.hamburger--spring .hamburger-inner {
  top: 1px;
  transition: background-color 0s 0.065s linear;
}
.hamburger--spring .hamburger-inner::before {
  top: 6px;
  transition: top 0.05s 0.1s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.065s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring .hamburger-inner::after {
  top: 12px;
  transition: top 0.1s 0.1s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.065s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.11s;
  background-color: transparent;
}
.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  transition: top 0.05s 0.075s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.065s 0.11s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 6px, 0) rotate(45deg);
}
.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.065s 0.11s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 6px, 0) rotate(-45deg);
}

/*!
Chosen, a Select Box Enhancer for jQuery and Prototype
by Patrick Filler for Harvest, http://getharvest.com

Version 1.7.0
Full source at https://github.com/harvesthq/chosen
Copyright (c) 2011-2017 Harvest http://getharvest.com

MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md
This file is generated by `grunt build`, do not edit it by hand.
*/
/* @group Base */
.chosen-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.chosen-container * {
  box-sizing: border-box;
}

.chosen-container .chosen-drop {
  position: absolute;
  top: 100%;
  z-index: 1010;
  width: 100%;
  border: 1px solid #aaa;
  border-top: 0;
  background: #fff;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  clip: rect(0, 0, 0, 0);
}

.chosen-container.chosen-with-drop .chosen-drop {
  clip: auto;
  position: relative;
}

.chosen-container a {
  cursor: pointer;
}

.chosen-container .search-choice .group-name,
.chosen-container .chosen-single .group-name {
  margin-right: 4px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: normal;
  color: #fff;
}

.chosen-container .search-choice .group-name:after,
.chosen-container .chosen-single .group-name:after {
  content: ":";
  padding-left: 2px;
  vertical-align: top;
}

/* @end */
/* @group Single Chosen */
.chosen-container-single .chosen-single {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0 0 0 8px;
  height: 25px;
  border: 1px solid #aaa;
  border-radius: 5px;
  background-color: #fff;
  background: linear-gradient(#fff 20%, #f6f6f6 50%, #eee 52%, #f4f4f4 100%);
  background-clip: padding-box;
  box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, 0.1);
  color: #444;
  text-decoration: none;
  white-space: nowrap;
  line-height: 24px;
}

.chosen-container-single .chosen-default {
  color: #999;
}

.chosen-container-single .chosen-single span {
  display: block;
  overflow: hidden;
  margin-right: 26px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chosen-container-single .chosen-single-with-deselect span {
  margin-right: 38px;
}

.chosen-container-single .chosen-single abbr {
  position: absolute;
  top: 6px;
  right: 26px;
  display: block;
  width: 12px;
  height: 12px;
  background: url("chosen-sprite.png") -42px 1px no-repeat;
  font-size: 1px;
}

.chosen-container-single .chosen-single abbr:hover {
  background-position: -42px -10px;
}

.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
  background-position: -42px -10px;
}

.chosen-container-single .chosen-single div {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 18px;
  height: 100%;
}

.chosen-container-single .chosen-single div b {
  display: block;
  width: 100%;
  height: 100%;
  background: url("chosen-sprite.png") no-repeat 0px 2px;
}

.chosen-container-single .chosen-search {
  position: relative;
  z-index: 1010;
  margin: 0;
  padding: 3px 4px;
  white-space: nowrap;
}

.chosen-container-single .chosen-search input[type=text] {
  margin: 1px 0;
  padding: 4px 20px 4px 5px;
  width: 100%;
  height: auto;
  outline: 0;
  border: 1px solid #aaa;
  background: url("chosen-sprite.png") no-repeat 100% -20px;
  font-size: 1em;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
}

.chosen-container-single .chosen-drop {
  margin-top: -1px;
  border-radius: 0 0 4px 4px;
  background-clip: padding-box;
}

.chosen-container-single.chosen-container-single-nosearch .chosen-search {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

/* @end */
/* @group Results */
.chosen-container .chosen-results {
  color: #444;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0 4px 4px 0;
  padding: 0 0 0 4px;
  max-height: 240px;
  -webkit-overflow-scrolling: touch;
}

.chosen-container .chosen-results li {
  display: none;
  margin: 0;
  padding: 5px 6px;
  list-style: none;
  line-height: 15px;
  word-wrap: break-word;
  -webkit-touch-callout: none;
}

.chosen-container .chosen-results li.active-result {
  display: list-item;
  cursor: pointer;
}

.chosen-container .chosen-results li.disabled-result {
  display: list-item;
  color: #ccc;
  cursor: default;
}

.chosen-container .chosen-results li.highlighted {
  background-color: #3875d7;
  background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
  color: #fff;
}

.chosen-container .chosen-results li.no-results {
  color: #777;
  display: list-item;
  background: #f4f4f4;
}

.chosen-container .chosen-results li.group-result {
  display: list-item;
  font-weight: bold;
  cursor: default;
}

.chosen-container .chosen-results li.group-option {
  padding-left: 15px;
}

.chosen-container .chosen-results li em {
  font-style: normal;
  text-decoration: underline;
}

/* @end */
/* @group Multi Chosen */
.chosen-container-multi .chosen-choices {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0 5px;
  width: 100%;
  height: auto;
  border: 1px solid #aaa;
  background-color: #fff;
  background-image: linear-gradient(#eee 1%, #fff 15%);
  cursor: text;
}

.chosen-container-multi .chosen-choices li {
  float: left;
  list-style: none;
}

.chosen-container-multi .chosen-choices li.search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.chosen-container-multi .chosen-choices li.search-field input[type=text] {
  margin: 1px 0;
  padding: 0;
  height: 25px;
  outline: 0;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none;
  color: #999;
  font-size: 100%;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
  width: 25px;
}

.chosen-container-multi .chosen-choices li.search-choice {
  position: relative;
  margin: 3px 5px 3px 0;
  padding: 3px 20px 3px 5px;
  border: 1px solid #aaa;
  max-width: 100%;
  border-radius: 3px;
  background-color: #eeeeee;
  background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-size: 100% 19px;
  background-repeat: repeat-x;
  background-clip: padding-box;
  box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  color: #333;
  line-height: 13px;
  cursor: default;
}

.chosen-container-multi .chosen-choices li.search-choice span {
  word-wrap: break-word;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  position: absolute;
  top: 4px;
  right: 3px;
  display: block;
  width: 12px;
  height: 12px;
  background: url("chosen-sprite.png") -42px 1px no-repeat;
  font-size: 1px;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
  background-position: -42px -10px;
}

.chosen-container-multi .chosen-choices li.search-choice-disabled {
  padding-right: 5px;
  border: 1px solid #ccc;
  background-color: #e4e4e4;
  background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  color: #666;
}

.chosen-container-multi .chosen-choices li.search-choice-focus {
  background: #d4d4d4;
}

.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
  background-position: -42px -10px;
}

.chosen-container-multi .chosen-results {
  margin: 0;
  padding: 0;
}

.chosen-container-multi .chosen-drop .result-selected {
  display: list-item;
  color: #ccc;
  cursor: default;
}

/* @end */
/* @group Active  */
.chosen-container-active .chosen-single {
  border: 1px solid #5897fb;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.chosen-container-active.chosen-with-drop .chosen-single {
  border: 1px solid #aaa;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background-image: linear-gradient(#eee 20%, #fff 80%);
  box-shadow: 0 1px 0 #fff inset;
}

.chosen-container-active.chosen-with-drop .chosen-single div {
  border-left: none;
  background: transparent;
}

.chosen-container-active.chosen-with-drop .chosen-single div b {
  background-position: -18px 2px;
}

.chosen-container-active .chosen-choices {
  border: 1px solid #5897fb;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.chosen-container-active .chosen-choices li.search-field input[type=text] {
  color: #222 !important;
}

/* @end */
/* @group Disabled Support */
.chosen-disabled {
  opacity: 0.5 !important;
  cursor: default;
}

.chosen-disabled .chosen-single {
  cursor: default;
}

.chosen-disabled .chosen-choices .search-choice .search-choice-close {
  cursor: default;
}

/* @end */
/* @group Right to Left */
.chosen-rtl {
  text-align: right;
}

.chosen-rtl .chosen-single {
  overflow: visible;
  padding: 0 8px 0 0;
}

.chosen-rtl .chosen-single span {
  margin-right: 0;
  margin-left: 26px;
  direction: rtl;
}

.chosen-rtl .chosen-single-with-deselect span {
  margin-left: 38px;
}

.chosen-rtl .chosen-single div {
  right: auto;
  left: 3px;
}

.chosen-rtl .chosen-single abbr {
  right: auto;
  left: 26px;
}

.chosen-rtl .chosen-choices li {
  float: right;
}

.chosen-rtl .chosen-choices li.search-field input[type=text] {
  direction: rtl;
}

.chosen-rtl .chosen-choices li.search-choice {
  margin: 3px 5px 3px 0;
  padding: 3px 5px 3px 19px;
}

.chosen-rtl .chosen-choices li.search-choice .search-choice-close {
  right: auto;
  left: 4px;
}

.chosen-rtl.chosen-container-single .chosen-results {
  margin: 0 0 4px 4px;
  padding: 0 4px 0 0;
}

.chosen-rtl .chosen-results li.group-option {
  padding-right: 15px;
  padding-left: 0;
}

.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
  border-right: none;
}

.chosen-rtl .chosen-search input[type=text] {
  padding: 4px 5px 4px 20px;
  background: url("chosen-sprite.png") no-repeat -30px -20px;
  direction: rtl;
}

.chosen-rtl.chosen-container-single .chosen-single div b {
  background-position: 6px 2px;
}

.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
  background-position: -12px 2px;
}

/* @end */
/* @group Retina compatibility */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi), only screen and (min-resolution: 1.5dppx) {
  .chosen-rtl .chosen-search input[type=text],
.chosen-container-single .chosen-single abbr,
.chosen-container-single .chosen-single div b,
.chosen-container-single .chosen-search input[type=text],
.chosen-container-multi .chosen-choices .search-choice .search-choice-close,
.chosen-container .chosen-results-scroll-down span,
.chosen-container .chosen-results-scroll-up span {
    background-image: url("chosen-sprite@2x.png") !important;
    background-size: 52px 37px !important;
    background-repeat: no-repeat !important;
  }
}
/* @end */
/* normalize.css v3.0.0 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
  word-break: break-word;
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0;
}

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8+, and Opera
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield; /* 1 */ /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/* Screen size selector */ /* Column system */
[class*=col-].row {
  font-size: 0.00000001%;
}

[class*=col-] {
  overflow: hidden;
  font-size: medium;
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  min-height: 1px;
  vertical-align: top;
}
[class*=col-] img, [class*=col-] object, [class*=col-] video, [class*=col-] figure {
  max-width: 100%;
  height: auto;
  vertical-align: top;
  line-height: 1;
}

.col-1 {
  width: calc(8.3333333333% - 30px);
  margin: 0 15px;
}

.col-1-wide {
  width: 8.3333333333%;
  margin: 0;
}

.col-1-wide-left {
  width: calc(8.3333333333% - 15px);
  margin: 0 15px 0 0;
}

.col-1-wide-right {
  width: calc(8.3333333333% - 15px);
  margin: 0 0 0 15px;
}

.col-2 {
  width: calc(16.6666666667% - 30px);
  margin: 0 15px;
}

.col-2-wide {
  width: 16.6666666667%;
  margin: 0;
}

.col-2-wide-left {
  width: calc(16.6666666667% - 15px);
  margin: 0 15px 0 0;
}

.col-2-wide-right {
  width: calc(16.6666666667% - 15px);
  margin: 0 0 0 15px;
}

.col-3 {
  width: calc(25% - 30px);
  margin: 0 15px;
}

.col-3-wide {
  width: 25%;
  margin: 0;
}

.col-3-wide-left {
  width: calc(25% - 15px);
  margin: 0 15px 0 0;
}

.col-3-wide-right {
  width: calc(25% - 15px);
  margin: 0 0 0 15px;
}

.col-4 {
  width: calc(33.3333333333% - 30px);
  margin: 0 15px;
}

.col-4-wide {
  width: 33.3333333333%;
  margin: 0;
}

.col-4-wide-left {
  width: calc(33.3333333333% - 15px);
  margin: 0 15px 0 0;
}

.col-4-wide-right {
  width: calc(33.3333333333% - 15px);
  margin: 0 0 0 15px;
}

.col-5 {
  width: calc(41.6666666667% - 30px);
  margin: 0 15px;
}

.col-5-wide {
  width: 41.6666666667%;
  margin: 0;
}

.col-5-wide-left {
  width: calc(41.6666666667% - 15px);
  margin: 0 15px 0 0;
}

.col-5-wide-right {
  width: calc(41.6666666667% - 15px);
  margin: 0 0 0 15px;
}

.col-6 {
  width: calc(50% - 30px);
  margin: 0 15px;
}

.col-6-wide {
  width: 50%;
  margin: 0;
}

.col-6-wide-left {
  width: calc(50% - 15px);
  margin: 0 15px 0 0;
}

.col-6-wide-right {
  width: calc(50% - 15px);
  margin: 0 0 0 15px;
}

.col-7 {
  width: calc(58.3333333333% - 30px);
  margin: 0 15px;
}

.col-7-wide {
  width: 58.3333333333%;
  margin: 0;
}

.col-7-wide-left {
  width: calc(58.3333333333% - 15px);
  margin: 0 15px 0 0;
}

.col-7-wide-right {
  width: calc(58.3333333333% - 15px);
  margin: 0 0 0 15px;
}

.col-8 {
  width: calc(66.6666666667% - 30px);
  margin: 0 15px;
}

.col-8-wide {
  width: 66.6666666667%;
  margin: 0;
}

.col-8-wide-left {
  width: calc(66.6666666667% - 15px);
  margin: 0 15px 0 0;
}

.col-8-wide-right {
  width: calc(66.6666666667% - 15px);
  margin: 0 0 0 15px;
}

.col-9 {
  width: calc(75% - 30px);
  margin: 0 15px;
}

.col-9-wide {
  width: 75%;
  margin: 0;
}

.col-9-wide-left {
  width: calc(75% - 15px);
  margin: 0 15px 0 0;
}

.col-9-wide-right {
  width: calc(75% - 15px);
  margin: 0 0 0 15px;
}

.col-10 {
  width: calc(83.3333333333% - 30px);
  margin: 0 15px;
}

.col-10-wide {
  width: 83.3333333333%;
  margin: 0;
}

.col-10-wide-left {
  width: calc(83.3333333333% - 15px);
  margin: 0 15px 0 0;
}

.col-10-wide-right {
  width: calc(83.3333333333% - 15px);
  margin: 0 0 0 15px;
}

.col-11 {
  width: calc(91.6666666667% - 30px);
  margin: 0 15px;
}

.col-11-wide {
  width: 91.6666666667%;
  margin: 0;
}

.col-11-wide-left {
  width: calc(91.6666666667% - 15px);
  margin: 0 15px 0 0;
}

.col-11-wide-right {
  width: calc(91.6666666667% - 15px);
  margin: 0 0 0 15px;
}

.col-12 {
  width: calc(100% - 30px);
  margin: 0 15px;
}

.col-12-wide {
  width: 100%;
  margin: 0;
}

.col-12-wide-left {
  width: calc(100% - 15px);
  margin: 0 15px 0 0;
}

.col-12-wide-right {
  width: calc(100% - 15px);
  margin: 0 0 0 15px;
}

.col-pull-0 {
  right: 0%;
}

.col-push-0 {
  left: 0%;
}

.col-offset-0 {
  margin-left: calc(0% + 15px);
}

.col-offset-half-wide-0 {
  margin-left: calc(0% + 15px);
}

.col-offset-wide-0 {
  margin-left: calc(0%);
}

.col-pull-1 {
  right: 8.3333333333%;
}

.col-push-1 {
  left: 8.3333333333%;
}

.col-offset-1 {
  margin-left: calc(8.3333333333% + 15px);
}

.col-offset-half-wide-1 {
  margin-left: calc(8.3333333333% + 15px);
}

.col-offset-wide-1 {
  margin-left: calc(8.3333333333%);
}

.col-pull-2 {
  right: 16.6666666667%;
}

.col-push-2 {
  left: 16.6666666667%;
}

.col-offset-2 {
  margin-left: calc(16.6666666667% + 15px);
}

.col-offset-half-wide-2 {
  margin-left: calc(16.6666666667% + 15px);
}

.col-offset-wide-2 {
  margin-left: calc(16.6666666667%);
}

.col-pull-3 {
  right: 25%;
}

.col-push-3 {
  left: 25%;
}

.col-offset-3 {
  margin-left: calc(25% + 15px);
}

.col-offset-half-wide-3 {
  margin-left: calc(25% + 15px);
}

.col-offset-wide-3 {
  margin-left: calc(25%);
}

.col-pull-4 {
  right: 33.3333333333%;
}

.col-push-4 {
  left: 33.3333333333%;
}

.col-offset-4 {
  margin-left: calc(33.3333333333% + 15px);
}

.col-offset-half-wide-4 {
  margin-left: calc(33.3333333333% + 15px);
}

.col-offset-wide-4 {
  margin-left: calc(33.3333333333%);
}

.col-pull-5 {
  right: 41.6666666667%;
}

.col-push-5 {
  left: 41.6666666667%;
}

.col-offset-5 {
  margin-left: calc(41.6666666667% + 15px);
}

.col-offset-half-wide-5 {
  margin-left: calc(41.6666666667% + 15px);
}

.col-offset-wide-5 {
  margin-left: calc(41.6666666667%);
}

.col-pull-6 {
  right: 50%;
}

.col-push-6 {
  left: 50%;
}

.col-offset-6 {
  margin-left: calc(50% + 15px);
}

.col-offset-half-wide-6 {
  margin-left: calc(50% + 15px);
}

.col-offset-wide-6 {
  margin-left: calc(50%);
}

.col-pull-7 {
  right: 58.3333333333%;
}

.col-push-7 {
  left: 58.3333333333%;
}

.col-offset-7 {
  margin-left: calc(58.3333333333% + 15px);
}

.col-offset-half-wide-7 {
  margin-left: calc(58.3333333333% + 15px);
}

.col-offset-wide-7 {
  margin-left: calc(58.3333333333%);
}

.col-pull-8 {
  right: 66.6666666667%;
}

.col-push-8 {
  left: 66.6666666667%;
}

.col-offset-8 {
  margin-left: calc(66.6666666667% + 15px);
}

.col-offset-half-wide-8 {
  margin-left: calc(66.6666666667% + 15px);
}

.col-offset-wide-8 {
  margin-left: calc(66.6666666667%);
}

.col-pull-9 {
  right: 75%;
}

.col-push-9 {
  left: 75%;
}

.col-offset-9 {
  margin-left: calc(75% + 15px);
}

.col-offset-half-wide-9 {
  margin-left: calc(75% + 15px);
}

.col-offset-wide-9 {
  margin-left: calc(75%);
}

.col-pull-10 {
  right: 83.3333333333%;
}

.col-push-10 {
  left: 83.3333333333%;
}

.col-offset-10 {
  margin-left: calc(83.3333333333% + 15px);
}

.col-offset-half-wide-10 {
  margin-left: calc(83.3333333333% + 15px);
}

.col-offset-wide-10 {
  margin-left: calc(83.3333333333%);
}

.col-pull-11 {
  right: 91.6666666667%;
}

.col-push-11 {
  left: 91.6666666667%;
}

.col-offset-11 {
  margin-left: calc(91.6666666667% + 15px);
}

.col-offset-half-wide-11 {
  margin-left: calc(91.6666666667% + 15px);
}

.col-offset-wide-11 {
  margin-left: calc(91.6666666667%);
}

.col-pull-12 {
  right: 100%;
}

.col-push-12 {
  left: 100%;
}

.col-offset-12 {
  margin-left: calc(100% + 15px);
}

.col-offset-half-wide-12 {
  margin-left: calc(100% + 15px);
}

.col-offset-wide-12 {
  margin-left: calc(100%);
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

.block-center {
  text-align: center;
}

.block-left {
  text-align: left;
}

.block-right {
  text-align: right;
}

.block-justify {
  text-align: justify;
}

.block-justify:after {
  content: "";
  width: 100%;
  display: inline-block;
  font-size: 0.000001%;
}

.col-hide {
  display: none !important;
}

.col-show {
  display: inline-block !important;
}

@media (min-width: 0px) and (max-width: 479px) {
  .col-xs-1 {
    width: calc(8.3333333333% - 30px);
    margin: 0 15px;
  }
  .col-xs-1-wide {
    width: 8.3333333333%;
    margin: 0;
  }
  .col-xs-1-wide-left {
    width: calc(8.3333333333% - 15px);
    margin: 0 15px 0 0;
  }
  .col-xs-1-wide-right {
    width: calc(8.3333333333% - 15px);
    margin: 0 0 0 15px;
  }
  .col-xs-2 {
    width: calc(16.6666666667% - 30px);
    margin: 0 15px;
  }
  .col-xs-2-wide {
    width: 16.6666666667%;
    margin: 0;
  }
  .col-xs-2-wide-left {
    width: calc(16.6666666667% - 15px);
    margin: 0 15px 0 0;
  }
  .col-xs-2-wide-right {
    width: calc(16.6666666667% - 15px);
    margin: 0 0 0 15px;
  }
  .col-xs-3 {
    width: calc(25% - 30px);
    margin: 0 15px;
  }
  .col-xs-3-wide {
    width: 25%;
    margin: 0;
  }
  .col-xs-3-wide-left {
    width: calc(25% - 15px);
    margin: 0 15px 0 0;
  }
  .col-xs-3-wide-right {
    width: calc(25% - 15px);
    margin: 0 0 0 15px;
  }
  .col-xs-4 {
    width: calc(33.3333333333% - 30px);
    margin: 0 15px;
  }
  .col-xs-4-wide {
    width: 33.3333333333%;
    margin: 0;
  }
  .col-xs-4-wide-left {
    width: calc(33.3333333333% - 15px);
    margin: 0 15px 0 0;
  }
  .col-xs-4-wide-right {
    width: calc(33.3333333333% - 15px);
    margin: 0 0 0 15px;
  }
  .col-xs-5 {
    width: calc(41.6666666667% - 30px);
    margin: 0 15px;
  }
  .col-xs-5-wide {
    width: 41.6666666667%;
    margin: 0;
  }
  .col-xs-5-wide-left {
    width: calc(41.6666666667% - 15px);
    margin: 0 15px 0 0;
  }
  .col-xs-5-wide-right {
    width: calc(41.6666666667% - 15px);
    margin: 0 0 0 15px;
  }
  .col-xs-6 {
    width: calc(50% - 30px);
    margin: 0 15px;
  }
  .col-xs-6-wide {
    width: 50%;
    margin: 0;
  }
  .col-xs-6-wide-left {
    width: calc(50% - 15px);
    margin: 0 15px 0 0;
  }
  .col-xs-6-wide-right {
    width: calc(50% - 15px);
    margin: 0 0 0 15px;
  }
  .col-xs-7 {
    width: calc(58.3333333333% - 30px);
    margin: 0 15px;
  }
  .col-xs-7-wide {
    width: 58.3333333333%;
    margin: 0;
  }
  .col-xs-7-wide-left {
    width: calc(58.3333333333% - 15px);
    margin: 0 15px 0 0;
  }
  .col-xs-7-wide-right {
    width: calc(58.3333333333% - 15px);
    margin: 0 0 0 15px;
  }
  .col-xs-8 {
    width: calc(66.6666666667% - 30px);
    margin: 0 15px;
  }
  .col-xs-8-wide {
    width: 66.6666666667%;
    margin: 0;
  }
  .col-xs-8-wide-left {
    width: calc(66.6666666667% - 15px);
    margin: 0 15px 0 0;
  }
  .col-xs-8-wide-right {
    width: calc(66.6666666667% - 15px);
    margin: 0 0 0 15px;
  }
  .col-xs-9 {
    width: calc(75% - 30px);
    margin: 0 15px;
  }
  .col-xs-9-wide {
    width: 75%;
    margin: 0;
  }
  .col-xs-9-wide-left {
    width: calc(75% - 15px);
    margin: 0 15px 0 0;
  }
  .col-xs-9-wide-right {
    width: calc(75% - 15px);
    margin: 0 0 0 15px;
  }
  .col-xs-10 {
    width: calc(83.3333333333% - 30px);
    margin: 0 15px;
  }
  .col-xs-10-wide {
    width: 83.3333333333%;
    margin: 0;
  }
  .col-xs-10-wide-left {
    width: calc(83.3333333333% - 15px);
    margin: 0 15px 0 0;
  }
  .col-xs-10-wide-right {
    width: calc(83.3333333333% - 15px);
    margin: 0 0 0 15px;
  }
  .col-xs-11 {
    width: calc(91.6666666667% - 30px);
    margin: 0 15px;
  }
  .col-xs-11-wide {
    width: 91.6666666667%;
    margin: 0;
  }
  .col-xs-11-wide-left {
    width: calc(91.6666666667% - 15px);
    margin: 0 15px 0 0;
  }
  .col-xs-11-wide-right {
    width: calc(91.6666666667% - 15px);
    margin: 0 0 0 15px;
  }
  .col-xs-12 {
    width: calc(100% - 30px);
    margin: 0 15px;
  }
  .col-xs-12-wide {
    width: 100%;
    margin: 0;
  }
  .col-xs-12-wide-left {
    width: calc(100% - 15px);
    margin: 0 15px 0 0;
  }
  .col-xs-12-wide-right {
    width: calc(100% - 15px);
    margin: 0 0 0 15px;
  }
  .col-xs-pull-0 {
    right: 0%;
  }
  .col-xs-push-0 {
    left: 0%;
  }
  .col-xs-offset-0 {
    margin-left: calc(0% + 15px);
  }
  .col-xs-offset-half-wide-0 {
    margin-left: calc(0% + 15px);
  }
  .col-xs-offset-wide-0 {
    margin-left: calc(0%);
  }
  .col-xs-pull-1 {
    right: 8.3333333333%;
  }
  .col-xs-push-1 {
    left: 8.3333333333%;
  }
  .col-xs-offset-1 {
    margin-left: calc(8.3333333333% + 15px);
  }
  .col-xs-offset-half-wide-1 {
    margin-left: calc(8.3333333333% + 15px);
  }
  .col-xs-offset-wide-1 {
    margin-left: calc(8.3333333333%);
  }
  .col-xs-pull-2 {
    right: 16.6666666667%;
  }
  .col-xs-push-2 {
    left: 16.6666666667%;
  }
  .col-xs-offset-2 {
    margin-left: calc(16.6666666667% + 15px);
  }
  .col-xs-offset-half-wide-2 {
    margin-left: calc(16.6666666667% + 15px);
  }
  .col-xs-offset-wide-2 {
    margin-left: calc(16.6666666667%);
  }
  .col-xs-pull-3 {
    right: 25%;
  }
  .col-xs-push-3 {
    left: 25%;
  }
  .col-xs-offset-3 {
    margin-left: calc(25% + 15px);
  }
  .col-xs-offset-half-wide-3 {
    margin-left: calc(25% + 15px);
  }
  .col-xs-offset-wide-3 {
    margin-left: calc(25%);
  }
  .col-xs-pull-4 {
    right: 33.3333333333%;
  }
  .col-xs-push-4 {
    left: 33.3333333333%;
  }
  .col-xs-offset-4 {
    margin-left: calc(33.3333333333% + 15px);
  }
  .col-xs-offset-half-wide-4 {
    margin-left: calc(33.3333333333% + 15px);
  }
  .col-xs-offset-wide-4 {
    margin-left: calc(33.3333333333%);
  }
  .col-xs-pull-5 {
    right: 41.6666666667%;
  }
  .col-xs-push-5 {
    left: 41.6666666667%;
  }
  .col-xs-offset-5 {
    margin-left: calc(41.6666666667% + 15px);
  }
  .col-xs-offset-half-wide-5 {
    margin-left: calc(41.6666666667% + 15px);
  }
  .col-xs-offset-wide-5 {
    margin-left: calc(41.6666666667%);
  }
  .col-xs-pull-6 {
    right: 50%;
  }
  .col-xs-push-6 {
    left: 50%;
  }
  .col-xs-offset-6 {
    margin-left: calc(50% + 15px);
  }
  .col-xs-offset-half-wide-6 {
    margin-left: calc(50% + 15px);
  }
  .col-xs-offset-wide-6 {
    margin-left: calc(50%);
  }
  .col-xs-pull-7 {
    right: 58.3333333333%;
  }
  .col-xs-push-7 {
    left: 58.3333333333%;
  }
  .col-xs-offset-7 {
    margin-left: calc(58.3333333333% + 15px);
  }
  .col-xs-offset-half-wide-7 {
    margin-left: calc(58.3333333333% + 15px);
  }
  .col-xs-offset-wide-7 {
    margin-left: calc(58.3333333333%);
  }
  .col-xs-pull-8 {
    right: 66.6666666667%;
  }
  .col-xs-push-8 {
    left: 66.6666666667%;
  }
  .col-xs-offset-8 {
    margin-left: calc(66.6666666667% + 15px);
  }
  .col-xs-offset-half-wide-8 {
    margin-left: calc(66.6666666667% + 15px);
  }
  .col-xs-offset-wide-8 {
    margin-left: calc(66.6666666667%);
  }
  .col-xs-pull-9 {
    right: 75%;
  }
  .col-xs-push-9 {
    left: 75%;
  }
  .col-xs-offset-9 {
    margin-left: calc(75% + 15px);
  }
  .col-xs-offset-half-wide-9 {
    margin-left: calc(75% + 15px);
  }
  .col-xs-offset-wide-9 {
    margin-left: calc(75%);
  }
  .col-xs-pull-10 {
    right: 83.3333333333%;
  }
  .col-xs-push-10 {
    left: 83.3333333333%;
  }
  .col-xs-offset-10 {
    margin-left: calc(83.3333333333% + 15px);
  }
  .col-xs-offset-half-wide-10 {
    margin-left: calc(83.3333333333% + 15px);
  }
  .col-xs-offset-wide-10 {
    margin-left: calc(83.3333333333%);
  }
  .col-xs-pull-11 {
    right: 91.6666666667%;
  }
  .col-xs-push-11 {
    left: 91.6666666667%;
  }
  .col-xs-offset-11 {
    margin-left: calc(91.6666666667% + 15px);
  }
  .col-xs-offset-half-wide-11 {
    margin-left: calc(91.6666666667% + 15px);
  }
  .col-xs-offset-wide-11 {
    margin-left: calc(91.6666666667%);
  }
  .col-xs-pull-12 {
    right: 100%;
  }
  .col-xs-push-12 {
    left: 100%;
  }
  .col-xs-offset-12 {
    margin-left: calc(100% + 15px);
  }
  .col-xs-offset-half-wide-12 {
    margin-left: calc(100% + 15px);
  }
  .col-xs-offset-wide-12 {
    margin-left: calc(100%);
  }
  .text-center-xs {
    text-align: center;
  }
  .text-left-xs {
    text-align: left;
  }
  .text-right-xs {
    text-align: right;
  }
  .text-justify-xs {
    text-align: justify;
  }
  .block-center-xs {
    text-align: center;
  }
  .block-left-xs {
    text-align: left;
  }
  .block-right-xs {
    text-align: right;
  }
  .block-justify-xs {
    text-align: justify;
  }
  .block-justify-xs:after {
    content: "";
    width: 100%;
    display: inline-block;
    font-size: 0.000001%;
  }
  .col-hide-xs {
    display: none !important;
  }
  .col-show-xs {
    display: inline-block !important;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .col-s-1 {
    width: calc(8.3333333333% - 30px);
    margin: 0 15px;
  }
  .col-s-1-wide {
    width: 8.3333333333%;
    margin: 0;
  }
  .col-s-1-wide-left {
    width: calc(8.3333333333% - 15px);
    margin: 0 15px 0 0;
  }
  .col-s-1-wide-right {
    width: calc(8.3333333333% - 15px);
    margin: 0 0 0 15px;
  }
  .col-s-2 {
    width: calc(16.6666666667% - 30px);
    margin: 0 15px;
  }
  .col-s-2-wide {
    width: 16.6666666667%;
    margin: 0;
  }
  .col-s-2-wide-left {
    width: calc(16.6666666667% - 15px);
    margin: 0 15px 0 0;
  }
  .col-s-2-wide-right {
    width: calc(16.6666666667% - 15px);
    margin: 0 0 0 15px;
  }
  .col-s-3 {
    width: calc(25% - 30px);
    margin: 0 15px;
  }
  .col-s-3-wide {
    width: 25%;
    margin: 0;
  }
  .col-s-3-wide-left {
    width: calc(25% - 15px);
    margin: 0 15px 0 0;
  }
  .col-s-3-wide-right {
    width: calc(25% - 15px);
    margin: 0 0 0 15px;
  }
  .col-s-4 {
    width: calc(33.3333333333% - 30px);
    margin: 0 15px;
  }
  .col-s-4-wide {
    width: 33.3333333333%;
    margin: 0;
  }
  .col-s-4-wide-left {
    width: calc(33.3333333333% - 15px);
    margin: 0 15px 0 0;
  }
  .col-s-4-wide-right {
    width: calc(33.3333333333% - 15px);
    margin: 0 0 0 15px;
  }
  .col-s-5 {
    width: calc(41.6666666667% - 30px);
    margin: 0 15px;
  }
  .col-s-5-wide {
    width: 41.6666666667%;
    margin: 0;
  }
  .col-s-5-wide-left {
    width: calc(41.6666666667% - 15px);
    margin: 0 15px 0 0;
  }
  .col-s-5-wide-right {
    width: calc(41.6666666667% - 15px);
    margin: 0 0 0 15px;
  }
  .col-s-6 {
    width: calc(50% - 30px);
    margin: 0 15px;
  }
  .col-s-6-wide {
    width: 50%;
    margin: 0;
  }
  .col-s-6-wide-left {
    width: calc(50% - 15px);
    margin: 0 15px 0 0;
  }
  .col-s-6-wide-right {
    width: calc(50% - 15px);
    margin: 0 0 0 15px;
  }
  .col-s-7 {
    width: calc(58.3333333333% - 30px);
    margin: 0 15px;
  }
  .col-s-7-wide {
    width: 58.3333333333%;
    margin: 0;
  }
  .col-s-7-wide-left {
    width: calc(58.3333333333% - 15px);
    margin: 0 15px 0 0;
  }
  .col-s-7-wide-right {
    width: calc(58.3333333333% - 15px);
    margin: 0 0 0 15px;
  }
  .col-s-8 {
    width: calc(66.6666666667% - 30px);
    margin: 0 15px;
  }
  .col-s-8-wide {
    width: 66.6666666667%;
    margin: 0;
  }
  .col-s-8-wide-left {
    width: calc(66.6666666667% - 15px);
    margin: 0 15px 0 0;
  }
  .col-s-8-wide-right {
    width: calc(66.6666666667% - 15px);
    margin: 0 0 0 15px;
  }
  .col-s-9 {
    width: calc(75% - 30px);
    margin: 0 15px;
  }
  .col-s-9-wide {
    width: 75%;
    margin: 0;
  }
  .col-s-9-wide-left {
    width: calc(75% - 15px);
    margin: 0 15px 0 0;
  }
  .col-s-9-wide-right {
    width: calc(75% - 15px);
    margin: 0 0 0 15px;
  }
  .col-s-10 {
    width: calc(83.3333333333% - 30px);
    margin: 0 15px;
  }
  .col-s-10-wide {
    width: 83.3333333333%;
    margin: 0;
  }
  .col-s-10-wide-left {
    width: calc(83.3333333333% - 15px);
    margin: 0 15px 0 0;
  }
  .col-s-10-wide-right {
    width: calc(83.3333333333% - 15px);
    margin: 0 0 0 15px;
  }
  .col-s-11 {
    width: calc(91.6666666667% - 30px);
    margin: 0 15px;
  }
  .col-s-11-wide {
    width: 91.6666666667%;
    margin: 0;
  }
  .col-s-11-wide-left {
    width: calc(91.6666666667% - 15px);
    margin: 0 15px 0 0;
  }
  .col-s-11-wide-right {
    width: calc(91.6666666667% - 15px);
    margin: 0 0 0 15px;
  }
  .col-s-12 {
    width: calc(100% - 30px);
    margin: 0 15px;
  }
  .col-s-12-wide {
    width: 100%;
    margin: 0;
  }
  .col-s-12-wide-left {
    width: calc(100% - 15px);
    margin: 0 15px 0 0;
  }
  .col-s-12-wide-right {
    width: calc(100% - 15px);
    margin: 0 0 0 15px;
  }
  .col-s-pull-0 {
    right: 0%;
  }
  .col-s-push-0 {
    left: 0%;
  }
  .col-s-offset-0 {
    margin-left: calc(0% + 15px);
  }
  .col-s-offset-half-wide-0 {
    margin-left: calc(0% + 15px);
  }
  .col-s-offset-wide-0 {
    margin-left: calc(0%);
  }
  .col-s-pull-1 {
    right: 8.3333333333%;
  }
  .col-s-push-1 {
    left: 8.3333333333%;
  }
  .col-s-offset-1 {
    margin-left: calc(8.3333333333% + 15px);
  }
  .col-s-offset-half-wide-1 {
    margin-left: calc(8.3333333333% + 15px);
  }
  .col-s-offset-wide-1 {
    margin-left: calc(8.3333333333%);
  }
  .col-s-pull-2 {
    right: 16.6666666667%;
  }
  .col-s-push-2 {
    left: 16.6666666667%;
  }
  .col-s-offset-2 {
    margin-left: calc(16.6666666667% + 15px);
  }
  .col-s-offset-half-wide-2 {
    margin-left: calc(16.6666666667% + 15px);
  }
  .col-s-offset-wide-2 {
    margin-left: calc(16.6666666667%);
  }
  .col-s-pull-3 {
    right: 25%;
  }
  .col-s-push-3 {
    left: 25%;
  }
  .col-s-offset-3 {
    margin-left: calc(25% + 15px);
  }
  .col-s-offset-half-wide-3 {
    margin-left: calc(25% + 15px);
  }
  .col-s-offset-wide-3 {
    margin-left: calc(25%);
  }
  .col-s-pull-4 {
    right: 33.3333333333%;
  }
  .col-s-push-4 {
    left: 33.3333333333%;
  }
  .col-s-offset-4 {
    margin-left: calc(33.3333333333% + 15px);
  }
  .col-s-offset-half-wide-4 {
    margin-left: calc(33.3333333333% + 15px);
  }
  .col-s-offset-wide-4 {
    margin-left: calc(33.3333333333%);
  }
  .col-s-pull-5 {
    right: 41.6666666667%;
  }
  .col-s-push-5 {
    left: 41.6666666667%;
  }
  .col-s-offset-5 {
    margin-left: calc(41.6666666667% + 15px);
  }
  .col-s-offset-half-wide-5 {
    margin-left: calc(41.6666666667% + 15px);
  }
  .col-s-offset-wide-5 {
    margin-left: calc(41.6666666667%);
  }
  .col-s-pull-6 {
    right: 50%;
  }
  .col-s-push-6 {
    left: 50%;
  }
  .col-s-offset-6 {
    margin-left: calc(50% + 15px);
  }
  .col-s-offset-half-wide-6 {
    margin-left: calc(50% + 15px);
  }
  .col-s-offset-wide-6 {
    margin-left: calc(50%);
  }
  .col-s-pull-7 {
    right: 58.3333333333%;
  }
  .col-s-push-7 {
    left: 58.3333333333%;
  }
  .col-s-offset-7 {
    margin-left: calc(58.3333333333% + 15px);
  }
  .col-s-offset-half-wide-7 {
    margin-left: calc(58.3333333333% + 15px);
  }
  .col-s-offset-wide-7 {
    margin-left: calc(58.3333333333%);
  }
  .col-s-pull-8 {
    right: 66.6666666667%;
  }
  .col-s-push-8 {
    left: 66.6666666667%;
  }
  .col-s-offset-8 {
    margin-left: calc(66.6666666667% + 15px);
  }
  .col-s-offset-half-wide-8 {
    margin-left: calc(66.6666666667% + 15px);
  }
  .col-s-offset-wide-8 {
    margin-left: calc(66.6666666667%);
  }
  .col-s-pull-9 {
    right: 75%;
  }
  .col-s-push-9 {
    left: 75%;
  }
  .col-s-offset-9 {
    margin-left: calc(75% + 15px);
  }
  .col-s-offset-half-wide-9 {
    margin-left: calc(75% + 15px);
  }
  .col-s-offset-wide-9 {
    margin-left: calc(75%);
  }
  .col-s-pull-10 {
    right: 83.3333333333%;
  }
  .col-s-push-10 {
    left: 83.3333333333%;
  }
  .col-s-offset-10 {
    margin-left: calc(83.3333333333% + 15px);
  }
  .col-s-offset-half-wide-10 {
    margin-left: calc(83.3333333333% + 15px);
  }
  .col-s-offset-wide-10 {
    margin-left: calc(83.3333333333%);
  }
  .col-s-pull-11 {
    right: 91.6666666667%;
  }
  .col-s-push-11 {
    left: 91.6666666667%;
  }
  .col-s-offset-11 {
    margin-left: calc(91.6666666667% + 15px);
  }
  .col-s-offset-half-wide-11 {
    margin-left: calc(91.6666666667% + 15px);
  }
  .col-s-offset-wide-11 {
    margin-left: calc(91.6666666667%);
  }
  .col-s-pull-12 {
    right: 100%;
  }
  .col-s-push-12 {
    left: 100%;
  }
  .col-s-offset-12 {
    margin-left: calc(100% + 15px);
  }
  .col-s-offset-half-wide-12 {
    margin-left: calc(100% + 15px);
  }
  .col-s-offset-wide-12 {
    margin-left: calc(100%);
  }
  .text-center-s {
    text-align: center;
  }
  .text-left-s {
    text-align: left;
  }
  .text-right-s {
    text-align: right;
  }
  .text-justify-s {
    text-align: justify;
  }
  .block-center-s {
    text-align: center;
  }
  .block-left-s {
    text-align: left;
  }
  .block-right-s {
    text-align: right;
  }
  .block-justify-s {
    text-align: justify;
  }
  .block-justify-s:after {
    content: "";
    width: 100%;
    display: inline-block;
    font-size: 0.000001%;
  }
  .col-hide-s {
    display: none !important;
  }
  .col-show-s {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .col-m-1 {
    width: calc(8.3333333333% - 30px);
    margin: 0 15px;
  }
  .col-m-1-wide {
    width: 8.3333333333%;
    margin: 0;
  }
  .col-m-1-wide-left {
    width: calc(8.3333333333% - 15px);
    margin: 0 15px 0 0;
  }
  .col-m-1-wide-right {
    width: calc(8.3333333333% - 15px);
    margin: 0 0 0 15px;
  }
  .col-m-2 {
    width: calc(16.6666666667% - 30px);
    margin: 0 15px;
  }
  .col-m-2-wide {
    width: 16.6666666667%;
    margin: 0;
  }
  .col-m-2-wide-left {
    width: calc(16.6666666667% - 15px);
    margin: 0 15px 0 0;
  }
  .col-m-2-wide-right {
    width: calc(16.6666666667% - 15px);
    margin: 0 0 0 15px;
  }
  .col-m-3 {
    width: calc(25% - 30px);
    margin: 0 15px;
  }
  .col-m-3-wide {
    width: 25%;
    margin: 0;
  }
  .col-m-3-wide-left {
    width: calc(25% - 15px);
    margin: 0 15px 0 0;
  }
  .col-m-3-wide-right {
    width: calc(25% - 15px);
    margin: 0 0 0 15px;
  }
  .col-m-4 {
    width: calc(33.3333333333% - 30px);
    margin: 0 15px;
  }
  .col-m-4-wide {
    width: 33.3333333333%;
    margin: 0;
  }
  .col-m-4-wide-left {
    width: calc(33.3333333333% - 15px);
    margin: 0 15px 0 0;
  }
  .col-m-4-wide-right {
    width: calc(33.3333333333% - 15px);
    margin: 0 0 0 15px;
  }
  .col-m-5 {
    width: calc(41.6666666667% - 30px);
    margin: 0 15px;
  }
  .col-m-5-wide {
    width: 41.6666666667%;
    margin: 0;
  }
  .col-m-5-wide-left {
    width: calc(41.6666666667% - 15px);
    margin: 0 15px 0 0;
  }
  .col-m-5-wide-right {
    width: calc(41.6666666667% - 15px);
    margin: 0 0 0 15px;
  }
  .col-m-6 {
    width: calc(50% - 30px);
    margin: 0 15px;
  }
  .col-m-6-wide {
    width: 50%;
    margin: 0;
  }
  .col-m-6-wide-left {
    width: calc(50% - 15px);
    margin: 0 15px 0 0;
  }
  .col-m-6-wide-right {
    width: calc(50% - 15px);
    margin: 0 0 0 15px;
  }
  .col-m-7 {
    width: calc(58.3333333333% - 30px);
    margin: 0 15px;
  }
  .col-m-7-wide {
    width: 58.3333333333%;
    margin: 0;
  }
  .col-m-7-wide-left {
    width: calc(58.3333333333% - 15px);
    margin: 0 15px 0 0;
  }
  .col-m-7-wide-right {
    width: calc(58.3333333333% - 15px);
    margin: 0 0 0 15px;
  }
  .col-m-8 {
    width: calc(66.6666666667% - 30px);
    margin: 0 15px;
  }
  .col-m-8-wide {
    width: 66.6666666667%;
    margin: 0;
  }
  .col-m-8-wide-left {
    width: calc(66.6666666667% - 15px);
    margin: 0 15px 0 0;
  }
  .col-m-8-wide-right {
    width: calc(66.6666666667% - 15px);
    margin: 0 0 0 15px;
  }
  .col-m-9 {
    width: calc(75% - 30px);
    margin: 0 15px;
  }
  .col-m-9-wide {
    width: 75%;
    margin: 0;
  }
  .col-m-9-wide-left {
    width: calc(75% - 15px);
    margin: 0 15px 0 0;
  }
  .col-m-9-wide-right {
    width: calc(75% - 15px);
    margin: 0 0 0 15px;
  }
  .col-m-10 {
    width: calc(83.3333333333% - 30px);
    margin: 0 15px;
  }
  .col-m-10-wide {
    width: 83.3333333333%;
    margin: 0;
  }
  .col-m-10-wide-left {
    width: calc(83.3333333333% - 15px);
    margin: 0 15px 0 0;
  }
  .col-m-10-wide-right {
    width: calc(83.3333333333% - 15px);
    margin: 0 0 0 15px;
  }
  .col-m-11 {
    width: calc(91.6666666667% - 30px);
    margin: 0 15px;
  }
  .col-m-11-wide {
    width: 91.6666666667%;
    margin: 0;
  }
  .col-m-11-wide-left {
    width: calc(91.6666666667% - 15px);
    margin: 0 15px 0 0;
  }
  .col-m-11-wide-right {
    width: calc(91.6666666667% - 15px);
    margin: 0 0 0 15px;
  }
  .col-m-12 {
    width: calc(100% - 30px);
    margin: 0 15px;
  }
  .col-m-12-wide {
    width: 100%;
    margin: 0;
  }
  .col-m-12-wide-left {
    width: calc(100% - 15px);
    margin: 0 15px 0 0;
  }
  .col-m-12-wide-right {
    width: calc(100% - 15px);
    margin: 0 0 0 15px;
  }
  .col-m-pull-0 {
    right: 0%;
  }
  .col-m-push-0 {
    left: 0%;
  }
  .col-m-offset-0 {
    margin-left: calc(0% + 15px);
  }
  .col-m-offset-half-wide-0 {
    margin-left: calc(0% + 15px);
  }
  .col-m-offset-wide-0 {
    margin-left: calc(0%);
  }
  .col-m-pull-1 {
    right: 8.3333333333%;
  }
  .col-m-push-1 {
    left: 8.3333333333%;
  }
  .col-m-offset-1 {
    margin-left: calc(8.3333333333% + 15px);
  }
  .col-m-offset-half-wide-1 {
    margin-left: calc(8.3333333333% + 15px);
  }
  .col-m-offset-wide-1 {
    margin-left: calc(8.3333333333%);
  }
  .col-m-pull-2 {
    right: 16.6666666667%;
  }
  .col-m-push-2 {
    left: 16.6666666667%;
  }
  .col-m-offset-2 {
    margin-left: calc(16.6666666667% + 15px);
  }
  .col-m-offset-half-wide-2 {
    margin-left: calc(16.6666666667% + 15px);
  }
  .col-m-offset-wide-2 {
    margin-left: calc(16.6666666667%);
  }
  .col-m-pull-3 {
    right: 25%;
  }
  .col-m-push-3 {
    left: 25%;
  }
  .col-m-offset-3 {
    margin-left: calc(25% + 15px);
  }
  .col-m-offset-half-wide-3 {
    margin-left: calc(25% + 15px);
  }
  .col-m-offset-wide-3 {
    margin-left: calc(25%);
  }
  .col-m-pull-4 {
    right: 33.3333333333%;
  }
  .col-m-push-4 {
    left: 33.3333333333%;
  }
  .col-m-offset-4 {
    margin-left: calc(33.3333333333% + 15px);
  }
  .col-m-offset-half-wide-4 {
    margin-left: calc(33.3333333333% + 15px);
  }
  .col-m-offset-wide-4 {
    margin-left: calc(33.3333333333%);
  }
  .col-m-pull-5 {
    right: 41.6666666667%;
  }
  .col-m-push-5 {
    left: 41.6666666667%;
  }
  .col-m-offset-5 {
    margin-left: calc(41.6666666667% + 15px);
  }
  .col-m-offset-half-wide-5 {
    margin-left: calc(41.6666666667% + 15px);
  }
  .col-m-offset-wide-5 {
    margin-left: calc(41.6666666667%);
  }
  .col-m-pull-6 {
    right: 50%;
  }
  .col-m-push-6 {
    left: 50%;
  }
  .col-m-offset-6 {
    margin-left: calc(50% + 15px);
  }
  .col-m-offset-half-wide-6 {
    margin-left: calc(50% + 15px);
  }
  .col-m-offset-wide-6 {
    margin-left: calc(50%);
  }
  .col-m-pull-7 {
    right: 58.3333333333%;
  }
  .col-m-push-7 {
    left: 58.3333333333%;
  }
  .col-m-offset-7 {
    margin-left: calc(58.3333333333% + 15px);
  }
  .col-m-offset-half-wide-7 {
    margin-left: calc(58.3333333333% + 15px);
  }
  .col-m-offset-wide-7 {
    margin-left: calc(58.3333333333%);
  }
  .col-m-pull-8 {
    right: 66.6666666667%;
  }
  .col-m-push-8 {
    left: 66.6666666667%;
  }
  .col-m-offset-8 {
    margin-left: calc(66.6666666667% + 15px);
  }
  .col-m-offset-half-wide-8 {
    margin-left: calc(66.6666666667% + 15px);
  }
  .col-m-offset-wide-8 {
    margin-left: calc(66.6666666667%);
  }
  .col-m-pull-9 {
    right: 75%;
  }
  .col-m-push-9 {
    left: 75%;
  }
  .col-m-offset-9 {
    margin-left: calc(75% + 15px);
  }
  .col-m-offset-half-wide-9 {
    margin-left: calc(75% + 15px);
  }
  .col-m-offset-wide-9 {
    margin-left: calc(75%);
  }
  .col-m-pull-10 {
    right: 83.3333333333%;
  }
  .col-m-push-10 {
    left: 83.3333333333%;
  }
  .col-m-offset-10 {
    margin-left: calc(83.3333333333% + 15px);
  }
  .col-m-offset-half-wide-10 {
    margin-left: calc(83.3333333333% + 15px);
  }
  .col-m-offset-wide-10 {
    margin-left: calc(83.3333333333%);
  }
  .col-m-pull-11 {
    right: 91.6666666667%;
  }
  .col-m-push-11 {
    left: 91.6666666667%;
  }
  .col-m-offset-11 {
    margin-left: calc(91.6666666667% + 15px);
  }
  .col-m-offset-half-wide-11 {
    margin-left: calc(91.6666666667% + 15px);
  }
  .col-m-offset-wide-11 {
    margin-left: calc(91.6666666667%);
  }
  .col-m-pull-12 {
    right: 100%;
  }
  .col-m-push-12 {
    left: 100%;
  }
  .col-m-offset-12 {
    margin-left: calc(100% + 15px);
  }
  .col-m-offset-half-wide-12 {
    margin-left: calc(100% + 15px);
  }
  .col-m-offset-wide-12 {
    margin-left: calc(100%);
  }
  .text-center-m {
    text-align: center;
  }
  .text-left-m {
    text-align: left;
  }
  .text-right-m {
    text-align: right;
  }
  .text-justify-m {
    text-align: justify;
  }
  .block-center-m {
    text-align: center;
  }
  .block-left-m {
    text-align: left;
  }
  .block-right-m {
    text-align: right;
  }
  .block-justify-m {
    text-align: justify;
  }
  .block-justify-m:after {
    content: "";
    width: 100%;
    display: inline-block;
    font-size: 0.000001%;
  }
  .col-hide-m {
    display: none !important;
  }
  .col-show-m {
    display: inline-block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .col-l-1 {
    width: calc(8.3333333333% - 30px);
    margin: 0 15px;
  }
  .col-l-1-wide {
    width: 8.3333333333%;
    margin: 0;
  }
  .col-l-1-wide-left {
    width: calc(8.3333333333% - 15px);
    margin: 0 15px 0 0;
  }
  .col-l-1-wide-right {
    width: calc(8.3333333333% - 15px);
    margin: 0 0 0 15px;
  }
  .col-l-2 {
    width: calc(16.6666666667% - 30px);
    margin: 0 15px;
  }
  .col-l-2-wide {
    width: 16.6666666667%;
    margin: 0;
  }
  .col-l-2-wide-left {
    width: calc(16.6666666667% - 15px);
    margin: 0 15px 0 0;
  }
  .col-l-2-wide-right {
    width: calc(16.6666666667% - 15px);
    margin: 0 0 0 15px;
  }
  .col-l-3 {
    width: calc(25% - 30px);
    margin: 0 15px;
  }
  .col-l-3-wide {
    width: 25%;
    margin: 0;
  }
  .col-l-3-wide-left {
    width: calc(25% - 15px);
    margin: 0 15px 0 0;
  }
  .col-l-3-wide-right {
    width: calc(25% - 15px);
    margin: 0 0 0 15px;
  }
  .col-l-4 {
    width: calc(33.3333333333% - 30px);
    margin: 0 15px;
  }
  .col-l-4-wide {
    width: 33.3333333333%;
    margin: 0;
  }
  .col-l-4-wide-left {
    width: calc(33.3333333333% - 15px);
    margin: 0 15px 0 0;
  }
  .col-l-4-wide-right {
    width: calc(33.3333333333% - 15px);
    margin: 0 0 0 15px;
  }
  .col-l-5 {
    width: calc(41.6666666667% - 30px);
    margin: 0 15px;
  }
  .col-l-5-wide {
    width: 41.6666666667%;
    margin: 0;
  }
  .col-l-5-wide-left {
    width: calc(41.6666666667% - 15px);
    margin: 0 15px 0 0;
  }
  .col-l-5-wide-right {
    width: calc(41.6666666667% - 15px);
    margin: 0 0 0 15px;
  }
  .col-l-6 {
    width: calc(50% - 30px);
    margin: 0 15px;
  }
  .col-l-6-wide {
    width: 50%;
    margin: 0;
  }
  .col-l-6-wide-left {
    width: calc(50% - 15px);
    margin: 0 15px 0 0;
  }
  .col-l-6-wide-right {
    width: calc(50% - 15px);
    margin: 0 0 0 15px;
  }
  .col-l-7 {
    width: calc(58.3333333333% - 30px);
    margin: 0 15px;
  }
  .col-l-7-wide {
    width: 58.3333333333%;
    margin: 0;
  }
  .col-l-7-wide-left {
    width: calc(58.3333333333% - 15px);
    margin: 0 15px 0 0;
  }
  .col-l-7-wide-right {
    width: calc(58.3333333333% - 15px);
    margin: 0 0 0 15px;
  }
  .col-l-8 {
    width: calc(66.6666666667% - 30px);
    margin: 0 15px;
  }
  .col-l-8-wide {
    width: 66.6666666667%;
    margin: 0;
  }
  .col-l-8-wide-left {
    width: calc(66.6666666667% - 15px);
    margin: 0 15px 0 0;
  }
  .col-l-8-wide-right {
    width: calc(66.6666666667% - 15px);
    margin: 0 0 0 15px;
  }
  .col-l-9 {
    width: calc(75% - 30px);
    margin: 0 15px;
  }
  .col-l-9-wide {
    width: 75%;
    margin: 0;
  }
  .col-l-9-wide-left {
    width: calc(75% - 15px);
    margin: 0 15px 0 0;
  }
  .col-l-9-wide-right {
    width: calc(75% - 15px);
    margin: 0 0 0 15px;
  }
  .col-l-10 {
    width: calc(83.3333333333% - 30px);
    margin: 0 15px;
  }
  .col-l-10-wide {
    width: 83.3333333333%;
    margin: 0;
  }
  .col-l-10-wide-left {
    width: calc(83.3333333333% - 15px);
    margin: 0 15px 0 0;
  }
  .col-l-10-wide-right {
    width: calc(83.3333333333% - 15px);
    margin: 0 0 0 15px;
  }
  .col-l-11 {
    width: calc(91.6666666667% - 30px);
    margin: 0 15px;
  }
  .col-l-11-wide {
    width: 91.6666666667%;
    margin: 0;
  }
  .col-l-11-wide-left {
    width: calc(91.6666666667% - 15px);
    margin: 0 15px 0 0;
  }
  .col-l-11-wide-right {
    width: calc(91.6666666667% - 15px);
    margin: 0 0 0 15px;
  }
  .col-l-12 {
    width: calc(100% - 30px);
    margin: 0 15px;
  }
  .col-l-12-wide {
    width: 100%;
    margin: 0;
  }
  .col-l-12-wide-left {
    width: calc(100% - 15px);
    margin: 0 15px 0 0;
  }
  .col-l-12-wide-right {
    width: calc(100% - 15px);
    margin: 0 0 0 15px;
  }
  .col-l-pull-0 {
    right: 0%;
  }
  .col-l-push-0 {
    left: 0%;
  }
  .col-l-offset-0 {
    margin-left: calc(0% + 15px);
  }
  .col-l-offset-half-wide-0 {
    margin-left: calc(0% + 15px);
  }
  .col-l-offset-wide-0 {
    margin-left: calc(0%);
  }
  .col-l-pull-1 {
    right: 8.3333333333%;
  }
  .col-l-push-1 {
    left: 8.3333333333%;
  }
  .col-l-offset-1 {
    margin-left: calc(8.3333333333% + 15px);
  }
  .col-l-offset-half-wide-1 {
    margin-left: calc(8.3333333333% + 15px);
  }
  .col-l-offset-wide-1 {
    margin-left: calc(8.3333333333%);
  }
  .col-l-pull-2 {
    right: 16.6666666667%;
  }
  .col-l-push-2 {
    left: 16.6666666667%;
  }
  .col-l-offset-2 {
    margin-left: calc(16.6666666667% + 15px);
  }
  .col-l-offset-half-wide-2 {
    margin-left: calc(16.6666666667% + 15px);
  }
  .col-l-offset-wide-2 {
    margin-left: calc(16.6666666667%);
  }
  .col-l-pull-3 {
    right: 25%;
  }
  .col-l-push-3 {
    left: 25%;
  }
  .col-l-offset-3 {
    margin-left: calc(25% + 15px);
  }
  .col-l-offset-half-wide-3 {
    margin-left: calc(25% + 15px);
  }
  .col-l-offset-wide-3 {
    margin-left: calc(25%);
  }
  .col-l-pull-4 {
    right: 33.3333333333%;
  }
  .col-l-push-4 {
    left: 33.3333333333%;
  }
  .col-l-offset-4 {
    margin-left: calc(33.3333333333% + 15px);
  }
  .col-l-offset-half-wide-4 {
    margin-left: calc(33.3333333333% + 15px);
  }
  .col-l-offset-wide-4 {
    margin-left: calc(33.3333333333%);
  }
  .col-l-pull-5 {
    right: 41.6666666667%;
  }
  .col-l-push-5 {
    left: 41.6666666667%;
  }
  .col-l-offset-5 {
    margin-left: calc(41.6666666667% + 15px);
  }
  .col-l-offset-half-wide-5 {
    margin-left: calc(41.6666666667% + 15px);
  }
  .col-l-offset-wide-5 {
    margin-left: calc(41.6666666667%);
  }
  .col-l-pull-6 {
    right: 50%;
  }
  .col-l-push-6 {
    left: 50%;
  }
  .col-l-offset-6 {
    margin-left: calc(50% + 15px);
  }
  .col-l-offset-half-wide-6 {
    margin-left: calc(50% + 15px);
  }
  .col-l-offset-wide-6 {
    margin-left: calc(50%);
  }
  .col-l-pull-7 {
    right: 58.3333333333%;
  }
  .col-l-push-7 {
    left: 58.3333333333%;
  }
  .col-l-offset-7 {
    margin-left: calc(58.3333333333% + 15px);
  }
  .col-l-offset-half-wide-7 {
    margin-left: calc(58.3333333333% + 15px);
  }
  .col-l-offset-wide-7 {
    margin-left: calc(58.3333333333%);
  }
  .col-l-pull-8 {
    right: 66.6666666667%;
  }
  .col-l-push-8 {
    left: 66.6666666667%;
  }
  .col-l-offset-8 {
    margin-left: calc(66.6666666667% + 15px);
  }
  .col-l-offset-half-wide-8 {
    margin-left: calc(66.6666666667% + 15px);
  }
  .col-l-offset-wide-8 {
    margin-left: calc(66.6666666667%);
  }
  .col-l-pull-9 {
    right: 75%;
  }
  .col-l-push-9 {
    left: 75%;
  }
  .col-l-offset-9 {
    margin-left: calc(75% + 15px);
  }
  .col-l-offset-half-wide-9 {
    margin-left: calc(75% + 15px);
  }
  .col-l-offset-wide-9 {
    margin-left: calc(75%);
  }
  .col-l-pull-10 {
    right: 83.3333333333%;
  }
  .col-l-push-10 {
    left: 83.3333333333%;
  }
  .col-l-offset-10 {
    margin-left: calc(83.3333333333% + 15px);
  }
  .col-l-offset-half-wide-10 {
    margin-left: calc(83.3333333333% + 15px);
  }
  .col-l-offset-wide-10 {
    margin-left: calc(83.3333333333%);
  }
  .col-l-pull-11 {
    right: 91.6666666667%;
  }
  .col-l-push-11 {
    left: 91.6666666667%;
  }
  .col-l-offset-11 {
    margin-left: calc(91.6666666667% + 15px);
  }
  .col-l-offset-half-wide-11 {
    margin-left: calc(91.6666666667% + 15px);
  }
  .col-l-offset-wide-11 {
    margin-left: calc(91.6666666667%);
  }
  .col-l-pull-12 {
    right: 100%;
  }
  .col-l-push-12 {
    left: 100%;
  }
  .col-l-offset-12 {
    margin-left: calc(100% + 15px);
  }
  .col-l-offset-half-wide-12 {
    margin-left: calc(100% + 15px);
  }
  .col-l-offset-wide-12 {
    margin-left: calc(100%);
  }
  .text-center-l {
    text-align: center;
  }
  .text-left-l {
    text-align: left;
  }
  .text-right-l {
    text-align: right;
  }
  .text-justify-l {
    text-align: justify;
  }
  .block-center-l {
    text-align: center;
  }
  .block-left-l {
    text-align: left;
  }
  .block-right-l {
    text-align: right;
  }
  .block-justify-l {
    text-align: justify;
  }
  .block-justify-l:after {
    content: "";
    width: 100%;
    display: inline-block;
    font-size: 0.000001%;
  }
  .col-hide-l {
    display: none !important;
  }
  .col-show-l {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) and (max-width: 9999px) {
  .col-xl-1 {
    width: calc(8.3333333333% - 30px);
    margin: 0 15px;
  }
  .col-xl-1-wide {
    width: 8.3333333333%;
    margin: 0;
  }
  .col-xl-1-wide-left {
    width: calc(8.3333333333% - 15px);
    margin: 0 15px 0 0;
  }
  .col-xl-1-wide-right {
    width: calc(8.3333333333% - 15px);
    margin: 0 0 0 15px;
  }
  .col-xl-2 {
    width: calc(16.6666666667% - 30px);
    margin: 0 15px;
  }
  .col-xl-2-wide {
    width: 16.6666666667%;
    margin: 0;
  }
  .col-xl-2-wide-left {
    width: calc(16.6666666667% - 15px);
    margin: 0 15px 0 0;
  }
  .col-xl-2-wide-right {
    width: calc(16.6666666667% - 15px);
    margin: 0 0 0 15px;
  }
  .col-xl-3 {
    width: calc(25% - 30px);
    margin: 0 15px;
  }
  .col-xl-3-wide {
    width: 25%;
    margin: 0;
  }
  .col-xl-3-wide-left {
    width: calc(25% - 15px);
    margin: 0 15px 0 0;
  }
  .col-xl-3-wide-right {
    width: calc(25% - 15px);
    margin: 0 0 0 15px;
  }
  .col-xl-4 {
    width: calc(33.3333333333% - 30px);
    margin: 0 15px;
  }
  .col-xl-4-wide {
    width: 33.3333333333%;
    margin: 0;
  }
  .col-xl-4-wide-left {
    width: calc(33.3333333333% - 15px);
    margin: 0 15px 0 0;
  }
  .col-xl-4-wide-right {
    width: calc(33.3333333333% - 15px);
    margin: 0 0 0 15px;
  }
  .col-xl-5 {
    width: calc(41.6666666667% - 30px);
    margin: 0 15px;
  }
  .col-xl-5-wide {
    width: 41.6666666667%;
    margin: 0;
  }
  .col-xl-5-wide-left {
    width: calc(41.6666666667% - 15px);
    margin: 0 15px 0 0;
  }
  .col-xl-5-wide-right {
    width: calc(41.6666666667% - 15px);
    margin: 0 0 0 15px;
  }
  .col-xl-6 {
    width: calc(50% - 30px);
    margin: 0 15px;
  }
  .col-xl-6-wide {
    width: 50%;
    margin: 0;
  }
  .col-xl-6-wide-left {
    width: calc(50% - 15px);
    margin: 0 15px 0 0;
  }
  .col-xl-6-wide-right {
    width: calc(50% - 15px);
    margin: 0 0 0 15px;
  }
  .col-xl-7 {
    width: calc(58.3333333333% - 30px);
    margin: 0 15px;
  }
  .col-xl-7-wide {
    width: 58.3333333333%;
    margin: 0;
  }
  .col-xl-7-wide-left {
    width: calc(58.3333333333% - 15px);
    margin: 0 15px 0 0;
  }
  .col-xl-7-wide-right {
    width: calc(58.3333333333% - 15px);
    margin: 0 0 0 15px;
  }
  .col-xl-8 {
    width: calc(66.6666666667% - 30px);
    margin: 0 15px;
  }
  .col-xl-8-wide {
    width: 66.6666666667%;
    margin: 0;
  }
  .col-xl-8-wide-left {
    width: calc(66.6666666667% - 15px);
    margin: 0 15px 0 0;
  }
  .col-xl-8-wide-right {
    width: calc(66.6666666667% - 15px);
    margin: 0 0 0 15px;
  }
  .col-xl-9 {
    width: calc(75% - 30px);
    margin: 0 15px;
  }
  .col-xl-9-wide {
    width: 75%;
    margin: 0;
  }
  .col-xl-9-wide-left {
    width: calc(75% - 15px);
    margin: 0 15px 0 0;
  }
  .col-xl-9-wide-right {
    width: calc(75% - 15px);
    margin: 0 0 0 15px;
  }
  .col-xl-10 {
    width: calc(83.3333333333% - 30px);
    margin: 0 15px;
  }
  .col-xl-10-wide {
    width: 83.3333333333%;
    margin: 0;
  }
  .col-xl-10-wide-left {
    width: calc(83.3333333333% - 15px);
    margin: 0 15px 0 0;
  }
  .col-xl-10-wide-right {
    width: calc(83.3333333333% - 15px);
    margin: 0 0 0 15px;
  }
  .col-xl-11 {
    width: calc(91.6666666667% - 30px);
    margin: 0 15px;
  }
  .col-xl-11-wide {
    width: 91.6666666667%;
    margin: 0;
  }
  .col-xl-11-wide-left {
    width: calc(91.6666666667% - 15px);
    margin: 0 15px 0 0;
  }
  .col-xl-11-wide-right {
    width: calc(91.6666666667% - 15px);
    margin: 0 0 0 15px;
  }
  .col-xl-12 {
    width: calc(100% - 30px);
    margin: 0 15px;
  }
  .col-xl-12-wide {
    width: 100%;
    margin: 0;
  }
  .col-xl-12-wide-left {
    width: calc(100% - 15px);
    margin: 0 15px 0 0;
  }
  .col-xl-12-wide-right {
    width: calc(100% - 15px);
    margin: 0 0 0 15px;
  }
  .col-xl-pull-0 {
    right: 0%;
  }
  .col-xl-push-0 {
    left: 0%;
  }
  .col-xl-offset-0 {
    margin-left: calc(0% + 15px);
  }
  .col-xl-offset-half-wide-0 {
    margin-left: calc(0% + 15px);
  }
  .col-xl-offset-wide-0 {
    margin-left: calc(0%);
  }
  .col-xl-pull-1 {
    right: 8.3333333333%;
  }
  .col-xl-push-1 {
    left: 8.3333333333%;
  }
  .col-xl-offset-1 {
    margin-left: calc(8.3333333333% + 15px);
  }
  .col-xl-offset-half-wide-1 {
    margin-left: calc(8.3333333333% + 15px);
  }
  .col-xl-offset-wide-1 {
    margin-left: calc(8.3333333333%);
  }
  .col-xl-pull-2 {
    right: 16.6666666667%;
  }
  .col-xl-push-2 {
    left: 16.6666666667%;
  }
  .col-xl-offset-2 {
    margin-left: calc(16.6666666667% + 15px);
  }
  .col-xl-offset-half-wide-2 {
    margin-left: calc(16.6666666667% + 15px);
  }
  .col-xl-offset-wide-2 {
    margin-left: calc(16.6666666667%);
  }
  .col-xl-pull-3 {
    right: 25%;
  }
  .col-xl-push-3 {
    left: 25%;
  }
  .col-xl-offset-3 {
    margin-left: calc(25% + 15px);
  }
  .col-xl-offset-half-wide-3 {
    margin-left: calc(25% + 15px);
  }
  .col-xl-offset-wide-3 {
    margin-left: calc(25%);
  }
  .col-xl-pull-4 {
    right: 33.3333333333%;
  }
  .col-xl-push-4 {
    left: 33.3333333333%;
  }
  .col-xl-offset-4 {
    margin-left: calc(33.3333333333% + 15px);
  }
  .col-xl-offset-half-wide-4 {
    margin-left: calc(33.3333333333% + 15px);
  }
  .col-xl-offset-wide-4 {
    margin-left: calc(33.3333333333%);
  }
  .col-xl-pull-5 {
    right: 41.6666666667%;
  }
  .col-xl-push-5 {
    left: 41.6666666667%;
  }
  .col-xl-offset-5 {
    margin-left: calc(41.6666666667% + 15px);
  }
  .col-xl-offset-half-wide-5 {
    margin-left: calc(41.6666666667% + 15px);
  }
  .col-xl-offset-wide-5 {
    margin-left: calc(41.6666666667%);
  }
  .col-xl-pull-6 {
    right: 50%;
  }
  .col-xl-push-6 {
    left: 50%;
  }
  .col-xl-offset-6 {
    margin-left: calc(50% + 15px);
  }
  .col-xl-offset-half-wide-6 {
    margin-left: calc(50% + 15px);
  }
  .col-xl-offset-wide-6 {
    margin-left: calc(50%);
  }
  .col-xl-pull-7 {
    right: 58.3333333333%;
  }
  .col-xl-push-7 {
    left: 58.3333333333%;
  }
  .col-xl-offset-7 {
    margin-left: calc(58.3333333333% + 15px);
  }
  .col-xl-offset-half-wide-7 {
    margin-left: calc(58.3333333333% + 15px);
  }
  .col-xl-offset-wide-7 {
    margin-left: calc(58.3333333333%);
  }
  .col-xl-pull-8 {
    right: 66.6666666667%;
  }
  .col-xl-push-8 {
    left: 66.6666666667%;
  }
  .col-xl-offset-8 {
    margin-left: calc(66.6666666667% + 15px);
  }
  .col-xl-offset-half-wide-8 {
    margin-left: calc(66.6666666667% + 15px);
  }
  .col-xl-offset-wide-8 {
    margin-left: calc(66.6666666667%);
  }
  .col-xl-pull-9 {
    right: 75%;
  }
  .col-xl-push-9 {
    left: 75%;
  }
  .col-xl-offset-9 {
    margin-left: calc(75% + 15px);
  }
  .col-xl-offset-half-wide-9 {
    margin-left: calc(75% + 15px);
  }
  .col-xl-offset-wide-9 {
    margin-left: calc(75%);
  }
  .col-xl-pull-10 {
    right: 83.3333333333%;
  }
  .col-xl-push-10 {
    left: 83.3333333333%;
  }
  .col-xl-offset-10 {
    margin-left: calc(83.3333333333% + 15px);
  }
  .col-xl-offset-half-wide-10 {
    margin-left: calc(83.3333333333% + 15px);
  }
  .col-xl-offset-wide-10 {
    margin-left: calc(83.3333333333%);
  }
  .col-xl-pull-11 {
    right: 91.6666666667%;
  }
  .col-xl-push-11 {
    left: 91.6666666667%;
  }
  .col-xl-offset-11 {
    margin-left: calc(91.6666666667% + 15px);
  }
  .col-xl-offset-half-wide-11 {
    margin-left: calc(91.6666666667% + 15px);
  }
  .col-xl-offset-wide-11 {
    margin-left: calc(91.6666666667%);
  }
  .col-xl-pull-12 {
    right: 100%;
  }
  .col-xl-push-12 {
    left: 100%;
  }
  .col-xl-offset-12 {
    margin-left: calc(100% + 15px);
  }
  .col-xl-offset-half-wide-12 {
    margin-left: calc(100% + 15px);
  }
  .col-xl-offset-wide-12 {
    margin-left: calc(100%);
  }
  .text-center-xl {
    text-align: center;
  }
  .text-left-xl {
    text-align: left;
  }
  .text-right-xl {
    text-align: right;
  }
  .text-justify-xl {
    text-align: justify;
  }
  .block-center-xl {
    text-align: center;
  }
  .block-left-xl {
    text-align: left;
  }
  .block-right-xl {
    text-align: right;
  }
  .block-justify-xl {
    text-align: justify;
  }
  .block-justify-xl:after {
    content: "";
    width: 100%;
    display: inline-block;
    font-size: 0.000001%;
  }
  .col-hide-xl {
    display: none !important;
  }
  .col-show-xl {
    display: inline-block !important;
  }
}
@media (min-width: 1580px) and (max-width: 9999px) {
  .col-full-1 {
    width: calc(8.3333333333% - 30px);
    margin: 0 15px;
  }
  .col-full-1-wide {
    width: 8.3333333333%;
    margin: 0;
  }
  .col-full-1-wide-left {
    width: calc(8.3333333333% - 15px);
    margin: 0 15px 0 0;
  }
  .col-full-1-wide-right {
    width: calc(8.3333333333% - 15px);
    margin: 0 0 0 15px;
  }
  .col-full-2 {
    width: calc(16.6666666667% - 30px);
    margin: 0 15px;
  }
  .col-full-2-wide {
    width: 16.6666666667%;
    margin: 0;
  }
  .col-full-2-wide-left {
    width: calc(16.6666666667% - 15px);
    margin: 0 15px 0 0;
  }
  .col-full-2-wide-right {
    width: calc(16.6666666667% - 15px);
    margin: 0 0 0 15px;
  }
  .col-full-3 {
    width: calc(25% - 30px);
    margin: 0 15px;
  }
  .col-full-3-wide {
    width: 25%;
    margin: 0;
  }
  .col-full-3-wide-left {
    width: calc(25% - 15px);
    margin: 0 15px 0 0;
  }
  .col-full-3-wide-right {
    width: calc(25% - 15px);
    margin: 0 0 0 15px;
  }
  .col-full-4 {
    width: calc(33.3333333333% - 30px);
    margin: 0 15px;
  }
  .col-full-4-wide {
    width: 33.3333333333%;
    margin: 0;
  }
  .col-full-4-wide-left {
    width: calc(33.3333333333% - 15px);
    margin: 0 15px 0 0;
  }
  .col-full-4-wide-right {
    width: calc(33.3333333333% - 15px);
    margin: 0 0 0 15px;
  }
  .col-full-5 {
    width: calc(41.6666666667% - 30px);
    margin: 0 15px;
  }
  .col-full-5-wide {
    width: 41.6666666667%;
    margin: 0;
  }
  .col-full-5-wide-left {
    width: calc(41.6666666667% - 15px);
    margin: 0 15px 0 0;
  }
  .col-full-5-wide-right {
    width: calc(41.6666666667% - 15px);
    margin: 0 0 0 15px;
  }
  .col-full-6 {
    width: calc(50% - 30px);
    margin: 0 15px;
  }
  .col-full-6-wide {
    width: 50%;
    margin: 0;
  }
  .col-full-6-wide-left {
    width: calc(50% - 15px);
    margin: 0 15px 0 0;
  }
  .col-full-6-wide-right {
    width: calc(50% - 15px);
    margin: 0 0 0 15px;
  }
  .col-full-7 {
    width: calc(58.3333333333% - 30px);
    margin: 0 15px;
  }
  .col-full-7-wide {
    width: 58.3333333333%;
    margin: 0;
  }
  .col-full-7-wide-left {
    width: calc(58.3333333333% - 15px);
    margin: 0 15px 0 0;
  }
  .col-full-7-wide-right {
    width: calc(58.3333333333% - 15px);
    margin: 0 0 0 15px;
  }
  .col-full-8 {
    width: calc(66.6666666667% - 30px);
    margin: 0 15px;
  }
  .col-full-8-wide {
    width: 66.6666666667%;
    margin: 0;
  }
  .col-full-8-wide-left {
    width: calc(66.6666666667% - 15px);
    margin: 0 15px 0 0;
  }
  .col-full-8-wide-right {
    width: calc(66.6666666667% - 15px);
    margin: 0 0 0 15px;
  }
  .col-full-9 {
    width: calc(75% - 30px);
    margin: 0 15px;
  }
  .col-full-9-wide {
    width: 75%;
    margin: 0;
  }
  .col-full-9-wide-left {
    width: calc(75% - 15px);
    margin: 0 15px 0 0;
  }
  .col-full-9-wide-right {
    width: calc(75% - 15px);
    margin: 0 0 0 15px;
  }
  .col-full-10 {
    width: calc(83.3333333333% - 30px);
    margin: 0 15px;
  }
  .col-full-10-wide {
    width: 83.3333333333%;
    margin: 0;
  }
  .col-full-10-wide-left {
    width: calc(83.3333333333% - 15px);
    margin: 0 15px 0 0;
  }
  .col-full-10-wide-right {
    width: calc(83.3333333333% - 15px);
    margin: 0 0 0 15px;
  }
  .col-full-11 {
    width: calc(91.6666666667% - 30px);
    margin: 0 15px;
  }
  .col-full-11-wide {
    width: 91.6666666667%;
    margin: 0;
  }
  .col-full-11-wide-left {
    width: calc(91.6666666667% - 15px);
    margin: 0 15px 0 0;
  }
  .col-full-11-wide-right {
    width: calc(91.6666666667% - 15px);
    margin: 0 0 0 15px;
  }
  .col-full-12 {
    width: calc(100% - 30px);
    margin: 0 15px;
  }
  .col-full-12-wide {
    width: 100%;
    margin: 0;
  }
  .col-full-12-wide-left {
    width: calc(100% - 15px);
    margin: 0 15px 0 0;
  }
  .col-full-12-wide-right {
    width: calc(100% - 15px);
    margin: 0 0 0 15px;
  }
  .col-full-pull-0 {
    right: 0%;
  }
  .col-full-push-0 {
    left: 0%;
  }
  .col-full-offset-0 {
    margin-left: calc(0% + 15px);
  }
  .col-full-offset-half-wide-0 {
    margin-left: calc(0% + 15px);
  }
  .col-full-offset-wide-0 {
    margin-left: calc(0%);
  }
  .col-full-pull-1 {
    right: 8.3333333333%;
  }
  .col-full-push-1 {
    left: 8.3333333333%;
  }
  .col-full-offset-1 {
    margin-left: calc(8.3333333333% + 15px);
  }
  .col-full-offset-half-wide-1 {
    margin-left: calc(8.3333333333% + 15px);
  }
  .col-full-offset-wide-1 {
    margin-left: calc(8.3333333333%);
  }
  .col-full-pull-2 {
    right: 16.6666666667%;
  }
  .col-full-push-2 {
    left: 16.6666666667%;
  }
  .col-full-offset-2 {
    margin-left: calc(16.6666666667% + 15px);
  }
  .col-full-offset-half-wide-2 {
    margin-left: calc(16.6666666667% + 15px);
  }
  .col-full-offset-wide-2 {
    margin-left: calc(16.6666666667%);
  }
  .col-full-pull-3 {
    right: 25%;
  }
  .col-full-push-3 {
    left: 25%;
  }
  .col-full-offset-3 {
    margin-left: calc(25% + 15px);
  }
  .col-full-offset-half-wide-3 {
    margin-left: calc(25% + 15px);
  }
  .col-full-offset-wide-3 {
    margin-left: calc(25%);
  }
  .col-full-pull-4 {
    right: 33.3333333333%;
  }
  .col-full-push-4 {
    left: 33.3333333333%;
  }
  .col-full-offset-4 {
    margin-left: calc(33.3333333333% + 15px);
  }
  .col-full-offset-half-wide-4 {
    margin-left: calc(33.3333333333% + 15px);
  }
  .col-full-offset-wide-4 {
    margin-left: calc(33.3333333333%);
  }
  .col-full-pull-5 {
    right: 41.6666666667%;
  }
  .col-full-push-5 {
    left: 41.6666666667%;
  }
  .col-full-offset-5 {
    margin-left: calc(41.6666666667% + 15px);
  }
  .col-full-offset-half-wide-5 {
    margin-left: calc(41.6666666667% + 15px);
  }
  .col-full-offset-wide-5 {
    margin-left: calc(41.6666666667%);
  }
  .col-full-pull-6 {
    right: 50%;
  }
  .col-full-push-6 {
    left: 50%;
  }
  .col-full-offset-6 {
    margin-left: calc(50% + 15px);
  }
  .col-full-offset-half-wide-6 {
    margin-left: calc(50% + 15px);
  }
  .col-full-offset-wide-6 {
    margin-left: calc(50%);
  }
  .col-full-pull-7 {
    right: 58.3333333333%;
  }
  .col-full-push-7 {
    left: 58.3333333333%;
  }
  .col-full-offset-7 {
    margin-left: calc(58.3333333333% + 15px);
  }
  .col-full-offset-half-wide-7 {
    margin-left: calc(58.3333333333% + 15px);
  }
  .col-full-offset-wide-7 {
    margin-left: calc(58.3333333333%);
  }
  .col-full-pull-8 {
    right: 66.6666666667%;
  }
  .col-full-push-8 {
    left: 66.6666666667%;
  }
  .col-full-offset-8 {
    margin-left: calc(66.6666666667% + 15px);
  }
  .col-full-offset-half-wide-8 {
    margin-left: calc(66.6666666667% + 15px);
  }
  .col-full-offset-wide-8 {
    margin-left: calc(66.6666666667%);
  }
  .col-full-pull-9 {
    right: 75%;
  }
  .col-full-push-9 {
    left: 75%;
  }
  .col-full-offset-9 {
    margin-left: calc(75% + 15px);
  }
  .col-full-offset-half-wide-9 {
    margin-left: calc(75% + 15px);
  }
  .col-full-offset-wide-9 {
    margin-left: calc(75%);
  }
  .col-full-pull-10 {
    right: 83.3333333333%;
  }
  .col-full-push-10 {
    left: 83.3333333333%;
  }
  .col-full-offset-10 {
    margin-left: calc(83.3333333333% + 15px);
  }
  .col-full-offset-half-wide-10 {
    margin-left: calc(83.3333333333% + 15px);
  }
  .col-full-offset-wide-10 {
    margin-left: calc(83.3333333333%);
  }
  .col-full-pull-11 {
    right: 91.6666666667%;
  }
  .col-full-push-11 {
    left: 91.6666666667%;
  }
  .col-full-offset-11 {
    margin-left: calc(91.6666666667% + 15px);
  }
  .col-full-offset-half-wide-11 {
    margin-left: calc(91.6666666667% + 15px);
  }
  .col-full-offset-wide-11 {
    margin-left: calc(91.6666666667%);
  }
  .col-full-pull-12 {
    right: 100%;
  }
  .col-full-push-12 {
    left: 100%;
  }
  .col-full-offset-12 {
    margin-left: calc(100% + 15px);
  }
  .col-full-offset-half-wide-12 {
    margin-left: calc(100% + 15px);
  }
  .col-full-offset-wide-12 {
    margin-left: calc(100%);
  }
  .text-center-full {
    text-align: center;
  }
  .text-left-full {
    text-align: left;
  }
  .text-right-full {
    text-align: right;
  }
  .text-justify-full {
    text-align: justify;
  }
  .block-center-full {
    text-align: center;
  }
  .block-left-full {
    text-align: left;
  }
  .block-right-full {
    text-align: right;
  }
  .block-justify-full {
    text-align: justify;
  }
  .block-justify-full:after {
    content: "";
    width: 100%;
    display: inline-block;
    font-size: 0.000001%;
  }
  .col-hide-full {
    display: none !important;
  }
  .col-show-full {
    display: inline-block !important;
  }
}
.container, .row {
  font-size: 0.00000001%;
}
.container > *, .row > * {
  font-size: medium;
}

.row {
  width: 100%;
  font-size: 0.00000001%;
}

.container {
  max-width: 1480px;
  margin: 0 auto;
  width: 90%;
  font-size: 0.00000001%;
}
@media (min-width: 768px) {
  .container {
    width: 95%;
  }
}

/* GW-Grid helpers */
.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.row:before,
.row:after {
  content: " ";
  display: table;
}

.clearfix:after,
.container:after,
.row:after {
  clear: both;
}

.alignleft {
  float: left;
}

img.alignleft, .wp-caption.alignleft {
  margin: 0em 1.5em 0em 0em;
}

.alignright {
  float: right;
}

img.alignright, .wp-caption.alignright {
  margin: 0em 0em 0em 1.5em;
}

.aligncenter {
  margin: 0 auto;
  display: block;
  clear: both;
}

.hide {
  display: none;
}

.block {
  display: block;
}

.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

.table {
  display: table;
}

.table-cell {
  display: table-cell;
}

.table-row {
  display: table-row;
}

.full-height {
  height: 100%;
}

.full-width {
  width: 100%;
}

.full-image-center {
  overflow: hidden;
  text-align: center;
}
.full-image-center img {
  margin: 0 -100%;
}

.full-image-center-stretch {
  overflow: hidden;
  text-align: center;
}
.full-image-center-stretch img {
  width: 100%;
  margin: 0 -100%;
}

.cookie-warning {
  position: fixed;
  bottom: 0px;
  width: 100%;
  box-sizing: border-box;
  display: table;
  background: rgba(32, 34, 38, 0.8);
  padding: 30px 40px;
  font-size: 12px;
  font-family: Arial, sans-serif;
  color: white;
}
.cookie-warning .cookie-text {
  vertical-align: middle;
  width: calc(100% - 310px);
  display: table-cell;
  margin: 0px;
  line-height: 1.5;
}
@media (min-width: 480px) and (max-width: 767px) {
  .cookie-warning .cookie-text {
    width: 100%;
    display: block;
    margin-bottom: 10px;
  }
}
@media (min-width: 0px) and (max-width: 479px) {
  .cookie-warning .cookie-text {
    width: 100%;
    display: block;
    margin-bottom: 10px;
  }
}
.cookie-warning .cookie-actions {
  vertical-align: middle;
  width: 300px;
  display: table-cell;
  text-align: right;
}
@media (min-width: 480px) and (max-width: 767px) {
  .cookie-warning .cookie-actions {
    width: 100%;
    display: block;
  }
}
@media (min-width: 0px) and (max-width: 479px) {
  .cookie-warning .cookie-actions {
    width: 100%;
    display: block;
  }
}
.cookie-warning .cookie-btn {
  color: white;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 3px;
  text-decoration: none;
  border: 0px;
  margin-left: 20px;
  font-size: 14px;
  line-height: 1.3;
  cursor: pointer;
}
.cookie-warning .cookie-btn.ok {
  background: #3B89C7;
}
.cookie-warning .cookie-btn.readmore {
  background: #7B8A8B;
}

/**
 * Define your own color, fonts etc. in here
 * 
 */
/* MIXINS */
header.main {
  background-color: #ffffff;
  z-index: 3;
  position: relative;
}
header.main.no-subnav {
  border-bottom: 1px solid #f2efea;
}
header.main .main-bar {
  height: 100px;
  display: flex;
}
@media (min-width: 0px) and (max-width: 479px) {
  header.main .main-bar {
    height: 64px;
    justify-content: space-between;
    width: 100%;
  }
  header.main .main-bar:before, header.main .main-bar:after {
    display: none;
  }
  header.main .main-bar > * {
    width: auto;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  header.main .main-bar {
    height: 64px;
    justify-content: space-between;
    width: 100%;
  }
  header.main .main-bar:before, header.main .main-bar:after {
    display: none;
  }
  header.main .main-bar > * {
    width: auto;
  }
}
header.main .main-logo {
  display: inline-block;
  height: 100%;
}
header.main .main-logo a {
  height: 100%;
  display: block;
}
header.main .main-logo h1 {
  margin: 0px;
  line-height: 0;
  height: 100%;
  display: grid;
  align-items: center;
}
header.main .main-logo svg {
  height: 100%;
  max-width: 200px;
  max-height: 80px;
}
@media (min-width: 0px) and (max-width: 479px) {
  header.main .main-logo svg {
    max-width: 36px;
    max-height: 36px;
  }
}
@media (min-width: 0px) and (max-width: 479px) {
  header.main .main-logo {
    padding: 0px 38px 0px 27px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  header.main .main-logo {
    padding: 0px 38px 0px 27px;
  }
}
header.main nav.main {
  display: inline-flex;
  height: 100%;
  padding-left: 2%;
  box-sizing: border-box;
}
header.main nav.main .now-button {
  display: flex;
}
@media (min-width: 0px) and (max-width: 479px) {
  header.main nav.main .now-button {
    display: none;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  header.main nav.main .now-button {
    display: none;
  }
}
header.main nav.main .now-button .now {
  font-size: 15px;
  background-color: white;
  color: black;
  text-transform: none;
  padding: 0px;
  letter-spacing: 0.025em;
}
header.main nav.main .now-button .now span {
  padding: 0px 25px;
  border-right: 1px solid #d6d4cf;
  line-height: 32px;
  display: inline-block;
}
header.main nav.main .now-button .now:hover, header.main nav.main .now-button .now:focus {
  color: #c81d31 !important;
  background: #f2efea;
}
header.main nav.main .nav-wrapper {
  position: relative;
  height: 100%;
}
header.main nav.main .nav-wrapper .burger-wrapper {
  display: flex;
  height: 100%;
}
@media (min-width: 1200px) and (max-width: 9999px) {
  header.main nav.main .nav-wrapper .burger-wrapper {
    display: none;
  }
}
header.main nav.main .nav-wrapper .burger-wrapper .hamburger {
  outline: none;
}
header.main nav.main .nav-wrapper .burger-wrapper .hamburger:hover, header.main nav.main .nav-wrapper .burger-wrapper .hamburger:focus {
  background-color: #f2efea;
}
header.main nav.main .nav-wrapper .search-btn:hover, header.main nav.main .nav-wrapper .search-btn:focus {
  background-color: #f2efea;
}
header.main nav.main .nav-wrapper .first-level {
  list-style: none;
  margin: 0px 0px 0px 5px;
  padding: 0px;
  height: 100%;
  display: none;
}
@media (min-width: 1200px) and (max-width: 9999px) {
  header.main nav.main .nav-wrapper .first-level {
    display: flex;
  }
}
header.main nav.main .nav-wrapper .first-level li {
  display: flex;
  height: 100%;
}
header.main nav.main .nav-wrapper .first-level li.active a {
  background-color: #f2efea;
}
header.main nav.main .nav-wrapper .first-level a {
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 0px 1.3vw;
  font-size: 16px;
  color: #000000;
  font-family: "nimbus-sans", sans-serif;
  letter-spacing: 0.025em;
  height: 100%;
}
header.main nav.main .nav-wrapper .first-level a:focus, header.main nav.main .nav-wrapper .first-level a:hover {
  background-color: #f2efea;
}
header.main nav.main .nav-wrapper .searchform-wrapper {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 0%;
  height: 100%;
  background: white;
  display: none;
  align-items: center;
  overflow: hidden;
  transition: width 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
header.main nav.main .nav-wrapper .searchform-wrapper.open {
  width: 100%;
}
header.main nav.main .nav-wrapper .searchform-wrapper .closeSearch:focus, header.main nav.main .nav-wrapper .searchform-wrapper .closeSearch:hover {
  background-color: #f2efea;
}
header.main nav.main .nav-wrapper .searchform-wrapper .searchform {
  box-sizing: border-box;
  padding-left: 5vw;
  width: 100%;
  display: flex;
}
header.main nav.main .nav-wrapper .searchform-wrapper .searchform button {
  margin-right: 1px;
  background: #fff;
  border-width: 0px;
  outline-width: 0px;
}
header.main nav.main .nav-wrapper .searchform-wrapper .searchform button:focus, header.main nav.main .nav-wrapper .searchform-wrapper .searchform button:hover {
  background-color: #f2efea;
}
header.main nav.main .nav-wrapper .searchform-wrapper .searchform button svg {
  width: 17px;
  height: 17px;
}
header.main nav.main .nav-wrapper .searchform-wrapper .searchform .searchform-input-wrapper {
  flex: 1 1 auto;
  align-self: center;
  display: flex;
  flex-direction: column;
}
header.main nav.main .nav-wrapper .searchform-wrapper .searchform input[type=text] {
  flex: 1 1 auto;
  margin: 0px 15px 0px 0px;
  border-width: 0px 0px 1px 0px;
  border-color: #d6d4cf;
  outline-width: 0px;
  color: #000000;
  line-height: 1.7;
  font-size: 15px;
  letter-spacing: 0.03em;
  font-family: "nimbus-sans", sans-serif;
  box-shadow: 0 0 0 30px white inset;
}
header.main nav.main .nav-wrapper .searchform-wrapper .searchform input[type=text]:focus {
  border-width: 0px 0px 1px 0px;
  border-color: #000;
}
header.main nav.main .nav-wrapper .searchform-wrapper .searchform input[type=text]::-moz-placeholder {
  color: #76746F;
  letter-spacing: 0.03em;
}
header.main nav.main .nav-wrapper .searchform-wrapper .searchform input[type=text]::placeholder {
  color: #76746F;
  letter-spacing: 0.03em;
}
header.main .nav-btn {
  height: 100%;
  box-sizing: border-box;
  background-color: transparent;
  color: #000000;
  font-family: "nimbus-sans", sans-serif;
  display: flex;
  align-items: center;
  align-self: center;
  font-size: 14px;
  padding: 0px 20px;
  text-decoration: none;
  margin: 0px;
}
header.main .nav-btn span {
  border-bottom: 1px;
}
header.main .nav-btn svg {
  height: 18px;
  width: 18px;
  fill: currentColor;
  vertical-align: -3px;
}
header.main .nav-btn aheader.main .nav-btn:hover, header.main .nav-btn aheader.main .nav-btn:focus {
  background-color: #f2efea;
}
header.main .right-menu {
  position: absolute;
  top: 0;
  right: 0;
  height: 100px;
  z-index: 10;
  display: flex;
}
@media (min-width: 0px) and (max-width: 479px) {
  header.main .right-menu {
    display: none;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  header.main .right-menu {
    display: none;
  }
}
header.main .right-menu .lang-btn:hover, header.main .right-menu .lang-btn:focus {
  background-color: #f2efea;
}
header.main .right-menu .language-bar {
  position: relative;
  height: 100%;
}
header.main .right-menu .language-nav {
  display: none;
  width: 150px;
  background-color: #f1efe9;
  position: absolute;
  top: 100%;
  right: 0px;
}
header.main .right-menu .language-nav ul {
  list-style: none;
  padding: 15px 0px 20px;
  margin: 0px;
}
header.main .right-menu .language-nav ul li.current-lang a {
  color: #002597;
}
header.main .right-menu .language-nav ul a {
  text-decoration: none;
  color: #525252;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 30px;
  font-size: 14px;
  line-height: 1.2;
  font-family: "nimbus-sans", sans-serif;
  letter-spacing: 0.04em;
  display: block;
}
header.main .right-menu .language-nav ul a:hover, header.main .right-menu .language-nav ul a:focus {
  color: #002597;
}
header.main .right-menu .shop-link {
  color: #000000;
  background-color: #fefcf6;
  border-left: 1px solid #f2efea;
}
header.main .right-menu .shop-link:hover, header.main .right-menu .shop-link:focus {
  background-color: #f2efea;
}
header.main .responsive-nav {
  display: none;
  z-index: 10;
  transition: all 0.2s;
  transform: scaleY(0);
  transform-origin: top;
  position: absolute;
  top: 100%;
  background: #fff;
  width: 100%;
  justify-content: center;
  box-sizing: border-box;
  border: 1px solid #f2efea;
  border-width: 1px 0px;
}
@media (min-width: 768px) and (max-width: 991px) {
  header.main .responsive-nav .searchform {
    display: flex;
  }
  header.main .responsive-nav .searchform input[type=text] {
    width: calc(100% - 30px) !important;
    margin: 2px 20px 5px 10px !important;
  }
  header.main .responsive-nav .searchform .search-button {
    padding: 10px 0px !important;
    margin-left: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  header.main .responsive-nav .searchform {
    display: flex;
  }
}
header.main .responsive-nav .searchform .title {
  margin-top: 3px;
}
header.main .responsive-nav .searchform label {
  margin: 0px 20px 5px 20px;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-top: 15px;
}
header.main .responsive-nav .searchform input[type=text] {
  width: calc(100% - 40px);
  margin: 2px 20px 5px 20px;
  border-width: 0px 0px 1px 0px;
  border-color: #d6d4cf;
  outline-width: 0px;
  line-height: 1.7;
  font-size: 15px;
  letter-spacing: 0.03em;
  font-family: "nimbus-sans", sans-serif;
  box-shadow: 0 0 0 30px white inset;
}
header.main .responsive-nav .searchform input[type=text]::-moz-placeholder {
  color: #76746F;
  letter-spacing: 0.03em;
}
header.main .responsive-nav .searchform input[type=text]::placeholder {
  color: #76746F;
  letter-spacing: 0.03em;
}
header.main .responsive-nav .searchform input[type=text]:focus {
  border-width: 0px 0px 1px 0px;
  border-color: #000;
}
header.main .responsive-nav .searchform .search-button {
  width: 84px;
  background: #fff;
  color: #000000;
  display: flex;
  align-items: center;
  align-self: center;
  box-sizing: border-box;
  padding: 20px 0px 18px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  header.main .responsive-nav .searchform .search-button {
    height: 84px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  header.main .responsive-nav .searchform .search-button {
    height: 84px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  header.main .responsive-nav .searchform .search-button {
    height: 70px;
  }
}
header.main .responsive-nav .searchform .search-button svg {
  height: 19px;
}
header.main .responsive-nav .searchform .search-button:hover, header.main .responsive-nav .searchform .search-button:focus {
  background-color: #000;
}
header.main .responsive-nav .searchform .search-button:hover svg, header.main .responsive-nav .searchform .search-button:focus svg {
  fill: #fff;
}
header.main .responsive-nav .nav-btn {
  padding-top: 20px;
  padding-bottom: 20px;
}
header.main .responsive-nav .parent-page {
  overflow: hidden;
}
header.main .responsive-nav .parent-page.active > .title {
  background-color: #f2efea;
}
header.main .responsive-nav .parent-page.active .second-level {
  display: flex;
  max-height: 500px;
}
header.main .responsive-nav .parent-page.active .second-level-toggle-btn {
  background: #000;
}
header.main .responsive-nav .parent-page.active .second-level-toggle-btn:before {
  transform: rotate(180deg);
  filter: invert(100%);
}
header.main .responsive-nav .parent-page.extra-nav {
  display: none;
}
@media (min-width: 0px) and (max-width: 479px) {
  header.main .responsive-nav .parent-page.extra-nav {
    display: flex;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  header.main .responsive-nav .parent-page.extra-nav {
    display: flex;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  header.main .responsive-nav .parent-page.extra-nav {
    display: flex;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  header.main .responsive-nav .parent-page.extra-nav {
    display: flex;
  }
}
header.main .responsive-nav .parent-page.extra-nav.lang-nav {
  border-top: 1px solid #f2efea;
}
header.main .responsive-nav .parent-page.extra-nav.now-btn .title {
  color: #c81d31;
}
header.main .responsive-nav .second-level-toggle-btn {
  display: none;
  width: 84px;
  background: #f2efea;
  color: #000000;
  position: relative;
  transition: all 0.2s;
}
header.main .responsive-nav .second-level-toggle-btn:hover, header.main .responsive-nav .second-level-toggle-btn:focus {
  background-color: #000;
}
header.main .responsive-nav .second-level-toggle-btn:hover:before, header.main .responsive-nav .second-level-toggle-btn:focus:before {
  filter: invert(100%);
}
header.main .responsive-nav .second-level-toggle-btn:before {
  transition: transform 0.3s ease-in-out;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' id='icon-arrow' viewBox='0 0 16 16'%3E %3Cpath d='M1.867 3.333l6.133 6.133 6.133-6.133 1.867 1.867-8 8-8-8 1.867-1.867z'%3E%3C/path%3E %3C/svg%3E");
  width: 100%;
  height: 100%;
  background-size: 10px 10px;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  left: 0px;
  top: 0px;
}
header.main .responsive-nav .second-level {
  margin: 0px;
  display: flex;
  overflow: hidden;
  position: absolute;
  background: #000000;
  top: 100%;
  left: 0px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  max-height: 0px;
  transition: all 0.25s ease-in;
}
header.main .responsive-nav .second-level-wrapper {
  display: flex;
  margin: 0px;
  padding: 0px;
}
@media (min-width: 768px) and (max-width: 991px) {
  header.main .responsive-nav .second-level-wrapper {
    flex-wrap: wrap;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  header.main .responsive-nav .second-level-wrapper {
    flex-wrap: wrap;
  }
}
@media (min-width: 0px) and (max-width: 479px) {
  header.main .responsive-nav {
    flex-direction: column;
  }
  header.main .responsive-nav .parent-page {
    flex-wrap: wrap;
    display: flex;
  }
  header.main .responsive-nav .parent-page > .title {
    font-size: 14px;
    flex: 1 1 auto;
  }
  header.main .responsive-nav .second-level-toggle-btn {
    display: block;
  }
  header.main .responsive-nav .second-level {
    position: relative;
    top: auto;
    left: auto;
    display: block;
    justify-content: flex-start;
    padding: 0px;
  }
  header.main .responsive-nav .second-level-wrapper {
    flex-direction: column;
    padding: 0px;
    width: 100%;
  }
  header.main .responsive-nav .second-level-wrapper li {
    width: 100%;
  }
  header.main .responsive-nav .second-level-wrapper li .title {
    margin: 0px 0px;
    padding: 15px 20px 13px;
    display: block;
  }
  header.main .responsive-nav .second-level-wrapper li span {
    display: inline-block;
  }
  header.main .responsive-nav .second-level-wrapper li:first-child .title {
    padding-top: 25px;
  }
  header.main .responsive-nav .second-level-wrapper li:last-child .title {
    padding-bottom: 23px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  header.main .responsive-nav {
    flex-direction: column;
  }
  header.main .responsive-nav .parent-page {
    flex-wrap: wrap;
    display: flex;
  }
  header.main .responsive-nav .parent-page > .title {
    font-size: 14px;
    flex: 1 1 auto;
  }
  header.main .responsive-nav .second-level-toggle-btn {
    display: block;
  }
  header.main .responsive-nav .second-level {
    position: relative;
    top: auto;
    left: auto;
    display: block;
    justify-content: flex-start;
    padding: 0px;
  }
  header.main .responsive-nav .second-level-wrapper {
    flex-direction: column;
    padding: 0px;
    width: 100%;
  }
  header.main .responsive-nav .second-level-wrapper li {
    width: 100%;
  }
  header.main .responsive-nav .second-level-wrapper li .title {
    margin: 0px 0px;
    padding: 15px 20px 13px;
    display: block;
  }
  header.main .responsive-nav .second-level-wrapper li span {
    display: inline-block;
  }
  header.main .responsive-nav .second-level-wrapper li:first-child .title {
    padding-top: 25px;
  }
  header.main .responsive-nav .second-level-wrapper li:last-child .title {
    padding-bottom: 23px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  header.main .responsive-nav {
    flex-direction: column;
  }
  header.main .responsive-nav .parent-page {
    flex-wrap: wrap;
    display: flex;
  }
  header.main .responsive-nav .parent-page > .title {
    font-size: 14px;
    flex: 1 1 auto;
  }
  header.main .responsive-nav .second-level-toggle-btn {
    display: block;
  }
  header.main .responsive-nav .second-level {
    position: relative;
    top: auto;
    left: auto;
    display: block;
    justify-content: flex-start;
    padding: 0px;
  }
  header.main .responsive-nav .second-level-wrapper {
    flex-direction: column;
    padding: 0px;
    width: 100%;
  }
  header.main .responsive-nav .second-level-wrapper li {
    width: 100%;
  }
  header.main .responsive-nav .second-level-wrapper li .title {
    margin: 0px 0px;
    padding: 15px 20px 13px;
    display: block;
  }
  header.main .responsive-nav .second-level-wrapper li span {
    display: inline-block;
  }
  header.main .responsive-nav .second-level-wrapper li:first-child .title {
    padding-top: 25px;
  }
  header.main .responsive-nav .second-level-wrapper li:last-child .title {
    padding-bottom: 23px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  header.main .responsive-nav {
    flex-direction: column;
  }
  header.main .responsive-nav .parent-page {
    flex-wrap: wrap;
    display: flex;
  }
  header.main .responsive-nav .parent-page > .title {
    font-size: 14px;
    flex: 1 1 auto;
  }
  header.main .responsive-nav .second-level-toggle-btn {
    display: block;
  }
  header.main .responsive-nav .second-level {
    position: relative;
    top: auto;
    left: auto;
    display: block;
    justify-content: flex-start;
    padding: 0px;
  }
  header.main .responsive-nav .second-level-wrapper {
    flex-direction: column;
    padding: 0px;
    width: 100%;
  }
  header.main .responsive-nav .second-level-wrapper li {
    width: 100%;
  }
  header.main .responsive-nav .second-level-wrapper li .title {
    margin: 0px 0px;
    padding: 15px 20px 13px;
    display: block;
  }
  header.main .responsive-nav .second-level-wrapper li span {
    display: inline-block;
  }
  header.main .responsive-nav .second-level-wrapper li:first-child .title {
    padding-top: 25px;
  }
  header.main .responsive-nav .second-level-wrapper li:last-child .title {
    padding-bottom: 23px;
  }
}
@media (min-width: 0px) and (max-width: 479px) {
  header.main .responsive-nav {
    display: flex;
  }
  header.main .responsive-nav.active {
    transform: scaleY(1);
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  header.main .responsive-nav {
    display: flex;
  }
  header.main .responsive-nav.active {
    transform: scaleY(1);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  header.main .responsive-nav {
    display: flex;
  }
  header.main .responsive-nav.active {
    transform: scaleY(1);
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  header.main .responsive-nav {
    display: flex;
  }
  header.main .responsive-nav.active {
    transform: scaleY(1);
  }
}

.second-level-row {
  background-color: #000000;
  color: white;
  display: none;
}
@media (min-width: 1200px) and (max-width: 9999px) {
  .second-level-row {
    display: block;
  }
}

.second-level {
  line-height: 1.2em;
  padding: 0px 20px;
  justify-content: center;
}
.second-level a {
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  padding: 15px 13px 13px;
  margin: 0px 13px;
  display: inline-block;
}
.second-level a span {
  border-bottom: 1px solid transparent;
  display: block;
  padding-bottom: 3px;
}
.second-level li {
  list-style: none;
  display: inline-block;
}
.second-level li a {
  outline: none;
}
.second-level li a.active span, .second-level li a:hover span, .second-level li a:focus span {
  border-bottom: solid 1px #fff !important;
}
.second-level li:first-child a {
  padding-left: 0px;
  margin-left: 0px;
}
.second-level .second-level-wrapper a {
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  padding: 15px 13px 13px;
  margin: 0px 13px;
  display: inline-block;
}
.second-level .second-level-wrapper a span {
  border-bottom: 1px solid transparent;
  display: block;
  padding-bottom: 3px;
}
.second-level .second-level-wrapper li {
  list-style: none;
  display: inline-block;
}
.second-level .second-level-wrapper li a {
  outline: none;
}
.second-level .second-level-wrapper li a.active span, .second-level .second-level-wrapper li a:hover span, .second-level .second-level-wrapper li a:focus span {
  border-bottom: solid 1px #fff !important;
}
.second-level .second-level-wrapper li:first-child a {
  padding-left: 0px;
  margin-left: 0px;
}

.nav-btn span {
  border-bottom: solid 1px transparent;
  transition: all 0.2s;
}
.nav-btn:hover, .nav-btn:focus {
  outline: none;
}
.nav-btn:hover span, .nav-btn:focus span {
  border-bottom: solid 1px black !important;
}

.first-level li a span {
  border-bottom: solid 1px transparent;
  transition: all 0.2s;
}
.first-level li a:hover, .first-level li a:focus {
  outline: none;
}
.first-level li a:hover span, .first-level li a:focus span {
  border-bottom: solid 1px black !important;
}

.main-logo a:hover, .main-logo a:focus {
  background-color: #d6d4cf;
}

.second-level-toggle-btn:hover, .second-level-toggle-btn:focus {
  background-color: #d6d4cf !important;
  color: #000 !important;
  outline: none;
}

footer.main {
  display: block;
  background-color: #000000;
  width: 100%;
  z-index: 2;
  margin-top: 0px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home footer.main {
    margin-top: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .home footer.main {
    margin-top: 20px;
  }
}
@media (min-width: 0px) and (max-width: 479px) {
  .home footer.main {
    margin-top: 0px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .home footer.main {
    margin-top: 0px;
  }
}

.footer-navigation {
  margin-top: 80px !important;
  display: flex;
}
@media (min-width: 0px) and (max-width: 479px) {
  .footer-navigation {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer-navigation {
    flex-wrap: wrap;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .footer-navigation {
    flex-wrap: wrap;
  }
}
@media (min-width: 0px) and (max-width: 479px) {
  .footer-navigation {
    flex-wrap: wrap;
  }
}
.footer-navigation a {
  color: #d6d4cf;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  margin-top: 5px;
}
.footer-navigation a.parent-link {
  text-transform: uppercase;
}
.footer-navigation a:hover, .footer-navigation a:focus {
  border-bottom: 1px solid #fff;
  color: #fff;
}
.footer-navigation .nav-col {
  padding: 10px;
  width: 14.2%;
  flex-grow: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer-navigation .nav-col {
    width: calc(33.2% - 20px);
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .footer-navigation .nav-col {
    width: calc(50% - 20px);
  }
}
@media (min-width: 0px) and (max-width: 479px) {
  .footer-navigation .nav-col {
    width: 100%;
    padding: 0px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.footer-navigation .nav-col .next-level {
  line-height: 1.2em;
  -webkit-margin-before: 1em;
          margin-block-start: 1em;
  -webkit-margin-after: 1em;
          margin-block-end: 1em;
  -webkit-padding-start: 0px;
          padding-inline-start: 0px;
}

.footer-container {
  margin-bottom: 60px !important;
  margin-top: 40px !important;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}
@media (min-width: 0px) and (max-width: 479px) {
  .footer-container {
    flex-direction: column;
    justify-content: center;
    margin-top: 40px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .footer-container {
    flex-direction: column;
    justify-content: center;
    margin-top: 40px;
  }
}
.footer-container .footer-text {
  vertical-align: bottom;
  color: #ffffff !important;
  font-weight: 300;
  font-size: 12px !important;
  width: 25%;
}
.footer-container .footer-text a {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-container .footer-text a:hover, .footer-container .footer-text a:focus {
  border-bottom: 1px solid #ffffff;
}
.footer-container .footer-text p:last-child {
  margin-bottom: 0px;
}
@media (min-width: 0px) and (max-width: 479px) {
  .footer-container .footer-text {
    width: 100%;
    text-align: center;
    order: 2;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .footer-container .footer-text {
    width: 100%;
    text-align: center;
    order: 2;
  }
}
.footer-container .footer-logo {
  text-align: center;
  width: 50%;
}
.footer-container .footer-logo > div {
  display: inline-block;
  width: 160px;
  height: 119px;
}
@media (min-width: 0px) and (max-width: 479px) {
  .footer-container .footer-logo {
    width: 100%;
    order: 1;
    margin-bottom: 40px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .footer-container .footer-logo {
    width: 100%;
    order: 1;
    margin-bottom: 40px;
  }
}
.footer-container svg {
  max-width: 100%;
  max-height: 100%;
  fill: white;
}
.footer-container .some-links {
  width: 25%;
  vertical-align: bottom;
  text-align: right;
}
@media (min-width: 0px) and (max-width: 479px) {
  .footer-container .some-links {
    text-align: center;
    margin-top: 30px;
    width: 100%;
    order: 3;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .footer-container .some-links {
    text-align: center;
    margin-top: 30px;
    width: 100%;
    order: 3;
  }
}
.footer-container .some-links a {
  display: inline-block;
  margin-left: 20px;
}
.footer-container .some-links a:first-child {
  margin-left: 0px;
}
.footer-container .some-links a:hover svg, .footer-container .some-links a:focus svg {
  fill: #c81d31;
}
.footer-container .some-links svg {
  fill: #ffffff;
  height: 18px;
  width: 18px;
}

.contentblock {
  margin-bottom: 125px;
}
.contentblock h2 {
  font-weight: 700;
  margin-bottom: 20px !important;
}

.contentblock.quote .row {
  position: relative;
}
.contentblock.quote .row:before {
  display: block;
  z-index: -1;
  content: "";
  position: absolute;
  background-color: #f1efe9;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
.contentblock.quote .row .quote-content {
  padding: 70px 0px;
}
.contentblock.quote .row .quote-content p {
  margin: 0px;
  font-family: "nimbus-sans-extended", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 18px;
}

.contentblock.big-image-block p {
  margin-top: 10px;
  margin-bottom: 0px;
}
.contentblock.big-image-block .image-desc {
  font-weight: 700;
}
.contentblock.big-image-block .image-copy {
  color: #adaba6;
}

.contentblock.two-images .small-image {
  margin-bottom: 40px;
}
.contentblock.two-images .row {
  display: flex;
}
@media (min-width: 0px) and (max-width: 479px) {
  .contentblock.two-images .row {
    display: block;
  }
}

.contentblock.image-and-text .image {
  margin-bottom: 40px;
}
@media (min-width: 0px) and (max-width: 479px) {
  .contentblock.image-and-text .image {
    margin-top: 30px;
    margin-bottom: 20px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .contentblock.image-and-text .image {
    margin-top: 30px;
    margin-bottom: 20px;
  }
}

.contentblock.two-columns .first-column {
  margin-bottom: 20px;
}

.contentblock.year-image-text .year-image-block {
  position: relative;
  overflow: visible;
}
.contentblock.year-image-text .year-image-block img {
  margin-top: 80px;
}
@media (min-width: 0px) and (max-width: 479px) {
  .contentblock.year-image-text .year-image-block img {
    margin-top: 20px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .contentblock.year-image-text .year-image-block img {
    margin-top: 20px;
  }
}
.contentblock.year-image-text .text-block {
  margin-top: 80px;
}
@media (min-width: 0px) and (max-width: 479px) {
  .contentblock.year-image-text .text-block {
    margin-top: 20px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .contentblock.year-image-text .text-block {
    margin-top: 20px;
  }
}
.contentblock.year-image-text .big-year {
  position: absolute;
  z-index: -1;
  left: -190px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .contentblock.year-image-text .big-year {
    left: -100px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .contentblock.year-image-text .big-year {
    left: -60px;
  }
}
@media (min-width: 0px) and (max-width: 479px) {
  .contentblock.year-image-text .big-year {
    position: static;
    font-size: 10vw;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .contentblock.year-image-text .big-year {
    position: static;
    font-size: 10vw;
  }
}

.big-year {
  font-family: "nimbus-sans-extended", sans-serif;
  font-weight: 300;
  line-height: 1em;
  font-size: 8vw;
}
@media (max-width: 625px) {
  .big-year {
    font-size: 50px;
  }
}
@media (min-width: 1600px) {
  .big-year {
    font-size: 128px;
  }
}

.locations-container .map-container {
  max-width: 430px;
  margin-top: 50px;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .locations-container .map-container {
    height: 903px;
    max-height: 100%;
  }
}
.locations-container .map-container .map {
  fill: #fefcf6;
  stroke: #adaba6;
}
.locations-container .map-container .line {
  fill: transparent;
  stroke: #d6d4cf;
}
.locations-container .map-container .text {
  fill: #adaba6;
}
.locations-container .map-container .marker {
  cursor: pointer;
}
.locations-container .map-container .marker .pin {
  fill: #76746F;
}
.locations-container .map-container .marker .pin-circle {
  fill: #fefcf6;
}
.locations-container .map-container .marker.active .pin {
  fill: #002597;
}
.locations-container .map-container .city {
  display: none;
  position: absolute;
  padding-left: 40px;
}
.locations-container .map-container .city:hover {
  display: block;
}
.locations-container .map-container .city.active {
  display: block;
}
.locations-container .map-container .city:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 61.1 120.2'%3E%3Cpath stroke-width='4' stroke='#f1efe9' fill='white' d='M61.1,0C60.6,33.3,33.1,60.3,0,60.1c32.9,0,60.4,25.9,61.1,60.1'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  display: block;
  height: 28px;
  width: 14px;
  content: "";
  position: absolute;
  left: 27px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.locations-container .map-container .city .content {
  border: 1px solid #f1efe9;
  background: white;
  position: relative;
}
.locations-container .map-container .city .location {
  display: block;
  text-decoration: none;
  color: #525252;
  font-family: "nimbus-sans", sans-serif;
  padding: 10px 14px 13px 14px;
  min-width: 180px;
  position: relative;
}
.locations-container .map-container .city .location:after {
  content: "";
  width: calc(100% - 28px);
  height: 1px;
  background: #f1efe9;
  position: absolute;
  bottom: 0px;
  left: 14px;
  display: block;
}
.locations-container .map-container .city .location:last-child:after {
  display: none;
}
.locations-container .map-container .city .location.active, .locations-container .map-container .city .location:hover {
  color: #002597;
}
.locations-container .map-container .city .location h3 {
  font-size: 16px;
  line-height: 1.1875em;
  margin: 0px;
}
.locations-container .map-container .city .location p {
  font-size: 14px;
  line-height: 1.5em;
  margin: 0px;
}
.locations-container .map-container .city[data-city=jyvaskyla] {
  top: 70%;
  left: 40%;
}
.locations-container .map-container .city[data-city=helsinki] {
  top: 90%;
  left: 32%;
}
.locations-container .location-list .list-item:nth-child(odd) a {
  padding-right: 15px;
}
@media (min-width: 0px) and (max-width: 479px) {
  .locations-container .location-list .list-item:nth-child(odd) a {
    padding-right: 0px;
  }
}
.locations-container .location-list .list-item:nth-child(even) a {
  padding-left: 15px;
}
@media (min-width: 0px) and (max-width: 479px) {
  .locations-container .location-list .list-item:nth-child(even) a {
    padding-left: 0px;
  }
}
.locations-container .location-list .list-item:last-child {
  margin-bottom: 0px;
}

.single-location .page-header {
  margin-bottom: 0px;
}
@media (min-width: 0px) and (max-width: 479px) {
  .single-location .page-header {
    margin-bottom: 20px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .single-location .page-header {
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .single-location .page-header {
    margin-bottom: 20px;
  }
}

.single-location main .title {
  text-transform: uppercase;
  font-family: "nimbus-sans-extended", sans-serif;
  color: #000010;
  margin-top: 0px;
  margin-bottom: 31px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.single-location .img-box .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(2) .title, .frontpage-links .link-section-wrapper:nth-of-type(2) .single-location .img-box:nth-of-type(2) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(3) .title, .frontpage-links .link-section-wrapper:nth-of-type(2) .single-location .img-box:nth-of-type(3) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(5) .title, .frontpage-links .link-section-wrapper:nth-of-type(2) .single-location .img-box:nth-of-type(5) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(1):nth-of-type(2) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .single-location .img-box:nth-of-type(1):nth-of-type(2) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1):nth-of-type(2) .title, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .single-location .img-box:nth-of-type(1):nth-of-type(2) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(1):nth-of-type(3) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .single-location .img-box:nth-of-type(1):nth-of-type(3) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1):nth-of-type(3) .title, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .single-location .img-box:nth-of-type(1):nth-of-type(3) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(1):nth-of-type(5) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .single-location .img-box:nth-of-type(1):nth-of-type(5) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1):nth-of-type(5) .title, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .single-location .img-box:nth-of-type(1):nth-of-type(5) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(3) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .single-location .img-box:nth-of-type(3) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(3) .title, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .single-location .img-box:nth-of-type(3) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(6):nth-of-type(2) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .single-location .img-box:nth-of-type(6):nth-of-type(2) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6):nth-of-type(2) .title, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .single-location .img-box:nth-of-type(6):nth-of-type(2) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(6):nth-of-type(3) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .single-location .img-box:nth-of-type(6):nth-of-type(3) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6):nth-of-type(3) .title, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .single-location .img-box:nth-of-type(6):nth-of-type(3) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(6):nth-of-type(5) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .single-location .img-box:nth-of-type(6):nth-of-type(5) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6):nth-of-type(5) .title, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .single-location .img-box:nth-of-type(6):nth-of-type(5) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(7):nth-of-type(2) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .single-location .img-box:nth-of-type(7):nth-of-type(2) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7):nth-of-type(2) .title, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .single-location .img-box:nth-of-type(7):nth-of-type(2) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(7):nth-of-type(3) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .single-location .img-box:nth-of-type(7):nth-of-type(3) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7):nth-of-type(3) .title, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .single-location .img-box:nth-of-type(7):nth-of-type(3) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(7):nth-of-type(5) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .single-location .img-box:nth-of-type(7):nth-of-type(5) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7):nth-of-type(5) .title, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .single-location .img-box:nth-of-type(7):nth-of-type(5) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(8):nth-of-type(2) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .single-location .img-box:nth-of-type(8):nth-of-type(2) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8):nth-of-type(2) .title, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .single-location .img-box:nth-of-type(8):nth-of-type(2) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(8):nth-of-type(3) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .single-location .img-box:nth-of-type(8):nth-of-type(3) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8):nth-of-type(3) .title, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .single-location .img-box:nth-of-type(8):nth-of-type(3) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(8):nth-of-type(5) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .single-location .img-box:nth-of-type(8):nth-of-type(5) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8):nth-of-type(5) .title, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .single-location .img-box:nth-of-type(8):nth-of-type(5) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(1):nth-of-type(2) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1):nth-of-type(2) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(1):nth-of-type(3) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1):nth-of-type(3) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(1):nth-of-type(5) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1):nth-of-type(5) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .single-location .img-box:nth-of-type(1) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .single-location .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(1):nth-of-type(2) .title, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .single-location .img-box:nth-of-type(1):nth-of-type(2) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .single-location .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(1):nth-of-type(3) .title, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .single-location .img-box:nth-of-type(1):nth-of-type(3) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .single-location .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(1):nth-of-type(5) .title, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .single-location .img-box:nth-of-type(1):nth-of-type(5) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(3) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(3) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(3) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .single-location .img-box:nth-of-type(3) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .single-location .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(3) .title, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .single-location .img-box:nth-of-type(3) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(6):nth-of-type(2) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6):nth-of-type(2) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(6):nth-of-type(3) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6):nth-of-type(3) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(6):nth-of-type(5) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6):nth-of-type(5) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .single-location .img-box:nth-of-type(6) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .single-location .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(6):nth-of-type(2) .title, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .single-location .img-box:nth-of-type(6):nth-of-type(2) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .single-location .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(6):nth-of-type(3) .title, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .single-location .img-box:nth-of-type(6):nth-of-type(3) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .single-location .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(6):nth-of-type(5) .title, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .single-location .img-box:nth-of-type(6):nth-of-type(5) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(7):nth-of-type(2) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7):nth-of-type(2) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(7):nth-of-type(3) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7):nth-of-type(3) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(7):nth-of-type(5) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7):nth-of-type(5) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .single-location .img-box:nth-of-type(7) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .single-location .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(7):nth-of-type(2) .title, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .single-location .img-box:nth-of-type(7):nth-of-type(2) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .single-location .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(7):nth-of-type(3) .title, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .single-location .img-box:nth-of-type(7):nth-of-type(3) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .single-location .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(7):nth-of-type(5) .title, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .single-location .img-box:nth-of-type(7):nth-of-type(5) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(8):nth-of-type(2) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8):nth-of-type(2) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(8):nth-of-type(3) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8):nth-of-type(3) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(8):nth-of-type(5) .title, .single-location .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8):nth-of-type(5) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .single-location .img-box:nth-of-type(8) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .single-location .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(8):nth-of-type(2) .title, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .single-location .img-box:nth-of-type(8):nth-of-type(2) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .single-location .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(8):nth-of-type(3) .title, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .single-location .img-box:nth-of-type(8):nth-of-type(3) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .single-location .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(8):nth-of-type(5) .title, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .single-location .img-box:nth-of-type(8):nth-of-type(5) .title {
  color: #ffffff;
}

.single-location .white-container .btn, .single-location .white-container .cookie-warning .cookie-btn, .cookie-warning .single-location .white-container .cookie-btn {
  margin-top: 50px;
}

.header-image {
  margin-bottom: 100px;
}
@media (min-width: 0px) and (max-width: 479px) {
  .header-image {
    margin-top: 72px !important;
    margin-bottom: 0px !important;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .header-image {
    margin-top: 72px !important;
    margin-bottom: 0px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .header-image {
    margin-top: 72px !important;
    margin-bottom: 0px !important;
  }
}
@media (min-width: 0px) and (max-width: 479px) {
  .header-image {
    margin-top: 42px !important;
  }
}

.price-div {
  margin-top: 70px;
  padding: 0px !important;
}
@media (min-width: 0px) and (max-width: 479px) {
  .price-div {
    margin-bottom: 40px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .price-div {
    margin-bottom: 40px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .price-div {
    margin-bottom: 40px;
  }
}
.price-div h3 {
  padding: 50px;
  padding-bottom: 0px;
}
@media (min-width: 0px) and (max-width: 479px) {
  .price-div h3 {
    padding: 30px 0px;
    margin: 0px 40px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .price-div h3 {
    padding: 30px 0px;
    margin: 0px 40px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .price-div h3 {
    padding: 40px;
  }
}
.price-div .admission-row {
  margin: 0px 8px;
  width: calc(100% - 16px);
}
.price-div .admission-row.short .admission-container {
  height: 170px;
}
@media (min-width: 0px) and (max-width: 479px) {
  .price-div .admission-row.short .admission-container {
    height: 100px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .price-div .admission-row.short .admission-container {
    height: 100px;
  }
}
.price-div .admission-container {
  height: 240px;
  padding: 45px 8px 8px;
  text-align: center;
}
.price-div .admission-container .box-title {
  margin-top: 0px;
}
@media (min-width: 0px) and (max-width: 479px) {
  .price-div .admission-container {
    padding-top: 35px;
    padding-bottom: 35px;
    height: 120px;
  }
  .price-div .admission-container.right-block {
    padding-bottom: 70px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .price-div .admission-container {
    padding-top: 35px;
    padding-bottom: 35px;
    height: 120px;
  }
  .price-div .admission-container.right-block {
    padding-bottom: 70px;
  }
}
.price-div .museum-card {
  width: 135px;
  max-width: 100%;
}
.price-div .box-title {
  font-weight: 600;
  font-size: 16px !important;
  display: inline-block;
}
.price-div .box-title.floated {
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 50px);
  right: 25px;
  left: 25px;
}
.price-div .price {
  font-size: 60px;
  font-weight: 500;
  font-family: "nimbus-sans-extended", sans-serif;
  margin-top: 70px;
  position: relative;
}
@media (min-width: 0px) and (max-width: 479px) {
  .price-div .price {
    margin-top: 40px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .price-div .price {
    margin-top: 40px;
  }
}
.price-div .price .currency {
  font-size: 24px;
  vertical-align: middle;
  margin-left: 6px;
}
.price-div .price .not-accepted {
  position: absolute;
  width: 110px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  top: -8px;
}
.price-div .price .not-accepted svg {
  height: 100px;
  width: 100px;
  fill: #c81d31;
}
.price-div .extra-text {
  position: absolute;
  font-size: 13px;
  bottom: 15px;
  width: calc(100% - 50px);
  right: 25px;
  left: 25px;
}
.price-div .buy-button {
  margin: 30px 50px 5px;
  padding-top: 25px;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 479px) {
  .price-div .buy-button {
    margin: 30px 30px 5px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .price-div .buy-button {
    margin: 30px 30px 5px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .price-div .buy-button {
    margin: 30px 40px 5px;
  }
}
.price-div .buy-button a {
  background-color: #002597;
  display: block;
}
@media (min-width: 0px) and (max-width: 479px) {
  .price-div .box-title {
    font-size: 20px;
    margin-top: 30px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .price-div .box-title {
    font-size: 20px;
    margin-top: 30px;
  }
}
.price-div .info {
  border-top: 0px;
}
@media (min-width: 0px) and (max-width: 479px) {
  .price-div .info:nth-child(-n+6) {
    border-top: 0px;
    padding-top: 10px !important;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .price-div .info:nth-child(-n+6) {
    border-top: 0px;
    padding-top: 10px !important;
  }
}
@media (min-width: 0px) and (max-width: 479px) {
  .price-div .info:nth-child(-n+4) {
    border-top: 1px solid #f1efe9;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .price-div .info:nth-child(-n+4) {
    border-top: 1px solid #f1efe9;
  }
}
.price-div .info:nth-last-child(-n+2) {
  padding-bottom: 50px;
}
.price-div .info-row-container {
  padding: 25px 50px 0px;
}
@media (min-width: 0px) and (max-width: 479px) {
  .price-div .info-row-container {
    padding: 25px 30px 0px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .price-div .info-row-container {
    padding: 25px 30px 0px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .price-div .info-row-container {
    padding: 25px 40px 0px;
  }
}
.price-div .info-row-container .info {
  border-top: 0px;
}
.price-div .info-row-container .info:nth-child(-n+2) {
  border-top: 1px solid #f1efe9;
}
@media (min-width: 0px) and (max-width: 479px) {
  .price-div .info-row-container .info:nth-child(-n+2) {
    border-top: 0px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .price-div .info-row-container .info:nth-child(-n+2) {
    border-top: 0px;
  }
}
@media (min-width: 0px) and (max-width: 479px) {
  .price-div .info-row-container .info:nth-child(1) {
    border-top: 1px solid #f1efe9;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .price-div .info-row-container .info:nth-child(1) {
    border-top: 1px solid #f1efe9;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .price-div .info-container {
    padding-left: 0px !important;
  }
}

.img-links {
  margin-top: 75px;
  margin-bottom: 115px;
}
@media (min-width: 0px) and (max-width: 479px) {
  .img-links {
    margin-bottom: 80px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .img-links {
    margin-bottom: 80px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .img-links {
    margin-bottom: 80px;
  }
}
.img-links .additional-margin {
  margin-top: 115px;
}

.opening-times {
  margin-top: 100px;
  background-color: #ffffff;
  padding: 50px;
  margin-bottom: 30px;
  color: #76746F;
  font-family: "nimbus-sans", sans-serif;
}
@media (min-width: 0px) and (max-width: 479px) {
  .opening-times {
    padding: 30px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .opening-times {
    padding: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .opening-times {
    padding: 40px;
  }
}
@media (min-width: 0px) and (max-width: 479px) {
  .opening-times {
    margin-top: 40px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .opening-times {
    margin-top: 40px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .opening-times {
    margin-top: 40px;
  }
}
.opening-times .datetitle {
  font-weight: 700;
  margin: 20px 0px 5px;
  display: block;
}
.opening-times table {
  width: 100%;
}
.opening-times table td:last-child {
  text-align: right;
}

.exc-opening-times {
  background-color: #f1efe9;
  padding: 50px;
}
.exc-opening-times h3 {
  margin-top: 0px;
  font-size: 16px;
}
@media (min-width: 0px) and (max-width: 479px) {
  .exc-opening-times {
    font-size: 12px !important;
  }
}
.exc-opening-times table {
  width: 100%;
}
.exc-opening-times table td {
  vertical-align: top;
  padding-bottom: 5px;
}
.exc-opening-times table tr td:first-child {
  width: 50px;
}
.exc-opening-times table tr td:last-child {
  width: 75px;
}
.exc-opening-times table tr:last-child td {
  padding-bottom: 0px;
}
@media (min-width: 0px) and (max-width: 479px) {
  .exc-opening-times {
    padding: 30px;
  }
  .exc-opening-times table td {
    padding-bottom: 7px;
  }
  .exc-opening-times table tr td:first-child {
    width: 50px;
  }
  .exc-opening-times table tr td:last-child {
    width: 55px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .exc-opening-times {
    padding: 30px;
  }
  .exc-opening-times table td {
    padding-bottom: 7px;
  }
  .exc-opening-times table tr td:first-child {
    width: 50px;
  }
  .exc-opening-times table tr td:last-child {
    width: 55px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .exc-opening-times {
    padding: 40px;
  }
}

.address-block {
  background-color: #ffffff;
  padding: 40px;
}

.location-content {
  margin-top: 170px;
}
@media (min-width: 0px) and (max-width: 479px) {
  .location-content {
    margin-top: 50px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .location-content {
    margin-top: 50px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .location-content {
    margin-top: 50px;
  }
}

.date-now {
  color: #002597;
}

.related-event-row {
  display: flex;
  margin-bottom: 150px;
  margin-top: 150px;
}
@media (min-width: 0px) and (max-width: 479px) {
  .related-event-row {
    display: block;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .related-event-row {
    display: block;
  }
}
.related-event-row .info-container {
  height: 225px;
  text-transform: uppercase;
  color: #adaba6;
  text-align: center;
  font-family: "nimbus-sans-extended", sans-serif;
  line-height: 225px;
  font-size: 18px;
}
@media (min-width: 0px) and (max-width: 479px) {
  .related-event-row .info-container {
    margin-bottom: 40px;
    height: auto;
    line-height: 30px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .related-event-row .info-container {
    margin-bottom: 40px;
    height: auto;
    line-height: 30px;
  }
}
.related-event-row h3 {
  margin: 0px;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.related-event-row h3, .related-event-row .subtitle {
  font-family: "nimbus-sans", sans-serif;
}
.related-event-row .subtitle {
  font-weight: 400;
  display: block;
  font-size: 14px;
  margin-top: -2px;
  margin-bottom: 25px;
}
.related-event-row .date-title {
  text-transform: uppercase;
  font-family: "nimbus-sans-extended", sans-serif;
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
}
.related-event-row .date-div {
  margin-bottom: 35px;
  font-weight: 300;
  font-family: "nimbus-sans", sans-serif;
}

.work-row {
  margin-top: 150px;
  margin-bottom: 106px;
}
.work-row h1 {
  margin-top: 0px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .work-row {
    margin-top: 100px;
  }
}
@media (min-width: 0px) and (max-width: 479px) {
  .work-row {
    margin-top: 0px;
    margin-bottom: 75px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .work-row {
    margin-top: 0px;
    margin-bottom: 75px;
  }
}

@media (min-width: 0px) and (max-width: 479px) {
  .work-container .page-header {
    margin-top: 89px;
    margin-bottom: 67px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .work-container .page-header {
    margin-top: 89px;
    margin-bottom: 67px;
  }
}

.worktype-row {
  margin-bottom: 92px;
}

.text-content .btn, .text-content .cookie-warning .cookie-btn, .cookie-warning .text-content .cookie-btn {
  margin-top: 30px;
}
@media (min-width: 480px) and (max-width: 767px) {
  .text-content .btn, .text-content .cookie-warning .cookie-btn, .cookie-warning .text-content .cookie-btn {
    margin-bottom: 75px;
  }
}
@media (min-width: 0px) and (max-width: 479px) {
  .text-content .btn, .text-content .cookie-warning .cookie-btn, .cookie-warning .text-content .cookie-btn {
    margin-bottom: 75px;
  }
}
.text-content .page-header {
  margin-top: 0px;
}

.add-detail-boxes h3 {
  font-family: "nimbus-sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 5px;
  margin-top: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "nimbus-sans-extended", sans-serif;
}
.add-detail-boxes h3:first-child {
  margin-top: 0px;
}
@media (min-width: 0px) and (max-width: 479px) {
  .add-detail-boxes h3 {
    margin-top: 30px;
  }
  .add-detail-boxes h3:first-child {
    margin-top: 30px;
  }
}
.add-detail-boxes svg {
  width: 16px;
  height: 16px;
  margin-right: 2px;
}
.add-detail-boxes a {
  color: #000010;
  text-decoration: none;
  display: inline-block;
  border-bottom: 1px solid #d6d4cf;
}

.slider .slide:focus {
  outline: none;
}
.slider .slide img {
  width: 100%;
}
.slider .slide .slide-content {
  position: relative;
}
.slider .slide .slide-number {
  position: absolute;
}
.slider .slide .slide-desc {
  padding-left: 25px;
}
.slider .slide .slide-text {
  padding-left: 165px;
}
@media (min-width: 0px) and (max-width: 479px) {
  .slider .slide .slide-text {
    padding-left: 40px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .slider .slide .slide-text {
    padding-left: 40px;
  }
}

.grid-box {
  margin-bottom: 100px;
  display: flex;
  align-items: baseline;
}
@media (min-width: 0px) and (max-width: 479px) {
  .grid-box {
    display: block;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .grid-box {
    display: block;
  }
}
.grid-box svg {
  width: 27px;
  height: 28px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.grid-box h3 {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0px;
  text-transform: uppercase;
  font-family: "nimbus-sans-extended", sans-serif;
  color: #000010;
  margin-top: 0px;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.grid-box .title-container {
  margin-bottom: 45px;
}
.grid-box .grid-box-text {
  background-color: white;
}
.grid-box .grid-box-image {
  margin-top: 160px;
}
@media (min-width: 0px) and (max-width: 479px) {
  .grid-box .grid-box-image {
    margin-top: 0px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .grid-box .grid-box-image {
    margin-top: 0px;
  }
}

.filter-row {
  overflow: visible;
  margin-bottom: 75px;
  display: flex;
  flex-wrap: wrap;
}
.filter-row .filters {
  overflow: visible;
  display: flex;
  flex-wrap: wrap;
}
.filter-row .filter-column {
  display: flex;
  flex-wrap: wrap;
  overflow: visible;
}
.filter-row .filter-column .chosen-search {
  display: none;
}
.filter-row .filter-column .chosen-container {
  width: 100% !important;
}
.filter-row .filter-column .chosen-container .chosen-single {
  color: #d6d4cf;
  border-left: 0px !important;
  position: relative;
}
.filter-row .filter-column .chosen-container .chosen-single:before {
  content: attr(data-before);
  display: block;
  text-transform: uppercase;
  font-size: 12px;
  color: #000010;
  margin-bottom: -6px;
  font-weight: 600;
}
@media (min-width: 1200px) and (max-width: 9999px) {
  .filter-row .filter-column {
    width: 20%;
  }
  .filter-row .filter-column:nth-child(5n+1) .chosen-single {
    border-left: 1px solid #d6d4cf !important;
  }
  .filter-row .filter-column:nth-child(1) .chosen-single {
    border-left: 0px solid #d6d4cf !important;
  }
  .filter-row .filter-column:nth-child(1n+6) .chosen-single {
    border-top: 0px !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .filter-row .filter-column:nth-child(3n+1) .chosen-single {
    border-left: 1px solid #d6d4cf !important;
  }
  .filter-row .filter-column:nth-child(1) .chosen-single {
    border-left: 0px solid #d6d4cf !important;
  }
  .filter-row .filter-column:nth-child(1n+4) .chosen-single {
    border-top: 0px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .filter-row .filter-column:nth-child(2n+1) .chosen-single {
    border-left: 1px solid #d6d4cf !important;
  }
  .filter-row .filter-column:nth-child(1) .chosen-single {
    border-left: 0px solid #d6d4cf !important;
  }
  .filter-row .filter-column:nth-child(1n+3) .chosen-single {
    border-top: 0px !important;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .filter-row .filter-column:nth-child(2n+1) .chosen-single {
    border-left: 1px solid #d6d4cf !important;
  }
  .filter-row .filter-column:nth-child(1n+3) .chosen-single {
    border-top: 0px !important;
  }
}
@media (min-width: 0px) and (max-width: 479px) {
  .filter-row .filter-column .chosen-container .chosen-single {
    border-left: 1px solid #d6d4cf !important;
  }
  .filter-row .filter-column:nth-child(1n+2) .chosen-single {
    border-top: 0px !important;
  }
}
.filter-row .button-div {
  height: 60px;
  width: 100%;
  background-color: #000010;
  color: #fefcf6;
  box-sizing: border-box;
  padding: 17px 16px 17px 25px;
}
.filter-row .button-div span {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 28px;
}
.filter-row .button-div button {
  display: none;
  background-color: #ffffff;
  color: #000010;
  float: right;
  padding: 6px 9px;
}

.archivelist-row .image {
  background-size: cover;
  width: 100%;
  padding-bottom: 100%;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
}
.archivelist-row .image:before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: #002597;
  opacity: 0;
}
.archivelist-row .image-content {
  position: absolute;
  top: 15px;
  right: 15px;
  left: 15px;
}
.archivelist-row .image-content .icon-container {
  height: 42px;
  margin-bottom: 5px;
}
.archivelist-row .image-content .hidden {
  white-space: nowrap;
  display: block;
  position: absolute;
  right: 47px;
  background-color: #000010;
  color: #fefcf6;
  width: 0px;
  overflow: hidden;
  height: 42px;
  transition: width 0.5s ease-in-out;
}
.archivelist-row .image-content .hidden-content {
  padding: 12px 25px;
}
.archivelist-row .image-content .icon {
  float: right;
  width: 42px;
  height: 42px;
  color: #fefcf6;
  background-color: #000010;
}
.archivelist-row .image-content .icon:hover + .hidden {
  width: calc(100% - 47px);
  transition: width 0.5s ease-in-out;
}
.archivelist-row .image-content .icon:hover + .hidden .hidden-content {
  color: #fefcf6 !important;
}
.archivelist-row .image-content svg {
  fill: #fefcf6;
  height: 26px;
  width: 26px;
  padding: 8px;
}
.archivelist-row .list-item {
  margin-bottom: 75px;
}
.archivelist-row .list-item.hidden {
  display: none;
  color: #fefcf6;
}
.archivelist-row a {
  display: block;
  text-decoration: none;
  color: #000010;
  font-family: "nimbus-sans", sans-serif;
}
.archivelist-row a h3, .archivelist-row a h2 {
  font-family: "nimbus-sans-extended", sans-serif;
  font-size: 18px;
  line-height: 1.3333333333em;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0px;
  margin-right: 25px;
  border-bottom: solid 1px transparent;
}
.archivelist-row a h3 + p, .archivelist-row a h2 + p {
  margin: 5px 25px 0px 0px;
}
.archivelist-row a h4 {
  font-family: "nimbus-sans", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 9px 0px 0px;
}
.archivelist-row a h4 + p {
  margin: 18px 0px 0px;
}
.archivelist-row a p {
  color: #525252;
}
.archivelist-row a:hover, .archivelist-row a.active, .archivelist-row a:focus {
  color: #002597;
  outline: none;
}
.archivelist-row a:hover *, .archivelist-row a.active *, .archivelist-row a:focus * {
  color: #002597;
}
.archivelist-row a:hover .image:before, .archivelist-row a.active .image:before, .archivelist-row a:focus .image:before {
  opacity: 0.7;
}
.archivelist-row a:focus h2, .archivelist-row a:focus h3 {
  border-bottom: solid 1px #002597;
}

.grid-box .grid-box-info {
  width: 250px;
  display: inline-block;
  margin-bottom: 35px;
}
.grid-box .grid-box-info .title {
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  leter-spacing: 1px;
}

.event-archive .single-event .header-block {
  position: relative;
  border-bottom: 1px solid #d6d4cf;
  margin-left: 55px;
  margin-top: -10px;
}
@media (min-width: 0px) and (max-width: 479px) {
  .event-archive .single-event .header-block {
    margin-left: 0px;
  }
}
.event-archive .single-event .header-block .date {
  margin-bottom: 7px;
  display: inline-block;
}
.event-archive .single-event .header-block .date span {
  font-size: 30px;
  font-family: "nimbus-sans-extended", sans-serif;
}
.event-archive .single-event .header-block .date .day {
  color: #000;
}
.event-archive .single-event .header-block .date .month {
  color: #525252;
}
.event-archive .single-event .header-block .dayname {
  display: block;
  bottom: 10px;
  position: absolute;
  right: 0;
  font-size: 18px;
  font-weight: 400;
  color: #76746F;
  text-transform: lowercase;
}

.info-box .top-row {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 60px;
}
@media (min-width: 0px) and (max-width: 479px) {
  .info-box .top-row {
    text-align: left;
  }
}
.info-box .top-row .box-title {
  margin-bottom: 25px;
}
@media (min-width: 0px) and (max-width: 479px) {
  .info-box .top-row .box-title {
    margin-bottom: 15px;
  }
}
.info-box .top-row span {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}
.info-box .top-row span:first-child {
  font-weight: 600;
}
@media (min-width: 0px) and (max-width: 479px) {
  .info-box .top-row {
    padding-top: 0px;
    padding-bottom: 35px;
  }
  .info-box .top-row.left-block {
    padding-top: 35px;
  }
  .info-box .top-row.right-block {
    padding-bottom: 35px;
  }
}

.single-event .respo-image {
  margin-bottom: 25px;
}

.single-event #map {
  margin-top: 200px;
  margin-bottom: 150px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .single-event #map {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .single-event #map {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}
@media (min-width: 0px) and (max-width: 479px) {
  .single-event #map {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}

.img-box, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(2), .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(3), .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(5), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(3), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8) {
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  background-color: #2b2c31;
}
.img-box, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(2), .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(3), .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(5), .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(1):nth-of-type(2), .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1):nth-of-type(2), .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(1):nth-of-type(3), .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1):nth-of-type(3), .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(1):nth-of-type(5), .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1):nth-of-type(5), .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(3), .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(3), .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(6):nth-of-type(2), .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6):nth-of-type(2), .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(6):nth-of-type(3), .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6):nth-of-type(3), .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(6):nth-of-type(5), .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6):nth-of-type(5), .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(7):nth-of-type(2), .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7):nth-of-type(2), .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(7):nth-of-type(3), .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7):nth-of-type(3), .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(7):nth-of-type(5), .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7):nth-of-type(5), .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(8):nth-of-type(2), .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8):nth-of-type(2), .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(8):nth-of-type(3), .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8):nth-of-type(3), .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(8):nth-of-type(5), .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8):nth-of-type(5), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1), .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(1):nth-of-type(2), .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1):nth-of-type(2), .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(1):nth-of-type(3), .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1):nth-of-type(3), .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(1):nth-of-type(5), .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1):nth-of-type(5), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(3), .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(3), .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(3), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6), .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(6):nth-of-type(2), .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6):nth-of-type(2), .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(6):nth-of-type(3), .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6):nth-of-type(3), .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(6):nth-of-type(5), .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6):nth-of-type(5), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7), .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(7):nth-of-type(2), .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7):nth-of-type(2), .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(7):nth-of-type(3), .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7):nth-of-type(3), .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(7):nth-of-type(5), .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7):nth-of-type(5), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8), .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(8):nth-of-type(2), .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8):nth-of-type(2), .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(8):nth-of-type(3), .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8):nth-of-type(3), .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(8):nth-of-type(5), .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8):nth-of-type(5), .img-box a, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(2) a, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(3) a, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(5) a, .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(1):nth-of-type(2) a, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1):nth-of-type(2) a, .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(1):nth-of-type(3) a, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1):nth-of-type(3) a, .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(1):nth-of-type(5) a, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1):nth-of-type(5) a, .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(3) a, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(3) a, .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(6):nth-of-type(2) a, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6):nth-of-type(2) a, .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(6):nth-of-type(3) a, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6):nth-of-type(3) a, .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(6):nth-of-type(5) a, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6):nth-of-type(5) a, .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(7):nth-of-type(2) a, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7):nth-of-type(2) a, .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(7):nth-of-type(3) a, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7):nth-of-type(3) a, .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(7):nth-of-type(5) a, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7):nth-of-type(5) a, .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(8):nth-of-type(2) a, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8):nth-of-type(2) a, .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(8):nth-of-type(3) a, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8):nth-of-type(3) a, .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(8):nth-of-type(5) a, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8):nth-of-type(5) a, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1) a, .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(1):nth-of-type(2) a, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1):nth-of-type(2) a, .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(1):nth-of-type(3) a, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1):nth-of-type(3) a, .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(1):nth-of-type(5) a, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1):nth-of-type(5) a, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(3) a, .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(3) a, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(3) a, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6) a, .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(6):nth-of-type(2) a, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6):nth-of-type(2) a, .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(6):nth-of-type(3) a, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6):nth-of-type(3) a, .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(6):nth-of-type(5) a, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6):nth-of-type(5) a, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7) a, .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(7):nth-of-type(2) a, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7):nth-of-type(2) a, .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(7):nth-of-type(3) a, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7):nth-of-type(3) a, .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(7):nth-of-type(5) a, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7):nth-of-type(5) a, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8) a, .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(8):nth-of-type(2) a, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8):nth-of-type(2) a, .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(8):nth-of-type(3) a, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8):nth-of-type(3) a, .frontpage-links .link-section-wrapper:nth-of-type(1) .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(8):nth-of-type(5) a, .frontpage-links .link-section-wrapper:nth-of-type(2) .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8):nth-of-type(5) a {
  color: #fff;
  text-decoration: none;
}
@media (min-width: 0px) and (max-width: 479px) {
  .img-box, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(2), .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(3), .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(5), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(3), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8) {
    margin-bottom: 20px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .img-box, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(2), .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(3), .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(5), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(3), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8) {
    margin-bottom: 20px;
  }
}
.img-box:hover .content:before, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:hover:nth-of-type(2) .content:before, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:hover:nth-of-type(3) .content:before, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:hover:nth-of-type(5) .content:before, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:hover:nth-of-type(1) .content:before, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:hover:nth-of-type(3) .content:before, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:hover:nth-of-type(6) .content:before, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:hover:nth-of-type(7) .content:before, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:hover:nth-of-type(8) .content:before, .img-box:focus .content:before, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:focus:nth-of-type(2) .content:before, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:focus:nth-of-type(3) .content:before, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:focus:nth-of-type(5) .content:before, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:focus:nth-of-type(1) .content:before, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:focus:nth-of-type(3) .content:before, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:focus:nth-of-type(6) .content:before, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:focus:nth-of-type(7) .content:before, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:focus:nth-of-type(8) .content:before {
  opacity: 0.7;
}
.img-box .content, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(2) .content, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(3) .content, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(5) .content, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1) .content, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(3) .content, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6) .content, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7) .content, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8) .content {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.img-box .content:before, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(2) .content:before, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(3) .content:before, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(5) .content:before, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1) .content:before, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(3) .content:before, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6) .content:before, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7) .content:before, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8) .content:before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: #002597;
  opacity: 0;
}
.img-box .title, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(2) .title, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(3) .title, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(5) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(3) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8) .title {
  margin: 0px;
  line-height: 1.3;
  letter-spacing: 0.06em;
  font-family: "nimbus-sans-extended", sans-serif;
  text-align: center;
  padding: 10px !important;
  background-color: rgba(0, 0, 0, 0.7);
  max-width: 80%;
  z-index: 2;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: 0.06em;
}
.img-box .title + .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(2) .title + .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(3) .title + .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(5) .title + .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1) .title + .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(3) .title + .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6) .title + .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7) .title + .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8) .title + .subtitle {
  margin-top: 12px;
}
@media (min-width: 0px) and (max-width: 479px) {
  .img-box .title, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(2) .title, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(3) .title, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(5) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(3) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8) .title {
    font-size: 18px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .img-box .title, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(2) .title, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(3) .title, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(5) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(3) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8) .title {
    font-size: 18px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .img-box .title, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(2) .title, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(3) .title, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(5) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(3) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8) .title {
    font-size: 18px;
  }
}
.img-box .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(2) .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(3) .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(5) .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1) .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(3) .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6) .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7) .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8) .subtitle {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0px;
  text-align: center;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 5px !important;
  margin-left: 5px;
  margin-right: 5px;
}
@media (min-width: 0px) and (max-width: 479px) {
  .img-box .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(2) .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(3) .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(5) .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1) .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(3) .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6) .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7) .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8) .subtitle {
    font-size: 10px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .img-box .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(2) .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(3) .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(5) .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1) .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(3) .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6) .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7) .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8) .subtitle {
    font-size: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .img-box .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(2) .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(3) .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(5) .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1) .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(3) .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6) .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7) .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8) .subtitle {
    font-size: 10px;
  }
}
.img-box:before, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(2):before, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(3):before, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(5):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(3):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8):before {
  content: "";
  display: block;
}
.img-box.small .title, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(2) .title, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(3) .title, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(5) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(3) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8) .title {
  font-size: 18px;
}
.img-box.one-x-one:before, .frontpage-links .link-section-wrapper .img-box.small:before, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(2):before, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(3):before, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(5):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(3):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8):before {
  padding-top: 100%;
}
.img-box.two-x-three:before, .frontpage-links .link-section-wrapper:nth-of-type(2) .two-x-three.img-box:nth-of-type(2):before, .frontpage-links .link-section-wrapper:nth-of-type(2) .two-x-three.img-box:nth-of-type(3):before, .frontpage-links .link-section-wrapper:nth-of-type(2) .two-x-three.img-box:nth-of-type(5):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .two-x-three.img-box:nth-of-type(1):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .two-x-three.img-box:nth-of-type(3):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .two-x-three.img-box:nth-of-type(6):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .two-x-three.img-box:nth-of-type(7):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .two-x-three.img-box:nth-of-type(8):before {
  padding-top: 150%;
}
.img-box.three-x-two:before, .frontpage-links .link-section-wrapper:nth-of-type(2) .three-x-two.img-box:nth-of-type(2):before, .frontpage-links .link-section-wrapper:nth-of-type(2) .three-x-two.img-box:nth-of-type(3):before, .frontpage-links .link-section-wrapper:nth-of-type(2) .three-x-two.img-box:nth-of-type(5):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .three-x-two.img-box:nth-of-type(1):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .three-x-two.img-box:nth-of-type(3):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .three-x-two.img-box:nth-of-type(6):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .three-x-two.img-box:nth-of-type(7):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .three-x-two.img-box:nth-of-type(8):before {
  padding-top: 66.6666666667%;
}
.img-box.four-x-five:before, .frontpage-links .link-section-wrapper:nth-of-type(2) .four-x-five.img-box:nth-of-type(2):before, .frontpage-links .link-section-wrapper:nth-of-type(2) .four-x-five.img-box:nth-of-type(3):before, .frontpage-links .link-section-wrapper:nth-of-type(2) .four-x-five.img-box:nth-of-type(5):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .four-x-five.img-box:nth-of-type(1):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .four-x-five.img-box:nth-of-type(3):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .four-x-five.img-box:nth-of-type(6):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .four-x-five.img-box:nth-of-type(7):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .four-x-five.img-box:nth-of-type(8):before {
  padding-top: 125%;
}
.img-box.five-x-four:before, .frontpage-links .link-section-wrapper:nth-of-type(2) .five-x-four.img-box:nth-of-type(2):before, .frontpage-links .link-section-wrapper:nth-of-type(2) .five-x-four.img-box:nth-of-type(3):before, .frontpage-links .link-section-wrapper:nth-of-type(2) .five-x-four.img-box:nth-of-type(5):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .five-x-four.img-box:nth-of-type(1):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .five-x-four.img-box:nth-of-type(3):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .five-x-four.img-box:nth-of-type(6):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .five-x-four.img-box:nth-of-type(7):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .five-x-four.img-box:nth-of-type(8):before {
  padding-top: 80%;
}

.frontpage-news {
  position: relative;
  background: #000;
  color: #fff;
  padding: 140px 0px 120px;
}
@media (min-width: 0px) and (max-width: 479px) {
  .frontpage-news {
    padding: 50px 0px 0px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .frontpage-news {
    padding: 50px 0px 0px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .frontpage-news {
    padding: 50px 0px 0px;
  }
}
.frontpage-news .background-stripes {
  position: absolute;
  overflow: hidden;
  height: 100%;
  width: 100%;
  z-index: 0;
}
.frontpage-news .background-stripes .stripes, .frontpage-news .background-stripes .stripe {
  border-color: #363540 !important;
}
.frontpage-news .news-list {
  padding: 50px 120px 0px 120px;
}
@media (min-width: 0px) and (max-width: 479px) {
  .frontpage-news .news-list {
    padding: 0px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .frontpage-news .news-list {
    padding: 0px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .frontpage-news .news-list {
    padding: 0px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .frontpage-news .news-list {
    padding-right: 0px;
    padding-left: 80px;
  }
}
.frontpage-news .news-list-title {
  font-size: 30px;
  font-family: "nimbus-sans-extended", sans-serif;
  font-weight: 300;
  margin-bottom: 75px;
  text-transform: uppercase;
}
.frontpage-news .news-imgs {
  transform: translate3d(0, 0, 0);
  padding-top: 80%;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.frontpage-news .news-imgs.fixed {
  position: fixed;
  top: 50%;
  transform: translate3d(0px, -50%, 0px) !important;
  width: 47.5%;
  padding-top: 38%;
}
@media (min-width: 1580px) and (max-width: 9999px) {
  .frontpage-news .news-imgs.fixed {
    width: 740px;
    padding-top: 592px;
  }
}
.frontpage-news .news-imgs.on-bottom {
  position: relative;
}
.frontpage-news .single-img {
  position: absolute;
  top: 0px;
  right: 0px;
  left: auto;
  width: 0%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  transform: translateX(60px);
}
.frontpage-news .single-img.active {
  transition: 0.5s cubic-bezier(0.7, 0.3, 0, 1);
  transform: translateX(0px);
  z-index: 5;
  width: 100%;
}
.frontpage-news .single-img.exiting {
  z-index: 4;
  transform: translateX(-60px);
  transition: 0.5s cubic-bezier(0.7, 0.3, 0, 1);
}
.frontpage-news .single-news:before {
  background-color: #525252;
  height: 3px;
  content: "";
  display: block;
  margin-bottom: 16px;
}
@media (min-width: 0px) and (max-width: 479px) {
  .frontpage-news .single-news:before {
    width: 31.5%;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .frontpage-news .single-news:before {
    width: 33.5%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .frontpage-news .single-news:before {
    display: none;
  }
}
@media (min-width: 1200px) and (max-width: 9999px) {
  .frontpage-news .single-news:before {
    width: 41%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .frontpage-news .single-news:before {
    width: 41%;
  }
}
@media (min-width: 1580px) and (max-width: 9999px) {
  .frontpage-news .single-news:before {
    width: 25.3%;
  }
}
.frontpage-news .single-news a {
  display: flex;
  color: #fff;
  text-decoration: none;
  padding-bottom: 50px;
}
.frontpage-news .single-news a.active .meta {
  color: #fff;
}
.frontpage-news .single-news a.active:before {
  background-color: #fff;
}
.frontpage-news .single-news a.active .title {
  border-bottom: solid 1px #fff;
}
.frontpage-news .single-news .img {
  display: none;
  width: 33.3333333333%;
  margin: 0px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .frontpage-news .single-news .img {
    display: inline-block;
  }
}
.frontpage-news .single-news .content {
  display: block;
  box-sizing: border-box;
  width: 100%;
}
@media (min-width: 768px) and (max-width: 991px) {
  .frontpage-news .single-news .content {
    padding-left: 30px;
    width: 66.6666666667%;
  }
}
.frontpage-news .single-news .meta {
  color: #adaba6;
  text-transform: uppercase;
  font-family: "nimbus-sans", sans-serif;
  letter-spacing: 0.1em;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.frontpage-news .single-news .meta * {
  vertical-align: top;
  font-size: 13px;
  line-height: 1.5em;
  margin: 0px;
}
.frontpage-news .single-news .meta .date {
  margin-left: auto;
}
.frontpage-news .single-news .title {
  font-family: "nimbus-sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  text-transform: none;
  line-height: 28px;
  letter-spacing: 0.01em;
  border-bottom: solid 1px transparent;
  transition: all 0.2s;
  display: inline;
}

.frontpage-links {
  padding-top: 120px;
}
@media (min-width: 0px) and (max-width: 479px) {
  .frontpage-links {
    padding-top: 0px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .frontpage-links {
    padding-top: 0px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .frontpage-links {
    padding-top: 20px;
  }
}
.frontpage-links .link-section-wrapper {
  overflow: visible;
  position: relative;
  margin-bottom: 215px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .frontpage-links .link-section-wrapper {
    margin-bottom: 120px;
  }
}
@media (min-width: 0px) and (max-width: 479px) {
  .frontpage-links .link-section-wrapper {
    margin-bottom: 0px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .frontpage-links .link-section-wrapper {
    margin-bottom: 0px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .frontpage-links .link-section-wrapper {
    margin-bottom: 0px;
  }
}
.frontpage-links .link-section-wrapper .link-section {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
  height: 100%;
}
.frontpage-links .link-section-wrapper .section-header {
  background: white;
  position: relative;
  box-sizing: border-box;
  width: 33.3333333333%;
  float: left;
}
.frontpage-links .link-section-wrapper .section-header:before {
  content: "";
  display: block;
  padding-top: 50%;
}
@media (min-width: 480px) and (max-width: 767px) {
  .frontpage-links .link-section-wrapper .section-header {
    width: 100% !important;
    transform: none !important;
    margin: 0px !important;
    background: transparent;
  }
  .frontpage-links .link-section-wrapper .section-header:before {
    padding-top: 200px;
  }
}
@media (min-width: 0px) and (max-width: 479px) {
  .frontpage-links .link-section-wrapper .section-header {
    width: 100% !important;
    transform: none !important;
    margin: 0px !important;
    background: transparent;
  }
  .frontpage-links .link-section-wrapper .section-header:before {
    padding-top: 200px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .frontpage-links .link-section-wrapper .section-header {
    width: 100% !important;
    transform: none !important;
    margin: 0px !important;
    background: transparent;
  }
  .frontpage-links .link-section-wrapper .section-header:before {
    padding-top: 200px;
  }
}
.frontpage-links .link-section-wrapper .section-header .section-title {
  display: flex;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  padding: 0px 40px;
  margin: 0px;
  font-size: 30px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #000010;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .frontpage-links .link-section-wrapper .section-header .section-title {
    font-size: 24px;
  }
}
@media (min-width: 0px) and (max-width: 479px) {
  .frontpage-links .link-section-wrapper .section-header .section-title {
    padding: 0px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .frontpage-links .link-section-wrapper .section-header .section-title {
    padding: 0px;
  }
}
.frontpage-links .link-section-wrapper .img-box, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(2), .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(3), .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(5), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(3), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8) {
  float: left;
  width: 33.3333333333%;
}
.frontpage-links .link-section-wrapper .img-box:before, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(2):before, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(3):before, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(5):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(3):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8):before {
  padding-top: 75%;
}
.frontpage-links .link-section-wrapper .img-box.small, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(2), .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(3), .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(5), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(3), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8) {
  width: 16.67%;
}
@media (min-width: 480px) and (max-width: 767px) {
  .frontpage-links .link-section-wrapper .img-box, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(2), .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(3), .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(5), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(3), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8) {
    width: 100% !important;
    transform: none !important;
    margin-left: 0px !important;
    margin-right: 0px !important;
    margin-top: 0px !important;
  }
  .frontpage-links .link-section-wrapper .img-box:before, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(2):before, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(3):before, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(5):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(3):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8):before {
    padding-top: 75% !important;
  }
}
@media (min-width: 0px) and (max-width: 479px) {
  .frontpage-links .link-section-wrapper .img-box, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(2), .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(3), .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(5), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(3), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8) {
    width: 100% !important;
    transform: none !important;
    margin-left: 0px !important;
    margin-right: 0px !important;
    margin-top: 0px !important;
  }
  .frontpage-links .link-section-wrapper .img-box:before, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(2):before, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(3):before, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(5):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(3):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8):before {
    padding-top: 75% !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .frontpage-links .link-section-wrapper .img-box, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(2), .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(3), .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(5), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(3), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8) {
    width: calc(50% - 10px) !important;
    transform: none !important;
    margin-top: 0px !important;
    margin-bottom: 20px !important;
  }
  .frontpage-links .link-section-wrapper .img-box:nth-of-type(odd), .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(odd):nth-of-type(2), .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(odd):nth-of-type(3), .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(odd):nth-of-type(5), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(odd):nth-of-type(1), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(odd):nth-of-type(3), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(odd):nth-of-type(6), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(odd):nth-of-type(7), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(odd):nth-of-type(8) {
    margin-right: 10px !important;
    margin-left: 0px !important;
  }
  .frontpage-links .link-section-wrapper .img-box:nth-of-type(even), .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(even):nth-of-type(2), .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(even):nth-of-type(3), .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(even):nth-of-type(5), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(even):nth-of-type(1), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(even):nth-of-type(3), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(even):nth-of-type(6), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(even):nth-of-type(7), .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(even):nth-of-type(8) {
    margin-left: 10px !important;
    margin-right: 0px !important;
  }
  .frontpage-links .link-section-wrapper .img-box:before, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(2):before, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(3):before, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(5):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(3):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8):before {
    padding-top: 75% !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .frontpage-links .link-section-wrapper .img-box .title, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(2) .title, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(3) .title, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(5) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(3) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8) .title {
    padding: 0px 20px;
  }
  .frontpage-links .link-section-wrapper .img-box .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(2) .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(3) .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(5) .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1) .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(3) .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6) .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7) .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8) .subtitle {
    padding: 0px 20px;
    font-size: 10px;
  }
  .frontpage-links .link-section-wrapper .img-box.small .title, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(2) .title, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(3) .title, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(5) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(3) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7) .title, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8) .title {
    font-size: 14px;
  }
  .frontpage-links .link-section-wrapper .img-box.small .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(2) .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(3) .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(5) .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1) .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(3) .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6) .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7) .subtitle, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8) .subtitle {
    font-size: 10px;
  }
}
.frontpage-links .link-section-wrapper:nth-of-type(1) .section-header {
  margin-left: 16.67%;
}
.frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1) {
  transform: translateY(50%);
  margin-left: 16.67%;
}
.frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(3) {
  align-self: flex-end;
  margin-left: 16.67%;
}
.frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(4) {
  margin-left: 16.67%;
  margin-top: 16.67%;
}
.frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(5) {
  margin-left: 16.67%;
}
.frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6) {
  margin-left: 50%;
}
.frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7) {
  margin-left: 16.67%;
}
.frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8) {
  margin-left: 33.3333333333%;
}
.frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(1):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(3):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(6):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(7):before, .frontpage-links .link-section-wrapper:nth-of-type(1) .img-box:nth-of-type(8):before {
  padding-top: 100%;
}
.frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(1) {
  margin-left: 33.3333333333%;
}
.frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(2) {
  margin-left: 16.67%;
  margin-top: 8.3333333333%;
}
.frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(3) {
  transform: translateY(-50%);
}
.frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(4) {
  margin-top: 8.3333333333%;
}
.frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(5) {
  margin-left: 33.3333333333%;
}
.frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(2):before, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(3):before, .frontpage-links .link-section-wrapper:nth-of-type(2) .img-box:nth-of-type(5):before {
  padding-top: 100%;
}

.now-calendar {
  background-color: #fefcf6;
  position: fixed;
  top: 0;
  width: 100vw;
  height: 0vh;
  overflow-x: hidden;
  transition: height 500ms cubic-bezier(0.77, 0, 0.175, 1);
  background: #fff;
  z-index: 30;
  display: none;
}
.now-calendar-open .now-calendar {
  height: 100vh;
}
.now-calendar-open .now-calendar .closeNow {
  display: block;
  opacity: 1;
}
.now-calendar .closeNow {
  opacity: 0;
  background: transparent;
  position: fixed;
  left: 85%;
  transform: translateX(-50%);
  z-index: 5;
  top: 25px;
  width: 87px;
  transition: 0.5s;
}
.now-calendar .closeNow:hover, .now-calendar .closeNow:focus {
  color: #c81d31 !important;
  background: #f2efea;
}
.now-calendar .closeNow svg {
  width: 17px;
  height: 17px;
}
.now-calendar .closeNow .close-wrapper {
  background: transparent;
  padding: 17px 17px 15px;
}
.now-calendar-scrolled .now-calendar .closeNow .close-wrapper {
  background: #f1efe9;
}
.has-cookie-warning .now-calendar .closeNow {
  margin-top: 94px;
}
@media (min-width: 0px) and (max-width: 479px) {
  .now-calendar .closeNow {
    top: 7px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .now-calendar .closeNow {
    top: 7px;
  }
}
.now-calendar .now-header {
  margin-bottom: 150px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .now-calendar .now-header {
    margin-bottom: 80px;
  }
}
@media (min-width: 0px) and (max-width: 479px) {
  .now-calendar .now-header {
    margin-bottom: 50px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .now-calendar .now-header {
    margin-bottom: 50px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .now-calendar .now-header {
    margin-bottom: 75px;
  }
}
.has-cookie-warning .now-calendar .now-header {
  margin-top: 94px;
}
.now-calendar .now-header .main-logo {
  height: 100px;
  display: flex;
  align-items: center;
}
@media (min-width: 0px) and (max-width: 479px) {
  .now-calendar .now-header .main-logo {
    width: auto;
    height: 64px;
    margin-bottom: 30px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .now-calendar .now-header .main-logo {
    width: auto;
    height: 64px;
    margin-bottom: 30px;
  }
}
.now-calendar .now-header h2 {
  text-align: center;
  font-size: 42px;
  line-height: 1.2619047619em;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-family: "nimbus-sans-extended", sans-serif;
  font-weight: 300;
  font-size: 30px;
}
@media (min-width: 0px) and (max-width: 479px) {
  .now-calendar .now-header {
    width: 100%;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .now-calendar .now-header {
    width: 100%;
  }
}
.now-calendar .now-content {
  width: calc(100% - 150px);
  margin: 0 auto;
}
@media (min-width: 1200px) and (max-width: 9999px) {
  .now-calendar .now-content {
    width: calc(100% - 5vw);
  }
}
@media (min-width: 1580px) and (max-width: 9999px) {
  .now-calendar .now-content {
    width: calc(100% - 150px);
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .now-calendar .now-content {
    width: 95%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .now-calendar .now-content {
    width: 90%;
  }
}
@media (min-width: 0px) and (max-width: 479px) {
  .now-calendar .now-content {
    width: 90%;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .now-calendar .now-content {
    width: 90%;
  }
}
.now-calendar .now-content .week {
  display: flex;
  justify-content: space-between;
  border-bottom: 5px solid #f1efe9;
  padding-bottom: 125px;
  margin-bottom: 100px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .now-calendar .now-content .week {
    padding-bottom: 100px;
  }
}
@media (min-width: 0px) and (max-width: 479px) {
  .now-calendar .now-content .week {
    flex-wrap: wrap;
    padding-bottom: 0px;
    margin-bottom: 40px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .now-calendar .now-content .week {
    flex-wrap: wrap;
    padding-bottom: 0px;
    margin-bottom: 40px;
  }
}
.now-calendar .now-content .day {
  flex: 0 1 11.1111111111%;
  box-sizing: border-box;
}
@media (min-width: 1580px) and (max-width: 9999px) {
  .now-calendar .now-content .day {
    flex: 0 1 12.5%;
  }
}
@media (min-width: 0px) and (max-width: 479px) {
  .now-calendar .now-content .day {
    width: 100%;
    flex: 0 0 auto;
    padding-left: 0px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .now-calendar .now-content .day {
    width: 100%;
    flex: 0 0 auto;
    padding-left: 0px;
  }
}
.now-calendar .now-content .day:first-child {
  padding-left: 0px;
}
.now-calendar .now-content .day.prev {
  opacity: 0.7;
  pointer-events: none;
}
.now-calendar .now-content .day.current .date {
  color: #002597;
}
.now-calendar .now-content .day.current .date .date-month {
  color: #002597;
}
@media (min-width: 0px) and (max-width: 479px) {
  .now-calendar .now-content .day {
    margin-bottom: 5px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .now-calendar .now-content .day {
    margin-bottom: 5px;
  }
}
.now-calendar .now-content .date {
  color: #000;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid #76746F;
  padding-bottom: 15px;
  margin: 0px 0px 20px;
}
.now-calendar .now-content .date .date-numeral {
  font-weight: normal;
  display: flex;
  font-family: "nimbus-sans-extended", sans-serif;
  font-size: 30px;
  margin: 0px 10px 0px 0px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .now-calendar .now-content .date .date-numeral {
    font-size: 18px;
    text-align: left;
    width: 100%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .now-calendar .now-content .date .date-numeral {
    font-size: 22px;
  }
}
.now-calendar .now-content .date .date-month {
  color: #76746F;
}
.now-calendar .now-content .date .date-weekday {
  text-align: right;
  margin: 0px;
  font-family: "nimbus-sans", sans-serif;
  font-weight: normal;
  font-size: 18px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .now-calendar .now-content .date .date-weekday {
    font-size: 16px;
    text-align: left;
    width: 100%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .now-calendar .now-content .date .date-weekday {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .now-calendar .now-content .date .date-weekday .letter {
    display: none;
  }
  .now-calendar .now-content .date .date-weekday .letter:nth-child(1), .now-calendar .now-content .date .date-weekday .letter:nth-child(2), .now-calendar .now-content .date .date-weekday .letter:nth-child(3) {
    display: inline;
  }
  [lang=fi] .now-calendar .now-content .date .date-weekday .letter:nth-child(3) {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .now-calendar .now-content .date .date-weekday .letter {
    display: none;
  }
  .now-calendar .now-content .date .date-weekday .letter:nth-child(1), .now-calendar .now-content .date .date-weekday .letter:nth-child(2), .now-calendar .now-content .date .date-weekday .letter:nth-child(3) {
    display: inline;
  }
  [lang=fi] .now-calendar .now-content .date .date-weekday .letter:nth-child(3) {
    display: none;
  }
}
@media (min-width: 1200px) and (max-width: 9999px) {
  .now-calendar .now-content .date .date-weekday .letter {
    display: none;
  }
  .now-calendar .now-content .date .date-weekday .letter:nth-child(1), .now-calendar .now-content .date .date-weekday .letter:nth-child(2), .now-calendar .now-content .date .date-weekday .letter:nth-child(3) {
    display: inline;
  }
  [lang=fi] .now-calendar .now-content .date .date-weekday .letter:nth-child(3) {
    display: none;
  }
}
@media (min-width: 1580px) and (max-width: 9999px) {
  .now-calendar .now-content .date .date-weekday .letter {
    display: inline !important;
  }
}
.now-calendar .now-content .tours {
  margin-bottom: 25px;
}
.now-calendar .now-content .tours + .events {
  padding-top: 25px;
  border-top: 1px solid #f1efe9;
}
.now-calendar .now-content .events {
  margin-bottom: 25px;
}
.now-calendar .now-content .tour, .now-calendar .now-content .event {
  font-family: "nimbus-sans", sans-serif;
  font-size: 14px;
  line-height: 1.2857142857em;
  margin-bottom: 20px;
  display: block;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: #000010;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .now-calendar .now-content .tour, .now-calendar .now-content .event {
    font-size: 12px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .now-calendar .now-content .tour, .now-calendar .now-content .event {
    font-size: 12px;
  }
}
.now-calendar .now-content .tour .title, .now-calendar .now-content .event .title {
  border-bottom: solid 1px transparent;
}
.now-calendar .now-content .tour:hover:not(.title-hilight) .title, .now-calendar .now-content .tour:focus:not(.title-hilight) .title, .now-calendar .now-content .event:hover:not(.title-hilight) .title, .now-calendar .now-content .event:focus:not(.title-hilight) .title {
  color: #002597 !important;
  border-bottom: solid 1px #002597;
}
.now-calendar .now-content .tour:hover .meta, .now-calendar .now-content .tour:focus .meta, .now-calendar .now-content .event:hover .meta, .now-calendar .now-content .event:focus .meta {
  color: #002597 !important;
}
.now-calendar .now-content .tour.closed, .now-calendar .now-content .event.closed {
  pointer-events: none;
}
.now-calendar .now-content .tour.closed, .now-calendar .now-content .tour.closed .title, .now-calendar .now-content .tour.closed .meta, .now-calendar .now-content .event.closed, .now-calendar .now-content .event.closed .title, .now-calendar .now-content .event.closed .meta {
  color: #adaba6 !important;
}
.now-calendar .now-content .tour.title-hilight .title, .now-calendar .now-content .event.title-hilight .title {
  transform: translateX(-7px);
}
.now-calendar .now-content .tour.title-hilight .title span, .now-calendar .now-content .event.title-hilight .title span {
  line-height: 1.4285714286em;
  padding: 3px 7px;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}
.now-calendar .now-content .tour.title-hilight .title:after, .now-calendar .now-content .event.title-hilight .title:after {
  content: "";
  margin-bottom: 8px;
  display: table;
  width: 100%;
}
.now-calendar .now-content .tour .title, .now-calendar .now-content .event .title {
  display: block;
  margin: 0px 0px 5px;
  font-weight: bold;
  font-size: 14px;
}
.now-calendar .now-content .tour .title.exception, .now-calendar .now-content .event .title.exception {
  color: #c81d31 !important;
}
.now-calendar .now-content .tour .meta, .now-calendar .now-content .event .meta {
  color: #76746F;
  font-weight: 600;
}
.now-calendar .now-content .tour .meta *, .now-calendar .now-content .event .meta * {
  margin: 0px;
}
.now-calendar .now-content .tour .city, .now-calendar .now-content .event .city {
  font-weight: 400;
}
.now-calendar .now-content .tour svg, .now-calendar .now-content .event svg {
  fill: currentColor;
}
.now-calendar .now-content .tour .closed-icon-container, .now-calendar .now-content .event .closed-icon-container {
  position: relative;
  width: 100%;
  max-width: 280px;
}
.now-calendar .now-content .tour .closed-icon-container:before, .now-calendar .now-content .event .closed-icon-container:before {
  content: "";
  padding-top: 18%;
  display: block;
}
.now-calendar .now-content .tour .closed-icon-container .closed-icon, .now-calendar .now-content .event .closed-icon-container .closed-icon {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
.single-news .page-header {
  position: relative;
}
.single-news .page-meta {
  margin-left: 16.6666666667%;
  width: 83.33333%;
  position: absolute;
  top: -57px;
  left: 0px;
}
@media (min-width: 0px) and (max-width: 479px) {
  .single-news .page-meta {
    width: 100%;
    margin-left: 0px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .single-news .page-meta {
    width: 100%;
    margin-left: 0px;
  }
}
@media (min-width: 0px) and (max-width: 479px) {
  .single-news .page-meta {
    top: -20px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .single-news .page-title h1 {
    font-size: 34px;
    line-height: 1.4;
  }
}
@media (min-width: 0px) and (max-width: 479px) {
  .single-news .page-title h1 {
    font-size: 26px;
    line-height: 1.4;
  }
}
.single-news .news-title {
  margin-bottom: 105px;
  margin-top: 0px;
}
.single-news .news-content {
  margin-bottom: 100px;
}
.single-news .news-text {
  margin-top: 150px;
}
.single-news .news-text.no-thumbnail {
  margin-top: 50px;
}

.big-event-header {
  height: 450px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 0px) and (max-width: 479px) {
  .big-event-header {
    height: 350px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .big-event-header {
    height: 350px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .big-event-header {
    height: 350px;
  }
}
.big-event-header .logo {
  max-width: 95%;
}
.big-event-header .logo svg, .big-event-header .logo img {
  display: block;
  max-height: 180px;
  width: auto;
  max-width: 100%;
}

.big-event-navigation.second-level-row {
  display: block;
}
.big-event-navigation.second-level-row .second-level {
  margin-top: 0px;
  text-align: center;
}
.big-event-navigation.second-level-row .second-level li a {
  border-bottom: solid 1px transparent;
  margin: 15px;
  padding: 0;
}
.big-event-navigation.second-level-row .second-level li a:hover, .big-event-navigation.second-level-row .second-level li a:focus {
  border-bottom: solid 1px #fff;
}
@media (min-width: 0px) and (max-width: 479px) {
  .big-event-navigation.second-level-row .second-level {
    padding: 10px 20px;
    text-align: left;
  }
  .big-event-navigation.second-level-row .second-level li {
    margin-left: 0;
    padding-left: 0;
  }
  .big-event-navigation.second-level-row .second-level li a {
    padding: 0px;
    margin: 10px !important;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .big-event-navigation.second-level-row .second-level {
    padding: 10px 20px;
    text-align: left;
  }
  .big-event-navigation.second-level-row .second-level li {
    margin-left: 0;
    padding-left: 0;
  }
  .big-event-navigation.second-level-row .second-level li a {
    padding: 0px;
    margin: 10px !important;
  }
}

.big-event-single-meta {
  color: #000010;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 14px;
  line-height: 1;
  margin: 0px;
  font-family: "nimbus-sans", sans-serif;
  margin-top: 35px;
}

.single-big_event main {
  margin-bottom: 0px;
}

.big-event-main {
  margin-bottom: 20px;
}

.big-event-white-container .title {
  text-transform: uppercase;
  font-family: "nimbus-sans-extended", sans-serif;
  color: #000010;
  margin-top: 0px;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.big-event-white-container .linked-text {
  font-size: 14px;
  margin-bottom: 50px;
  font-weight: 300;
  line-height: 1.5em;
  letter-spacing: 0.03em;
}

.program-filter-container {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-bottom: 1rem;
}
.program-filter-container .chosen-container {
  width: auto !important;
  background-color: #fff;
}
.program-filter-container .chosen-container .chosen-single, .program-filter-container .chosen-container-single .chosen-single {
  border-left: 1px solid #d6d4cf !important;
  height: 40px !important;
}
.program-filter-container .chosen-container .chosen-single span, .program-filter-container .chosen-container-single .chosen-single span {
  padding: 5px;
}

.big-event-footer {
  margin-top: 150px;
  padding: 75px 0px;
  background-color: #000000;
  color: #ffffff !important;
  border-bottom: 1px solid #3a3a3a;
}
.big-event-footer p, .big-event-footer .newsletter {
  font-size: 14px;
  line-height: 1.5em;
  letter-spacing: 0.03em;
  margin-bottom: 0px;
}
.big-event-footer a {
  color: #ffffff !important;
  text-decoration: none;
}
.big-event-footer a:hover, .big-event-footer a:focus {
  color: #c81d31 !important;
}
.big-event-footer .title {
  font-weight: 600;
  margin-top: 0px;
}
@media (min-width: 0px) and (max-width: 479px) {
  .big-event-footer .title {
    margin-bottom: 5px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .big-event-footer .title {
    margin-bottom: 5px;
  }
}
@media (min-width: 0px) and (max-width: 479px) {
  .big-event-footer .footer-col {
    margin-bottom: 30px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .big-event-footer .footer-col {
    margin-bottom: 30px;
  }
}
.big-event-footer .hidden-footer-col {
  margin-top: 30px;
}
.big-event-footer .sponsor-logos {
  display: flex;
  justify-content: space-between;
}
@media (min-width: 0px) and (max-width: 479px) {
  .big-event-footer .sponsor-logos {
    flex-direction: column;
  }
  .big-event-footer .sponsor-logos a {
    padding-bottom: 20px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .big-event-footer .sponsor-logos {
    flex-direction: column;
  }
  .big-event-footer .sponsor-logos a {
    padding-bottom: 20px;
  }
}
.big-event-footer .sponsor-logos a {
  max-height: 100px;
  max-width: 150px;
}

.big-events-single-events {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
@media (min-width: 1200px) and (max-width: 9999px) {
  .big-events-single-events {
    width: 66.65%;
    margin: auto;
  }
}
.big-events-single-events .single-related-mega {
  margin-bottom: 4rem;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
}
.big-events-single-events .single-related-mega .articletitle {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 20px;
  margin-right: 5px;
}
.big-events-single-events .single-related-mega .info-col-wrapper .archive-text {
  color: #B5B3AF;
  padding-bottom: 15px;
  margin-right: 5px;
}
.big-events-single-events .single-related-mega .btn-wrapper {
  margin-top: auto;
}
.big-events-single-events .single-related-mega .location .citylocation {
  min-height: 20px;
  margin-top: 5px;
  margin-bottom: 5px;
  font-family: nimbus-sans-extended;
  color: #797773;
}
.big-events-single-events .single-related-mega .imagediv {
  display: block;
}
.big-events-single-events .single-related-mega .imagediv .img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}
.big-events-single-events .single-related-mega .imagediv .img::after {
  content: "";
  display: block;
  padding-top: 70%;
}
.big-events-single-events .single-related-mega.hidden {
  display: none;
}
.big-events-single-events .calendardate {
  margin-top: 4px;
  margin-bottom: 3px;
  font-size: 24px;
  color: #B5B3AF;
}
.big-events-single-events .calendardate .day {
  color: #797773;
  font-family: nimbus-sans-extended;
}
.big-events-single-events .calendardate .month {
  color: #B5B3AF;
  font-family: nimbus-sans-extended;
}
.big-events-single-events .city {
  background-color: inherit;
  width: 234px;
  height: 60px;
  font-family: nimbus-sans;
  border: solid 1px #000010;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .big-events-single-events .city {
    margin-left: 6%;
  }
}
@media (min-width: 1200px) and (max-width: 9999px) {
  .big-events-single-events .city {
    margin-left: 6%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .big-events-single-events .city {
    margin-left: 3.1%;
  }
}
.big-events-single-events .eventcategory {
  background-color: inherit;
  width: 234px;
  height: 60px;
  font-family: nimbus-sans;
  border: solid 1px #000010;
}
.big-events-single-events .weekday {
  background-color: inherit;
  width: 234px;
  height: 60px;
  font-family: nimbus-sans;
  border: solid 1px #000010;
}

.single-big-filter-item {
  overflow: visible;
}

.cookie-switch input, #moove_gdpr_cookie_modal .switch input {
  display: block !important;
  height: 20px !important;
  width: 20px !important;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-tab-main .moove-gdpr-status-bar span.cookie-slider, #moove_gdpr_cookie_modal .moove-gdpr-modal-content.moove_gdpr_modal_theme_v2 .moove-gdpr-tab-main .moove-gdpr-status-bar span.slider {
  display: none !important;
}

#moove_gdpr_cookie_info_bar {
  z-index: 9999999 !important;
  background-color: rgba(0, 0, 0, 0.9) !important;
  background: rgba(0, 0, 0, 0.9) !important;
  padding: 30px 35px;
  font-size: 16px;
  color: white;
  box-sizing: border-box;
}
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container {
  box-sizing: border-box;
  width: 100%;
  padding: 0 !important;
}
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content {
  justify-content: space-between;
}
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-button-holder .mgbutton {
  background: #000;
  color: #ffffff !important;
  border-radius: 0px !important;
  border: 1px solid white !important;
}
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-button-holder .mgbutton:hover {
  background: #fff !important;
  color: #000 !important;
}
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-button-holder .mgbutton:focus {
  background: #fff !important;
  opacity: 1 !important;
  color: #000 !important;
}
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-button-holder .change-settings-button {
  background: black !important;
  color: white !important;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder a.mgbutton.moove-gdpr-modal-save-settings:focus, #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton.moove-gdpr-modal-save-settings:focus {
  background: #fff !important;
  opacity: 1 !important;
  color: #000 !important;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder .moove-gdpr-modal-allow-all:focus {
  background: #fff !important;
  opacity: 1 !important;
  color: #000 !important;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-close:focus {
  border: 3px solid red;
}

.skip-to-content {
  position: absolute;
  top: 102px;
}
.skip-to-content .skip-to-content-show {
  color: #000;
  padding: 8px 15px;
  text-decoration: none;
  display: none;
  font-size: 20px;
}

.accessible .skip-to-content:focus {
  background-color: #fff;
  border: solid 1px #000;
  z-index: 10;
}
.accessible .skip-to-content:focus .skip-to-content-show {
  display: inline-block !important;
  background-color: #fff;
}
.accessible .search-btn:focus, .accessible .lang-btn:focus, .accessible .closeSearch:focus {
  outline: 1px dotted #212121;
  outline: 5px auto -webkit-focus-ring-color;
}
.accessible .searchform-wrapper .searchform button:focus {
  outline: 1px dotted #212121 !important;
  outline: 5px auto -webkit-focus-ring-color !important;
}
.accessible .now-calendar .closeNow:focus {
  outline: 1px dotted #212121 !important;
  outline: 5px auto -webkit-focus-ring-color !important;
}
.accessible .nav-wrapper .burger-wrapper .hamburger:focus {
  outline: 1px dotted #212121 !important;
  outline: 5px auto -webkit-focus-ring-color !important;
}

.hide-scrollbar main {
  visibility: hidden;
}
.hide-scrollbar .main-bar {
  visibility: hidden;
}
.hide-scrollbar .second-level-row {
  visibility: hidden;
}
.hide-scrollbar .main-footer {
  visibility: hidden;
}

/**
 * .wysiwyg targets your page and you should use it where TinyMce-editor content is showed
 * #tinymce targets WP-TinyMce Editor
 */
/* normalize.css v3.0.0 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
  word-break: break-word;
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0;
}

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8+, and Opera
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield; /* 1 */ /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/* Screen size selector */ /* Column system */
[class*=col-].row {
  font-size: 0.00000001%;
}

[class*=col-] {
  overflow: hidden;
  font-size: medium;
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  min-height: 1px;
  vertical-align: top;
}
[class*=col-] img, [class*=col-] object, [class*=col-] video, [class*=col-] figure {
  max-width: 100%;
  height: auto;
  vertical-align: top;
  line-height: 1;
}

.col-1 {
  width: calc(8.3333333333% - 30px);
  margin: 0 15px;
}

.col-1-wide {
  width: 8.3333333333%;
  margin: 0;
}

.col-1-wide-left {
  width: calc(8.3333333333% - 15px);
  margin: 0 15px 0 0;
}

.col-1-wide-right {
  width: calc(8.3333333333% - 15px);
  margin: 0 0 0 15px;
}

.col-2 {
  width: calc(16.6666666667% - 30px);
  margin: 0 15px;
}

.col-2-wide {
  width: 16.6666666667%;
  margin: 0;
}

.col-2-wide-left {
  width: calc(16.6666666667% - 15px);
  margin: 0 15px 0 0;
}

.col-2-wide-right {
  width: calc(16.6666666667% - 15px);
  margin: 0 0 0 15px;
}

.col-3 {
  width: calc(25% - 30px);
  margin: 0 15px;
}

.col-3-wide {
  width: 25%;
  margin: 0;
}

.col-3-wide-left {
  width: calc(25% - 15px);
  margin: 0 15px 0 0;
}

.col-3-wide-right {
  width: calc(25% - 15px);
  margin: 0 0 0 15px;
}

.col-4 {
  width: calc(33.3333333333% - 30px);
  margin: 0 15px;
}

.col-4-wide {
  width: 33.3333333333%;
  margin: 0;
}

.col-4-wide-left {
  width: calc(33.3333333333% - 15px);
  margin: 0 15px 0 0;
}

.col-4-wide-right {
  width: calc(33.3333333333% - 15px);
  margin: 0 0 0 15px;
}

.col-5 {
  width: calc(41.6666666667% - 30px);
  margin: 0 15px;
}

.col-5-wide {
  width: 41.6666666667%;
  margin: 0;
}

.col-5-wide-left {
  width: calc(41.6666666667% - 15px);
  margin: 0 15px 0 0;
}

.col-5-wide-right {
  width: calc(41.6666666667% - 15px);
  margin: 0 0 0 15px;
}

.col-6 {
  width: calc(50% - 30px);
  margin: 0 15px;
}

.col-6-wide {
  width: 50%;
  margin: 0;
}

.col-6-wide-left {
  width: calc(50% - 15px);
  margin: 0 15px 0 0;
}

.col-6-wide-right {
  width: calc(50% - 15px);
  margin: 0 0 0 15px;
}

.col-7 {
  width: calc(58.3333333333% - 30px);
  margin: 0 15px;
}

.col-7-wide {
  width: 58.3333333333%;
  margin: 0;
}

.col-7-wide-left {
  width: calc(58.3333333333% - 15px);
  margin: 0 15px 0 0;
}

.col-7-wide-right {
  width: calc(58.3333333333% - 15px);
  margin: 0 0 0 15px;
}

.col-8 {
  width: calc(66.6666666667% - 30px);
  margin: 0 15px;
}

.col-8-wide {
  width: 66.6666666667%;
  margin: 0;
}

.col-8-wide-left {
  width: calc(66.6666666667% - 15px);
  margin: 0 15px 0 0;
}

.col-8-wide-right {
  width: calc(66.6666666667% - 15px);
  margin: 0 0 0 15px;
}

.col-9 {
  width: calc(75% - 30px);
  margin: 0 15px;
}

.col-9-wide {
  width: 75%;
  margin: 0;
}

.col-9-wide-left {
  width: calc(75% - 15px);
  margin: 0 15px 0 0;
}

.col-9-wide-right {
  width: calc(75% - 15px);
  margin: 0 0 0 15px;
}

.col-10 {
  width: calc(83.3333333333% - 30px);
  margin: 0 15px;
}

.col-10-wide {
  width: 83.3333333333%;
  margin: 0;
}

.col-10-wide-left {
  width: calc(83.3333333333% - 15px);
  margin: 0 15px 0 0;
}

.col-10-wide-right {
  width: calc(83.3333333333% - 15px);
  margin: 0 0 0 15px;
}

.col-11 {
  width: calc(91.6666666667% - 30px);
  margin: 0 15px;
}

.col-11-wide {
  width: 91.6666666667%;
  margin: 0;
}

.col-11-wide-left {
  width: calc(91.6666666667% - 15px);
  margin: 0 15px 0 0;
}

.col-11-wide-right {
  width: calc(91.6666666667% - 15px);
  margin: 0 0 0 15px;
}

.col-12 {
  width: calc(100% - 30px);
  margin: 0 15px;
}

.col-12-wide {
  width: 100%;
  margin: 0;
}

.col-12-wide-left {
  width: calc(100% - 15px);
  margin: 0 15px 0 0;
}

.col-12-wide-right {
  width: calc(100% - 15px);
  margin: 0 0 0 15px;
}

.col-pull-0 {
  right: 0%;
}

.col-push-0 {
  left: 0%;
}

.col-offset-0 {
  margin-left: calc(0% + 15px);
}

.col-offset-half-wide-0 {
  margin-left: calc(0% + 15px);
}

.col-offset-wide-0 {
  margin-left: calc(0%);
}

.col-pull-1 {
  right: 8.3333333333%;
}

.col-push-1 {
  left: 8.3333333333%;
}

.col-offset-1 {
  margin-left: calc(8.3333333333% + 15px);
}

.col-offset-half-wide-1 {
  margin-left: calc(8.3333333333% + 15px);
}

.col-offset-wide-1 {
  margin-left: calc(8.3333333333%);
}

.col-pull-2 {
  right: 16.6666666667%;
}

.col-push-2 {
  left: 16.6666666667%;
}

.col-offset-2 {
  margin-left: calc(16.6666666667% + 15px);
}

.col-offset-half-wide-2 {
  margin-left: calc(16.6666666667% + 15px);
}

.col-offset-wide-2 {
  margin-left: calc(16.6666666667%);
}

.col-pull-3 {
  right: 25%;
}

.col-push-3 {
  left: 25%;
}

.col-offset-3 {
  margin-left: calc(25% + 15px);
}

.col-offset-half-wide-3 {
  margin-left: calc(25% + 15px);
}

.col-offset-wide-3 {
  margin-left: calc(25%);
}

.col-pull-4 {
  right: 33.3333333333%;
}

.col-push-4 {
  left: 33.3333333333%;
}

.col-offset-4 {
  margin-left: calc(33.3333333333% + 15px);
}

.col-offset-half-wide-4 {
  margin-left: calc(33.3333333333% + 15px);
}

.col-offset-wide-4 {
  margin-left: calc(33.3333333333%);
}

.col-pull-5 {
  right: 41.6666666667%;
}

.col-push-5 {
  left: 41.6666666667%;
}

.col-offset-5 {
  margin-left: calc(41.6666666667% + 15px);
}

.col-offset-half-wide-5 {
  margin-left: calc(41.6666666667% + 15px);
}

.col-offset-wide-5 {
  margin-left: calc(41.6666666667%);
}

.col-pull-6 {
  right: 50%;
}

.col-push-6 {
  left: 50%;
}

.col-offset-6 {
  margin-left: calc(50% + 15px);
}

.col-offset-half-wide-6 {
  margin-left: calc(50% + 15px);
}

.col-offset-wide-6 {
  margin-left: calc(50%);
}

.col-pull-7 {
  right: 58.3333333333%;
}

.col-push-7 {
  left: 58.3333333333%;
}

.col-offset-7 {
  margin-left: calc(58.3333333333% + 15px);
}

.col-offset-half-wide-7 {
  margin-left: calc(58.3333333333% + 15px);
}

.col-offset-wide-7 {
  margin-left: calc(58.3333333333%);
}

.col-pull-8 {
  right: 66.6666666667%;
}

.col-push-8 {
  left: 66.6666666667%;
}

.col-offset-8 {
  margin-left: calc(66.6666666667% + 15px);
}

.col-offset-half-wide-8 {
  margin-left: calc(66.6666666667% + 15px);
}

.col-offset-wide-8 {
  margin-left: calc(66.6666666667%);
}

.col-pull-9 {
  right: 75%;
}

.col-push-9 {
  left: 75%;
}

.col-offset-9 {
  margin-left: calc(75% + 15px);
}

.col-offset-half-wide-9 {
  margin-left: calc(75% + 15px);
}

.col-offset-wide-9 {
  margin-left: calc(75%);
}

.col-pull-10 {
  right: 83.3333333333%;
}

.col-push-10 {
  left: 83.3333333333%;
}

.col-offset-10 {
  margin-left: calc(83.3333333333% + 15px);
}

.col-offset-half-wide-10 {
  margin-left: calc(83.3333333333% + 15px);
}

.col-offset-wide-10 {
  margin-left: calc(83.3333333333%);
}

.col-pull-11 {
  right: 91.6666666667%;
}

.col-push-11 {
  left: 91.6666666667%;
}

.col-offset-11 {
  margin-left: calc(91.6666666667% + 15px);
}

.col-offset-half-wide-11 {
  margin-left: calc(91.6666666667% + 15px);
}

.col-offset-wide-11 {
  margin-left: calc(91.6666666667%);
}

.col-pull-12 {
  right: 100%;
}

.col-push-12 {
  left: 100%;
}

.col-offset-12 {
  margin-left: calc(100% + 15px);
}

.col-offset-half-wide-12 {
  margin-left: calc(100% + 15px);
}

.col-offset-wide-12 {
  margin-left: calc(100%);
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

.block-center {
  text-align: center;
}

.block-left {
  text-align: left;
}

.block-right {
  text-align: right;
}

.block-justify {
  text-align: justify;
}

.block-justify:after {
  content: "";
  width: 100%;
  display: inline-block;
  font-size: 0.000001%;
}

.col-hide {
  display: none !important;
}

.col-show {
  display: inline-block !important;
}

@media (min-width: 0px) and (max-width: 479px) {
  .col-xs-1 {
    width: calc(8.3333333333% - 30px);
    margin: 0 15px;
  }
  .col-xs-1-wide {
    width: 8.3333333333%;
    margin: 0;
  }
  .col-xs-1-wide-left {
    width: calc(8.3333333333% - 15px);
    margin: 0 15px 0 0;
  }
  .col-xs-1-wide-right {
    width: calc(8.3333333333% - 15px);
    margin: 0 0 0 15px;
  }
  .col-xs-2 {
    width: calc(16.6666666667% - 30px);
    margin: 0 15px;
  }
  .col-xs-2-wide {
    width: 16.6666666667%;
    margin: 0;
  }
  .col-xs-2-wide-left {
    width: calc(16.6666666667% - 15px);
    margin: 0 15px 0 0;
  }
  .col-xs-2-wide-right {
    width: calc(16.6666666667% - 15px);
    margin: 0 0 0 15px;
  }
  .col-xs-3 {
    width: calc(25% - 30px);
    margin: 0 15px;
  }
  .col-xs-3-wide {
    width: 25%;
    margin: 0;
  }
  .col-xs-3-wide-left {
    width: calc(25% - 15px);
    margin: 0 15px 0 0;
  }
  .col-xs-3-wide-right {
    width: calc(25% - 15px);
    margin: 0 0 0 15px;
  }
  .col-xs-4 {
    width: calc(33.3333333333% - 30px);
    margin: 0 15px;
  }
  .col-xs-4-wide {
    width: 33.3333333333%;
    margin: 0;
  }
  .col-xs-4-wide-left {
    width: calc(33.3333333333% - 15px);
    margin: 0 15px 0 0;
  }
  .col-xs-4-wide-right {
    width: calc(33.3333333333% - 15px);
    margin: 0 0 0 15px;
  }
  .col-xs-5 {
    width: calc(41.6666666667% - 30px);
    margin: 0 15px;
  }
  .col-xs-5-wide {
    width: 41.6666666667%;
    margin: 0;
  }
  .col-xs-5-wide-left {
    width: calc(41.6666666667% - 15px);
    margin: 0 15px 0 0;
  }
  .col-xs-5-wide-right {
    width: calc(41.6666666667% - 15px);
    margin: 0 0 0 15px;
  }
  .col-xs-6 {
    width: calc(50% - 30px);
    margin: 0 15px;
  }
  .col-xs-6-wide {
    width: 50%;
    margin: 0;
  }
  .col-xs-6-wide-left {
    width: calc(50% - 15px);
    margin: 0 15px 0 0;
  }
  .col-xs-6-wide-right {
    width: calc(50% - 15px);
    margin: 0 0 0 15px;
  }
  .col-xs-7 {
    width: calc(58.3333333333% - 30px);
    margin: 0 15px;
  }
  .col-xs-7-wide {
    width: 58.3333333333%;
    margin: 0;
  }
  .col-xs-7-wide-left {
    width: calc(58.3333333333% - 15px);
    margin: 0 15px 0 0;
  }
  .col-xs-7-wide-right {
    width: calc(58.3333333333% - 15px);
    margin: 0 0 0 15px;
  }
  .col-xs-8 {
    width: calc(66.6666666667% - 30px);
    margin: 0 15px;
  }
  .col-xs-8-wide {
    width: 66.6666666667%;
    margin: 0;
  }
  .col-xs-8-wide-left {
    width: calc(66.6666666667% - 15px);
    margin: 0 15px 0 0;
  }
  .col-xs-8-wide-right {
    width: calc(66.6666666667% - 15px);
    margin: 0 0 0 15px;
  }
  .col-xs-9 {
    width: calc(75% - 30px);
    margin: 0 15px;
  }
  .col-xs-9-wide {
    width: 75%;
    margin: 0;
  }
  .col-xs-9-wide-left {
    width: calc(75% - 15px);
    margin: 0 15px 0 0;
  }
  .col-xs-9-wide-right {
    width: calc(75% - 15px);
    margin: 0 0 0 15px;
  }
  .col-xs-10 {
    width: calc(83.3333333333% - 30px);
    margin: 0 15px;
  }
  .col-xs-10-wide {
    width: 83.3333333333%;
    margin: 0;
  }
  .col-xs-10-wide-left {
    width: calc(83.3333333333% - 15px);
    margin: 0 15px 0 0;
  }
  .col-xs-10-wide-right {
    width: calc(83.3333333333% - 15px);
    margin: 0 0 0 15px;
  }
  .col-xs-11 {
    width: calc(91.6666666667% - 30px);
    margin: 0 15px;
  }
  .col-xs-11-wide {
    width: 91.6666666667%;
    margin: 0;
  }
  .col-xs-11-wide-left {
    width: calc(91.6666666667% - 15px);
    margin: 0 15px 0 0;
  }
  .col-xs-11-wide-right {
    width: calc(91.6666666667% - 15px);
    margin: 0 0 0 15px;
  }
  .col-xs-12 {
    width: calc(100% - 30px);
    margin: 0 15px;
  }
  .col-xs-12-wide {
    width: 100%;
    margin: 0;
  }
  .col-xs-12-wide-left {
    width: calc(100% - 15px);
    margin: 0 15px 0 0;
  }
  .col-xs-12-wide-right {
    width: calc(100% - 15px);
    margin: 0 0 0 15px;
  }
  .col-xs-pull-0 {
    right: 0%;
  }
  .col-xs-push-0 {
    left: 0%;
  }
  .col-xs-offset-0 {
    margin-left: calc(0% + 15px);
  }
  .col-xs-offset-half-wide-0 {
    margin-left: calc(0% + 15px);
  }
  .col-xs-offset-wide-0 {
    margin-left: calc(0%);
  }
  .col-xs-pull-1 {
    right: 8.3333333333%;
  }
  .col-xs-push-1 {
    left: 8.3333333333%;
  }
  .col-xs-offset-1 {
    margin-left: calc(8.3333333333% + 15px);
  }
  .col-xs-offset-half-wide-1 {
    margin-left: calc(8.3333333333% + 15px);
  }
  .col-xs-offset-wide-1 {
    margin-left: calc(8.3333333333%);
  }
  .col-xs-pull-2 {
    right: 16.6666666667%;
  }
  .col-xs-push-2 {
    left: 16.6666666667%;
  }
  .col-xs-offset-2 {
    margin-left: calc(16.6666666667% + 15px);
  }
  .col-xs-offset-half-wide-2 {
    margin-left: calc(16.6666666667% + 15px);
  }
  .col-xs-offset-wide-2 {
    margin-left: calc(16.6666666667%);
  }
  .col-xs-pull-3 {
    right: 25%;
  }
  .col-xs-push-3 {
    left: 25%;
  }
  .col-xs-offset-3 {
    margin-left: calc(25% + 15px);
  }
  .col-xs-offset-half-wide-3 {
    margin-left: calc(25% + 15px);
  }
  .col-xs-offset-wide-3 {
    margin-left: calc(25%);
  }
  .col-xs-pull-4 {
    right: 33.3333333333%;
  }
  .col-xs-push-4 {
    left: 33.3333333333%;
  }
  .col-xs-offset-4 {
    margin-left: calc(33.3333333333% + 15px);
  }
  .col-xs-offset-half-wide-4 {
    margin-left: calc(33.3333333333% + 15px);
  }
  .col-xs-offset-wide-4 {
    margin-left: calc(33.3333333333%);
  }
  .col-xs-pull-5 {
    right: 41.6666666667%;
  }
  .col-xs-push-5 {
    left: 41.6666666667%;
  }
  .col-xs-offset-5 {
    margin-left: calc(41.6666666667% + 15px);
  }
  .col-xs-offset-half-wide-5 {
    margin-left: calc(41.6666666667% + 15px);
  }
  .col-xs-offset-wide-5 {
    margin-left: calc(41.6666666667%);
  }
  .col-xs-pull-6 {
    right: 50%;
  }
  .col-xs-push-6 {
    left: 50%;
  }
  .col-xs-offset-6 {
    margin-left: calc(50% + 15px);
  }
  .col-xs-offset-half-wide-6 {
    margin-left: calc(50% + 15px);
  }
  .col-xs-offset-wide-6 {
    margin-left: calc(50%);
  }
  .col-xs-pull-7 {
    right: 58.3333333333%;
  }
  .col-xs-push-7 {
    left: 58.3333333333%;
  }
  .col-xs-offset-7 {
    margin-left: calc(58.3333333333% + 15px);
  }
  .col-xs-offset-half-wide-7 {
    margin-left: calc(58.3333333333% + 15px);
  }
  .col-xs-offset-wide-7 {
    margin-left: calc(58.3333333333%);
  }
  .col-xs-pull-8 {
    right: 66.6666666667%;
  }
  .col-xs-push-8 {
    left: 66.6666666667%;
  }
  .col-xs-offset-8 {
    margin-left: calc(66.6666666667% + 15px);
  }
  .col-xs-offset-half-wide-8 {
    margin-left: calc(66.6666666667% + 15px);
  }
  .col-xs-offset-wide-8 {
    margin-left: calc(66.6666666667%);
  }
  .col-xs-pull-9 {
    right: 75%;
  }
  .col-xs-push-9 {
    left: 75%;
  }
  .col-xs-offset-9 {
    margin-left: calc(75% + 15px);
  }
  .col-xs-offset-half-wide-9 {
    margin-left: calc(75% + 15px);
  }
  .col-xs-offset-wide-9 {
    margin-left: calc(75%);
  }
  .col-xs-pull-10 {
    right: 83.3333333333%;
  }
  .col-xs-push-10 {
    left: 83.3333333333%;
  }
  .col-xs-offset-10 {
    margin-left: calc(83.3333333333% + 15px);
  }
  .col-xs-offset-half-wide-10 {
    margin-left: calc(83.3333333333% + 15px);
  }
  .col-xs-offset-wide-10 {
    margin-left: calc(83.3333333333%);
  }
  .col-xs-pull-11 {
    right: 91.6666666667%;
  }
  .col-xs-push-11 {
    left: 91.6666666667%;
  }
  .col-xs-offset-11 {
    margin-left: calc(91.6666666667% + 15px);
  }
  .col-xs-offset-half-wide-11 {
    margin-left: calc(91.6666666667% + 15px);
  }
  .col-xs-offset-wide-11 {
    margin-left: calc(91.6666666667%);
  }
  .col-xs-pull-12 {
    right: 100%;
  }
  .col-xs-push-12 {
    left: 100%;
  }
  .col-xs-offset-12 {
    margin-left: calc(100% + 15px);
  }
  .col-xs-offset-half-wide-12 {
    margin-left: calc(100% + 15px);
  }
  .col-xs-offset-wide-12 {
    margin-left: calc(100%);
  }
  .text-center-xs {
    text-align: center;
  }
  .text-left-xs {
    text-align: left;
  }
  .text-right-xs {
    text-align: right;
  }
  .text-justify-xs {
    text-align: justify;
  }
  .block-center-xs {
    text-align: center;
  }
  .block-left-xs {
    text-align: left;
  }
  .block-right-xs {
    text-align: right;
  }
  .block-justify-xs {
    text-align: justify;
  }
  .block-justify-xs:after {
    content: "";
    width: 100%;
    display: inline-block;
    font-size: 0.000001%;
  }
  .col-hide-xs {
    display: none !important;
  }
  .col-show-xs {
    display: inline-block !important;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .col-s-1 {
    width: calc(8.3333333333% - 30px);
    margin: 0 15px;
  }
  .col-s-1-wide {
    width: 8.3333333333%;
    margin: 0;
  }
  .col-s-1-wide-left {
    width: calc(8.3333333333% - 15px);
    margin: 0 15px 0 0;
  }
  .col-s-1-wide-right {
    width: calc(8.3333333333% - 15px);
    margin: 0 0 0 15px;
  }
  .col-s-2 {
    width: calc(16.6666666667% - 30px);
    margin: 0 15px;
  }
  .col-s-2-wide {
    width: 16.6666666667%;
    margin: 0;
  }
  .col-s-2-wide-left {
    width: calc(16.6666666667% - 15px);
    margin: 0 15px 0 0;
  }
  .col-s-2-wide-right {
    width: calc(16.6666666667% - 15px);
    margin: 0 0 0 15px;
  }
  .col-s-3 {
    width: calc(25% - 30px);
    margin: 0 15px;
  }
  .col-s-3-wide {
    width: 25%;
    margin: 0;
  }
  .col-s-3-wide-left {
    width: calc(25% - 15px);
    margin: 0 15px 0 0;
  }
  .col-s-3-wide-right {
    width: calc(25% - 15px);
    margin: 0 0 0 15px;
  }
  .col-s-4 {
    width: calc(33.3333333333% - 30px);
    margin: 0 15px;
  }
  .col-s-4-wide {
    width: 33.3333333333%;
    margin: 0;
  }
  .col-s-4-wide-left {
    width: calc(33.3333333333% - 15px);
    margin: 0 15px 0 0;
  }
  .col-s-4-wide-right {
    width: calc(33.3333333333% - 15px);
    margin: 0 0 0 15px;
  }
  .col-s-5 {
    width: calc(41.6666666667% - 30px);
    margin: 0 15px;
  }
  .col-s-5-wide {
    width: 41.6666666667%;
    margin: 0;
  }
  .col-s-5-wide-left {
    width: calc(41.6666666667% - 15px);
    margin: 0 15px 0 0;
  }
  .col-s-5-wide-right {
    width: calc(41.6666666667% - 15px);
    margin: 0 0 0 15px;
  }
  .col-s-6 {
    width: calc(50% - 30px);
    margin: 0 15px;
  }
  .col-s-6-wide {
    width: 50%;
    margin: 0;
  }
  .col-s-6-wide-left {
    width: calc(50% - 15px);
    margin: 0 15px 0 0;
  }
  .col-s-6-wide-right {
    width: calc(50% - 15px);
    margin: 0 0 0 15px;
  }
  .col-s-7 {
    width: calc(58.3333333333% - 30px);
    margin: 0 15px;
  }
  .col-s-7-wide {
    width: 58.3333333333%;
    margin: 0;
  }
  .col-s-7-wide-left {
    width: calc(58.3333333333% - 15px);
    margin: 0 15px 0 0;
  }
  .col-s-7-wide-right {
    width: calc(58.3333333333% - 15px);
    margin: 0 0 0 15px;
  }
  .col-s-8 {
    width: calc(66.6666666667% - 30px);
    margin: 0 15px;
  }
  .col-s-8-wide {
    width: 66.6666666667%;
    margin: 0;
  }
  .col-s-8-wide-left {
    width: calc(66.6666666667% - 15px);
    margin: 0 15px 0 0;
  }
  .col-s-8-wide-right {
    width: calc(66.6666666667% - 15px);
    margin: 0 0 0 15px;
  }
  .col-s-9 {
    width: calc(75% - 30px);
    margin: 0 15px;
  }
  .col-s-9-wide {
    width: 75%;
    margin: 0;
  }
  .col-s-9-wide-left {
    width: calc(75% - 15px);
    margin: 0 15px 0 0;
  }
  .col-s-9-wide-right {
    width: calc(75% - 15px);
    margin: 0 0 0 15px;
  }
  .col-s-10 {
    width: calc(83.3333333333% - 30px);
    margin: 0 15px;
  }
  .col-s-10-wide {
    width: 83.3333333333%;
    margin: 0;
  }
  .col-s-10-wide-left {
    width: calc(83.3333333333% - 15px);
    margin: 0 15px 0 0;
  }
  .col-s-10-wide-right {
    width: calc(83.3333333333% - 15px);
    margin: 0 0 0 15px;
  }
  .col-s-11 {
    width: calc(91.6666666667% - 30px);
    margin: 0 15px;
  }
  .col-s-11-wide {
    width: 91.6666666667%;
    margin: 0;
  }
  .col-s-11-wide-left {
    width: calc(91.6666666667% - 15px);
    margin: 0 15px 0 0;
  }
  .col-s-11-wide-right {
    width: calc(91.6666666667% - 15px);
    margin: 0 0 0 15px;
  }
  .col-s-12 {
    width: calc(100% - 30px);
    margin: 0 15px;
  }
  .col-s-12-wide {
    width: 100%;
    margin: 0;
  }
  .col-s-12-wide-left {
    width: calc(100% - 15px);
    margin: 0 15px 0 0;
  }
  .col-s-12-wide-right {
    width: calc(100% - 15px);
    margin: 0 0 0 15px;
  }
  .col-s-pull-0 {
    right: 0%;
  }
  .col-s-push-0 {
    left: 0%;
  }
  .col-s-offset-0 {
    margin-left: calc(0% + 15px);
  }
  .col-s-offset-half-wide-0 {
    margin-left: calc(0% + 15px);
  }
  .col-s-offset-wide-0 {
    margin-left: calc(0%);
  }
  .col-s-pull-1 {
    right: 8.3333333333%;
  }
  .col-s-push-1 {
    left: 8.3333333333%;
  }
  .col-s-offset-1 {
    margin-left: calc(8.3333333333% + 15px);
  }
  .col-s-offset-half-wide-1 {
    margin-left: calc(8.3333333333% + 15px);
  }
  .col-s-offset-wide-1 {
    margin-left: calc(8.3333333333%);
  }
  .col-s-pull-2 {
    right: 16.6666666667%;
  }
  .col-s-push-2 {
    left: 16.6666666667%;
  }
  .col-s-offset-2 {
    margin-left: calc(16.6666666667% + 15px);
  }
  .col-s-offset-half-wide-2 {
    margin-left: calc(16.6666666667% + 15px);
  }
  .col-s-offset-wide-2 {
    margin-left: calc(16.6666666667%);
  }
  .col-s-pull-3 {
    right: 25%;
  }
  .col-s-push-3 {
    left: 25%;
  }
  .col-s-offset-3 {
    margin-left: calc(25% + 15px);
  }
  .col-s-offset-half-wide-3 {
    margin-left: calc(25% + 15px);
  }
  .col-s-offset-wide-3 {
    margin-left: calc(25%);
  }
  .col-s-pull-4 {
    right: 33.3333333333%;
  }
  .col-s-push-4 {
    left: 33.3333333333%;
  }
  .col-s-offset-4 {
    margin-left: calc(33.3333333333% + 15px);
  }
  .col-s-offset-half-wide-4 {
    margin-left: calc(33.3333333333% + 15px);
  }
  .col-s-offset-wide-4 {
    margin-left: calc(33.3333333333%);
  }
  .col-s-pull-5 {
    right: 41.6666666667%;
  }
  .col-s-push-5 {
    left: 41.6666666667%;
  }
  .col-s-offset-5 {
    margin-left: calc(41.6666666667% + 15px);
  }
  .col-s-offset-half-wide-5 {
    margin-left: calc(41.6666666667% + 15px);
  }
  .col-s-offset-wide-5 {
    margin-left: calc(41.6666666667%);
  }
  .col-s-pull-6 {
    right: 50%;
  }
  .col-s-push-6 {
    left: 50%;
  }
  .col-s-offset-6 {
    margin-left: calc(50% + 15px);
  }
  .col-s-offset-half-wide-6 {
    margin-left: calc(50% + 15px);
  }
  .col-s-offset-wide-6 {
    margin-left: calc(50%);
  }
  .col-s-pull-7 {
    right: 58.3333333333%;
  }
  .col-s-push-7 {
    left: 58.3333333333%;
  }
  .col-s-offset-7 {
    margin-left: calc(58.3333333333% + 15px);
  }
  .col-s-offset-half-wide-7 {
    margin-left: calc(58.3333333333% + 15px);
  }
  .col-s-offset-wide-7 {
    margin-left: calc(58.3333333333%);
  }
  .col-s-pull-8 {
    right: 66.6666666667%;
  }
  .col-s-push-8 {
    left: 66.6666666667%;
  }
  .col-s-offset-8 {
    margin-left: calc(66.6666666667% + 15px);
  }
  .col-s-offset-half-wide-8 {
    margin-left: calc(66.6666666667% + 15px);
  }
  .col-s-offset-wide-8 {
    margin-left: calc(66.6666666667%);
  }
  .col-s-pull-9 {
    right: 75%;
  }
  .col-s-push-9 {
    left: 75%;
  }
  .col-s-offset-9 {
    margin-left: calc(75% + 15px);
  }
  .col-s-offset-half-wide-9 {
    margin-left: calc(75% + 15px);
  }
  .col-s-offset-wide-9 {
    margin-left: calc(75%);
  }
  .col-s-pull-10 {
    right: 83.3333333333%;
  }
  .col-s-push-10 {
    left: 83.3333333333%;
  }
  .col-s-offset-10 {
    margin-left: calc(83.3333333333% + 15px);
  }
  .col-s-offset-half-wide-10 {
    margin-left: calc(83.3333333333% + 15px);
  }
  .col-s-offset-wide-10 {
    margin-left: calc(83.3333333333%);
  }
  .col-s-pull-11 {
    right: 91.6666666667%;
  }
  .col-s-push-11 {
    left: 91.6666666667%;
  }
  .col-s-offset-11 {
    margin-left: calc(91.6666666667% + 15px);
  }
  .col-s-offset-half-wide-11 {
    margin-left: calc(91.6666666667% + 15px);
  }
  .col-s-offset-wide-11 {
    margin-left: calc(91.6666666667%);
  }
  .col-s-pull-12 {
    right: 100%;
  }
  .col-s-push-12 {
    left: 100%;
  }
  .col-s-offset-12 {
    margin-left: calc(100% + 15px);
  }
  .col-s-offset-half-wide-12 {
    margin-left: calc(100% + 15px);
  }
  .col-s-offset-wide-12 {
    margin-left: calc(100%);
  }
  .text-center-s {
    text-align: center;
  }
  .text-left-s {
    text-align: left;
  }
  .text-right-s {
    text-align: right;
  }
  .text-justify-s {
    text-align: justify;
  }
  .block-center-s {
    text-align: center;
  }
  .block-left-s {
    text-align: left;
  }
  .block-right-s {
    text-align: right;
  }
  .block-justify-s {
    text-align: justify;
  }
  .block-justify-s:after {
    content: "";
    width: 100%;
    display: inline-block;
    font-size: 0.000001%;
  }
  .col-hide-s {
    display: none !important;
  }
  .col-show-s {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .col-m-1 {
    width: calc(8.3333333333% - 30px);
    margin: 0 15px;
  }
  .col-m-1-wide {
    width: 8.3333333333%;
    margin: 0;
  }
  .col-m-1-wide-left {
    width: calc(8.3333333333% - 15px);
    margin: 0 15px 0 0;
  }
  .col-m-1-wide-right {
    width: calc(8.3333333333% - 15px);
    margin: 0 0 0 15px;
  }
  .col-m-2 {
    width: calc(16.6666666667% - 30px);
    margin: 0 15px;
  }
  .col-m-2-wide {
    width: 16.6666666667%;
    margin: 0;
  }
  .col-m-2-wide-left {
    width: calc(16.6666666667% - 15px);
    margin: 0 15px 0 0;
  }
  .col-m-2-wide-right {
    width: calc(16.6666666667% - 15px);
    margin: 0 0 0 15px;
  }
  .col-m-3 {
    width: calc(25% - 30px);
    margin: 0 15px;
  }
  .col-m-3-wide {
    width: 25%;
    margin: 0;
  }
  .col-m-3-wide-left {
    width: calc(25% - 15px);
    margin: 0 15px 0 0;
  }
  .col-m-3-wide-right {
    width: calc(25% - 15px);
    margin: 0 0 0 15px;
  }
  .col-m-4 {
    width: calc(33.3333333333% - 30px);
    margin: 0 15px;
  }
  .col-m-4-wide {
    width: 33.3333333333%;
    margin: 0;
  }
  .col-m-4-wide-left {
    width: calc(33.3333333333% - 15px);
    margin: 0 15px 0 0;
  }
  .col-m-4-wide-right {
    width: calc(33.3333333333% - 15px);
    margin: 0 0 0 15px;
  }
  .col-m-5 {
    width: calc(41.6666666667% - 30px);
    margin: 0 15px;
  }
  .col-m-5-wide {
    width: 41.6666666667%;
    margin: 0;
  }
  .col-m-5-wide-left {
    width: calc(41.6666666667% - 15px);
    margin: 0 15px 0 0;
  }
  .col-m-5-wide-right {
    width: calc(41.6666666667% - 15px);
    margin: 0 0 0 15px;
  }
  .col-m-6 {
    width: calc(50% - 30px);
    margin: 0 15px;
  }
  .col-m-6-wide {
    width: 50%;
    margin: 0;
  }
  .col-m-6-wide-left {
    width: calc(50% - 15px);
    margin: 0 15px 0 0;
  }
  .col-m-6-wide-right {
    width: calc(50% - 15px);
    margin: 0 0 0 15px;
  }
  .col-m-7 {
    width: calc(58.3333333333% - 30px);
    margin: 0 15px;
  }
  .col-m-7-wide {
    width: 58.3333333333%;
    margin: 0;
  }
  .col-m-7-wide-left {
    width: calc(58.3333333333% - 15px);
    margin: 0 15px 0 0;
  }
  .col-m-7-wide-right {
    width: calc(58.3333333333% - 15px);
    margin: 0 0 0 15px;
  }
  .col-m-8 {
    width: calc(66.6666666667% - 30px);
    margin: 0 15px;
  }
  .col-m-8-wide {
    width: 66.6666666667%;
    margin: 0;
  }
  .col-m-8-wide-left {
    width: calc(66.6666666667% - 15px);
    margin: 0 15px 0 0;
  }
  .col-m-8-wide-right {
    width: calc(66.6666666667% - 15px);
    margin: 0 0 0 15px;
  }
  .col-m-9 {
    width: calc(75% - 30px);
    margin: 0 15px;
  }
  .col-m-9-wide {
    width: 75%;
    margin: 0;
  }
  .col-m-9-wide-left {
    width: calc(75% - 15px);
    margin: 0 15px 0 0;
  }
  .col-m-9-wide-right {
    width: calc(75% - 15px);
    margin: 0 0 0 15px;
  }
  .col-m-10 {
    width: calc(83.3333333333% - 30px);
    margin: 0 15px;
  }
  .col-m-10-wide {
    width: 83.3333333333%;
    margin: 0;
  }
  .col-m-10-wide-left {
    width: calc(83.3333333333% - 15px);
    margin: 0 15px 0 0;
  }
  .col-m-10-wide-right {
    width: calc(83.3333333333% - 15px);
    margin: 0 0 0 15px;
  }
  .col-m-11 {
    width: calc(91.6666666667% - 30px);
    margin: 0 15px;
  }
  .col-m-11-wide {
    width: 91.6666666667%;
    margin: 0;
  }
  .col-m-11-wide-left {
    width: calc(91.6666666667% - 15px);
    margin: 0 15px 0 0;
  }
  .col-m-11-wide-right {
    width: calc(91.6666666667% - 15px);
    margin: 0 0 0 15px;
  }
  .col-m-12 {
    width: calc(100% - 30px);
    margin: 0 15px;
  }
  .col-m-12-wide {
    width: 100%;
    margin: 0;
  }
  .col-m-12-wide-left {
    width: calc(100% - 15px);
    margin: 0 15px 0 0;
  }
  .col-m-12-wide-right {
    width: calc(100% - 15px);
    margin: 0 0 0 15px;
  }
  .col-m-pull-0 {
    right: 0%;
  }
  .col-m-push-0 {
    left: 0%;
  }
  .col-m-offset-0 {
    margin-left: calc(0% + 15px);
  }
  .col-m-offset-half-wide-0 {
    margin-left: calc(0% + 15px);
  }
  .col-m-offset-wide-0 {
    margin-left: calc(0%);
  }
  .col-m-pull-1 {
    right: 8.3333333333%;
  }
  .col-m-push-1 {
    left: 8.3333333333%;
  }
  .col-m-offset-1 {
    margin-left: calc(8.3333333333% + 15px);
  }
  .col-m-offset-half-wide-1 {
    margin-left: calc(8.3333333333% + 15px);
  }
  .col-m-offset-wide-1 {
    margin-left: calc(8.3333333333%);
  }
  .col-m-pull-2 {
    right: 16.6666666667%;
  }
  .col-m-push-2 {
    left: 16.6666666667%;
  }
  .col-m-offset-2 {
    margin-left: calc(16.6666666667% + 15px);
  }
  .col-m-offset-half-wide-2 {
    margin-left: calc(16.6666666667% + 15px);
  }
  .col-m-offset-wide-2 {
    margin-left: calc(16.6666666667%);
  }
  .col-m-pull-3 {
    right: 25%;
  }
  .col-m-push-3 {
    left: 25%;
  }
  .col-m-offset-3 {
    margin-left: calc(25% + 15px);
  }
  .col-m-offset-half-wide-3 {
    margin-left: calc(25% + 15px);
  }
  .col-m-offset-wide-3 {
    margin-left: calc(25%);
  }
  .col-m-pull-4 {
    right: 33.3333333333%;
  }
  .col-m-push-4 {
    left: 33.3333333333%;
  }
  .col-m-offset-4 {
    margin-left: calc(33.3333333333% + 15px);
  }
  .col-m-offset-half-wide-4 {
    margin-left: calc(33.3333333333% + 15px);
  }
  .col-m-offset-wide-4 {
    margin-left: calc(33.3333333333%);
  }
  .col-m-pull-5 {
    right: 41.6666666667%;
  }
  .col-m-push-5 {
    left: 41.6666666667%;
  }
  .col-m-offset-5 {
    margin-left: calc(41.6666666667% + 15px);
  }
  .col-m-offset-half-wide-5 {
    margin-left: calc(41.6666666667% + 15px);
  }
  .col-m-offset-wide-5 {
    margin-left: calc(41.6666666667%);
  }
  .col-m-pull-6 {
    right: 50%;
  }
  .col-m-push-6 {
    left: 50%;
  }
  .col-m-offset-6 {
    margin-left: calc(50% + 15px);
  }
  .col-m-offset-half-wide-6 {
    margin-left: calc(50% + 15px);
  }
  .col-m-offset-wide-6 {
    margin-left: calc(50%);
  }
  .col-m-pull-7 {
    right: 58.3333333333%;
  }
  .col-m-push-7 {
    left: 58.3333333333%;
  }
  .col-m-offset-7 {
    margin-left: calc(58.3333333333% + 15px);
  }
  .col-m-offset-half-wide-7 {
    margin-left: calc(58.3333333333% + 15px);
  }
  .col-m-offset-wide-7 {
    margin-left: calc(58.3333333333%);
  }
  .col-m-pull-8 {
    right: 66.6666666667%;
  }
  .col-m-push-8 {
    left: 66.6666666667%;
  }
  .col-m-offset-8 {
    margin-left: calc(66.6666666667% + 15px);
  }
  .col-m-offset-half-wide-8 {
    margin-left: calc(66.6666666667% + 15px);
  }
  .col-m-offset-wide-8 {
    margin-left: calc(66.6666666667%);
  }
  .col-m-pull-9 {
    right: 75%;
  }
  .col-m-push-9 {
    left: 75%;
  }
  .col-m-offset-9 {
    margin-left: calc(75% + 15px);
  }
  .col-m-offset-half-wide-9 {
    margin-left: calc(75% + 15px);
  }
  .col-m-offset-wide-9 {
    margin-left: calc(75%);
  }
  .col-m-pull-10 {
    right: 83.3333333333%;
  }
  .col-m-push-10 {
    left: 83.3333333333%;
  }
  .col-m-offset-10 {
    margin-left: calc(83.3333333333% + 15px);
  }
  .col-m-offset-half-wide-10 {
    margin-left: calc(83.3333333333% + 15px);
  }
  .col-m-offset-wide-10 {
    margin-left: calc(83.3333333333%);
  }
  .col-m-pull-11 {
    right: 91.6666666667%;
  }
  .col-m-push-11 {
    left: 91.6666666667%;
  }
  .col-m-offset-11 {
    margin-left: calc(91.6666666667% + 15px);
  }
  .col-m-offset-half-wide-11 {
    margin-left: calc(91.6666666667% + 15px);
  }
  .col-m-offset-wide-11 {
    margin-left: calc(91.6666666667%);
  }
  .col-m-pull-12 {
    right: 100%;
  }
  .col-m-push-12 {
    left: 100%;
  }
  .col-m-offset-12 {
    margin-left: calc(100% + 15px);
  }
  .col-m-offset-half-wide-12 {
    margin-left: calc(100% + 15px);
  }
  .col-m-offset-wide-12 {
    margin-left: calc(100%);
  }
  .text-center-m {
    text-align: center;
  }
  .text-left-m {
    text-align: left;
  }
  .text-right-m {
    text-align: right;
  }
  .text-justify-m {
    text-align: justify;
  }
  .block-center-m {
    text-align: center;
  }
  .block-left-m {
    text-align: left;
  }
  .block-right-m {
    text-align: right;
  }
  .block-justify-m {
    text-align: justify;
  }
  .block-justify-m:after {
    content: "";
    width: 100%;
    display: inline-block;
    font-size: 0.000001%;
  }
  .col-hide-m {
    display: none !important;
  }
  .col-show-m {
    display: inline-block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .col-l-1 {
    width: calc(8.3333333333% - 30px);
    margin: 0 15px;
  }
  .col-l-1-wide {
    width: 8.3333333333%;
    margin: 0;
  }
  .col-l-1-wide-left {
    width: calc(8.3333333333% - 15px);
    margin: 0 15px 0 0;
  }
  .col-l-1-wide-right {
    width: calc(8.3333333333% - 15px);
    margin: 0 0 0 15px;
  }
  .col-l-2 {
    width: calc(16.6666666667% - 30px);
    margin: 0 15px;
  }
  .col-l-2-wide {
    width: 16.6666666667%;
    margin: 0;
  }
  .col-l-2-wide-left {
    width: calc(16.6666666667% - 15px);
    margin: 0 15px 0 0;
  }
  .col-l-2-wide-right {
    width: calc(16.6666666667% - 15px);
    margin: 0 0 0 15px;
  }
  .col-l-3 {
    width: calc(25% - 30px);
    margin: 0 15px;
  }
  .col-l-3-wide {
    width: 25%;
    margin: 0;
  }
  .col-l-3-wide-left {
    width: calc(25% - 15px);
    margin: 0 15px 0 0;
  }
  .col-l-3-wide-right {
    width: calc(25% - 15px);
    margin: 0 0 0 15px;
  }
  .col-l-4 {
    width: calc(33.3333333333% - 30px);
    margin: 0 15px;
  }
  .col-l-4-wide {
    width: 33.3333333333%;
    margin: 0;
  }
  .col-l-4-wide-left {
    width: calc(33.3333333333% - 15px);
    margin: 0 15px 0 0;
  }
  .col-l-4-wide-right {
    width: calc(33.3333333333% - 15px);
    margin: 0 0 0 15px;
  }
  .col-l-5 {
    width: calc(41.6666666667% - 30px);
    margin: 0 15px;
  }
  .col-l-5-wide {
    width: 41.6666666667%;
    margin: 0;
  }
  .col-l-5-wide-left {
    width: calc(41.6666666667% - 15px);
    margin: 0 15px 0 0;
  }
  .col-l-5-wide-right {
    width: calc(41.6666666667% - 15px);
    margin: 0 0 0 15px;
  }
  .col-l-6 {
    width: calc(50% - 30px);
    margin: 0 15px;
  }
  .col-l-6-wide {
    width: 50%;
    margin: 0;
  }
  .col-l-6-wide-left {
    width: calc(50% - 15px);
    margin: 0 15px 0 0;
  }
  .col-l-6-wide-right {
    width: calc(50% - 15px);
    margin: 0 0 0 15px;
  }
  .col-l-7 {
    width: calc(58.3333333333% - 30px);
    margin: 0 15px;
  }
  .col-l-7-wide {
    width: 58.3333333333%;
    margin: 0;
  }
  .col-l-7-wide-left {
    width: calc(58.3333333333% - 15px);
    margin: 0 15px 0 0;
  }
  .col-l-7-wide-right {
    width: calc(58.3333333333% - 15px);
    margin: 0 0 0 15px;
  }
  .col-l-8 {
    width: calc(66.6666666667% - 30px);
    margin: 0 15px;
  }
  .col-l-8-wide {
    width: 66.6666666667%;
    margin: 0;
  }
  .col-l-8-wide-left {
    width: calc(66.6666666667% - 15px);
    margin: 0 15px 0 0;
  }
  .col-l-8-wide-right {
    width: calc(66.6666666667% - 15px);
    margin: 0 0 0 15px;
  }
  .col-l-9 {
    width: calc(75% - 30px);
    margin: 0 15px;
  }
  .col-l-9-wide {
    width: 75%;
    margin: 0;
  }
  .col-l-9-wide-left {
    width: calc(75% - 15px);
    margin: 0 15px 0 0;
  }
  .col-l-9-wide-right {
    width: calc(75% - 15px);
    margin: 0 0 0 15px;
  }
  .col-l-10 {
    width: calc(83.3333333333% - 30px);
    margin: 0 15px;
  }
  .col-l-10-wide {
    width: 83.3333333333%;
    margin: 0;
  }
  .col-l-10-wide-left {
    width: calc(83.3333333333% - 15px);
    margin: 0 15px 0 0;
  }
  .col-l-10-wide-right {
    width: calc(83.3333333333% - 15px);
    margin: 0 0 0 15px;
  }
  .col-l-11 {
    width: calc(91.6666666667% - 30px);
    margin: 0 15px;
  }
  .col-l-11-wide {
    width: 91.6666666667%;
    margin: 0;
  }
  .col-l-11-wide-left {
    width: calc(91.6666666667% - 15px);
    margin: 0 15px 0 0;
  }
  .col-l-11-wide-right {
    width: calc(91.6666666667% - 15px);
    margin: 0 0 0 15px;
  }
  .col-l-12 {
    width: calc(100% - 30px);
    margin: 0 15px;
  }
  .col-l-12-wide {
    width: 100%;
    margin: 0;
  }
  .col-l-12-wide-left {
    width: calc(100% - 15px);
    margin: 0 15px 0 0;
  }
  .col-l-12-wide-right {
    width: calc(100% - 15px);
    margin: 0 0 0 15px;
  }
  .col-l-pull-0 {
    right: 0%;
  }
  .col-l-push-0 {
    left: 0%;
  }
  .col-l-offset-0 {
    margin-left: calc(0% + 15px);
  }
  .col-l-offset-half-wide-0 {
    margin-left: calc(0% + 15px);
  }
  .col-l-offset-wide-0 {
    margin-left: calc(0%);
  }
  .col-l-pull-1 {
    right: 8.3333333333%;
  }
  .col-l-push-1 {
    left: 8.3333333333%;
  }
  .col-l-offset-1 {
    margin-left: calc(8.3333333333% + 15px);
  }
  .col-l-offset-half-wide-1 {
    margin-left: calc(8.3333333333% + 15px);
  }
  .col-l-offset-wide-1 {
    margin-left: calc(8.3333333333%);
  }
  .col-l-pull-2 {
    right: 16.6666666667%;
  }
  .col-l-push-2 {
    left: 16.6666666667%;
  }
  .col-l-offset-2 {
    margin-left: calc(16.6666666667% + 15px);
  }
  .col-l-offset-half-wide-2 {
    margin-left: calc(16.6666666667% + 15px);
  }
  .col-l-offset-wide-2 {
    margin-left: calc(16.6666666667%);
  }
  .col-l-pull-3 {
    right: 25%;
  }
  .col-l-push-3 {
    left: 25%;
  }
  .col-l-offset-3 {
    margin-left: calc(25% + 15px);
  }
  .col-l-offset-half-wide-3 {
    margin-left: calc(25% + 15px);
  }
  .col-l-offset-wide-3 {
    margin-left: calc(25%);
  }
  .col-l-pull-4 {
    right: 33.3333333333%;
  }
  .col-l-push-4 {
    left: 33.3333333333%;
  }
  .col-l-offset-4 {
    margin-left: calc(33.3333333333% + 15px);
  }
  .col-l-offset-half-wide-4 {
    margin-left: calc(33.3333333333% + 15px);
  }
  .col-l-offset-wide-4 {
    margin-left: calc(33.3333333333%);
  }
  .col-l-pull-5 {
    right: 41.6666666667%;
  }
  .col-l-push-5 {
    left: 41.6666666667%;
  }
  .col-l-offset-5 {
    margin-left: calc(41.6666666667% + 15px);
  }
  .col-l-offset-half-wide-5 {
    margin-left: calc(41.6666666667% + 15px);
  }
  .col-l-offset-wide-5 {
    margin-left: calc(41.6666666667%);
  }
  .col-l-pull-6 {
    right: 50%;
  }
  .col-l-push-6 {
    left: 50%;
  }
  .col-l-offset-6 {
    margin-left: calc(50% + 15px);
  }
  .col-l-offset-half-wide-6 {
    margin-left: calc(50% + 15px);
  }
  .col-l-offset-wide-6 {
    margin-left: calc(50%);
  }
  .col-l-pull-7 {
    right: 58.3333333333%;
  }
  .col-l-push-7 {
    left: 58.3333333333%;
  }
  .col-l-offset-7 {
    margin-left: calc(58.3333333333% + 15px);
  }
  .col-l-offset-half-wide-7 {
    margin-left: calc(58.3333333333% + 15px);
  }
  .col-l-offset-wide-7 {
    margin-left: calc(58.3333333333%);
  }
  .col-l-pull-8 {
    right: 66.6666666667%;
  }
  .col-l-push-8 {
    left: 66.6666666667%;
  }
  .col-l-offset-8 {
    margin-left: calc(66.6666666667% + 15px);
  }
  .col-l-offset-half-wide-8 {
    margin-left: calc(66.6666666667% + 15px);
  }
  .col-l-offset-wide-8 {
    margin-left: calc(66.6666666667%);
  }
  .col-l-pull-9 {
    right: 75%;
  }
  .col-l-push-9 {
    left: 75%;
  }
  .col-l-offset-9 {
    margin-left: calc(75% + 15px);
  }
  .col-l-offset-half-wide-9 {
    margin-left: calc(75% + 15px);
  }
  .col-l-offset-wide-9 {
    margin-left: calc(75%);
  }
  .col-l-pull-10 {
    right: 83.3333333333%;
  }
  .col-l-push-10 {
    left: 83.3333333333%;
  }
  .col-l-offset-10 {
    margin-left: calc(83.3333333333% + 15px);
  }
  .col-l-offset-half-wide-10 {
    margin-left: calc(83.3333333333% + 15px);
  }
  .col-l-offset-wide-10 {
    margin-left: calc(83.3333333333%);
  }
  .col-l-pull-11 {
    right: 91.6666666667%;
  }
  .col-l-push-11 {
    left: 91.6666666667%;
  }
  .col-l-offset-11 {
    margin-left: calc(91.6666666667% + 15px);
  }
  .col-l-offset-half-wide-11 {
    margin-left: calc(91.6666666667% + 15px);
  }
  .col-l-offset-wide-11 {
    margin-left: calc(91.6666666667%);
  }
  .col-l-pull-12 {
    right: 100%;
  }
  .col-l-push-12 {
    left: 100%;
  }
  .col-l-offset-12 {
    margin-left: calc(100% + 15px);
  }
  .col-l-offset-half-wide-12 {
    margin-left: calc(100% + 15px);
  }
  .col-l-offset-wide-12 {
    margin-left: calc(100%);
  }
  .text-center-l {
    text-align: center;
  }
  .text-left-l {
    text-align: left;
  }
  .text-right-l {
    text-align: right;
  }
  .text-justify-l {
    text-align: justify;
  }
  .block-center-l {
    text-align: center;
  }
  .block-left-l {
    text-align: left;
  }
  .block-right-l {
    text-align: right;
  }
  .block-justify-l {
    text-align: justify;
  }
  .block-justify-l:after {
    content: "";
    width: 100%;
    display: inline-block;
    font-size: 0.000001%;
  }
  .col-hide-l {
    display: none !important;
  }
  .col-show-l {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) and (max-width: 9999px) {
  .col-xl-1 {
    width: calc(8.3333333333% - 30px);
    margin: 0 15px;
  }
  .col-xl-1-wide {
    width: 8.3333333333%;
    margin: 0;
  }
  .col-xl-1-wide-left {
    width: calc(8.3333333333% - 15px);
    margin: 0 15px 0 0;
  }
  .col-xl-1-wide-right {
    width: calc(8.3333333333% - 15px);
    margin: 0 0 0 15px;
  }
  .col-xl-2 {
    width: calc(16.6666666667% - 30px);
    margin: 0 15px;
  }
  .col-xl-2-wide {
    width: 16.6666666667%;
    margin: 0;
  }
  .col-xl-2-wide-left {
    width: calc(16.6666666667% - 15px);
    margin: 0 15px 0 0;
  }
  .col-xl-2-wide-right {
    width: calc(16.6666666667% - 15px);
    margin: 0 0 0 15px;
  }
  .col-xl-3 {
    width: calc(25% - 30px);
    margin: 0 15px;
  }
  .col-xl-3-wide {
    width: 25%;
    margin: 0;
  }
  .col-xl-3-wide-left {
    width: calc(25% - 15px);
    margin: 0 15px 0 0;
  }
  .col-xl-3-wide-right {
    width: calc(25% - 15px);
    margin: 0 0 0 15px;
  }
  .col-xl-4 {
    width: calc(33.3333333333% - 30px);
    margin: 0 15px;
  }
  .col-xl-4-wide {
    width: 33.3333333333%;
    margin: 0;
  }
  .col-xl-4-wide-left {
    width: calc(33.3333333333% - 15px);
    margin: 0 15px 0 0;
  }
  .col-xl-4-wide-right {
    width: calc(33.3333333333% - 15px);
    margin: 0 0 0 15px;
  }
  .col-xl-5 {
    width: calc(41.6666666667% - 30px);
    margin: 0 15px;
  }
  .col-xl-5-wide {
    width: 41.6666666667%;
    margin: 0;
  }
  .col-xl-5-wide-left {
    width: calc(41.6666666667% - 15px);
    margin: 0 15px 0 0;
  }
  .col-xl-5-wide-right {
    width: calc(41.6666666667% - 15px);
    margin: 0 0 0 15px;
  }
  .col-xl-6 {
    width: calc(50% - 30px);
    margin: 0 15px;
  }
  .col-xl-6-wide {
    width: 50%;
    margin: 0;
  }
  .col-xl-6-wide-left {
    width: calc(50% - 15px);
    margin: 0 15px 0 0;
  }
  .col-xl-6-wide-right {
    width: calc(50% - 15px);
    margin: 0 0 0 15px;
  }
  .col-xl-7 {
    width: calc(58.3333333333% - 30px);
    margin: 0 15px;
  }
  .col-xl-7-wide {
    width: 58.3333333333%;
    margin: 0;
  }
  .col-xl-7-wide-left {
    width: calc(58.3333333333% - 15px);
    margin: 0 15px 0 0;
  }
  .col-xl-7-wide-right {
    width: calc(58.3333333333% - 15px);
    margin: 0 0 0 15px;
  }
  .col-xl-8 {
    width: calc(66.6666666667% - 30px);
    margin: 0 15px;
  }
  .col-xl-8-wide {
    width: 66.6666666667%;
    margin: 0;
  }
  .col-xl-8-wide-left {
    width: calc(66.6666666667% - 15px);
    margin: 0 15px 0 0;
  }
  .col-xl-8-wide-right {
    width: calc(66.6666666667% - 15px);
    margin: 0 0 0 15px;
  }
  .col-xl-9 {
    width: calc(75% - 30px);
    margin: 0 15px;
  }
  .col-xl-9-wide {
    width: 75%;
    margin: 0;
  }
  .col-xl-9-wide-left {
    width: calc(75% - 15px);
    margin: 0 15px 0 0;
  }
  .col-xl-9-wide-right {
    width: calc(75% - 15px);
    margin: 0 0 0 15px;
  }
  .col-xl-10 {
    width: calc(83.3333333333% - 30px);
    margin: 0 15px;
  }
  .col-xl-10-wide {
    width: 83.3333333333%;
    margin: 0;
  }
  .col-xl-10-wide-left {
    width: calc(83.3333333333% - 15px);
    margin: 0 15px 0 0;
  }
  .col-xl-10-wide-right {
    width: calc(83.3333333333% - 15px);
    margin: 0 0 0 15px;
  }
  .col-xl-11 {
    width: calc(91.6666666667% - 30px);
    margin: 0 15px;
  }
  .col-xl-11-wide {
    width: 91.6666666667%;
    margin: 0;
  }
  .col-xl-11-wide-left {
    width: calc(91.6666666667% - 15px);
    margin: 0 15px 0 0;
  }
  .col-xl-11-wide-right {
    width: calc(91.6666666667% - 15px);
    margin: 0 0 0 15px;
  }
  .col-xl-12 {
    width: calc(100% - 30px);
    margin: 0 15px;
  }
  .col-xl-12-wide {
    width: 100%;
    margin: 0;
  }
  .col-xl-12-wide-left {
    width: calc(100% - 15px);
    margin: 0 15px 0 0;
  }
  .col-xl-12-wide-right {
    width: calc(100% - 15px);
    margin: 0 0 0 15px;
  }
  .col-xl-pull-0 {
    right: 0%;
  }
  .col-xl-push-0 {
    left: 0%;
  }
  .col-xl-offset-0 {
    margin-left: calc(0% + 15px);
  }
  .col-xl-offset-half-wide-0 {
    margin-left: calc(0% + 15px);
  }
  .col-xl-offset-wide-0 {
    margin-left: calc(0%);
  }
  .col-xl-pull-1 {
    right: 8.3333333333%;
  }
  .col-xl-push-1 {
    left: 8.3333333333%;
  }
  .col-xl-offset-1 {
    margin-left: calc(8.3333333333% + 15px);
  }
  .col-xl-offset-half-wide-1 {
    margin-left: calc(8.3333333333% + 15px);
  }
  .col-xl-offset-wide-1 {
    margin-left: calc(8.3333333333%);
  }
  .col-xl-pull-2 {
    right: 16.6666666667%;
  }
  .col-xl-push-2 {
    left: 16.6666666667%;
  }
  .col-xl-offset-2 {
    margin-left: calc(16.6666666667% + 15px);
  }
  .col-xl-offset-half-wide-2 {
    margin-left: calc(16.6666666667% + 15px);
  }
  .col-xl-offset-wide-2 {
    margin-left: calc(16.6666666667%);
  }
  .col-xl-pull-3 {
    right: 25%;
  }
  .col-xl-push-3 {
    left: 25%;
  }
  .col-xl-offset-3 {
    margin-left: calc(25% + 15px);
  }
  .col-xl-offset-half-wide-3 {
    margin-left: calc(25% + 15px);
  }
  .col-xl-offset-wide-3 {
    margin-left: calc(25%);
  }
  .col-xl-pull-4 {
    right: 33.3333333333%;
  }
  .col-xl-push-4 {
    left: 33.3333333333%;
  }
  .col-xl-offset-4 {
    margin-left: calc(33.3333333333% + 15px);
  }
  .col-xl-offset-half-wide-4 {
    margin-left: calc(33.3333333333% + 15px);
  }
  .col-xl-offset-wide-4 {
    margin-left: calc(33.3333333333%);
  }
  .col-xl-pull-5 {
    right: 41.6666666667%;
  }
  .col-xl-push-5 {
    left: 41.6666666667%;
  }
  .col-xl-offset-5 {
    margin-left: calc(41.6666666667% + 15px);
  }
  .col-xl-offset-half-wide-5 {
    margin-left: calc(41.6666666667% + 15px);
  }
  .col-xl-offset-wide-5 {
    margin-left: calc(41.6666666667%);
  }
  .col-xl-pull-6 {
    right: 50%;
  }
  .col-xl-push-6 {
    left: 50%;
  }
  .col-xl-offset-6 {
    margin-left: calc(50% + 15px);
  }
  .col-xl-offset-half-wide-6 {
    margin-left: calc(50% + 15px);
  }
  .col-xl-offset-wide-6 {
    margin-left: calc(50%);
  }
  .col-xl-pull-7 {
    right: 58.3333333333%;
  }
  .col-xl-push-7 {
    left: 58.3333333333%;
  }
  .col-xl-offset-7 {
    margin-left: calc(58.3333333333% + 15px);
  }
  .col-xl-offset-half-wide-7 {
    margin-left: calc(58.3333333333% + 15px);
  }
  .col-xl-offset-wide-7 {
    margin-left: calc(58.3333333333%);
  }
  .col-xl-pull-8 {
    right: 66.6666666667%;
  }
  .col-xl-push-8 {
    left: 66.6666666667%;
  }
  .col-xl-offset-8 {
    margin-left: calc(66.6666666667% + 15px);
  }
  .col-xl-offset-half-wide-8 {
    margin-left: calc(66.6666666667% + 15px);
  }
  .col-xl-offset-wide-8 {
    margin-left: calc(66.6666666667%);
  }
  .col-xl-pull-9 {
    right: 75%;
  }
  .col-xl-push-9 {
    left: 75%;
  }
  .col-xl-offset-9 {
    margin-left: calc(75% + 15px);
  }
  .col-xl-offset-half-wide-9 {
    margin-left: calc(75% + 15px);
  }
  .col-xl-offset-wide-9 {
    margin-left: calc(75%);
  }
  .col-xl-pull-10 {
    right: 83.3333333333%;
  }
  .col-xl-push-10 {
    left: 83.3333333333%;
  }
  .col-xl-offset-10 {
    margin-left: calc(83.3333333333% + 15px);
  }
  .col-xl-offset-half-wide-10 {
    margin-left: calc(83.3333333333% + 15px);
  }
  .col-xl-offset-wide-10 {
    margin-left: calc(83.3333333333%);
  }
  .col-xl-pull-11 {
    right: 91.6666666667%;
  }
  .col-xl-push-11 {
    left: 91.6666666667%;
  }
  .col-xl-offset-11 {
    margin-left: calc(91.6666666667% + 15px);
  }
  .col-xl-offset-half-wide-11 {
    margin-left: calc(91.6666666667% + 15px);
  }
  .col-xl-offset-wide-11 {
    margin-left: calc(91.6666666667%);
  }
  .col-xl-pull-12 {
    right: 100%;
  }
  .col-xl-push-12 {
    left: 100%;
  }
  .col-xl-offset-12 {
    margin-left: calc(100% + 15px);
  }
  .col-xl-offset-half-wide-12 {
    margin-left: calc(100% + 15px);
  }
  .col-xl-offset-wide-12 {
    margin-left: calc(100%);
  }
  .text-center-xl {
    text-align: center;
  }
  .text-left-xl {
    text-align: left;
  }
  .text-right-xl {
    text-align: right;
  }
  .text-justify-xl {
    text-align: justify;
  }
  .block-center-xl {
    text-align: center;
  }
  .block-left-xl {
    text-align: left;
  }
  .block-right-xl {
    text-align: right;
  }
  .block-justify-xl {
    text-align: justify;
  }
  .block-justify-xl:after {
    content: "";
    width: 100%;
    display: inline-block;
    font-size: 0.000001%;
  }
  .col-hide-xl {
    display: none !important;
  }
  .col-show-xl {
    display: inline-block !important;
  }
}
@media (min-width: 1580px) and (max-width: 9999px) {
  .col-full-1 {
    width: calc(8.3333333333% - 30px);
    margin: 0 15px;
  }
  .col-full-1-wide {
    width: 8.3333333333%;
    margin: 0;
  }
  .col-full-1-wide-left {
    width: calc(8.3333333333% - 15px);
    margin: 0 15px 0 0;
  }
  .col-full-1-wide-right {
    width: calc(8.3333333333% - 15px);
    margin: 0 0 0 15px;
  }
  .col-full-2 {
    width: calc(16.6666666667% - 30px);
    margin: 0 15px;
  }
  .col-full-2-wide {
    width: 16.6666666667%;
    margin: 0;
  }
  .col-full-2-wide-left {
    width: calc(16.6666666667% - 15px);
    margin: 0 15px 0 0;
  }
  .col-full-2-wide-right {
    width: calc(16.6666666667% - 15px);
    margin: 0 0 0 15px;
  }
  .col-full-3 {
    width: calc(25% - 30px);
    margin: 0 15px;
  }
  .col-full-3-wide {
    width: 25%;
    margin: 0;
  }
  .col-full-3-wide-left {
    width: calc(25% - 15px);
    margin: 0 15px 0 0;
  }
  .col-full-3-wide-right {
    width: calc(25% - 15px);
    margin: 0 0 0 15px;
  }
  .col-full-4 {
    width: calc(33.3333333333% - 30px);
    margin: 0 15px;
  }
  .col-full-4-wide {
    width: 33.3333333333%;
    margin: 0;
  }
  .col-full-4-wide-left {
    width: calc(33.3333333333% - 15px);
    margin: 0 15px 0 0;
  }
  .col-full-4-wide-right {
    width: calc(33.3333333333% - 15px);
    margin: 0 0 0 15px;
  }
  .col-full-5 {
    width: calc(41.6666666667% - 30px);
    margin: 0 15px;
  }
  .col-full-5-wide {
    width: 41.6666666667%;
    margin: 0;
  }
  .col-full-5-wide-left {
    width: calc(41.6666666667% - 15px);
    margin: 0 15px 0 0;
  }
  .col-full-5-wide-right {
    width: calc(41.6666666667% - 15px);
    margin: 0 0 0 15px;
  }
  .col-full-6 {
    width: calc(50% - 30px);
    margin: 0 15px;
  }
  .col-full-6-wide {
    width: 50%;
    margin: 0;
  }
  .col-full-6-wide-left {
    width: calc(50% - 15px);
    margin: 0 15px 0 0;
  }
  .col-full-6-wide-right {
    width: calc(50% - 15px);
    margin: 0 0 0 15px;
  }
  .col-full-7 {
    width: calc(58.3333333333% - 30px);
    margin: 0 15px;
  }
  .col-full-7-wide {
    width: 58.3333333333%;
    margin: 0;
  }
  .col-full-7-wide-left {
    width: calc(58.3333333333% - 15px);
    margin: 0 15px 0 0;
  }
  .col-full-7-wide-right {
    width: calc(58.3333333333% - 15px);
    margin: 0 0 0 15px;
  }
  .col-full-8 {
    width: calc(66.6666666667% - 30px);
    margin: 0 15px;
  }
  .col-full-8-wide {
    width: 66.6666666667%;
    margin: 0;
  }
  .col-full-8-wide-left {
    width: calc(66.6666666667% - 15px);
    margin: 0 15px 0 0;
  }
  .col-full-8-wide-right {
    width: calc(66.6666666667% - 15px);
    margin: 0 0 0 15px;
  }
  .col-full-9 {
    width: calc(75% - 30px);
    margin: 0 15px;
  }
  .col-full-9-wide {
    width: 75%;
    margin: 0;
  }
  .col-full-9-wide-left {
    width: calc(75% - 15px);
    margin: 0 15px 0 0;
  }
  .col-full-9-wide-right {
    width: calc(75% - 15px);
    margin: 0 0 0 15px;
  }
  .col-full-10 {
    width: calc(83.3333333333% - 30px);
    margin: 0 15px;
  }
  .col-full-10-wide {
    width: 83.3333333333%;
    margin: 0;
  }
  .col-full-10-wide-left {
    width: calc(83.3333333333% - 15px);
    margin: 0 15px 0 0;
  }
  .col-full-10-wide-right {
    width: calc(83.3333333333% - 15px);
    margin: 0 0 0 15px;
  }
  .col-full-11 {
    width: calc(91.6666666667% - 30px);
    margin: 0 15px;
  }
  .col-full-11-wide {
    width: 91.6666666667%;
    margin: 0;
  }
  .col-full-11-wide-left {
    width: calc(91.6666666667% - 15px);
    margin: 0 15px 0 0;
  }
  .col-full-11-wide-right {
    width: calc(91.6666666667% - 15px);
    margin: 0 0 0 15px;
  }
  .col-full-12 {
    width: calc(100% - 30px);
    margin: 0 15px;
  }
  .col-full-12-wide {
    width: 100%;
    margin: 0;
  }
  .col-full-12-wide-left {
    width: calc(100% - 15px);
    margin: 0 15px 0 0;
  }
  .col-full-12-wide-right {
    width: calc(100% - 15px);
    margin: 0 0 0 15px;
  }
  .col-full-pull-0 {
    right: 0%;
  }
  .col-full-push-0 {
    left: 0%;
  }
  .col-full-offset-0 {
    margin-left: calc(0% + 15px);
  }
  .col-full-offset-half-wide-0 {
    margin-left: calc(0% + 15px);
  }
  .col-full-offset-wide-0 {
    margin-left: calc(0%);
  }
  .col-full-pull-1 {
    right: 8.3333333333%;
  }
  .col-full-push-1 {
    left: 8.3333333333%;
  }
  .col-full-offset-1 {
    margin-left: calc(8.3333333333% + 15px);
  }
  .col-full-offset-half-wide-1 {
    margin-left: calc(8.3333333333% + 15px);
  }
  .col-full-offset-wide-1 {
    margin-left: calc(8.3333333333%);
  }
  .col-full-pull-2 {
    right: 16.6666666667%;
  }
  .col-full-push-2 {
    left: 16.6666666667%;
  }
  .col-full-offset-2 {
    margin-left: calc(16.6666666667% + 15px);
  }
  .col-full-offset-half-wide-2 {
    margin-left: calc(16.6666666667% + 15px);
  }
  .col-full-offset-wide-2 {
    margin-left: calc(16.6666666667%);
  }
  .col-full-pull-3 {
    right: 25%;
  }
  .col-full-push-3 {
    left: 25%;
  }
  .col-full-offset-3 {
    margin-left: calc(25% + 15px);
  }
  .col-full-offset-half-wide-3 {
    margin-left: calc(25% + 15px);
  }
  .col-full-offset-wide-3 {
    margin-left: calc(25%);
  }
  .col-full-pull-4 {
    right: 33.3333333333%;
  }
  .col-full-push-4 {
    left: 33.3333333333%;
  }
  .col-full-offset-4 {
    margin-left: calc(33.3333333333% + 15px);
  }
  .col-full-offset-half-wide-4 {
    margin-left: calc(33.3333333333% + 15px);
  }
  .col-full-offset-wide-4 {
    margin-left: calc(33.3333333333%);
  }
  .col-full-pull-5 {
    right: 41.6666666667%;
  }
  .col-full-push-5 {
    left: 41.6666666667%;
  }
  .col-full-offset-5 {
    margin-left: calc(41.6666666667% + 15px);
  }
  .col-full-offset-half-wide-5 {
    margin-left: calc(41.6666666667% + 15px);
  }
  .col-full-offset-wide-5 {
    margin-left: calc(41.6666666667%);
  }
  .col-full-pull-6 {
    right: 50%;
  }
  .col-full-push-6 {
    left: 50%;
  }
  .col-full-offset-6 {
    margin-left: calc(50% + 15px);
  }
  .col-full-offset-half-wide-6 {
    margin-left: calc(50% + 15px);
  }
  .col-full-offset-wide-6 {
    margin-left: calc(50%);
  }
  .col-full-pull-7 {
    right: 58.3333333333%;
  }
  .col-full-push-7 {
    left: 58.3333333333%;
  }
  .col-full-offset-7 {
    margin-left: calc(58.3333333333% + 15px);
  }
  .col-full-offset-half-wide-7 {
    margin-left: calc(58.3333333333% + 15px);
  }
  .col-full-offset-wide-7 {
    margin-left: calc(58.3333333333%);
  }
  .col-full-pull-8 {
    right: 66.6666666667%;
  }
  .col-full-push-8 {
    left: 66.6666666667%;
  }
  .col-full-offset-8 {
    margin-left: calc(66.6666666667% + 15px);
  }
  .col-full-offset-half-wide-8 {
    margin-left: calc(66.6666666667% + 15px);
  }
  .col-full-offset-wide-8 {
    margin-left: calc(66.6666666667%);
  }
  .col-full-pull-9 {
    right: 75%;
  }
  .col-full-push-9 {
    left: 75%;
  }
  .col-full-offset-9 {
    margin-left: calc(75% + 15px);
  }
  .col-full-offset-half-wide-9 {
    margin-left: calc(75% + 15px);
  }
  .col-full-offset-wide-9 {
    margin-left: calc(75%);
  }
  .col-full-pull-10 {
    right: 83.3333333333%;
  }
  .col-full-push-10 {
    left: 83.3333333333%;
  }
  .col-full-offset-10 {
    margin-left: calc(83.3333333333% + 15px);
  }
  .col-full-offset-half-wide-10 {
    margin-left: calc(83.3333333333% + 15px);
  }
  .col-full-offset-wide-10 {
    margin-left: calc(83.3333333333%);
  }
  .col-full-pull-11 {
    right: 91.6666666667%;
  }
  .col-full-push-11 {
    left: 91.6666666667%;
  }
  .col-full-offset-11 {
    margin-left: calc(91.6666666667% + 15px);
  }
  .col-full-offset-half-wide-11 {
    margin-left: calc(91.6666666667% + 15px);
  }
  .col-full-offset-wide-11 {
    margin-left: calc(91.6666666667%);
  }
  .col-full-pull-12 {
    right: 100%;
  }
  .col-full-push-12 {
    left: 100%;
  }
  .col-full-offset-12 {
    margin-left: calc(100% + 15px);
  }
  .col-full-offset-half-wide-12 {
    margin-left: calc(100% + 15px);
  }
  .col-full-offset-wide-12 {
    margin-left: calc(100%);
  }
  .text-center-full {
    text-align: center;
  }
  .text-left-full {
    text-align: left;
  }
  .text-right-full {
    text-align: right;
  }
  .text-justify-full {
    text-align: justify;
  }
  .block-center-full {
    text-align: center;
  }
  .block-left-full {
    text-align: left;
  }
  .block-right-full {
    text-align: right;
  }
  .block-justify-full {
    text-align: justify;
  }
  .block-justify-full:after {
    content: "";
    width: 100%;
    display: inline-block;
    font-size: 0.000001%;
  }
  .col-hide-full {
    display: none !important;
  }
  .col-show-full {
    display: inline-block !important;
  }
}
.container, .row {
  font-size: 0.00000001%;
}
.container > *, .row > * {
  font-size: medium;
}

.row {
  width: 100%;
  font-size: 0.00000001%;
}

.container {
  max-width: 1480px;
  margin: 0 auto;
  width: 90%;
  font-size: 0.00000001%;
}
@media (min-width: 768px) {
  .container {
    width: 95%;
  }
}

/* GW-Grid helpers */
.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.row:before,
.row:after {
  content: " ";
  display: table;
}

.clearfix:after,
.container:after,
.row:after {
  clear: both;
}

.alignleft {
  float: left;
}

img.alignleft, .wp-caption.alignleft {
  margin: 0em 1.5em 0em 0em;
}

.alignright {
  float: right;
}

img.alignright, .wp-caption.alignright {
  margin: 0em 0em 0em 1.5em;
}

.aligncenter {
  margin: 0 auto;
  display: block;
  clear: both;
}

.hide {
  display: none;
}

.block {
  display: block;
}

.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

.table {
  display: table;
}

.table-cell {
  display: table-cell;
}

.table-row {
  display: table-row;
}

.full-height {
  height: 100%;
}

.full-width {
  width: 100%;
}

.full-image-center {
  overflow: hidden;
  text-align: center;
}
.full-image-center img {
  margin: 0 -100%;
}

.full-image-center-stretch {
  overflow: hidden;
  text-align: center;
}
.full-image-center-stretch img {
  width: 100%;
  margin: 0 -100%;
}

.cookie-warning {
  position: fixed;
  bottom: 0px;
  width: 100%;
  box-sizing: border-box;
  display: table;
  background: rgba(32, 34, 38, 0.8);
  padding: 30px 40px;
  font-size: 12px;
  font-family: Arial, sans-serif;
  color: white;
}
.cookie-warning .cookie-text {
  vertical-align: middle;
  width: calc(100% - 310px);
  display: table-cell;
  margin: 0px;
  line-height: 1.5;
}
@media (min-width: 480px) and (max-width: 767px) {
  .cookie-warning .cookie-text {
    width: 100%;
    display: block;
    margin-bottom: 10px;
  }
}
@media (min-width: 0px) and (max-width: 479px) {
  .cookie-warning .cookie-text {
    width: 100%;
    display: block;
    margin-bottom: 10px;
  }
}
.cookie-warning .cookie-actions {
  vertical-align: middle;
  width: 300px;
  display: table-cell;
  text-align: right;
}
@media (min-width: 480px) and (max-width: 767px) {
  .cookie-warning .cookie-actions {
    width: 100%;
    display: block;
  }
}
@media (min-width: 0px) and (max-width: 479px) {
  .cookie-warning .cookie-actions {
    width: 100%;
    display: block;
  }
}
.cookie-warning .cookie-btn {
  color: white;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 3px;
  text-decoration: none;
  border: 0px;
  margin-left: 20px;
  font-size: 14px;
  line-height: 1.3;
  cursor: pointer;
}
.cookie-warning .cookie-btn.ok {
  background: #3B89C7;
}
.cookie-warning .cookie-btn.readmore {
  background: #7B8A8B;
}

/**
 * Define your own color, fonts etc. in here
 * 
 */
/* MIXINS */
#tinymce {
  min-height: auto !important;
}

#tinymce, .wysiwyg {
  font-family: "nimbus-sans", sans-serif;
}
#tinymce a, .wysiwyg a {
  color: #000010;
  text-decoration: none;
  border-bottom: 1px solid #76746F;
}
#tinymce a:hover, #tinymce a:focus, .wysiwyg a:hover, .wysiwyg a:focus {
  color: #002597;
  border-color: #002597;
}
#tinymce h1, #tinymce h2, #tinymce h3, #tinymce h4, #tinymce h5, #tinymce h6, #tinymce p, #tinymce ul, #tinymce ol, #tinymce li, #tinymce a, #tinymce span, .wysiwyg h1, .wysiwyg h2, .wysiwyg h3, .wysiwyg h4, .wysiwyg h5, .wysiwyg h6, .wysiwyg p, .wysiwyg ul, .wysiwyg ol, .wysiwyg li, .wysiwyg a, .wysiwyg span {
  margin-top: 0px;
}
#tinymce p, #tinymce ul li, #tinymce ol li, #tinymce a, #tinymce span, .wysiwyg p, .wysiwyg ul li, .wysiwyg ol li, .wysiwyg a, .wysiwyg span {
  font-size: 16px;
  line-height: 1.7142857143em;
}
#tinymce p, .wysiwyg p {
  margin-top: 0px;
  margin-bottom: 24px;
}
#tinymce h2, .wysiwyg h2 {
  font-size: 22px;
  line-height: 1.2727272727em;
  margin-bottom: 35px;
}
#tinymce h3, #tinymce h4, #tinymce h5, .wysiwyg h3, .wysiwyg h4, .wysiwyg h5 {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0px;
  line-height: 1.8333333333em;
  letter-spacing: 0.1em;
}
#tinymce h3, .wysiwyg h3 {
  font-size: 16px;
}
#tinymce h4, .wysiwyg h4 {
  font-size: 14px;
}
#tinymce h5, .wysiwyg h5 {
  font-size: 14px;
}
#tinymce *:last-child, .wysiwyg *:last-child {
  margin-bottom: 0px;
}

.filter-row-new {
  overflow: visible;
  position: relative;
  margin-bottom: 50px;
}
.filter-row-new .filter-col {
  overflow: visible;
  position: relative;
}
.filter-row-new .filter-col .open-filter {
  width: 100%;
  border-radius: 0px;
  border: solid 1px #adaba6;
  background-color: #fff;
  text-align: left;
  transition: 0.2s all;
  display: flex;
  align-items: center;
  padding: 16px 5px;
}
.filter-row-new .filter-col .open-filter .heading {
  text-transform: uppercase;
  font-weight: bold;
}
.filter-row-new .filter-col .open-filter p {
  margin: 0;
  font-size: 12px;
  margin-left: 10px;
  margin-right: 5px;
}
.filter-row-new .filter-col .open-filter .val {
  margin-top: 4px;
  color: #525252;
}
.filter-row-new .filter-col .open-filter span {
  margin-left: auto;
  margin-right: 10px;
}
.filter-row-new .filter-col .open-filter:hover, .filter-row-new .filter-col .open-filter:focus {
  background-color: #f1efe9;
}
.filter-row-new .filter-col .open-filter.is-open span {
  transform: rotate(90deg) !important;
}
.filter-row-new .filter-col.exit-filters .close-filter-button {
  width: 100%;
  border-radius: 0px;
  border: solid 1px #adaba6;
  text-align: left;
  transition: 0.2s all;
  display: flex;
  align-items: center;
  background-color: #000;
  color: #fff;
  font-size: 20px;
  padding-top: 20px;
  padding-bottom: 21px;
}
.filter-row-new .filter-col.exit-filters .close-filter-button p {
  margin: 0;
  font-size: 16px;
  text-transform: uppercase;
  margin-left: 10px;
}
.filter-row-new .filter-col.exit-filters .close-filter-button span {
  visibility: hidden;
  padding-left: 4px;
  padding-right: 4px;
  margin-left: auto;
  margin-right: 10px;
}
.filter-row-new .filter-col.exit-filters .close-filter-button.show-exit span {
  visibility: visible;
}
.filter-row-new .filter-col.exit-filters .close-filter-button:hover, .filter-row-new .filter-col.exit-filters .close-filter-button:focus {
  background-color: #525252;
}
.filter-row-new .filter-col.exit-filters .close-filter-button:hover span, .filter-row-new .filter-col.exit-filters .close-filter-button:focus span {
  background-color: #fff;
  color: #000;
}
.filter-row-new .filter-col .filter-options {
  width: 100%;
  z-index: 100;
  border: solid 1px #adaba6;
  background-color: #fefcf6;
  position: absolute;
  top: 66px;
  left: 0;
  display: flex;
  flex-direction: column;
  max-height: 250px;
  overflow-y: scroll;
  box-sizing: border-box;
  padding: 10px 0px;
}
.filter-row-new .filter-col .filter-options .filter-heading {
  padding: 10px 10px;
  margin: 0;
  font-weight: bold;
}
.filter-row-new .filter-col .filter-options .filter-button {
  background: none;
  padding: 10px 10px;
  border: none;
  text-align: left;
  font-weight: 100;
}
.filter-row-new .filter-col .filter-options .filter-button:hover, .filter-row-new .filter-col .filter-options .filter-button:focus {
  background-color: #f1efe9;
}

#eventos-form-widget .nav-pills .nav-link.active,  #eventos-form-widget .nav-pills .show > .nav-link  {
  background-color: #6aa342 !important;
  color: #fff  !important;
}

#eventos-form-widget .nav-pills a.nav-link.active {
  color: white !important;
}

body {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  background-color: #fefcf6;
  overflow-x: hidden;
  overflow-y: scroll;
  color: #000010;
  font-family: "nimbus-sans", sans-serif;
}
body.hide-scrollbar {
  overflow-y: hidden;
}
@media (min-width: 1200px) and (max-width: 9999px) {
  body.has-cookie-warning {
    padding-top: 77px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  body.has-cookie-warning {
    padding-top: 77px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  body.has-cookie-warning {
    padding-top: 77px;
  }
}

main {
  flex: 1 0 auto;
  z-index: 2;
  margin-bottom: 150px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .container {
    width: 90%;
  }
}

.main-logo .logo-svg {
  display: none;
}
@media (min-width: 1200px) and (max-width: 9999px) {
  .main-logo .logo-svg.logotype {
    display: block;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .main-logo .logo-svg.logotype {
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .main-logo .logo-svg.logotype {
    display: block;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .main-logo .logo-svg.logotype {
    display: block;
  }
}
@media (min-width: 0px) and (max-width: 479px) {
  .main-logo .logo-svg.logomark {
    display: block;
  }
}

.background-stripes {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.background-stripes .stripes {
  display: none;
  height: 100%;
}
@media (min-width: 1200px) and (max-width: 9999px) {
  .background-stripes .stripes.show-xl {
    border-left: 1px solid #f1efe9;
    display: block;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .background-stripes .stripes.show-l {
    border-left: 1px solid #f1efe9;
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .background-stripes .stripes.show-m {
    border-left: 1px solid #f1efe9;
    display: block;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .background-stripes .stripes.show-s {
    border-left: 1px solid #f1efe9;
    display: block;
  }
}
@media (min-width: 0px) and (max-width: 479px) {
  .background-stripes .stripes.show-xs {
    width: 100%;
    display: block;
  }
}
.background-stripes .stripe {
  height: 100%;
  border-right: 1px solid #f1efe9;
}

.square-div:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.btn, .cookie-warning .cookie-btn {
  background-color: #000000;
  outline: none;
  border: none;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
  padding: 12px 20px 10px;
  text-decoration: none;
  display: inline-block;
  line-height: 1.42857em;
}
.btn.btn-borders, .cookie-warning .btn-borders.cookie-btn {
  border: solid 2px black;
}
.btn.no-bg-button, .cookie-warning .no-bg-button.cookie-btn {
  background-color: transparent;
  color: #525252;
  font-size: 18px;
  font-family: "nimbus-sans-extended", sans-serif;
  font-weight: 400;
  border: none;
}

.show-more-container {
  text-align: center;
}

.chosen-container, .chosen-container-single {
  width: 100% !important;
  background: #ffffff;
  box-sizing: border-box;
}
.chosen-container.chosen-with-drop .chosen-single:after, .chosen-container-single.chosen-with-drop .chosen-single:after {
  transform: translateY(-50%) rotate(180deg);
}
.chosen-container .chosen-drop, .chosen-container-single .chosen-drop {
  border-color: #d6d4cf;
  width: calc(100% + 1px);
  left: -1px;
  margin-top: 0px;
  box-shadow: none !important;
  border-radius: 0px !important;
  background-color: #f1efe9 !important;
}
.chosen-container .chosen-drop li, .chosen-container-single .chosen-drop li {
  padding: 10px 20px !important;
  list-style: none;
}
.chosen-container .chosen-drop .highlighted, .chosen-container-single .chosen-drop .highlighted {
  background-color: none !important;
  background-image: none !important;
}
.chosen-container .chosen-drop .chosen-search, .chosen-container-single .chosen-drop .chosen-search {
  display: none !important;
}
.chosen-container .chosen-single, .chosen-container-single .chosen-single {
  height: 60px !important;
  color: #adaba6;
  border-radius: 0px !important;
  border: 1px solid #d6d4cf !important;
  border-left: 0px !important;
  background-image: none !important;
  padding: 8px !important;
  padding-left: 16px !important;
  padding-right: 16px !important;
  box-shadow: none !important;
}
.chosen-container .chosen-single:before, .chosen-container-single .chosen-single:before {
  content: attr(data-before);
  display: block;
  text-transform: uppercase;
  font-size: 12px;
  color: #000010;
  margin-bottom: -6px;
  font-weight: 600;
}
.chosen-container .chosen-single:after, .chosen-container-single .chosen-single:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' id='icon-arrow' viewBox='0 0 16 16'%3E %3Cpath d='M1.867 3.333l6.133 6.133 6.133-6.133 1.867 1.867-8 8-8-8 1.867-1.867z'%3E%3C/path%3E %3C/svg%3E");
  content: "";
  display: block;
  height: 12px;
  width: 12px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.chosen-container .chosen-results, .chosen-container-single .chosen-results {
  padding: 0px 0px;
  margin: 0px;
  color: #000010;
  font-size: 14px;
  line-height: 2.2;
}
.chosen-container .chosen-results li, .chosen-container-single .chosen-results li {
  padding: 10px 0px;
}
.chosen-container .chosen-results li.highlighted, .chosen-container .chosen-results li:focus, .chosen-container .chosen-results li:hover, .chosen-container-single .chosen-results li.highlighted, .chosen-container-single .chosen-results li:focus, .chosen-container-single .chosen-results li:hover {
  background-color: #d6d4cf;
  color: #000010;
}
.chosen-container .chosen-results li.group-result.highlighted, .chosen-container .chosen-results li.group-result:focus, .chosen-container .chosen-results li.group-result:hover, .chosen-container-single .chosen-results li.group-result.highlighted, .chosen-container-single .chosen-results li.group-result:focus, .chosen-container-single .chosen-results li.group-result:hover {
  color: #000010;
  background-color: transparent;
}

.cookie-warning {
  z-index: 10;
  background: #002597;
  font-family: "nimbus-sans", sans-serif;
  padding: 20px 40px;
}
@media (min-width: 1200px) and (max-width: 9999px) {
  .cookie-warning {
    bottom: auto;
    top: 0px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cookie-warning {
    bottom: auto;
    top: 0px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cookie-warning {
    bottom: auto;
    top: 0px;
  }
}
.cookie-warning .cookie-text {
  font-size: 14px;
}
@media (min-width: 0px) and (max-width: 479px) {
  .cookie-warning .cookie-text {
    margin-bottom: 20px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .cookie-warning .cookie-text {
    margin-bottom: 20px;
  }
}
@media (min-width: 0px) and (max-width: 479px) {
  .cookie-warning .cookie-actions {
    text-align: left;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .cookie-warning .cookie-actions {
    text-align: left;
  }
}
.cookie-warning .cookie-btn {
  border-radius: 0px;
}
.cookie-warning .cookie-btn:first-child {
  margin-left: 0px;
}
.cookie-warning .cookie-btn.ok {
  background: #ffffff;
  color: #000000;
}
.cookie-warning .cookie-btn.readmore {
  background: #525252;
}
@media (min-width: 0px) and (max-width: 479px) {
  .cookie-warning .cookie-btn {
    width: 100%;
    padding-left: 0px;
    margin-left: 0px;
    text-align: center;
    box-sizing: border-box;
    margin-bottom: 10px;
  }
}

.overflow-visible {
  overflow: visible;
}

.info-box {
  margin-top: 100px;
  background-color: #ffffff;
  font-family: "nimbus-sans", sans-serif;
  padding: 50px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .info-box {
    padding: 40px !important;
  }
}
@media (min-width: 0px) and (max-width: 479px) {
  .info-box {
    margin-top: 70px;
    padding: 30px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .info-box {
    margin-top: 70px;
    padding: 30px;
  }
}
.info-box h3, .info-box h2 {
  margin-bottom: 0px;
  margin-top: 0px;
  text-transform: uppercase;
  font-family: "nimbus-sans-extended", sans-serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.04em;
}
@media (min-width: 0px) and (max-width: 479px) {
  .info-box h3, .info-box h2 {
    border-bottom: 1px solid #f1efe9;
    padding-bottom: 35px;
  }
}
.info-box .box-title {
  font-weight: 600;
  font-size: 16px !important;
  line-height: 1.2em;
  display: inline-block;
}
@media (min-width: 0px) and (max-width: 479px) {
  .info-box .box-title {
    font-size: 20px !important;
  }
}
.info-box .info {
  padding-top: 30px;
  font-size: 16px;
  line-height: 28px;
}
@media (min-width: 0px) and (max-width: 479px) {
  .info-box .info {
    padding-top: 10px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .info-box .info {
    padding-top: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .info-box .info {
    padding-top: 10px;
  }
}
@media (min-width: 0px) and (max-width: 479px) {
  .info-box .info .box-title {
    margin-top: 30px;
  }
}
.info-box .info:nth-child(-n+6) {
  border-top: 1px solid #f1efe9;
  padding-top: 40px;
}
@media (min-width: 0px) and (max-width: 479px) {
  .info-box .info:nth-child(-n+6) {
    border-top: 0px;
    padding-top: 10px;
  }
}
@media (min-width: 0px) and (max-width: 479px) {
  .info-box .info:nth-child(-n+4) {
    border-top: 1px solid #f1efe9;
  }
}
.info-box .info .info-container p:first-child {
  margin-top: 0px;
}
.info-box .info .info-container p:last-child {
  margin-bottom: 0px;
}
.info-box .info .info-container a {
  color: #000010;
  text-decoration: none;
  border-bottom: 1px solid #76746F;
}
.info-box .info .info-container a:hover, .info-box .info .info-container a:focus {
  color: #002597;
  border-color: #002597;
}
.info-box .left-block {
  padding-right: 15px;
}
@media (min-width: 0px) and (max-width: 479px) {
  .info-box .left-block {
    padding-right: 0px;
  }
}
.info-box .center-block {
  padding-right: 15px;
  padding-left: 15px;
}
@media (min-width: 0px) and (max-width: 479px) {
  .info-box .center-block {
    padding-right: 0px;
    padding-left: 0px;
  }
}
.info-box .right-block {
  padding-left: 15px;
}
@media (min-width: 0px) and (max-width: 479px) {
  .info-box .right-block {
    padding-left: 0px;
  }
}

.related-row > h3, .related-row > h2 {
  text-transform: uppercase;
  text-align: center;
  font-family: "nimbus-sans-extended", sans-serif;
  margin-bottom: 4rem;
  font-weight: 400;
  font-size: 18px;
  color: #525252;
  letter-spacing: 0.04em;
}

.single-related, .event-archive .single-event {
  margin-bottom: 4rem;
  padding-top: 1rem;
  display: flex;
}
.single-related:hover h3, .single-related:hover .info-col, .single-related:focus h3, .single-related:focus .info-col, .event-archive .single-event:hover h3, .event-archive .single-event:hover .info-col, .event-archive .single-event:focus h3, .event-archive .single-event:focus .info-col {
  color: #002597 !important;
}
.single-related:hover h3 .reg, .single-related:hover .info-col .reg, .single-related:focus h3 .reg, .single-related:focus .info-col .reg, .event-archive .single-event:hover h3 .reg, .event-archive .single-event:hover .info-col .reg, .event-archive .single-event:focus h3 .reg, .event-archive .single-event:focus .info-col .reg {
  color: #002597 !important;
}
.single-related:hover h3 .btn, .single-related:hover h3 .cookie-warning .cookie-btn, .cookie-warning .single-related:hover h3 .cookie-btn, .single-related:hover .info-col .btn, .single-related:hover .info-col .cookie-warning .cookie-btn, .cookie-warning .single-related:hover .info-col .cookie-btn, .single-related:focus h3 .btn, .single-related:focus h3 .cookie-warning .cookie-btn, .cookie-warning .single-related:focus h3 .cookie-btn, .single-related:focus .info-col .btn, .single-related:focus .info-col .cookie-warning .cookie-btn, .cookie-warning .single-related:focus .info-col .cookie-btn, .event-archive .single-event:hover h3 .btn, .event-archive .single-event:hover h3 .cookie-warning .cookie-btn, .cookie-warning .event-archive .single-event:hover h3 .cookie-btn, .event-archive .single-event:hover .info-col .btn, .event-archive .single-event:hover .info-col .cookie-warning .cookie-btn, .cookie-warning .event-archive .single-event:hover .info-col .cookie-btn, .event-archive .single-event:focus h3 .btn, .event-archive .single-event:focus h3 .cookie-warning .cookie-btn, .cookie-warning .event-archive .single-event:focus h3 .cookie-btn, .event-archive .single-event:focus .info-col .btn, .event-archive .single-event:focus .info-col .cookie-warning .cookie-btn, .cookie-warning .event-archive .single-event:focus .info-col .cookie-btn {
  color: #ffffff !important;
}
@media (min-width: 0px) and (max-width: 479px) {
  .single-related, .event-archive .single-event {
    display: block;
  }
}
@media (min-width: 0px) and (max-width: 479px) {
  .single-related .image-div, .event-archive .single-event .image-div {
    width: 68.5% !important;
    margin-bottom: 25px;
  }
}
.single-related .single-event-content, .single-related .single-related-content, .event-archive .single-event .single-event-content, .event-archive .single-event .single-related-content {
  display: flex;
  height: 100%;
  flex-direction: column;
}
@media (min-width: 768px) and (max-width: 991px) {
  .single-related .single-event-content .info-col, .single-related .single-related-content .info-col, .event-archive .single-event .single-event-content .info-col, .event-archive .single-event .single-related-content .info-col {
    height: auto;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .single-related .single-event-content .info-col, .single-related .single-related-content .info-col, .event-archive .single-event .single-event-content .info-col, .event-archive .single-event .single-related-content .info-col {
    height: auto;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .single-related .single-event-content, .single-related .single-related-content, .event-archive .single-event .single-event-content, .event-archive .single-event .single-related-content {
    display: block;
  }
}
@media (min-width: 0px) and (max-width: 479px) {
  .single-related .single-event-content, .single-related .single-related-content, .event-archive .single-event .single-event-content, .event-archive .single-event .single-related-content {
    display: block;
  }
}
.single-related a, .event-archive .single-event a {
  color: #000010;
  display: inline-block;
  font-family: "nimbus-sans", sans-serif;
  text-decoration: none;
}
.single-related a.btn, .single-related .cookie-warning a.cookie-btn, .cookie-warning .single-related a.cookie-btn, .event-archive .single-event a.btn, .event-archive .single-event .cookie-warning a.cookie-btn, .cookie-warning .event-archive .single-event a.cookie-btn {
  color: #ffffff;
}
.single-related .meta, .event-archive .single-event .meta {
  position: relative;
  border-bottom: 1px solid #d6d4cf;
  padding-bottom: 20px;
  margin-left: 55px;
  margin-top: -3px;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 0px) and (max-width: 479px) {
  .single-related .meta, .event-archive .single-event .meta {
    margin-left: 0px;
  }
}
.single-related .meta .single-meta, .event-archive .single-event .meta .single-meta {
  color: #525252;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.03em;
  margin: 0px;
}
.single-related h3, .event-archive .single-event h3 {
  margin-left: 55px;
  text-transform: none;
  font-weight: 600;
  text-align: left;
  font-size: 22px;
  font-family: "nimbus-sans", sans-serif;
  margin-top: 20px;
  margin-bottom: 19px;
}
@media (min-width: 0px) and (max-width: 479px) {
  .single-related h3, .event-archive .single-event h3 {
    margin-left: 0px;
  }
}
.single-related .info-row, .event-archive .single-event .info-row {
  flex: 1;
  min-height: 40px;
}
.single-related .info-col, .event-archive .single-event .info-col {
  height: 100%;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4285714286em;
  letter-spacing: 0.03em;
  color: #525252;
}
.single-related .info-col .reg, .event-archive .single-event .info-col .reg {
  color: #525252;
}
.single-related .info-col p, .event-archive .single-event .info-col p {
  margin: 0px;
}
@media (min-width: 0px) and (max-width: 479px) {
  .single-related .info-col, .event-archive .single-event .info-col {
    padding-left: 55px;
    margin-bottom: 20px;
  }
  .single-related .info-col.empty, .event-archive .single-event .info-col.empty {
    margin-bottom: 0px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .single-related .info-col, .event-archive .single-event .info-col {
    padding-left: 55px;
    margin-bottom: 20px;
  }
  .single-related .info-col.empty, .event-archive .single-event .info-col.empty {
    margin-bottom: 0px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .single-related .info-col, .event-archive .single-event .info-col {
    padding-left: 55px;
    margin-bottom: 20px;
  }
  .single-related .info-col.empty, .event-archive .single-event .info-col.empty {
    margin-bottom: 0px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .single-related .info-col, .event-archive .single-event .info-col {
    padding-left: 55px;
    margin-bottom: 20px;
  }
  .single-related .info-col.empty, .event-archive .single-event .info-col.empty {
    margin-bottom: 0px;
  }
}
@media (min-width: 0px) and (max-width: 479px) {
  .single-related .info-col, .event-archive .single-event .info-col {
    padding-left: 0px;
  }
}
.single-related .info-col:first-child, .event-archive .single-event .info-col:first-child {
  padding-left: 55px;
  box-sizing: border-box;
}
@media (min-width: 0px) and (max-width: 479px) {
  .single-related .info-col:first-child, .event-archive .single-event .info-col:first-child {
    padding-left: 0px;
  }
}
.single-related .info-col:last-child, .event-archive .single-event .info-col:last-child {
  position: relative;
}
.single-related .info-col:last-child .info-col-wrapper, .event-archive .single-event .info-col:last-child .info-col-wrapper {
  display: flex;
  align-items: flex-end;
}
@media (min-width: 0px) and (max-width: 479px) {
  .single-related .info-col:last-child .info-col-wrapper, .event-archive .single-event .info-col:last-child .info-col-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .single-related .info-col:last-child .info-col-wrapper, .event-archive .single-event .info-col:last-child .info-col-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}
.single-related .info-col:last-child .info-col-wrapper .archive-text, .event-archive .single-event .info-col:last-child .info-col-wrapper .archive-text {
  flex: 1 0;
  font-size: 16px;
  padding-right: 60px;
}
@media (min-width: 0px) and (max-width: 479px) {
  .single-related .info-col:last-child .info-col-wrapper .archive-text, .event-archive .single-event .info-col:last-child .info-col-wrapper .archive-text {
    display: none;
  }
}
@media (min-width: 0px) and (max-width: 479px) {
  .single-related .info-col:last-child .btn, .single-related .info-col:last-child .cookie-warning .cookie-btn, .cookie-warning .single-related .info-col:last-child .cookie-btn, .event-archive .single-event .info-col:last-child .btn, .event-archive .single-event .info-col:last-child .cookie-warning .cookie-btn, .cookie-warning .event-archive .single-event .info-col:last-child .cookie-btn {
    margin-top: 20px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .single-related .info-col:last-child .btn, .single-related .info-col:last-child .cookie-warning .cookie-btn, .cookie-warning .single-related .info-col:last-child .cookie-btn, .event-archive .single-event .info-col:last-child .btn, .event-archive .single-event .info-col:last-child .cookie-warning .cookie-btn, .cookie-warning .event-archive .single-event .info-col:last-child .cookie-btn {
    margin-top: 20px;
  }
}
@media (min-width: 0px) and (max-width: 479px) {
  .single-related .info-col:last-child, .event-archive .single-event .info-col:last-child {
    text-align: left;
    margin-bottom: 0px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .single-related .info-col:last-child, .event-archive .single-event .info-col:last-child {
    text-align: left;
    margin-bottom: 0px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .single-related .info-col:last-child, .event-archive .single-event .info-col:last-child {
    text-align: left;
    margin-bottom: 0px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .single-related .info-col:last-child, .event-archive .single-event .info-col:last-child {
    text-align: left;
    margin-bottom: 0px;
  }
}
.single-related:last-child, .event-archive .single-event:last-child {
  margin-bottom: 0px;
}

.page-header {
  margin-top: 139px;
  margin-bottom: 92px;
}
@media (min-width: 0px) and (max-width: 479px) {
  .page-header {
    margin-top: 89px;
    margin-bottom: 67px;
  }
}
.page-header .page-meta {
  margin-bottom: 36px;
  margin-top: -52px;
}
.page-header .page-meta .single-meta {
  color: #000010;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 14px;
  line-height: 1;
  margin: 0px;
  font-family: "nimbus-sans", sans-serif;
}
.page-header h1 {
  font-family: "nimbus-sans-extended", sans-serif;
  text-transform: uppercase;
  font-size: 50px;
  font-weight: 300;
  line-height: 1.06em;
  margin: 0px;
}
@media (min-width: 480px) and (max-width: 767px) {
  .page-header h1 {
    font-size: 40px;
  }
}
@media (min-width: 0px) and (max-width: 479px) {
  .page-header h1 {
    font-size: 36px;
  }
}

.white-container {
  background-color: #ffffff;
  padding: 50px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .white-container {
    padding: 40px;
  }
}
@media (min-width: 0px) and (max-width: 479px) {
  .white-container {
    padding: 25px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .white-container {
    padding: 25px;
  }
}
.white-container a {
  transition: all 0.2s;
}
.white-container a:hover, .white-container a:focus {
  background-color: #fff;
  color: #000;
}

@media (min-width: 0px) and (max-width: 479px) {
  .image-first-row {
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 0px) and (max-width: 479px) and (min-width: 0px) and (max-width: 479px) {
  .image-first-row .image-first {
    order: -1;
  }
}
@media (min-width: 0px) and (max-width: 479px) and (min-width: 480px) and (max-width: 767px) {
  .image-first-row .image-first {
    order: -1;
  }
}
@media (min-width: 0px) and (max-width: 479px) and (min-width: 768px) and (max-width: 991px) {
  .image-first-row .image-first {
    order: -1;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .image-first-row {
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 480px) and (max-width: 767px) and (min-width: 0px) and (max-width: 479px) {
  .image-first-row .image-first {
    order: -1;
  }
}
@media (min-width: 480px) and (max-width: 767px) and (min-width: 480px) and (max-width: 767px) {
  .image-first-row .image-first {
    order: -1;
  }
}
@media (min-width: 480px) and (max-width: 767px) and (min-width: 768px) and (max-width: 991px) {
  .image-first-row .image-first {
    order: -1;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .image-first-row {
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 768px) and (max-width: 991px) and (min-width: 0px) and (max-width: 479px) {
  .image-first-row .image-first {
    order: -1;
  }
}
@media (min-width: 768px) and (max-width: 991px) and (min-width: 480px) and (max-width: 767px) {
  .image-first-row .image-first {
    order: -1;
  }
}
@media (min-width: 768px) and (max-width: 991px) and (min-width: 768px) and (max-width: 991px) {
  .image-first-row .image-first {
    order: -1;
  }
}

.social-media-buttons {
  font-size: 0;
}
.social-media-buttons a {
  display: inline-block;
  background-color: #000000;
  text-decoration: none;
  margin: 0px 2px 2px 0px;
  width: 30px;
  height: 30px;
}
.social-media-buttons a svg {
  width: 16px;
  height: 16px;
  padding: 7px;
  fill: #ffffff;
}
.social-media-buttons a:focus, .social-media-buttons a:hover {
  background-color: #fff;
}
.social-media-buttons a:focus svg, .social-media-buttons a:hover svg {
  fill: black;
}
.social-media-buttons + .related-row {
  margin-top: 40px;
}

.btn-hov-focus:focus, .btn-hov-focus:hover {
  background-color: #f2efea;
}

.single-related .related-link:focus h3, .single-related .related-link:hover h3 {
  color: #002597;
}
.single-related .related-link:focus .info-col-wrapper .btn-wrapper .btn, .single-related .related-link:focus .info-col-wrapper .btn-wrapper .cookie-warning .cookie-btn, .cookie-warning .single-related .related-link:focus .info-col-wrapper .btn-wrapper .cookie-btn, .single-related .related-link:hover .info-col-wrapper .btn-wrapper .btn, .single-related .related-link:hover .info-col-wrapper .btn-wrapper .cookie-warning .cookie-btn, .cookie-warning .single-related .related-link:hover .info-col-wrapper .btn-wrapper .cookie-btn {
  background-color: #fff;
  color: #000 !important;
}
.single-related:hover .info-col-wrapper .btn-wrapper .btn, .single-related:hover .info-col-wrapper .btn-wrapper .cookie-warning .cookie-btn, .cookie-warning .single-related:hover .info-col-wrapper .btn-wrapper .cookie-btn {
  background-color: #fff;
  color: #000 !important;
}

.single-event .related-link:focus h3, .single-event .related-link:hover h3 {
  color: #002597;
}
.single-event .related-link:focus .info-col-wrapper .btn-wrapper .btn, .single-event .related-link:focus .info-col-wrapper .btn-wrapper .cookie-warning .cookie-btn, .cookie-warning .single-event .related-link:focus .info-col-wrapper .btn-wrapper .cookie-btn, .single-event .related-link:hover .info-col-wrapper .btn-wrapper .btn, .single-event .related-link:hover .info-col-wrapper .btn-wrapper .cookie-warning .cookie-btn, .cookie-warning .single-event .related-link:hover .info-col-wrapper .btn-wrapper .cookie-btn {
  background-color: #fff;
  color: #000 !important;
}
.single-event:hover .info-col-wrapper .btn-wrapper .btn, .single-event:hover .info-col-wrapper .btn-wrapper .cookie-warning .cookie-btn, .cookie-warning .single-event:hover .info-col-wrapper .btn-wrapper .cookie-btn {
  background-color: #fff;
  color: #000 !important;
}

button.btn:hover, .cookie-warning button.cookie-btn:hover, button.btn:focus, .cookie-warning button.cookie-btn:focus {
  background-color: #fff;
  color: #000 !important;
}

.slick-controls {
  display: flex;
  margin-bottom: 60px;
}
.slick-controls .prev-arr, .slick-controls .next-arr {
  font-size: 20px;
  padding: 10px 20px;
  border: solid 2px black;
  background: black;
  color: #fff;
  transition: all 0.2s;
}
@media (min-width: 0px) and (max-width: 479px) {
  .slick-controls .prev-arr, .slick-controls .next-arr {
    display: none !important;
  }
}
.slick-controls .prev-arr:hover, .slick-controls .prev-arr:focus, .slick-controls .next-arr:hover, .slick-controls .next-arr:focus {
  background-color: #fff;
  color: #000 !important;
}
.slick-controls .next-arr {
  margin-left: auto;
}